:root {
  --arafa-font: "DM Sans", sans-serif;
  --arafa-heading-font: "Quicksand", sans-serif;
  --arafa-heading-font2: "Castoro", serif;
  --arafa-special-font: "Schoolbell", cursive;
  --arafa-text: #757277;
  --arafa-text-rgb: 117, 114, 119;
  --arafa-text-gray: #AA96B4;
  --arafa-text-gray-rgb: 170, 150, 180;
  --arafa-text-gray2: #888888;
  --arafa-text-gray2-rgb: 136, 136, 136;
  --arafa-base: #351C42;
  --arafa-base-rgb: 53, 28, 66;
  --arafa-secondary: #F6D469;
  --arafa-secondary-rgb: 246, 212, 105;
  --arafa-white: #fff;
  --arafa-white-rgb: 255, 255, 255;
  --arafa-white2: #EFECE7;
  --arafa-white2-rgb: 239, 236, 231;
  --arafa-white3: #D7D3CB;
  --arafa-white3-rgb: 215, 211, 203;
  --arafa-white4: #FFFAEA;
  --arafa-white4-rgb: 255, 250, 234;
  --arafa-purple: #965995;
  --arafa-purple-rgb: 150, 89, 149;
  --arafa-gray: #888888;
  --arafa-gray-rgb: 136, 136, 136;
  --arafa-black: #000000;
  --arafa-black-rgb: 0, 0, 0;
  --arafa-dark: #24102F;
  --arafa-dark-rgb: 36, 16, 47;
  --arafa-dark2: #200C2A;
  --arafa-dark2-rgb: 32, 12, 42;
  --arafa-dark3: #200C2B;
  --arafa-dark3-rgb: 32, 12, 43;
  --arafa-dark4: #414141;
  --arafa-dark4-rgb: 65, 65, 65;
  --arafa-orange: #E76100;
  --arafa-orange-rgb: 231, 97, 0;
  --arafa-fuchsia: #FF1C74;
  --arafa-fuchsia-rgb: 255, 28, 116;
  --arafa-blue: #6C1CD1;
  --arafa-blue-rgb: 108, 28, 209;
  --arafa-green: #59C36A;
  --arafa-green-rgb: 89, 195, 106;
  --arafa-yellow: #FCB720;
  --arafa-yellow-rgb: 252, 183, 32;
  --arafa-border-color: #D7D3CB;
  --arafa-border-color-rgb: 215, 211, 203;
  --arafa-border-color2: #414141;
  --arafa-border-color2-rgb: 65, 65, 65;
  --arafa-letter-space: -0.72px;
  --arafa-letter-space-xl: -1.5px;
}




body::-webkit-scrollbar {
  width: 4px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-moz-scrollbar {
  width: 8px;
}

body::-moz-scrollbar-track {
  background: black;
}

body::-moz-scrollbar-thumb {
  background: black;
}

body::-o-scrollbar {
  width: 8px;
}

body::-o-scrollbar-track {
  background: linear-gradient(109.6deg, rgb(1 0 52) 11.2%, rgb(68 72 115) 100.2%) !important;
}

body::-o-scrollbar-thumb {
  background: linear-gradient(109.6deg, rgb(1 0 52) 11.2%, rgb(68 72 115) 100.2%) !important;
}

body::-ms-scrollbar {
  width: 8px;
}

body::-ms-scrollbar-track {
  background: linear-gradient(109.6deg, rgb(1 0 52) 11.2%, rgb(68 72 115) 100.2%) !important;
}

body::-ms-scrollbar-thumb {
  background: linear-gradient(109.6deg, rgb(1 0 52) 11.2%, rgb(68 72 115) 100.2%) !important;
}

.dashboard-nav::-webkit-scrollbar {
  width: 8px;
}

.dashboard-nav::-webkit-scrollbar-track {
  background: #06556d;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to top, #047a8a 0%, #06556d 100%);
}

.dashboard-nav::-moz-scrollbar {
  width: 8px;
}

.dashboard-nav::-moz-scrollbar-track {
  background: #06556d;
}

.dashboard-nav::-moz-scrollbar-thumb {
  background: #06556d;
}

.dashboard-nav::-o-scrollbar {
  width: 8px;
}

.dashboard-nav::-o-scrollbar-track {
  background: #06556d;
}

.dashboard-nav::-o-scrollbar-thumb {
  background: #06556d;
}

.dashboard-nav::-ms-scrollbar {
  width: 8px;
}

.dashboard-nav::-ms-scrollbar-track {
  background: #06556d;
}

.dashboard-nav::-ms-scrollbar-thumb {
  background: #06556d;
}

::selection {
  background: #06556d !important;
  color: rgb(255, 255, 255);
}

::-moz-selection {
  background: #06556d !important;
  color: rgb(255, 255, 255);
}

::-webkit-selection {
  background: #06556d !important;
  color: rgb(255, 255, 255);
}

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

@font-face {
  font-family: 'antykwa_poltawskiego';
  src: url('antpolt.otf') format('otf');
}

@font-face {
  font-family: 'gontserrat';
  src: url('Gontserrat.ttf') format('ttf');
}


body {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-text, #757277);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  background-color: #effaf7;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--arafa-base, #351C42);
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  color: var(--arafa-base, #351C42);
  font-weight: 700;
}

@media (max-width: 575px) {

  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

p {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  color: var(--arafa-text, #757277);
  font-weight: 400;
  line-height: 1.75;
}

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

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

input,
textarea,
input::placeholder,
textarea::placeholder {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--arafa-text, #757277);
  line-height: 1;
}

input::placeholder,
textarea::placeholder {
  text-transform: capitalize;
}

input,
textarea {
  color: var(--arafa-base, #351C42);
}

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

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

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

.section-space-top {
  padding-top: 130px;
}

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

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

.section-space-bottom {
  padding-bottom: 130px;
}

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

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

.background-base {
  background-color: var(--arafa-base, #351C42);
}

.background-gray {
  background-color: var(--arafa-gray, #888888);
}

.background-white {
  background-color: var(--arafa-white, #fff);
}

.background-white2 {
  background-color: var(--arafa-white2, #EFECE7);
}

.background-white3 {
  background-color: var(--arafa-white3, #D7D3CB);
}

.background-dark {
  background-color: var(--arafa-dark, #24102F);
}

.background-dark-2 {
  background-color: var(--arafa-dark2, #200C2A);
}

.background-dark-3 {
  background-color: var(--arafa-dark3, #200C2B);
}

.arafa-dark {
  color: var(--arafa-dark, #24102F);
}

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

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

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

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

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

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

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

/* .sec-title {
  margin-bottom: 54px;
} */

.about-four__content .sec-title__tagline {
  display: table;
  position: relative;
  margin: 0;
  color: #008D89;
  font-size: 26px;
  line-height: 1;
  /* text-transform: capitalize; */
  margin-bottom: 21px;
  font-family: 'Gontserrat';
  font-weight: 600;
  margin-left: 24px;
}

.sec-title__tagline {
  display: table;
  position: relative;
  margin: 0;
  color: #008D89;
  font-size: 26px;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 21px;
  font-family: 'Neuton';
  font-weight: 600;
  margin-left: 24px;
}

.sec-title__tagline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50px;
  border: 1px solid #FF7E90;
  z-index: 1;
}

.sec-title__tagline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 12.3% 19.3%, #FCBB8B 0%, #FF7E90 100.2%);
  z-index: 1;
}

.sec-title__tagline--center {
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
}

.sec-title__tagline--center::before {
  left: 0;
}

.sec-title__tagline--center::after {
  left: 5.5px;
}

.sec-title__title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: 'Antykwa Poltawskiego';
  font-size: 32px;
  color: #000000;
  font-weight: bold;
  line-height: 1.2;
  bottom: 12px;
}

.about-four__content .sec-title__title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: 'gontserrat';
  font-size: 35px;
  color: #000000;
  font-weight: bold;
  line-height: 1.2;
  bottom: 13px;
}

@media (max-width: 1199px) {
  .sec-title__title {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .sec-title__title {
    font-size: 35px;
  }
}

@media (max-width: 425px) {
  .sec-title__title {
    font-size: 33px;
  }
}

.sec-title__title__inner {
  position: relative;
}

.sec-title__title__inner::after {
  content: "";
  background-image: url(../images/shapes/title-shape-1-1.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 22.3px;
  position: absolute;
  left: 2px;
  bottom: -8px;
  width: 100%;
  height: 22.3px;
  z-index: -1;
  animation: smartMove 5s infinite;
}

.sec-title--two {
  margin: 0;
}

.sec-title--two.sec-title--center {
  text-align: center;
}

.sec-title--two.sec-title--center .sec-title__top {
  justify-content: center;
}

.sec-title--two .sec-title__top {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-title--two .sec-title__tagline {
  margin: 0;
  display: block;
  color: var(--arafa-orange, #E76100);
}

.sec-title--two .sec-title__tagline::before,
.sec-title--two .sec-title__tagline::after {
  display: none;
}

.sec-title--two .sec-title__title {
  font-family: var(--arafa-heading-font2, "Castoro", serif);
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.sec-title--three .sec-title__tagline {
  color: var(--arafa-brown2);
}

.sec-title--three .sec-title__tagline::before {
  background-color: var(--arafa-brown2);
}

.sec-title--three .sec-title__tagline::after {
  border-color: var(--arafa-brown2);
}

.arafa-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background-color: var(--arafa-secondary, #F6D469);
  padding: 16px 22px 16px 19px;
  transition: 500ms;
  border-radius: 100px;
}

.arafa-btn__icon-box {
  position: relative;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  text-align: left;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: var(--arafa-base, #351C42);
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.65, 0, 0.076, 1);
}

.arafa-btn__icon-box__inner {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
}

.arafa-btn__icon-box__inner span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: var(--arafa-white, #fff);
}

.arafa-btn__icon-box__inner span.icon-trolley {
  font-size: 16px;
  color: var(--arafa-base, #351C42);
}

.arafa-btn__icon-box__inner span.icon-heart {
  font-size: 16px;
}

.arafa-btn__icon-box__inner span.icon-donate {
  font-size: 18px;
}

.arafa-btn__text {
  position: relative;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  font-size: 16px;
  color: inherit;
  margin-left: 40px;
  font-weight: 700;
  line-height: 1;
  /* text-transform: capitalize; */
  z-index: 11;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 412px) {
  .arafa-btn__text {
    font-size: 14px;
  }
}

.arafa-btn:hover .arafa-btn__icon-box {
  width: calc(100% - 18px);
}

.arafa-btn:hover .arafa-btn__text {
  color: var(--arafa-white, #fff);
}

.arafa-btn--white {
  background-color: var(--arafa-white2, #EFECE7);
}

.arafa-btn--white .arafa-btn__icon-box {
  background-color: var(--arafa-secondary, #F6D469);
}

.arafa-btn--white .arafa-btn__icon-box__inner span {
  color: var(--arafa-base, #351C42);
}

.arafa-btn--white:hover .arafa-btn__text {
  color: var(--arafa-base, #351C42);
}

.arafa-btn--border {
  background-color: transparent;
  border: 1px solid var(--arafa-border-color, #D7D3CB);
}

.arafa-btn--border .arafa-btn__icon-box {
  background-color: var(--arafa-secondary, #F6D469);
}

.arafa-btn--border .arafa-btn__icon-box__inner span {
  color: var(--arafa-base, #351C42);
}

.arafa-btn--border .arafa-btn__text {
  color: var(--arafa-base, #351C42);
}

.arafa-btn--border:hover .arafa-btn__text {
  color: var(--arafa-base, #351C42);
}

.arafa-btn--border-base {
  background-color: transparent;
  border: 1px solid var(--arafa-base, #351C42);
}

.arafa-btn--border-base .arafa-btn__icon-box {
  background-color: var(--arafa-base, #351C42);
}

.arafa-btn--bramble {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-bramble);
}

.arafa-btn--bramble .arafa-btn__icon-box {
  background-color: var(--arafa-brown);
}

.arafa-btn--brown {
  color: var(--arafa-bramble);
  background-color: var(--arafa-brown);
}

.arafa-btn--brown .arafa-btn__icon-box {
  background-color: var(--arafa-bramble);
}

.arafa-btn-two {
  display: inline-block;
  padding: 13.5px 22px;
  font-size: 16px;
  color: var(--arafa-orange, #E76100);
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid var(--arafa-orange, #E76100);
  border-radius: 10px;
  transition: all 500ms ease;
}

.arafa-btn-two:hover {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-orange, #E76100);
}

.volunteer-profile {
  margin-top: 54px;
  display: flex;
  align-items: center;
  gap: 30px 0;
}

@media (max-width: 575px) {
  .volunteer-profile {
    flex-direction: column;
    align-items: flex-start;
  }
}

.volunteer-profile__inner {
  display: flex;
  align-items: center;
  gap: 21px;
  border-right: 1px solid var(--arafa-border-color, #D7D3CB);
  padding-right: 34px;
}

@media (max-width: 575px) {
  .volunteer-profile__inner {
    padding-right: 0;
    border: 0;
  }
}

.volunteer-profile__image {
  width: 82px;
  height: 82px;
  border-radius: 50%;
}

.volunteer-profile__name {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  color: var(--arafa-base, #351C42);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 5px;
  /* text-transform: capitalize; */
}

.volunteer-profile__name a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.volunteer-profile__name a:hover {
  background-size: 100% 1px;
}

.volunteer-profile__designation {
  font-size: 14px;
  color: var(--arafa-purple, #965995);
  font-weight: 500;
  line-height: 1.142;
  margin-bottom: 5px;
  text-transform: capitalize;
  margin-bottom: 0;
}

.volunteer-profile__signature {
  margin-left: 34px;
}

@media (max-width: 575px) {
  .volunteer-profile__signature {
    margin-left: 0;
  }
}

.progress-box__title {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-base, #351C42);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 19px;
}

.progress-box__bar {
  width: 100%;
  height: 7px;
  border: 1px solid var(--arafa-purple, #965995);
  border-radius: 10px;
  position: relative;
}

.progress-box__bar__inner {
  position: relative;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--arafa-purple, #965995);
  transition: all 1500ms linear;
  border-radius: 10px;
  width: 0px;
  z-index: 1;
}

.progress-box__bar__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  background-color: var(--arafa-purple, #965995);
  border: 0;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  z-index: 11;
}

.progress-box__bar__inner::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--arafa-white, #fff);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  z-index: 11;
}

.progress-box__number {
  position: absolute;
  bottom: calc(100% + 20px);
  right: 0;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.166;
  text-transform: capitalize;
  color: var(--arafa-purple, #965995);
}

.contact-information {
  display: flex;
  align-items: center;
  gap: 30px 0;
}

@media (max-width: 575px) {
  .contact-information {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-information__btn {
  position: relative;
  margin-right: 21px;
}

.contact-information__btn::after {
  content: "";
  width: 1px;
  height: calc(100% - 6px);
  background-color: var(--arafa-white2, #EFECE7);
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
}

@media (max-width: 575px) {
  .contact-information__btn {
    margin-right: 0;
  }

  .contact-information__btn::after {
    display: none;
  }
}

.contact-information__phone {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 21px;
}

@media (max-width: 575px) {
  .contact-information__phone {
    padding-left: 0;
    border: 0;
  }
}

.contact-information__phone__icon {
  position: relative;
  top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--arafa-purple, #965995);
  z-index: 1;
}

.contact-information__phone__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
  background-color: var(--arafa-purple, #965995);
}

.contact-information__phone__icon span {
  font-size: 20px;
  color: var(--arafa-purple, #965995);
}

.contact-information__phone:hover .contact-information__phone__icon span {
  color: var(--arafa-white, #fff);
}

.contact-information__phone:hover .contact-information__phone__icon::after {
  opacity: 1;
  transform: scale(1);
}

.contact-information__phone__text {
  position: relative;
  top: -2px;
}

.contact-information__phone__text span {
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
}

.contact-information__phone__text h5 {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  margin-top: 6px;
  margin-bottom: 0;
}

.contact-information__phone__text h5:hover {
  color: var(--arafa-purple, #965995);
}

.contact-information__phone__text h5 a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.contact-information__phone__text h5 a:hover {
  background-size: 100% 1px;
}

.video-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--arafa-base, #351C42);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.video-button span {
  transition: all 0.4s ease-in-out;
  font-size: 14px;
  color: var(--arafa-white, #fff);
}

.video-button:hover {
  background-color: var(--arafa-secondary, #F6D469);
}

.video-button:hover span {
  color: var(--arafa-base, #351C42);
}

.video-button__ripple::before,
.video-button__ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--arafa-base-rgb, 53, 28, 66), 0.6);
  -webkit-animation: productVideo 3s infinite;
  animation: productVideo 3s infinite;
  border-radius: 50%;
}

.video-button__ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-button__ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

@keyframes productVideo {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}

.custom-radio__input {
  display: none;
}

.custom-radio__title {
  position: relative;
  cursor: pointer;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-base, #351C42);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.custom-radio__title::before {
  content: "";
  border: 1px solid var(--arafa-border-color, #D7D3CB);
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: -5px 16px;
  margin-left: 0;
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.custom-radio__title::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #AA96B4;
  left: 7px;
  top: 13px;
  margin: -8px 20px;
  margin-left: 0;
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.custom-radio__input:checked+.custom-radio__title::before {
  border-color: var(--arafa-purple, #965995);
}

.custom-radio__input:checked+.custom-radio__title::after {
  background-color: var(--arafa-purple, #965995);
}

.custom-radio__input:checked+.custom-radio__title {
  text-shadow: 0 0 0.5px currentColor;
}

.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(--arafa-base, #351C42);
}

.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(--arafa-text, #757277);
  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.png);
  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(--arafa-text, #757277);
  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(--arafa-dark, #24102F);
  font-family: var(--arafa-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: 16px;
  font-weight: 500;
  color: var(--arafa-dark, #24102F);
}

@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}

.ul-list-one li::before {
  content: "\e907";
  color: var(--arafa-base, #351C42);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: #d0fef1;
  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;
  left: -24px;
  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;
  color: var(--arafa-base, #351C42);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--arafa-base, #351C42);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--arafa-secondary, #F6D469);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 140px;
}

.scroll-to-top--two .scroll-to-top__text {
  color: var(--arafa-orange, #E76100);
}

.scroll-to-top--two .scroll-to-top__wrapper {
  background-color: var(--arafa-black3);
}

.scroll-to-top--two .scroll-to-top__inner {
  background-color: var(--arafa-orange, #E76100);
}

.scroll-to-top--three .scroll-to-top__text {
  color: #ff7081;
}

.scroll-to-top--three .scroll-to-top__inner {
  background-color: #ff8390;
}

/* social links */
.social-link {
  display: flex;
  align-items: center;
  gap: 20px 32px;
}

.social-link a {
  position: relative;
  font-size: 16px;
  color: var(--arafa-text, #757277);
  transition: all 500ms ease;
  line-height: 1;
}

.social-link a:hover {
  color: var(--arafa-base, #351C42);
}

.social-link a+a::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -16px;
  background-color: var(--arafa-white3, #D7D3CB);
}

.social-link-two {
  display: flex;
  align-items: center;
  gap: 7px;
}

.social-link-two a {
  font-size: 14px;
  color: var(--arafa-base, #351C42);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--arafa-base, #351C42);
  transition: all 400ms ease;
}

.social-link-two a:hover {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-purple, #965995);
  border-color: transparent;
}

.person-social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.person-social li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--arafa-base, #351C42);
  font-size: 14px;
  color: var(--arafa-base, #351C42);
  z-index: 1;
}

.person-social li a::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
  background-color: var(--arafa-base, #351C42);
}

.person-social li a:hover {
  color: var(--arafa-secondary, #F6D469);
}

.person-social li a:hover::after {
  opacity: 1;
  transform: scale(1);
}

.person-social li a span {
  color: inherit;
}

/* post paginations */
.post-pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}

.post-pagination a {
  display: flex;
  width: 40px;
  height: 40px;
  background-color: var(--arafa-white2, #EFECE7);
  align-items: center;
  justify-content: center;
  color: var(--arafa-text, #757277);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
  border: 1px solid transparent;
  transition: 500ms ease;
}

.post-pagination a span {
  font-size: 14px;
  color: var(--arafa-base, #351C42);
}

.post-pagination a:hover {
  border-color: var(--arafa-purple, #965995);
  color: var(--arafa-purple, #965995);
  background-color: transparent;
}

.post-pagination a:hover span {
  color: var(--arafa-purple, #965995);
}

.post-pagination li:last-child a {
  background-color: var(--arafa-purple, #965995);
  color: var(--arafa-white, #fff);
}

.post-pagination li:last-child a span {
  color: var(--arafa-white, #fff);
}

.arafa-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}

.arafa-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.arafa-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.arafa-owl__carousel--basic-nav .owl-nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0px;
  margin-top: 35px;
}

.arafa-owl__carousel--basic-nav .owl-nav::before,
.arafa-owl__carousel--basic-nav .owl-nav::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 75px);
  height: 1px;
  background-color: var(--arafa-border-color, #D7D3CB);
}

.arafa-owl__carousel--basic-nav .owl-nav::before {
  left: 0;
}

.arafa-owl__carousel--basic-nav .owl-nav::after {
  right: 0;
}

.arafa-owl__carousel--basic-nav .owl-nav button:hover {
  background-color: transparent !important;
}

.arafa-owl__carousel--basic-nav .owl-nav button span {
  border: 0;
  outline: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--arafa-white2, #EFECE7);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--arafa-text, #757277);
  border-radius: 50%;
  font-size: 15px;
  color: var(--arafa-base, #351C42);
  transition: all 500ms ease;
}

.arafa-owl__carousel--basic-nav .owl-nav button span:hover {
  background-color: var(--arafa-purple, #965995);
  color: var(--arafa-white, #fff);
}

.arafa-owl__carousel--basic-nav .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 60px;
}

.arafa-owl__carousel--basic-nav .owl-dots .owl-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.arafa-owl__carousel--basic-nav .owl-dots .owl-dot::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--arafa-purple, #965995);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.arafa-owl__carousel--basic-nav .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #DCDCDC;
  margin: 0;
  transition: all 0.4s ease-in-out;
}

.arafa-owl__carousel--basic-nav .owl-dots .owl-dot:hover span {
  background-color: var(--arafa-purple, #965995);
}

.arafa-owl__carousel--basic-nav .owl-dots .owl-dot.active::after {
  opacity: 1;
}

.arafa-owl__carousel--basic-nav .owl-dots .owl-dot.active span {
  background-color: var(--arafa-purple, #965995);
}

.arafa-owl__carousel--basic-nav .owl-nav.disabled+.owl-dots {
  margin-top: 60px;
}

.volunteer-group {
  position: relative;
  display: flex;
  align-items: center;
}

.volunteer-group__total {
  margin-left: -16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  color: var(--arafa-bramble);
  background-color: var(--arafa-white, #fff);
  border: 3px solid var(--arafa-pastel-grey);
  z-index: 1;
}

.volunteer-group__link,
.volunteer-group__total {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
}

.volunteer-group__link+.volunteer-group__link {
  margin-left: -16px;
}

.volunteer-group__image {
  width: 50px;
  height: 50px;
  border: 3px solid var(--arafa-white, #fff);
  border-radius: 50%;
}

.volunteer-group__title {
  margin: 0 0 0 13px;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-transform: capitalize;
  color: var(--arafa-bramble);
}

.arafa-ratings {
  display: flex;
  align-items: center;
  gap: 10px;
}

.arafa-ratings span {
  font-size: 15px;
  color: var(--arafa-orange, #E76100);
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--arafa-dark, #24102F);
  color: var(--arafa-white, #fff);
  font-family: var(--arafa-font, "DM Sans", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
}

.ui-datepicker-calendar td {
  background-color: var(--arafa-white, #fff);
  background-image: none;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-text, #757277);
}

.ui-datepicker-calendar td a {
  border-color: var(--arafa-border-color, #D7D3CB);
  background-color: var(--arafa-gray, #888888);
  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(--arafa-border-color, #D7D3CB);
  background-color: var(--arafa-white2, #EFECE7);
  background-image: none;
  color: var(--arafa-base, #351C42);
  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(--arafa-white, #fff);
  background-color: var(--arafa-base, #351C42);
}

.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(--arafa-white, #fff);
  background-color: var(--arafa-base, #351C42);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--arafa-white, #fff);
  color: var(--arafa-dark, #24102F);
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--arafa-base, #351C42);
  color: var(--arafa-white, #fff);
  top: 2px;
}

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

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

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.testimonials-card {
  padding: 40px 40px 34px;
  position: relative;
  border-radius: 20px;
}

@media (max-width: 1199px) {
  .testimonials-card {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .testimonials-card {
    padding-bottom: 40px;
  }
}

.testimonials-card__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--arafa-white, #fff);
  mix-blend-mode: multiply;
  border-radius: 20px;
}

.testimonials-card__top {
  position: relative;
  z-index: 11;
  display: flex;
  justify-content: space-between;
}

.testimonials-card__quote {
  margin-top: 6px;
  margin-bottom: 31px;
}

.testimonials-card__quote span {
  font-size: 46px;
  color: var(--arafa-purple, #965995);
}

.testimonials-card__content {
  position: relative;
  z-index: 11;
}

.testimonials-card__text {
  padding-right: 5px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.59;
  text-transform: capitalize;
  margin-bottom: 36px;
}

@media (max-width: 1199px) {
  .testimonials-card__text {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .testimonials-card__text {
    font-size: 18px;
  }
}

@media (max-width: 425px) {
  .testimonials-card__text {
    font-size: 16px;
  }
}

.testimonials-card__info {
  display: flex;
  align-items: center;
  gap: 25px 0;
}

@media (max-width: 575px) {
  .testimonials-card__info {
    flex-direction: column;
    align-items: flex-start;
  }
}

.testimonials-card__info__left {
  position: relative;
  padding-right: 65px;
}

.testimonials-card__info__left::after {
  content: "";
  width: 1px;
  height: 57px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: var(--arafa-border-color, #D7D3CB);
}

@media (max-width: 1199px) {
  .testimonials-card__info__left {
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .testimonials-card__info__left {
    padding-right: 0;
  }

  .testimonials-card__info__left::after {
    display: none;
  }
}

.testimonials-card__name {
  font-size: 24px;
  line-height: 1.458;
  text-transform: capitalize;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  margin-bottom: 7px;
}

@media (max-width: 1199px) {
  .testimonials-card__name {
    font-size: 21px;
  }
}

.testimonials-card__designation {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--arafa-purple, #965995);
  text-transform: capitalize;
  margin-bottom: 0;
}

.testimonials-card__rattings {
  margin-left: 45px;
  gap: 9px;
}

@media (max-width: 1199px) {
  .testimonials-card__rattings {
    margin-left: 30px;
  }
}

@media (max-width: 575px) {
  .testimonials-card__rattings {
    margin-left: 0;
  }
}

.testimonials-card__rattings span {
  font-size: 16px;
}

.donation-information {
  position: relative;
  padding: 40px 32px 40px 40px;
  border-radius: 20px;
}

@media (max-width: 1199px) {
  .donation-information {
    padding-right: 40px;
  }
}

@media (max-width: 575px) {
  .donation-information {
    padding: 30px;
  }
}

.donation-information__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  z-index: 1;
}

.donation-information__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(108deg, #000 0.75%, rgba(53, 28, 66, 0.08) 97.97%);
}

.donation-information__content {
  position: relative;
  z-index: 11;
}

.donation-information__title {
  font-size: 30px;
  color: var(--arafa-white2, #EFECE7);
  line-height: 1;
  letter-spacing: -0.9px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .donation-information__title {
    font-size: 27px;
  }
}

@media (max-width: 575px) {
  .donation-information__title {
    font-size: 24px;
  }
}

.donation-information__text {
  color: var(--arafa-white2, #EFECE7);
  text-transform: capitalize;
  margin-bottom: 31px;
  padding-right: 10px;
}

.donation-information__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.donation-information__list li {
  display: flex;
  align-items: center;
}

.donation-information__list li i {
  font-size: 17px;
  color: var(--arafa-secondary, #F6D469);
}

.donation-information__list li span {
  font-size: 16px;
  color: var(--arafa-white, #fff);
  font-weight: 700;
  line-height: 1.75;
  text-transform: capitalize;
  margin-left: 14px;
}

.donation-information__bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.donation-information .arafa-btn {
  border-color: var(--arafa-white, #fff);
}

.donation-information .arafa-btn__text {
  color: var(--arafa-white, #fff);
}

.donation-information .arafa-btn .arafa-btn__icon-box {
  background-color: var(--arafa-secondary, #F6D469);
}

.donation-information .arafa-btn .arafa-btn__icon-box__inner span {
  color: var(--arafa-base, #351C42);
  transition: all 0.4s ease-in-out;
}

.donation-information .arafa-btn:hover .arafa-btn__icon-box {
  background-color: var(--arafa-secondary, #F6D469);
  width: 40px;
}

.donation-information .arafa-btn:hover .arafa-btn__icon-box__inner span {
  color: var(--arafa-base, #351C42);
}

.donation-information .arafa-btn:hover .arafa-btn__text {
  color: var(--arafa-base, #351C42);
}

.donation-information .arafa-btn:hover {
  background-color: var(--arafa-white2, #EFECE7);
  border-color: var(--arafa-white2, #EFECE7);
}

.gift-card {
  position: relative;
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .gift-card {
    padding: 30px;
  }
}

.gift-card__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  z-index: 1;
}

.gift-card__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(108deg, #000 0.75%, rgba(53, 28, 66, 0.08) 97.97%);
}

.gift-card__content {
  position: relative;
  z-index: 11;
}

.gift-card__title {
  font-size: 30px;
  color: var(--arafa-white, #fff);
  line-height: 1;
  letter-spacing: -0.9px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .gift-card__title {
    font-size: 27px;
  }
}

@media (max-width: 575px) {
  .gift-card__title {
    font-size: 24px;
  }
}

.gift-card__text {
  color: var(--arafa-white2, #EFECE7);
  text-transform: capitalize;
  margin-bottom: 30px;
}

.gift-card__amount {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 29px;
}

.gift-card__btn {
  min-width: 77px;
  height: 60px;
  padding: 0 10px;
  text-align: center;
  outline: 0;
  border: 2px solid var(--arafa-white, #fff);
  border-radius: 100px;
  background-color: transparent;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  color: var(--arafa-white, #fff);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  transition: all 400ms ease;
}

.gift-card__btn.active {
  background-color: var(--arafa-purple, #965995);
  color: var(--arafa-white, #fff);
  border-color: transparent;
}

@media (max-width: 1399px) {
  .gift-card__btn {
    height: 50px;
  }
}

@media (max-width: 575px) {
  .gift-card__btn {
    height: 45px;
  }
}

.gift-card__btn:hover {
  background-color: var(--arafa-purple, #965995);
  color: var(--arafa-white, #fff);
  border-color: transparent;
}

.gift-card__form {
  width: 170px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 20px;
  border: 2px solid var(--arafa-white, #fff);
  border-radius: 100px;
}

@media (max-width: 1399px) {
  .gift-card__form {
    height: 50px;
  }
}

@media (max-width: 575px) {
  .gift-card__form {
    height: 45px;
  }
}

.gift-card__form__input {
  position: relative;
  width: calc(100% - 66px);
  height: 60px;
  padding: 18px 10px;
  text-align: center;
  outline: 0;
  border: 2px solid var(--arafa-white, #fff);
  border-right: none;
  border-radius: 100px;
  background-color: transparent;
}

@media (max-width: 1399px) {
  .gift-card__form__input {
    height: 50px;
  }
}

@media (max-width: 575px) {
  .gift-card__form__input {
    height: 45px;
  }
}

.gift-card__btn,
.gift-card__form__title,
.gift-card__form__input,
.gift-card__form__input::placeholder {
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  color: var(--arafa-white2, #EFECE7);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.gift-card .arafa-btn {
  border-color: var(--arafa-white, #fff);
}

.gift-card .arafa-btn__text {
  color: var(--arafa-white, #fff);
}

.gift-card .arafa-btn .arafa-btn__icon-box {
  background-color: var(--arafa-secondary, #F6D469);
}

.gift-card .arafa-btn .arafa-btn__icon-box__inner span {
  color: var(--arafa-base, #351C42);
  transition: all 0.4s ease-in-out;
}

.gift-card .arafa-btn:hover .arafa-btn__icon-box {
  background-color: var(--arafa-secondary, #F6D469);
  width: 40px;
}

.gift-card .arafa-btn:hover .arafa-btn__icon-box__inner span {
  color: var(--arafa-base, #351C42);
}

.gift-card .arafa-btn:hover .arafa-btn__text {
  color: var(--arafa-base, #351C42);
}

.gift-card .arafa-btn:hover {
  background-color: var(--arafa-white2, #EFECE7);
  border-color: var(--arafa-white2, #EFECE7);
}

/***

==================================================================
   Events Section
==================================================================

*
/* Events Section */
.events-section {
  padding-top: 50px;
  padding-bottom: 75px;
  position: absolute;
  top: 11%;
  width: 100%;
  /* z-index: 2; */
  padding-top: 100vh;
}

.event-content {
  margin-left: 22px;
}

.events-inner {
  -webkit-box-shadow: rgb(2 2 2 / 6%) 0px 0px 50px;
  -moz-box-shadow: rgba(2, 2, 2, 0.06) 0px 0px 50px;
  box-shadow: rgb(2 2 2 / 6%) 0px 0px 50px;
  border-radius: 10px;
  padding: 0px 30px;
  overflow: hidden;
  position: relative;
  background: #fff !important;
  border: unset;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.events-style-1 .events-inner::before {
  content: "\f133";
  position: absolute;
  font-family: "FontAwesome";
  bottom: 30%;
  right: -30px;
  font-size: 85px;
  color: #f1f1f1;
  z-index: 0;
  transform: rotate(-49deg);
}

.flaticon-calendar:before {
  content: "\f073";
  /* Unicode for calendar icon */
  font-family: 'FontAwesome';
}

.flaticon-calendar {
  font-size: 24px;
  color: #333;
  margin-right: 10px;
}

.events-section .event-date {
  padding: 25px 15px 3px 15px;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  border-radius: 8px 8px 8px 8px;
  background: #ddf3ff;

}

.events-style-1 .events-inner::before {
  content: "";
  position: absolute;
  bottom: 16%;
  right: 19px;
  width: 104px;
  height: 116px;
  background-image: url(../images/calender.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  transform: rotate(-49deg);
  opacity: 0.5;

}


.events-section .event-date:before {
  background: #263787;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 31px;
  z-index: 0;
  border-radius: 0px 0px 8px 8px;
}

.events-style-1 .events-item .event-date::after,
.events-style-2 .events-details .event-date::after {
  font-family: 'Font Awesome 5 Free';
  content: "\f073";
  position: absolute;
  top: 3px;
  left: -1px;
  right: 0;
  color: #263787;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  border-radius: 0% 50% 50% 50%;
  margin: auto;
}

.events-section .event-time {
  padding-left: 0;
  float: none;
  display: block;
  font-size: 14px;
  z-index: 9999;
  color: #fff;
  font-weight: 600;
  position: relative;
  padding-top: 15px;

}

.media-event {
  display: flex;
}

.media-body {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  flex: 1;

}

.events-section .event-content .event-title h5 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.events-section .event-content .event-title h5 a {
  text-decoration: none;
  color: #333;
  line-height: 20px;
}

.events-section .event-content .read-more a {
  text-decoration: none;
  color: #007bff;
}

.events-section .event-content .read-more a:hover {
  text-decoration: underline;
}

/* Owl Carousel Styles */
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: auto;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 2em;
  color: #333;
  padding: 10px;
  cursor: pointer;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -30px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -30px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: rgba(255, 255, 255, 1);
}

.donation-card {
  padding: 22px;
  position: relative;
  background-color: var(--arafa-white2, #EFECE7);
  border-radius: 20px;
}

.donation-card__bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  z-index: 1;
}

.donation-card__image {
  display: block;
  position: relative;
  z-index: 11;
  overflow: hidden;
  border-radius: 20px;
}

.donation-card__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-80%);
  width: 100%;
  height: 50%;
  border-radius: 20px 20px 0 0;
  background-color: RGBA(var(--arafa-dark2-rgb, 32, 12, 42), 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: transform 400ms ease, visibility 400ms ease, opacity 400ms ease;
}

.donation-card__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(80%);
  width: 100%;
  height: 50%;
  border-radius: 0 0 20px 20px;
  background-color: RGBA(var(--arafa-dark2-rgb, 32, 12, 42), 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: transform 400ms ease, visibility 400ms ease, opacity 400ms ease;
}

.donation-card__image img {
  transition: 0.5s;
  display: block;
  width: 100%;
  border-radius: 20px;
}

.donation-card:hover .donation-card__image::before,
.donation-card:hover .donation-card__image::after {
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}

.donation-card:hover .donation-card__image img {
  transform: scale(1.1);
}

.donation-card__category {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--arafa-white, #fff);
  border-radius: 100px;
  padding: 6.5px 11px;
  font-size: 14px;
  color: var(--arafa-purple, #965995);
  font-weight: 500;
  line-height: 1.142;
  text-transform: capitalize;
  z-index: 11;
  transition: all 0.4s ease-in-out;
}

.donation-card:hover .donation-card__category {
  background-color: var(--arafa-secondary, #F6D469);
  color: var(--arafa-base, #351C42);
}

.donation-card__content {
  padding-top: 65px;
  position: relative;
  z-index: 11;
}

.donation-card__progress {
  padding: 38px 20px 11px;
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  background-color: var(--arafa-white, #fff);
  border-radius: 10px;
}

@media (max-width: 425px) {
  .donation-card__progress {
    padding-left: 15px;
    padding-right: 15px;
    width: calc(100% - 30px);
  }
}

.donation-card__progress__bottom {
  margin-top: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.donation-card__progress__title {
  font-size: 12px;
  color: var(--arafa-base, #351C42);
  font-weight: 600;
  line-height: 14px;
  text-transform: capitalize;
  margin-bottom: 0;
}

.donation-card__progress__title span {
  color: inherit;
}

.donation-card .progress-box__number {
  bottom: calc(100% + 13px);
}

.donation-card__title {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.66px;
  text-transform: capitalize;
  margin-bottom: 29px;
}

@media (max-width: 991px) {
  .donation-card__title {
    font-size: 20px;
  }
}

.donation-card__title:hover {
  color: var(--arafa-purple, #965995);
}

.donation-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.donation-card__title a:hover {
  background-size: 100% 1px;
}

.donation-card__btn {
  padding: 14px 17px;
  border: 2px solid var(--arafa-base, #351C42);
}

.donation-card__btn .arafa-btn__icon-box {
  background-color: var(--arafa-secondary, #F6D469);
}

.donation-card__btn .arafa-btn__icon-box__inner span {
  color: var(--arafa-base, #351C42);
  transition: all 0.4s ease-in-out;
}

.donation-card__btn:hover .arafa-btn__icon-box {
  background-color: var(--arafa-base, #351C42);
  width: 40px;
}

.donation-card__btn:hover .arafa-btn__icon-box__inner span {
  color: var(--arafa-white, #fff);
}

.donation-card__btn:hover .arafa-btn__text {
  color: var(--arafa-base, #351C42);
}

.donation-card__btn:hover {
  background-color: var(--arafa-secondary, #F6D469);
  border-color: var(--arafa-secondary, #F6D469);
}

.donation-card-two {
  padding-bottom: 30px;
}

.donation-card-two .donation-card__title {
  position: relative;
  z-index: 1;
  font-size: 24px;
  line-height: 33px;
  letter-spacing: -0.72px;
}

.donation-card-two .donation-card__content {
  padding-top: 20px;
}

.donation-card-two .donation-card__progress {
  position: static;
  width: 100%;
  transform: translate(0);
  margin-bottom: 20px;
}

.donation-card-two .donation-card__progress__title {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
}

.donation-card-two__text {
  text-transform: capitalize;
  margin-bottom: 30px;
}

.donation-card-three {
  padding: 30px 35px 30px 32px;
}

@media (max-width: 991px) {
  .donation-card-three {
    padding: 30px;
  }
}

@media (max-width: 425px) {
  .donation-card-three {
    padding: 25px;
  }
}

.donation-card-three .donation-card__content {
  padding-top: 0;
}

.donation-card-three .donation-card__title {
  margin-bottom: 30px;
}

.donation-card-three__text {
  margin-bottom: 29px;
}

.donation-card-three__text__inner {
  text-transform: capitalize;
  margin-bottom: 0;
}

.donation-card-three .donation-card__progress {
  position: static;
  position: relative;
  top: 0;
  left: 0;
  transform: translate(0);
  width: 100%;
}

.donation-card-four {
  position: relative;
  background-color: var(--arafa-white, #fff);
  border-radius: 20px;
}

.donation-card-four__image {
  display: block;
  position: relative;
  z-index: 11;
  overflow: hidden;
  border-radius: 20px;
}

.donation-card-four__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-80%);
  width: 100%;
  height: 50%;
  border-radius: 20px 20px 0 0;
  background-color: RGBA(var(--arafa-dark2-rgb, 32, 12, 42), 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: transform 400ms ease, visibility 400ms ease, opacity 400ms ease;
}

.donation-card-four__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(80%);
  width: 100%;
  height: 50%;
  border-radius: 0 0 20px 20px;
  background-color: RGBA(var(--arafa-dark2-rgb, 32, 12, 42), 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: transform 400ms ease, visibility 400ms ease, opacity 400ms ease;
}

.donation-card-four__image img {
  transition: 0.5s;
  display: block;
  width: 100%;
  border-radius: 20px;
}

.donation-card-four:hover .donation-card-four__image::before,
.donation-card-four:hover .donation-card-four__image::after {
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}

.donation-card-four:hover .donation-card-four__image img {
  transform: scale(1.1);
}

.donation-card-four__category {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--arafa-white, #fff);
  border-radius: 100px;
  padding: 6.5px 11px;
  font-size: 14px;
  color: var(--arafa-orange, #E76100);
  font-weight: 500;
  line-height: 1.142;
  text-transform: capitalize;
  z-index: 11;
  transition: all 0.4s ease-in-out;
}

.donation-card-four:hover .donation-card-four__category {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-orange, #E76100);
}

.donation-card-four__content {
  position: relative;
  z-index: 11;
}

.donation-card-four__show {
  padding: 24px 30px 30px;
  transition-timing-function: ease-in-out;
  transition-duration: 400ms;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(1);
}

@media (max-width: 1199px) {
  .donation-card-four__show {
    padding: 24px 25px 25px;
  }
}

.donation-card-four:hover .donation-card-four__show {
  transform: scaleY(0);
}

.donation-card-four__title {
  margin-bottom: 10px;
  font-family: var(--arafa-heading-font2, "Castoro", serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.46;
  letter-spacing: -0.04em;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .donation-card-four__title {
    font-size: 22px;
  }
}

.donation-card-four__title:hover {
  color: var(--arafa-orange, #E76100);
}

.donation-card-four__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.donation-card-four__title a:hover {
  background-size: 100% 1px;
}

.donation-card-four__text {
  margin-bottom: 56px;
  text-transform: capitalize;
}

.donation-card-four__progress__bottom {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.donation-card-four__progress__title {
  font-size: 12px;
  color: var(--arafa-text, #757277);
  font-weight: 600;
  line-height: 14px;
  text-transform: capitalize;
  margin-bottom: 0;
}

.donation-card-four__progress__title span {
  color: inherit;
}

.donation-card-four .progress-box__number {
  left: 0;
  right: auto;
  font-size: 24px;
  color: var(--arafa-orange, #E76100);
  font-weight: 800;
  bottom: calc(100% + 5px);
}

.donation-card-four .progress-box__bar {
  border-color: var(--arafa-orange, #E76100);
}

.donation-card-four .progress-box__bar__inner {
  background-color: var(--arafa-orange, #E76100);
}

.donation-card-four .progress-box__bar__inner::before,
.donation-card-four .progress-box__bar__inner::after {
  display: none;
}

.donation-card-four__hover {
  padding: 24px 30px 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--arafa-white, #fff);
  border-radius: 0 0 20px 20px;
  z-index: 1;
  transition-timing-function: ease-in-out;
  transition-duration: 400ms;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
}

@media (max-width: 1199px) {
  .donation-card-four__hover {
    padding: 24px 25px 25px;
  }
}

.donation-card-four__hover .donation-card-four__title {
  margin-bottom: 18px;
}

.donation-card-four:hover .donation-card-four__hover {
  transform: scaleY(1);
}

.donation-card-four__btn {
  padding: 10px 22px;
  margin-bottom: 54px;
}

.donation-card-five {
  position: relative;
  background-color: var(--arafa-gray4);
  border-radius: 20px;
}

.donation-card-five__image {
  position: relative;
  z-index: 11;
  overflow: hidden;
  border-radius: 20px;
}

.donation-card-five__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-80%);
  width: 100%;
  height: 50%;
  border-radius: 20px 20px 0 0;
  background-color: RGBA(var(--arafa-dark2-rgb, 32, 12, 42), 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: transform 400ms ease, visibility 400ms ease, opacity 400ms ease;
}

.donation-card-five__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(80%);
  width: 100%;
  height: 50%;
  border-radius: 0 0 20px 20px;
  background-color: RGBA(var(--arafa-dark2-rgb, 32, 12, 42), 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: transform 400ms ease, visibility 400ms ease, opacity 400ms ease;
}

.donation-card-five__image img {
  transition: 0.5s;
  display: block;
  width: 100%;
  border-radius: 20px;
}

.donation-card-five:hover .donation-card-five__image::before,
.donation-card-five:hover .donation-card-five__image::after {
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}

.donation-card-five:hover .donation-card-five__image img {
  transform: scale(1.1);
}

.donation-card-five__category {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--arafa-white, #fff);
  border-radius: 100px;
  padding: 6.5px 11px;
  font-size: 14px;
  color: var(--arafa-brown);
  font-weight: 500;
  line-height: 1.142;
  text-transform: capitalize;
  z-index: 11;
  transition: all 0.4s ease-in-out;
}

.donation-card-five:hover .donation-card-five__category {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-brown);
}

.donation-card-five__btn {
  position: absolute;
  left: 30px;
  bottom: 0;
  padding: 16.5px 28.5px 14.5px;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  color: var(--arafa-bramble);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  background-color: var(--arafa-white, #fff);
  border-radius: 10px 10px 0px 0px;
  z-index: 11;
}

@media (max-width: 1199px) {
  .donation-card-five__btn {
    padding: 14px 25px 12px;
    font-size: 15px;
  }
}

.donation-card-five__btn:hover {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-bramble);
}

.donation-card-five__content {
  padding: 24px 30px 30px;
  position: relative;
  z-index: 11;
}

@media (max-width: 1199px) {
  .donation-card-five__content {
    padding: 24px 25px 25px;
  }
}

.donation-card-five__title {
  margin-bottom: 10px;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}

.donation-card-five__title:hover {
  color: var(--arafa-bramble);
}

.donation-card-five__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.donation-card-five__title a:hover {
  background-size: 100% 1px;
}

.donation-card-five__text {
  margin-bottom: 56px;
  text-transform: capitalize;
}

.donation-card-five__progress__bottom {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.donation-card-five__progress__title {
  font-size: 12px;
  color: var(--arafa-text, #757277);
  font-weight: 600;
  line-height: 14px;
  text-transform: capitalize;
  margin-bottom: 0;
}

.donation-card-five__progress__title span {
  color: inherit;
}

.donation-card-five .progress-box__number {
  left: 0;
  right: auto;
  font-size: 24px;
  color: var(--arafa-brown2);
  font-weight: 800;
  bottom: calc(100% + 5px);
}

.donation-card-five .progress-box__bar {
  border-color: var(--arafa-brown2);
}

.donation-card-five .progress-box__bar__inner {
  background-color: var(--arafa-brown2);
}

.donation-card-five .progress-box__bar__inner::before,
.donation-card-five .progress-box__bar__inner::after {
  display: none;
}

.video-one {
  padding: 192px 0;
  position: relative;
}

@media (max-width: 767px) {
  .video-one {
    padding: 115px 0;
  }
}

.video-one__bg {
  position: relative;
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.video-one__bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: RGBA(var(--arafa-base-rgb, 53, 28, 66), 0.8);
}

.video-one .container {
  position: relative;
  z-index: 2;
}

.video-one__title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  font-size: 150px;
  text-align: center;
  line-height: 0.666;
  letter-spacing: -6px;
  text-transform: capitalize;
  color: RGBA(var(--arafa-base-rgb, 53, 28, 66), 1);
  text-shadow: 1px 1px 0 var(--arafa-white, #fff), -1px -1px 0 var(--arafa-white, #fff), 1px -1px 0 var(--arafa-white, #fff), -1px 1px 0 var(--arafa-white, #fff), 1px 1px 0 var(--arafa-white, #fff);
  z-index: 1;
}

.video-one__title__one {
  color: RGBA(var(--arafa-purple-rgb, 150, 89, 149), 1);
}

@media (max-width: 1199px) {
  .video-one__title {
    font-size: 126px;
  }
}

@media (max-width: 991px) {
  .video-one__title {
    font-size: 80px;
  }

  .video-one__title__two {
    color: RGBA(var(--arafa-purple-rgb, 150, 89, 149), 1);
  }
}

@media (max-width: 767px) {
  .video-one__title {
    display: none;
  }
}

.video-one__button {
  width: 231px;
  height: 231px;
  background-color: var(--arafa-purple, #965995);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media (max-width: 767px) {
  .video-one__button {
    width: 150px;
    height: 150px;
  }
}

.video-one__button::after {
  content: "";
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  position: absolute;
  top: -60px;
  left: -60px;
  border-radius: 50%;
  border: 1px dashed RGBA(var(--arafa-white-rgb, 255, 255, 255), 0.25);
  animation-duration: 1500ms;
  animation: rotated 10s infinite linear;
  transition: 500ms all ease;
  animation-play-state: running;
}

.video-one__button:hover::after {
  border-color: rgba(var(--arafa-secondary-rgb, 246, 212, 105), 0.7);
}

.video-one__button span {
  position: relative;
  z-index: 99;
  font-size: 65px;
  color: var(--arafa-secondary, #F6D469);
}

@media (max-width: 767px) {
  .video-one__button span {
    font-size: 35px;
  }
}

.video-one__button .video-button__ripple::before,
.video-one__button .video-button__ripple::after {
  box-shadow: 0 0 0 0 rgba(var(--arafa-secondary-rgb, 246, 212, 105), 0.6);
}

.video-two {
  position: relative;
  background-color: var(--arafa-white, #fff);
}

.video-two .container {
  position: relative;
  z-index: 1;
}

.video-two__image {
  position: relative;
  width: 100%;
  height: 530px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 408.000000"><g transform="translate(0.000000,408.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4473 4043 c-7 -2 -13 -9 -13 -14 0 -29 -169 -172 -230 -195 -8 -3 -23 -10 -32 -15 -10 -5 -43 -17 -75 -28 -262 -86 -567 -97 -973 -36 -661 99 -1005 94 -1239 -18 -87 -42 -157 -114 -206 -212 -22 -44 -41 -82 -42 -84 -1 -2 -71 -3 -155 -2 -113 2 -157 -1 -170 -11 -11 -8 -21 -38 -27 -78 -11 -76 -25 -115 -68 -191 -31 -54 -127 -152 -167 -170 -12 -5 -28 -13 -36 -17 -51 -29 -74 -37 -150 -52 l-85 -16 -5 -99 c-6 -110 -7 -112 -88 -114 -43 -1 -137 -48 -211 -105 -52 -41 -161 -156 -186 -198 -71 -120 -168 -238 -260 -316 l-50 -43 40 -32 c72 -58 145 -140 213 -242 122 -184 232 -291 361 -355 33 -17 75 -30 93 -31 81 -2 82 -4 88 -114 l5 -99 85 -16 c76 -15 99 -23 150 -52 8 -4 26 -13 39 -18 37 -16 154 -141 177 -191 39 -81 53 -123 59 -182 5 -42 11 -60 26 -68 12 -6 80 -9 170 -8 82 1 151 0 152 -2 1 -2 20 -40 42 -84 154 -309 523 -368 1445 -230 272 41 499 50 685 26 287 -36 470 -117 602 -267 36 -40 54 -53 66 -48 9 3 17 10 17 15 0 29 169 172 230 195 8 3 23 10 32 15 10 5 43 17 75 28 262 86 566 97 973 36 570 -85 872 -92 1115 -28 159 42 262 123 330 258 22 44 41 82 42 84 1 2 70 3 152 2 90 -1 158 2 170 8 15 8 21 26 26 68 6 59 20 101 59 182 23 50 140 175 177 191 13 5 31 14 39 18 51 29 74 37 150 52 l85 16 5 99 c6 110 7 112 88 114 43 1 137 48 211 105 52 41 161 156 186 198 71 120 168 238 260 316 l50 43 -40 31 c-69 55 -143 140 -217 248 -89 132 -164 218 -239 276 -74 57 -168 104 -211 105 -81 2 -82 4 -88 114 l-5 99 -85 16 c-76 15 -99 23 -150 52 -8 4 -24 12 -36 17 -40 18 -136 116 -167 170 -43 76 -57 114 -69 191 -6 38 -17 70 -27 78 -12 10 -56 13 -169 11 -84 -1 -154 0 -155 2 -1 2 -20 40 -42 84 -154 309 -523 368 -1445 230 -406 -61 -713 -50 -970 35 -123 41 -244 120 -321 210 -23 27 -45 50 -48 49 -3 0 -12 -3 -18 -6z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 408.000000"><g transform="translate(0.000000,408.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4473 4043 c-7 -2 -13 -9 -13 -14 0 -29 -169 -172 -230 -195 -8 -3 -23 -10 -32 -15 -10 -5 -43 -17 -75 -28 -262 -86 -567 -97 -973 -36 -661 99 -1005 94 -1239 -18 -87 -42 -157 -114 -206 -212 -22 -44 -41 -82 -42 -84 -1 -2 -71 -3 -155 -2 -113 2 -157 -1 -170 -11 -11 -8 -21 -38 -27 -78 -11 -76 -25 -115 -68 -191 -31 -54 -127 -152 -167 -170 -12 -5 -28 -13 -36 -17 -51 -29 -74 -37 -150 -52 l-85 -16 -5 -99 c-6 -110 -7 -112 -88 -114 -43 -1 -137 -48 -211 -105 -52 -41 -161 -156 -186 -198 -71 -120 -168 -238 -260 -316 l-50 -43 40 -32 c72 -58 145 -140 213 -242 122 -184 232 -291 361 -355 33 -17 75 -30 93 -31 81 -2 82 -4 88 -114 l5 -99 85 -16 c76 -15 99 -23 150 -52 8 -4 26 -13 39 -18 37 -16 154 -141 177 -191 39 -81 53 -123 59 -182 5 -42 11 -60 26 -68 12 -6 80 -9 170 -8 82 1 151 0 152 -2 1 -2 20 -40 42 -84 154 -309 523 -368 1445 -230 272 41 499 50 685 26 287 -36 470 -117 602 -267 36 -40 54 -53 66 -48 9 3 17 10 17 15 0 29 169 172 230 195 8 3 23 10 32 15 10 5 43 17 75 28 262 86 566 97 973 36 570 -85 872 -92 1115 -28 159 42 262 123 330 258 22 44 41 82 42 84 1 2 70 3 152 2 90 -1 158 2 170 8 15 8 21 26 26 68 6 59 20 101 59 182 23 50 140 175 177 191 13 5 31 14 39 18 51 29 74 37 150 52 l85 16 5 99 c6 110 7 112 88 114 43 1 137 48 211 105 52 41 161 156 186 198 71 120 168 238 260 316 l50 43 -40 31 c-69 55 -143 140 -217 248 -89 132 -164 218 -239 276 -74 57 -168 104 -211 105 -81 2 -82 4 -88 114 l-5 99 -85 16 c-76 15 -99 23 -150 52 -8 4 -24 12 -36 17 -40 18 -136 116 -167 170 -43 76 -57 114 -69 191 -6 38 -17 70 -27 78 -12 10 -56 13 -169 11 -84 -1 -154 0 -155 2 -1 2 -20 40 -42 84 -154 309 -523 368 -1445 230 -406 -61 -713 -50 -970 35 -123 41 -244 120 -321 210 -23 27 -45 50 -48 49 -3 0 -12 -3 -18 -6z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background: linear-gradient(90deg, var(--arafa-brown2) 0%, rgba(var(--arafa-brown2-rgb), 0.2) 100%);
}

@media (max-width: 1199px) {
  .video-two__image {
    height: 420px;
  }
}

@media (max-width: 991px) {
  .video-two__image {
    height: 310px;
  }
}

.video-two__image__inner {
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 402.000000"><g transform="translate(0.000000,402.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4475 3982 c-5 -4 -27 -28 -47 -54 -54 -66 -134 -122 -248 -171 -227 -97 -609 -121 -1000 -62 -496 74 -793 92 -1005 60 -276 -43 -396 -119 -486 -312 l-29 -63 -166 0 c-122 0 -166 -3 -169 -12 -3 -7 -9 -40 -14 -73 -5 -33 -15 -76 -22 -95 -21 -55 -80 -141 -130 -190 -72 -70 -216 -135 -314 -142 l-40 -3 -5 -100 -5 -100 -45 -6 c-48 -6 -125 -30 -162 -51 -91 -52 -205 -159 -274 -259 -110 -157 -186 -249 -243 -294 -34 -27 -61 -51 -61 -55 0 -4 27 -28 61 -55 57 -45 133 -137 243 -294 69 -100 183 -207 274 -259 37 -21 114 -45 162 -51 l45 -6 5 -100 5 -100 40 -3 c98 -7 242 -72 314 -142 50 -49 109 -135 130 -190 7 -19 17 -62 22 -95 5 -33 11 -66 14 -72 3 -10 47 -13 169 -13 l166 0 29 -63 c33 -70 93 -155 131 -185 38 -30 138 -78 200 -95 239 -70 553 -62 1160 28 364 54 668 42 928 -36 34 -10 70 -23 80 -28 9 -5 37 -19 62 -31 70 -35 146 -96 182 -145 51 -69 65 -69 116 0 36 49 112 110 182 145 25 12 53 26 62 31 99 50 389 99 583 99 93 0 307 -18 425 -35 611 -90 915 -98 1160 -28 164 46 258 126 331 280 l29 63 166 0 c122 0 166 3 169 13 3 6 9 39 14 72 5 33 15 76 22 95 21 55 80 141 130 190 72 70 216 135 314 142 l40 3 5 100 5 100 45 6 c48 6 125 30 162 51 91 52 205 159 274 259 110 157 186 249 243 294 34 27 61 51 61 55 0 3 -29 29 -64 58 -58 46 -130 134 -250 306 -61 87 -179 195 -264 244 -37 21 -114 45 -162 51 l-45 6 -5 100 -5 100 -55 6 c-155 17 -294 104 -380 239 -44 69 -60 109 -71 185 -5 33 -11 66 -14 73 -3 9 -47 12 -169 12 l-165 0 -27 58 c-60 127 -117 190 -217 239 -240 118 -571 123 -1277 18 -124 -18 -334 -35 -435 -35 -192 1 -478 50 -571 98 -11 5 -39 20 -64 32 -70 36 -137 88 -178 138 -36 46 -52 62 -62 62 -3 0 -9 -4 -15 -8z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 402.000000"><g transform="translate(0.000000,402.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4475 3982 c-5 -4 -27 -28 -47 -54 -54 -66 -134 -122 -248 -171 -227 -97 -609 -121 -1000 -62 -496 74 -793 92 -1005 60 -276 -43 -396 -119 -486 -312 l-29 -63 -166 0 c-122 0 -166 -3 -169 -12 -3 -7 -9 -40 -14 -73 -5 -33 -15 -76 -22 -95 -21 -55 -80 -141 -130 -190 -72 -70 -216 -135 -314 -142 l-40 -3 -5 -100 -5 -100 -45 -6 c-48 -6 -125 -30 -162 -51 -91 -52 -205 -159 -274 -259 -110 -157 -186 -249 -243 -294 -34 -27 -61 -51 -61 -55 0 -4 27 -28 61 -55 57 -45 133 -137 243 -294 69 -100 183 -207 274 -259 37 -21 114 -45 162 -51 l45 -6 5 -100 5 -100 40 -3 c98 -7 242 -72 314 -142 50 -49 109 -135 130 -190 7 -19 17 -62 22 -95 5 -33 11 -66 14 -72 3 -10 47 -13 169 -13 l166 0 29 -63 c33 -70 93 -155 131 -185 38 -30 138 -78 200 -95 239 -70 553 -62 1160 28 364 54 668 42 928 -36 34 -10 70 -23 80 -28 9 -5 37 -19 62 -31 70 -35 146 -96 182 -145 51 -69 65 -69 116 0 36 49 112 110 182 145 25 12 53 26 62 31 99 50 389 99 583 99 93 0 307 -18 425 -35 611 -90 915 -98 1160 -28 164 46 258 126 331 280 l29 63 166 0 c122 0 166 3 169 13 3 6 9 39 14 72 5 33 15 76 22 95 21 55 80 141 130 190 72 70 216 135 314 142 l40 3 5 100 5 100 45 6 c48 6 125 30 162 51 91 52 205 159 274 259 110 157 186 249 243 294 34 27 61 51 61 55 0 3 -29 29 -64 58 -58 46 -130 134 -250 306 -61 87 -179 195 -264 244 -37 21 -114 45 -162 51 l-45 6 -5 100 -5 100 -55 6 c-155 17 -294 104 -380 239 -44 69 -60 109 -71 185 -5 33 -11 66 -14 73 -3 9 -47 12 -169 12 l-165 0 -27 58 c-60 127 -117 190 -217 239 -240 118 -571 123 -1277 18 -124 -18 -334 -35 -435 -35 -192 1 -478 50 -571 98 -11 5 -39 20 -64 32 -70 36 -137 88 -178 138 -36 46 -52 62 -62 62 -3 0 -9 -4 -15 -8z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.video-two__image__inner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.video-two__button {
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 81px;
  height: 81px;
  background-color: RGBA(var(--arafa-white-rgb, 255, 255, 255), 0.5);
  z-index: 2;
}

@media (max-width: 575px) {
  .video-two__button {
    width: 60px;
    height: 60px;
  }
}

.video-two__button span {
  font-size: 23px;
  color: var(--arafa-brown2);
}

@media (max-width: 575px) {
  .video-two__button span {
    font-size: 18px;
  }
}

.video-two__button:hover {
  background-color: var(--arafa-white, #fff);
}

.video-two__button:hover span {
  color: var(--arafa-brown2);
}

.video-two__button .video-button__ripple::before,
.video-two__button .video-button__ripple::after {
  box-shadow: 0 0 0 0 rgba(var(--arafa-white-rgb, 255, 255, 255), 0.25);
}

.video-two__dome {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 39px;
  bottom: 0;
  opacity: 0.25;
}

@media (max-width: 1799px) {
  .video-two__dome {
    max-width: 190px;
  }
}

@media (max-width: 1599px) {
  .video-two__dome {
    max-width: 150px;
  }
}

@media (max-width: 1199px) {
  .video-two__dome {
    max-width: 140px;
    left: 20px;
  }
}

@media (max-width: 991px) {
  .video-two__dome {
    max-width: 110px;
  }
}

@media (max-width: 767px) {
  .video-two__dome {
    max-width: 100px;
  }
}

@media (max-width: 575px) {
  .video-two__dome {
    max-width: 90px;
    left: 10px;
  }
}

.video-two__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 62px;
  bottom: 143px;
  animation: zump 2s infinite linear;
}

@media (max-width: 1599px) {
  .video-two__shape {
    right: 50px;
    bottom: 80px;
  }
}

@media (max-width: 1399px) {
  .video-two__shape {
    right: 50px;
    bottom: 50px;
  }
}

@media (max-width: 1199px) {
  .video-two__shape {
    bottom: 30px;
  }
}

@media (max-width: 991px) {
  .video-two__shape {
    right: 30px;
    bottom: 20px;
  }
}

@media (max-width: 767px) {
  .video-two__shape {
    max-width: 115px;
  }
}

@media (max-width: 575px) {
  .video-two__shape {
    max-width: 100px;
  }
}

.blog-card {
  position: relative;
  background-color: var(--arafa-white, #fff);
}

.blog-card__image {
  display: block;
  position: relative;
  overflow: hidden;
  width: calc(100% - 44px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  z-index: 11;
  margin-bottom: -115px;
}

.blog-card__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-80%);
  width: 100%;
  height: 50%;
  border-radius: 20px 20px 0 0;
  background-color: RGBA(var(--arafa-dark2-rgb, 32, 12, 42), 0.8);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: transform 500ms ease, visibility 500ms ease, opacity 500ms ease;
}

.blog-card__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(80%);
  width: 100%;
  height: 50%;
  border-radius: 0 0 20px 20px;
  background-color: RGBA(var(--arafa-dark2-rgb, 32, 12, 42), 0.8);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: transform 500ms ease, visibility 500ms ease, opacity 500ms ease;
}

.blog-card__image img {
  transition: 0.5s;
  display: block;
  width: 100%;
  border-radius: 20px;
}

.blog-card:hover .blog-card__image::before,
.blog-card:hover .blog-card__image::after {
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.1);
}

.blog-card__date {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--arafa-white, #fff);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 16px;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-base, #351C42);
  padding: 0 10px;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  text-transform: uppercase;
  font-weight: 700;
  flex-direction: column;
  gap: 3px;
  z-index: 11;
  transition: all 0.4s ease-in-out;
}

.blog-card__date::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0);
  opacity: 0;
  transition: transform 400ms ease, opacity 400ms ease;
  background-color: var(--arafa-secondary, #F6D469);
}

.blog-card__date span {
  font-size: 16px;
}

.blog-card:hover .blog-card__date::after {
  opacity: 1;
  transform: scale(1);
}

.blog-card__content {
  position: relative;
  text-align: center;
  padding: 146px 33px 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 500ms ease;
  border-radius: 20px;
  z-index: 1;
}

@media (max-width: 1199px) {
  .blog-card__content {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.blog-card__title {
  color: var(--arafa-base, #351C42);
  font-size: 24px;
  text-transform: capitalize;
  line-height: 1.375;
  margin-bottom: 29px;
  letter-spacing: var(--arafa-letter-space, -0.72px);
}

.blog-card__title:hover {
  color: var(--arafa-purple, #965995);
}

@media (max-width: 1199px) {
  .blog-card__title {
    font-size: 22px;
  }
}

.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__link {
  display: inline-block;
  font-size: 16px;
  color: var(--arafa-base, #351C42);
  font-weight: 700;
  text-align: center;
  height: 40px;
  max-width: 140px;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.blog-card__link::after {
  display: none;
}

.blog-card__link__front {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background-color: var(--arafa-secondary, #F6D469);
  perspective: 300px;
  transition: transform 500ms ease;
  transform-origin: top center;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

.blog-card__link:hover .blog-card__link__front {
  transform-origin: bottom center;
  transform: translateY(-100%) translateZ(150px) scaleY(0) rotateX(90deg);
}

.blog-card__link__back {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 700ms ease, top 700ms ease;
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: bottom center;
  width: 100%;
}

.blog-card__link__back span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background-color: var(--arafa-secondary, #F6D469);
  margin-right: 11px;
  transition: all 500ms ease;
}

.blog-card__link:hover .blog-card__link__back {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

.blog-card-two {
  position: relative;
  padding: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}

@media (max-width: 425px) {
  .blog-card-two {
    padding: 25px;
  }
}

.blog-card-two__image {
  display: flex;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .blog-card-two__image {
    flex-direction: column;
  }
}

.blog-card-two__image__link {
  position: relative;
  overflow: hidden;
  display: block;
  width: calc(100% - 64px);
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .blog-card-two__image__link {
    width: calc(100% - 55px);
  }
}

@media (max-width: 575px) {
  .blog-card-two__image__link {
    width: 100%;
  }
}

.blog-card-two__image__link::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--arafa-dark2-rgb, 32, 12, 42), 0.8);
  transition: all 700ms ease;
  transform: translateY(-110%);
  border-radius: 10px;
  z-index: 1;
}

.blog-card-two__image__link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 700ms ease;
}

.blog-card-two__image__icon {
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  z-index: 11;
  transition: all 700ms ease;
  transform: translate(-50%, 350%);
  width: 20px;
  height: 20px;
}

.blog-card-two__image__icon::after,
.blog-card-two__image__icon::before {
  width: 1px;
  height: 20px;
  position: absolute;
  background-color: var(--arafa-white, #fff);
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
  border-radius: 50px;
}

.blog-card-two__image__icon::after {
  width: 20px;
  height: 1px;
  border-radius: 50px;
}

.blog-card-two:hover .blog-card-two__image__link::after {
  transform: translateY(0);
}

.blog-card-two:hover .blog-card-two__image__link img {
  transform: scale(1.1) rotate(3deg);
}

.blog-card-two:hover .blog-card-two__image__icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.blog-card-two__date {
  padding-bottom: 26px;
  width: 64px;
  background-color: var(--arafa-white, #fff);
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1199px) {
  .blog-card-two__date {
    width: 55px;
  }
}

@media (max-width: 575px) {
  .blog-card-two__date {
    padding-bottom: 0;
    padding-right: 26px;
    width: 100%;
    flex-direction: row;
  }
}

.blog-card-two__date__text {
  font-size: 22px;
  line-height: 16px;
  text-transform: capitalize;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .blog-card-two__date__text {
    font-size: 18px;
  }
}

@media (max-width: 425px) {
  .blog-card-two__date__text {
    font-size: 16px;
  }
}

.blog-card-two__date__day {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--arafa-white, #fff);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--arafa-purple, #965995);
  transition: all 400ms ease;
}

@media (max-width: 1199px) {
  .blog-card-two__date__day {
    width: 55px;
    height: 55px;
  }
}

.blog-card-two__date__month {
  margin: 0;
  text-align: center;
  color: var(--arafa-purple, #965995);
  transition: all 500ms ease;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@media (max-width: 575px) {
  .blog-card-two__date__month {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
  }
}

.blog-card-two:hover .blog-card-two__date__day {
  color: var(--arafa-base, #351C42);
  background-color: var(--arafa-secondary, #F6D469);
}

.blog-card-two__title {
  position: relative;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.66px;
  text-transform: capitalize;
  margin-bottom: 30px;
  padding-bottom: 29px;
  transition: all 400ms ease;
  border-bottom: 1px solid var(--arafa-border-color, #D7D3CB);
}

@media (max-width: 1199px) {
  .blog-card-two__title {
    font-size: 20px;
  }
}

.blog-card-two__title:hover {
  color: var(--arafa-purple, #965995);
}

.blog-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card-two__title a:hover {
  background-size: 100% 1px;
}

.blog-card-two__text {
  text-transform: capitalize;
  margin-bottom: 30px;
}

.blog-card-two__link {
  display: inline-block;
}

.blog-card-two__link i {
  display: inline-block;
  font-size: 13px;
  color: var(--arafa-base, #351C42);
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--arafa-secondary, #F6D469);
  line-height: 42px;
  position: relative;
  z-index: 1;
}

.blog-card-two__link i::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0);
  opacity: 0;
  transition: transform 400ms ease, opacity 400ms ease;
  background-color: var(--arafa-base, #351C42);
}

.blog-card-two__link span {
  display: inline-block;
  margin-left: 6px;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  font-size: 16px;
  color: var(--arafa-base, #351C42);
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 400ms ease, opacity 400ms ease;
}

.blog-card-two__link:hover i {
  color: var(--arafa-secondary, #F6D469);
}

.blog-card-two__link:hover i::after {
  transform: scale(1);
  opacity: 1;
}

.blog-card-two__link:hover span {
  opacity: 1;
  transform: translateX(0px);
}

.blog-card-three {
  display: flex;
  align-items: center;
  position: relative;
  gap: 30px;
  background-color: var(--arafa-white, #fff);
  border-radius: 20px;
}

@media (max-width: 1199px) {
  .blog-card-three {
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .blog-card-three {
    padding: 0px;
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .blog-card-three {
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.blog-card-three__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}

.blog-card-three__image {
  display: block;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  width: 100%;
  max-width: 240px;
  border-radius: 20px;
}

.blog-card-three__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-80%);
  width: 100%;
  height: 50%;
  border-radius: 20px 20px 0 0;
  background-color: RGBA(var(--arafa-dark2-rgb, 32, 12, 42), 0.8);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: transform 500ms ease, visibility 500ms ease, opacity 500ms ease;
}

.blog-card-three__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(80%);
  width: 100%;
  height: 50%;
  border-radius: 0 0 20px 20px;
  background-color: RGBA(var(--arafa-dark2-rgb, 32, 12, 42), 0.8);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: transform 500ms ease, visibility 500ms ease, opacity 500ms ease;
}

.blog-card-three__image img {
  transition: 0.5s;
  display: block;
  width: 100%;
  border-radius: 20px;
}

.blog-card-three:hover .blog-card-three__image::before,
.blog-card-three:hover .blog-card-three__image::after {
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}

.blog-card-three:hover .blog-card-three__image img {
  transform: scale(1.1);
}

.blog-card-three__date {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--arafa-white2, #EFECE7);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 0 10px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  flex-direction: column;
  gap: 3px;
  z-index: 11;
  transition: all 0.4s ease-in-out;
}

.blog-card-three__date::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0);
  opacity: 0;
  transition: transform 400ms ease, opacity 400ms ease;
  background-color: var(--arafa-secondary, #F6D469);
}

.blog-card-three__date span {
  font-size: 16px;
  color: var(--arafa-base, #351C42);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-card-three:hover .blog-card-three__date::after {
  opacity: 1;
  transform: scale(1);
}

.blog-card-three__content {
  padding: 20px 30px 20px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .blog-card-three__content {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .blog-card-three__content {
    padding: 20px 30px 20px 0;
  }
}

@media (max-width: 767px) {
  .blog-card-three__content {
    padding: 0;
  }
}

.blog-card-three__category {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 21px;
}

.blog-card-three__category__link {
  padding: 6px 10.5px;
  background-color: var(--arafa-white, #fff);
  font-size: 16px;
  color: var(--arafa-purple, #965995);
  border-radius: 100px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.48px;
  text-transform: capitalize;
  transition: all 300ms ease;
}

.blog-card-three__category__link:hover {
  background-color: var(--arafa-purple, #965995);
  color: var(--arafa-white, #fff);
}

.blog-card-three__title {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.66px;
  text-transform: capitalize;
  margin-bottom: 41px;
}

.blog-card-three__title:hover {
  color: var(--arafa-purple, #965995);
}

@media (max-width: 575px) {
  .blog-card-three__title {
    font-size: 20px;
  }
}

.blog-card-three__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-three__title a:hover {
  background-size: 100% 1px;
}

.blog-card-three .arafa-btn {
  padding-top: 7px;
  padding-bottom: 7px;
  position: relative;
  left: -10px;
  background-color: transparent;
}

.blog-card-three .arafa-btn__icon-box {
  background-color: var(--arafa-secondary, #F6D469);
}

.blog-card-three .arafa-btn__icon-box__inner span {
  color: var(--arafa-base, #351C42);
}

.blog-card-three .arafa-btn:hover .arafa-btn__text {
  color: var(--arafa-base, #351C42);
}

.blog-card-four {
  background-color: var(--arafa-white, #fff);
  border-bottom: 1px solid var(--arafa-border-color, #D7D3CB);
  padding-bottom: 40px;
}

.blog-card-four .blog-card__image {
  width: 100%;
  margin-bottom: 33px;
}

.blog-card-four .blog-card__date {
  top: 30px;
  left: 30px;
}

@media (max-width: 575px) {
  .blog-card-four .blog-card__date {
    top: 20px;
    left: 20px;
  }
}

@media (max-width: 425px) {
  .blog-card-four .blog-card__date {
    top: 15px;
    left: 15px;
  }
}

.blog-card-four__content {
  padding: 0;
  border-radius: 0;
}

@media (max-width: 1199px) {
  .blog-card-four__content {
    padding-left: 0;
    padding-right: 0;
  }
}

.blog-card-four__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.blog-card-four__meta li a {
  border-radius: 100px;
  padding: 8.5px 14px 8.5px 8px;
  font-size: 16px;
  color: var(--arafa-gray, #888888);
  font-weight: 500;
  line-height: 1;
  border: 1px solid var(--arafa-border-color, #D7D3CB);
}

.blog-card-four__meta li a span {
  position: relative;
  top: 4.5px;
  margin-right: 7px;
  font-size: 24px;
  color: var(--arafa-purple, #965995);
  transition: all 0.4s ease-in-out;
}

.blog-card-four__meta li a:hover {
  color: var(--arafa-base, #351C42);
  border-color: var(--arafa-secondary, #F6D469);
  background-color: var(--arafa-secondary, #F6D469);
}

.blog-card-four__meta li a:hover span {
  color: var(--arafa-base, #351C42);
}

.blog-card-four .blog-card__title {
  text-align: left;
  line-height: 1.541;
  letter-spacing: normal;
  margin-bottom: 18px;
}

.blog-card-four__text {
  margin-bottom: 30px;
  text-transform: capitalize;
}

.blog-card-four .blog-card__link {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
}

.blog-card-five__image {
  position: relative;
  overflow: hidden;
  width: calc(100% - 31px);
  margin-left: auto;
}

.blog-card-five__image img {
  display: block;
  width: 100%;
  border-radius: 20px;
  transition: all 700ms ease;
}

.blog-card-five__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--arafa-black-rgb, 0, 0, 0), 0.6);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  border-radius: 20px;
  z-index: 1;
  transition: opacity 500ms ease, transform 500ms ease;
}

.blog-card-five__image__link::before,
.blog-card-five__image__link::after {
  content: "";
  width: 27px;
  height: 2px;
  background-color: var(--arafa-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-card-five__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card-five:hover .blog-card-five__image>a {
  opacity: 1;
}

.blog-card-five__content {
  position: relative;
  margin-top: -80px;
  padding: 29px 30px 29px;
  background-color: var(--arafa-gray2);
  border-radius: 20px 0 0 0;
  z-index: 2;
}

@media (max-width: 1199px) {
  .blog-card-five__content {
    margin-top: -40px;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.blog-card-five__meta {
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1;
}

.blog-card-five__meta li {
  font-size: 12px;
  color: var(--arafa-text, #757277);
  font-weight: 500;
  display: flex;
  align-items: center;
}

.blog-card-five__meta li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  transition: all 500ms ease;
}

.blog-card-five__meta li a span {
  font-size: 12px;
  color: var(--arafa-orange, #E76100);
}

.blog-card-five__meta li a:hover {
  color: var(--arafa-black2);
}

.blog-card-five__title {
  margin-bottom: 17px;
  font-family: var(--arafa-heading-font2, "Castoro", serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .blog-card-five__title {
    font-size: 20px;
  }
}

.blog-card-five__title:hover {
  color: var(--arafa-orange, #E76100);
}

.blog-card-five__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card-five__title a:hover {
  background-size: 100% 1px;
}

.blog-card-five__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card-five__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 51px;
  border: 1px solid rgba(var(--arafa-gray3-rgb), 0.25);
  overflow: hidden;
}

.blog-card-five__btn::after {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: 161%;
  left: -48%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: var(--arafa-orange, #E76100);
  z-index: -1;
  transition: all 500ms ease;
}

.blog-card-five__btn span {
  font-size: 12px;
  color: var(--arafa-base);
  transition: all 500ms ease;
}

.blog-card-five__btn:hover::after {
  top: 50%;
  left: 50%;
}

.blog-card-five__btn:hover span {
  color: var(--arafa-white, #fff);
}

.blog-card-five__date {
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  line-height: normal;
  font-weight: 700;
  min-width: 55px;
  min-height: 51px;
  z-index: 1;
}

.blog-card-five__date__day,
.blog-card-five__date__month {
  padding: 2.75px 6px 4.75px;
  width: 100%;
  display: block;
}

.blog-card-five__date__day {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-base);
}

.blog-card-five__date__month {
  color: var(--arafa-base);
  border-left: 1px solid rgba(var(--arafa-gray3-rgb), 0.25);
  border-right: 1px solid rgba(var(--arafa-gray3-rgb), 0.25);
  border-bottom: 1px solid rgba(var(--arafa-gray3-rgb), 0.25);
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
  display: none;
  background-color: var(--arafa-base, #351C42);
  padding: 4.6px 85px;
}

@media (max-width: 1599px) {
  .topbar-one {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 768px) {
  .topbar-one {
    display: block;
  }
}

.topbar-one__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.topbar-one__info {
  display: flex;
  align-items: center;
  margin: 0;
}

.topbar-one__info__item {
  display: flex;
  align-items: center;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  color: var(--arafa-text-gray, #AA96B4);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.187;
}

.topbar-one__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.topbar-one__info__item a:hover {
  background-size: 100% 1px;
}

.topbar-one__info__item a:hover {
  color: var(--arafa-secondary, #F6D469);
}

@media (max-width: 991px) {
  .topbar-one__info__item:last-child {
    display: none;
  }
}

.topbar-one__info__item+.topbar-one__info__item {
  margin-left: 32px;
}

.topbar-one__info__icon {
  font-size: 18px;
  color: var(--arafa-secondary, #F6D469);
  position: relative;
  top: -1px;
  margin-right: 15px;
}

.topbar-one__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.topbar-one__social a {
  color: var(--arafa-white, #fff);
}

.topbar-one__social a:hover {
  color: var(--arafa-secondary, #F6D469);
}

.topbar-one__social a+a::after {
  background-color: var(--arafa-dark4, #414141);
}

.topbar-two {
  background-color: var(--arafa-white, #fff);
  padding-top: 0;
  padding-bottom: 0;
}

.topbar-two .topbar-one__inner {
  padding-top: 31px;
  padding-bottom: 30px;
  justify-content: space-between;
}

.topbar-two .topbar-one__info__item {
  color: var(--arafa-base, #351C42);
  display: flex;
}

.topbar-two .topbar-one__info__icon {
  color: var(--arafa-purple, #965995);
}

.topbar-two .topbar-one__info__item a:hover {
  color: var(--arafa-purple, #965995);
}

@media (max-width: 1199px) {
  .topbar-two__logo {
    display: none;
  }
}

.topbar-two .topbar-one__right {
  display: flex;
}

.topbar-two .main-header__cart {
  margin: 0;
  margin-right: 66px;
}

@media (max-width: 1199px) {
  .topbar-two .main-header__cart {
    margin-right: 40px;
  }
}

.topbar-two .topbar-one__social a {
  color: var(--arafa-text, #757277);
}

.topbar-two .topbar-one__social a:hover {
  color: var(--arafa-purple, #965995);
}

.topbar-two .topbar-one__social a+a::after {
  background-color: var(--arafa-white3, #D7D3CB);
}

.topbar-four {
  padding: 0 85px;
  background-color: var(--arafa-black2);
}

@media (max-width: 1599px) {
  .topbar-four {
    padding-left: 0;
    padding-right: 0;
  }
}

.topbar-four .topbar-one__inner {
  padding-top: 19.55px;
  padding-bottom: 19.55px;
}

@media (max-width: 991px) {
  .topbar-four .topbar-one__info {
    width: 100%;
    justify-content: center;
  }
}

.topbar-four .topbar-one__info__item {
  display: flex;
  color: var(--arafa-white, #fff);
  line-height: 1.31;
}

.topbar-four .topbar-one__info__item a:hover {
  color: var(--arafa-orange, #E76100);
}

.topbar-four .topbar-one__info__icon {
  top: 0;
  font-size: 16px;
  color: var(--arafa-white);
  margin-right: 10px;
}

.topbar-four .topbar-one__social {
  gap: 17px;
}

@media (max-width: 991px) {
  .topbar-four .topbar-one__social {
    display: none;
  }
}

.topbar-four .topbar-one__social a {
  color: var(--arafa-text, #757277);
}

.topbar-four .topbar-one__social a:hover {
  color: var(--arafa-orange, #E76100);
}

.topbar-four .topbar-one__social a+a::after {
  display: none;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: relative;
  background-color: var(--arafa-white, #fff);
  z-index: 11;
  padding: 0 85px;
}

@media (max-width: 1599px) {
  .main-header {
    padding-left: 0;
    padding-right: 0;
  }
}

.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .main-header__inner {
    padding-top: 10px;
    padding-bottom: 24px;
  }
}

.main-header__logo {
  display: flex;
  align-items: center;
}

.main-header__logo img {
  max-width: 100%;
  width: 34%;
  position: absolute;
  height: auto;
  bottom: -12px;
}

.main-header__sidebar-btn {
  margin-left: 117px;
  padding: 0;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  background-color: transparent;
  color: var(--arafa-purple, #965995);
}

@media (max-width: 1850px) {
  .main-header__sidebar-btn {
    margin-left: 70px;
  }
}

@media (max-width: 1599px) {
  .main-header__sidebar-btn {
    margin-left: 50px;
  }
}

@media (max-width: 767px) {
  .main-header__sidebar-btn {
    display: none;
  }
}

.main-header__sidebar-btn span {
  font-size: 30px;
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.main-header__sidebar-btn:hover {
  color: var(--arafa-secondary, #F6D469);
}

.main-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 1199px) {
  .main-header__right {
    gap: 25px;
  }
}

@media (max-width: 1199px) and (max-width: 412px) {
  .main-header__right {
    gap: 20px;
  }
}

.main-header__cart {
  display: flex;
  align-items: center;
  margin-left: 83px;
  margin-right: 65px;
}

@media (max-width: 1850px) {
  .main-header__cart {
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media (max-width: 1699px) {
  .main-header__cart {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (max-width: 1599px) {
  .main-header__cart {
    margin-left: 40px;
    margin-right: 30px;
  }
}

@media (max-width: 1199px) {
  .main-header__cart {
    margin-left: 0;
    padding-left: 20px;
    border-left: 1px solid var(--arafa-border-color, #D7D3CB);
  }
}

@media (max-width: 1299px) {
  .main-header__cart {
    margin-right: 0;
  }
}

.main-header__cart__link {
  color: var(--arafa-base, #351C42);
}

.main-header__cart__link span {
  font-size: 24px;
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.main-header__cart__link:hover {
  color: var(--arafa-purple, #965995);
}

.main-header__cart__quantity {
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--arafa-base, #351C42);
  line-height: 1;
  display: flex;
  margin-left: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--arafa-white2, #EFECE7);
}

@media (max-width: 412px) {
  .main-header__cart__quantity {
    width: 32px;
    height: 32px;
  }
}

.main-header__btn {
  padding-top: 21px;
  padding-bottom: 21px;
  padding-right: 21px;
}

@media (max-width: 1350px) {
  .main-header__btn {
    display: none;
  }
}

.main-header__btn .arafa-btn__icon-box {
  width: 52px;
  height: 52px;
}

.main-header__btn .arafa-btn__icon-box__inner {
  width: 52px;
  height: 52px;
}

.main-header__btn .arafa-btn__text {
  margin-left: 56px;
}

.main-header-two {
  position: relative;
  background-color: var(--arafa-secondary, #F6D469);
}

.main-header-two__bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  mix-blend-mode: multiply;
}

.main-header-two .container-fluid {
  position: relative;
  z-index: 11;
}

.main-header-two__left {
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .main-header-two__logo {
    display: none;
  }
}

.main-header-two__sidebar-btn {
  padding: 0;
  border: 0;
  outline: 0;
  background-color: transparent;
  width: 27px;
}

@media (max-width: 1199px) {
  .main-header-two__sidebar-btn {
    display: none;
  }
}

.main-header-two__sidebar-btn__line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--arafa-base, #351C42);
  margin: 5px 0;
  transition: all 400ms ease;
}

.main-header-two__sidebar-btn__line:nth-child(2) {
  width: 20px;
}

.main-header-two__sidebar-btn:hover .main-header-two__sidebar-btn__line {
  width: 100%;
}

.main-header-two .main-header__right {
  display: flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .main-header-two .main-header__right {
    gap: 18px;
  }
}

.main-header-two .main-header__right .main-header-two__sidebar-btn {
  display: none;
}

@media (max-width: 1199px) {
  .main-header-two .main-header__right .main-header-two__sidebar-btn {
    display: block;
    margin-right: 18px;
    position: relative;
  }

  .main-header-two .main-header__right .main-header-two__sidebar-btn::after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--arafa-base, #351C42);
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
  }
}

.main-header-two .main-header__btn {
  display: inline-block !important;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
}

@media (max-width: 1199px) {
  .main-header-two .main-header__btn {
    display: none !important;
  }
}

.main-header-two .main-header__btn .arafa-btn__icon-box {
  left: 6px;
  width: 46px;
  height: 46px;
}

.main-header-two .main-header__btn:hover .arafa-btn__icon-box {
  width: calc(100% - 12px);
}

.main-header-two .main-header__btn .arafa-btn__icon-box__inner {
  width: 46px;
  height: 46px;
}

.main-header-two .main-header__btn .arafa-btn__text {
  margin-left: 42px;
}

.main-header-three {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  padding: 0 65px;
}

@media (max-width: 1599px) {
  .main-header-three {
    padding-left: 0;
    padding-right: 0;
  }
}

.main-header-three .home-showcase__inner {
  position: relative;
  top: -1px;
  border-radius: 0 0 20px 20px;
}

.main-header-three .main-header__inner {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}

@media (max-width: 1799px) {
  .main-header-three .main-header__inner {
    gap: 20px;
  }
}

@media (max-width: 1699px) {
  .main-header-three .main-header__inner {
    gap: 15px;
  }
}

@media (max-width: 1199px) {
  .main-header-three .main-header__inner {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 575px) {
  .main-header-three .main-header__inner {
    gap: 15px;
  }
}

.main-header-three__logo {
  padding: 30.63px 30px;
  width: 100%;
  max-width: 220px;
  background-color: var(--arafa-white, #fff);
  border-radius: 0 0 20px 20px;
}

@media (max-width: 1699px) {
  .main-header-three__logo {
    padding: 30.63px 17px;
    max-width: 191px;
  }
}

@media (max-width: 575px) {
  .main-header-three__logo {
    display: flex;
    align-items: center;
    max-width: 190px;
    padding: 15px;
    height: 80px;
  }
}

.main-header-three__logo img {
  max-width: 100%;
  height: auto;
}

.main-header-three .main-header__right {
  justify-content: space-between;
  flex-grow: 1;
  padding-left: 40px;
  padding-right: 30px;
  background-color: var(--arafa-white2, #EFECE7);
  border-radius: 0 0 20px 20px;
}

@media (max-width: 1799px) {
  .main-header-three .main-header__right {
    padding-left: 30px;
  }
}

@media (max-width: 1699px) {
  .main-header-three .main-header__right {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1399px) {
  .main-header-three .main-header__right {
    padding-left: 35px;
    padding-right: 35px;
  }
}

@media (max-width: 1199px) {
  .main-header-three .main-header__right {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

@media (max-width: 575px) {
  .main-header-three .main-header__right {
    padding: 15px;
    height: 80px;
  }
}

.main-header-three .main-header__right__right {
  display: flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .main-header-three .main-header__right__right {
    gap: 20px;
  }
}

.main-header-three .main-header__right__sidebar-btn::after {
  top: 0;
  transform: translateY(0);
}

@media (max-width: 450px) {
  .main-header-three .main-header__right__sidebar-btn {
    padding-right: 0;
    padding-left: 20px;
  }

  .main-header-three .main-header__right__sidebar-btn::after {
    right: 0;
    left: 0px;
  }
}

.main-header-three .main-header__cart {
  margin: 0;
  margin-right: 30px;
}

@media (max-width: 1699px) {
  .main-header-three .main-header__cart {
    margin-right: 20px;
  }
}

@media (max-width: 1299px) {
  .main-header-three .main-header__cart {
    margin-right: 0px;
  }
}

.main-header-three .main-header__cart__link {
  color: var(--arafa-purple, #965995);
}

.main-header-three .main-header__cart__link:hover {
  color: var(--arafa-base, #351C42);
}

.main-header-three .main-header__cart__quantity {
  background-color: var(--arafa-white3, #D7D3CB);
}

.main-header-three .main-header__btn {
  display: inline-block;
  position: relative;
  margin-right: 60px;
  padding: 11px 11px 11px 0;
}

@media (max-width: 1799px) {
  .main-header-three .main-header__btn {
    margin-right: 40px;
  }
}

@media (max-width: 1699px) {
  .main-header-three .main-header__btn {
    margin-right: 20px;
  }
}

@media (max-width: 1399px) {
  .main-header-three .main-header__btn {
    margin-right: 0;
  }
}

@media (max-width: 1299px) {
  .main-header-three .main-header__btn {
    display: none;
  }
}

.main-header-three .main-header__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  width: 1px;
  height: 100%;
  background-color: var(--arafa-white3, #D7D3CB);
}

@media (max-width: 1799px) {
  .main-header-three .main-header__btn::after {
    right: -20px;
  }
}

@media (max-width: 1699px) {
  .main-header-three .main-header__btn::after {
    right: -10px;
  }
}

@media (max-width: 1399px) {
  .main-header-three .main-header__btn::after {
    display: none;
  }
}

.main-header-three .main-header__btn .arafa-btn__icon-box {
  width: 30px;
  height: 30px;
}

.main-header-three .main-header__btn:hover .arafa-btn__icon-box {
  border-radius: 100px;
  width: calc(100% - 17px);
}

.main-header-three .main-header__btn .arafa-btn__icon-box__inner {
  width: 30px;
  height: 30px;
}

.main-header-three .main-header__btn .arafa-btn__icon-box__inner span {
  font-size: 12px;
  color: var(--arafa-white2, #EFECE7);
}

.main-header-three .main-header__btn .arafa-btn__text {
  margin-left: 50px;
}

.main-header-three__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1399px) {
  .main-header-three__social {
    display: none;
  }
}

.main-header-three__social__title {
  font-family: var(--arafa-special-font, "Schoolbell", cursive);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--arafa-purple, #965995);
  text-transform: capitalize;
}

@media (max-width: 1799px) {
  .main-header-three__social__title {
    display: none;
  }
}

.main-header-three .social-link-two a {
  color: var(--arafa-text, #757277);
  border-color: var(--arafa-border-color, #D7D3CB);
}

.main-header-three .social-link-two a:hover {
  color: var(--arafa-white, #fff);
  border-color: var(--arafa-purple, #965995);
}

.main-header-four .main-header__logo {
  display: block;
}

@media (max-width: 360px) {
  .main-header-four .main-header__logo {
    width: 130px;
  }
}

.main-header-four .main-header__right {
  gap: 0;
}

.main-header-four .main-header__search {
  margin-left: 60px;
  font-size: 16px;
  color: var(--arafa-black2);
}

@media (max-width: 1199px) {
  .main-header-four .main-header__search {
    margin-left: 30px;
  }
}

.main-header-four .main-header__search:hover {
  color: var(--arafa-orange, #E76100);
}

.main-header-four .main-header__cart {
  border: 0;
  padding: 0;
  display: block;
  margin: 0 0 0 40.56px;
}

@media (max-width: 1199px) {
  .main-header-four .main-header__cart {
    margin-left: 30px;
  }
}

.main-header-four .main-header__cart__link {
  color: var(--arafa-black2);
}

.main-header-four .main-header__cart__link:hover {
  color: var(--arafa-orange, #E76100);
}

.main-header-four .main-header__cart__link span {
  font-size: 16px;
}

.main-header-four .main-header__btn {
  margin-left: 60px;
  padding: 18.5px 30.55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: var(--arafa-orange, #E76100);
  font-size: 16px;
  color: var(--arafa-white, #fff);
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 20px;
}

@media (max-width: 1499px) {
  .main-header-four .main-header__btn {
    padding: 16px 25px;
    gap: 15px;
    font-size: 14px;
    margin-left: 40px;
  }
}

@media (max-width: 1399px) {
  .main-header-four .main-header__btn {
    display: none;
  }
}

.main-header-four .main-header__btn:hover {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-black2);
}

.main-header-four .main-header__btn__icon {
  font-size: 24px;
  color: inherit;
}

@media (max-width: 1499px) {
  .main-header-four .main-header__btn__icon {
    font-size: 18px;
  }
}

.main-header-five {
  width: 100%;
  position: relative;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
}

@media (max-width: 1599px) {
  .main-header-five {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 767px) {
  .main-header-five {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .main-header-five {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 430px) {
  .main-header-five {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 360px) {
  .main-header-five {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.main-header-five .main-header__bg {
  width: calc(100% - 64px);
  height: 85%;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

@media (max-width: 1599px) {
  .main-header-five .main-header__bg {
    width: calc(100% - 10px);
  }
}

.main-header-five .main-header__logo {
  display: block;
}

@media (max-width: 360px) {
  .main-header-five .main-header__logo {
    width: 130px;
  }
}

.main-header-five .main-header__nav {
  margin-right: 222px;
}

@media (max-width: 1799px) {
  .main-header-five .main-header__nav {
    margin-right: -26px;
  }
}

@media (max-width: 1599px) {
  .main-header-five .main-header__nav {
    margin-right: 10px;
  }
}

.main-header-five .main-header__search {
  margin: 0;
}

@media (max-width: 1199px) {
  .main-header-five .main-header__search {
    margin-left: 30px;
  }
}

.main-header-five .main-header__search:hover,
.main-header-five .main-header__cart__link:hover {
  color: var(--arafa-brown);
}

.main-header-five__btn {
  margin-left: 60px;
  padding-top: 21px;
  padding-bottom: 21px;
  padding-right: 21px;
}

@media (max-width: 1799px) {
  .main-header-five__btn {
    margin-left: 40px;
  }
}

@media (max-width: 1599px) {
  .main-header-five__btn {
    padding: 16px 22px 16px 19px;
  }
}

@media (max-width: 1350px) {
  .main-header-five__btn {
    display: none;
  }
}

.main-header-five__btn .arafa-btn__icon-box {
  width: 52px;
  height: 52px;
}

@media (max-width: 1599px) {
  .main-header-five__btn .arafa-btn__icon-box {
    width: 40px;
    height: 40px;
  }
}

.main-header-five__btn:hover .arafa-btn__icon-box {
  width: calc(100% - 20px);
}

@media (max-width: 1599px) {
  .main-header-five__btn:hover .arafa-btn__icon-box {
    width: calc(100% - 18px);
  }
}

.main-header-five__btn .arafa-btn__icon-box__inner {
  width: 52px;
  height: 52px;
}

@media (max-width: 1599px) {
  .main-header-five__btn .arafa-btn__icon-box__inner {
    width: 40px;
    height: 40px;
  }

  .main-header-five__btn .arafa-btn__icon-box__inner span.icon-donate {
    font-size: 14px;
  }
}

.main-header-five__btn .arafa-btn__text {
  margin-left: 56px;
  text-transform: uppercase;
}

@media (max-width: 1599px) {
  .main-header-five__btn .arafa-btn__text {
    margin-left: 40px;
  }
}

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

.sticky-header--cloned.sticky-header--three {
  background-color: transparent;
  box-shadow: 0px 0px 0px transparent;
}

.sticky-header--cloned.sticky-header--three .main-header-three__logo {
  box-shadow: 0px 3px 18px rgba(var(--arafa-dark-rgb, 36, 16, 47), 0.07);
  padding-top: 26px;
  padding-bottom: 26px;
}

.sticky-header--cloned.sticky-header--three .main-header__right {
  box-shadow: 0px 3px 18px rgba(var(--arafa-dark-rgb, 36, 16, 47), 0.07);
}

.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}

.sticky-header--cloned .main-menu .main-menu__list>li,
.sticky-header--cloned .main-menu-two .main-menu__list>li {
  padding-top: 22px;
  padding-bottom: 36px;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}

@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}

.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--arafa-dark, #24102F);
}

.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}

header.main-header.main-header-four.main-header-five.sticky-header.sticky-header--five.sticky-header--normal.sticky-header--cloned.active .logo {
  position: absolute;
  width: 25%;
  bottom: 0px;
}

.main-menu,
.main-menu-two {
  /* after third level no menu */
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.main-menu-two .main-menu__list,
.main-menu-two .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,
  .main-menu-two .main-menu__list,
  .main-menu-two .main-menu__list ul {
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.main-menu-two .main-menu__list>li {
  padding-top: 51px;
  padding-bottom: 51px;
  position: relative;
}

.main-menu .main-menu__list>li.dropdown>a,
.main-menu-two .main-menu__list>li.dropdown>a {
  position: relative;
}

.main-menu--two .main-menu__list>li,
.main-menu-two--two .main-menu__list>li {
  padding-top: 23.5px;
  padding-bottom: 23.5px;
}

.main-menu--three .main-menu__list>li,
.main-menu-two--three .main-menu__list>li {
  padding-top: 41px;
  padding-bottom: 41px;
}

.main-menu--four .main-menu__list>li,
.main-menu-two--four .main-menu__list>li {
  padding-top: 48.5px;
  padding-bottom: 48.5px;
}

.main-menu--five .main-menu__list>li,
.main-menu-two--five .main-menu__list>li {
  padding-top: 36px;
  padding-bottom: 36px;
}

.main-menu .main-menu__list>li+li,
.main-menu-two .main-menu__list>li+li {
  margin-left: 43px;
}

@media (max-width: 1599px) {

  .main-menu .main-menu__list>li+li,
  .main-menu-two .main-menu__list>li+li {
    margin-left: 40px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {

  .main-menu .main-menu__list>li+li,
  .main-menu-two .main-menu__list>li+li {
    margin-left: 35px;
  }
}

@media (max-width: 1699px) {

  .main-menu--three .main-menu__list>li+li,
  .main-menu-two--three .main-menu__list>li+li {
    margin-left: 30px;
  }
}

@media (max-width: 1399px) {

  .main-menu--three .main-menu__list>li+li,
  .main-menu-two--three .main-menu__list>li+li {
    margin-left: 37px;
  }
}

.main-menu--four .main-menu__list>li+li,
.main-menu-two--four .main-menu__list>li+li {
  margin-left: 42px;
}

@media (max-width: 1599px) {

  .main-menu--four .main-menu__list>li+li,
  .main-menu-two--four .main-menu__list>li+li {
    margin-left: 40px;
  }
}

@media (max-width: 1599px) {

  .main-menu--five .main-menu__list>li+li,
  .main-menu-two--five .main-menu__list>li+li {
    margin-left: 25px;
  }
}

@media (min-width: 1300px) and (max-width: 1399px) {

  .main-menu--five .main-menu__list>li+li,
  .main-menu-two--five .main-menu__list>li+li {
    margin-left: 30px;
  }
}

.main-menu .main-menu__list>li>a,
.main-menu-two .main-menu__list>li>a {
  font-size: 17px;
  display: flex;
  align-items: center;
  color: var(--arafa-base, #351C42);
  text-transform: capitalize;
  position: relative;
  transition: all 500ms ease;
  font-family: 'cardo';
  font-weight: 800;
}

@media (min-width: 1200px) and (max-width: 1299px) {

  .main-menu .main-menu__list>li>a,
  .main-menu-two .main-menu__list>li>a {
    font-size: 15px;
  }
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a {
  color: var(--arafa-secondary, #F6D469);
  text-shadow: 0 0 0.5px currentColor;
}

.main-menu--two .main-menu__list>li.current>a,
.main-menu--two .main-menu__list>li:hover>a,
.main-menu-two--two .main-menu__list>li.current>a,
.main-menu-two--two .main-menu__list>li:hover>a {
  color: var(--arafa-purple, #965995);
}

.main-menu--four .main-menu__list>li.current>a,
.main-menu--four .main-menu__list>li:hover>a,
.main-menu-two--four .main-menu__list>li.current>a,
.main-menu-two--four .main-menu__list>li:hover>a {
  color: var(--arafa-orange, #E76100);
}

.main-menu--five .main-menu__list>li.current>a,
.main-menu--five .main-menu__list>li:hover>a,
.main-menu-two--five .main-menu__list>li.current>a,
.main-menu-two--five .main-menu__list>li:hover>a {
  color: #008d89;
}

.main-menu .main-menu__list li ul,
.main-menu-two .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(--arafa-white, #fff);
  box-shadow: 0px 10px 60px 0px RGBA(var(--arafa-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 10px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list li:hover>ul,
.main-menu-two .main-menu__list li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>.megamenu,
.main-menu-two .main-menu__list>.megamenu {
  position: static;
}

.main-menu .main-menu__list>.megamenu>ul,
.main-menu-two .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,
.main-menu-two .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list li ul li>a,
.main-menu-two .main-menu__list li ul li>a {
  font-size: 14px;
  line-height: 26px;
  color: var(--arafa-base, #351C42);
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  font-weight: 700;
  display: flex;
  text-transform: capitalize;
  padding: 4px 6px;
  transition: 400ms;
  margin-bottom: 4px;
}

@media (min-width: 1200px) and (max-width: 1399px) {

  .main-menu .main-menu__list li ul li>a,
  .main-menu-two .main-menu__list li ul li>a {
    font-size: 13px;
  }
}

.main-menu .main-menu__list li ul li>a::after,
.main-menu-two .main-menu__list li ul li>a::after {
  position: absolute;
  right: 20px;
  top: 4px;
  border-radius: 0;
  font-size: 6px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  color: var(--arafa-base, #351C42);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}

.main-menu--four .main-menu__list li ul li>a::after,
.main-menu--five .main-menu__list li ul li>a::after,
.main-menu-two--four .main-menu__list li ul li>a::after,
.main-menu-two--five .main-menu__list li ul li>a::after {
  color: var(--arafa-white, #fff);
}

.main-menu .main-menu__list li ul li.current>a,
.main-menu .main-menu__list li ul li:hover>a,
.main-menu-two .main-menu__list li ul li.current>a,
.main-menu-two .main-menu__list li ul li:hover>a {
  background-color: var(--arafa-secondary, #F6D469);
  color: var(--arafa-base, #351C42);
}

.main-menu .main-menu__list li ul li.current>a::after,
.main-menu .main-menu__list li ul li:hover>a::after,
.main-menu-two .main-menu__list li ul li.current>a::after,
.main-menu-two .main-menu__list li ul li:hover>a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.main-menu--four .main-menu__list li ul li.current>a,
.main-menu--four .main-menu__list li ul li:hover>a,
.main-menu-two--four .main-menu__list li ul li.current>a,
.main-menu-two--four .main-menu__list li ul li:hover>a {
  background-color: var(--arafa-orange, #E76100);
  color: var(--arafa-white, #fff);
}

.main-menu--five .main-menu__list li ul li.current>a,
.main-menu--five .main-menu__list li ul li:hover>a,
.main-menu-two--five .main-menu__list li ul li.current>a,
.main-menu-two--five .main-menu__list li ul li:hover>a {
  background-color: #008d89;
  color: var(--arafa-white, #fff);
}

.main-menu .main-menu__list li ul li>ul,
.main-menu-two .main-menu__list li ul li>ul {
  top: 0;
  left: calc(100% + 20px);
}

.main-menu .main-menu__list li ul li>ul.right-align,
.main-menu-two .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,
.main-menu-two .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(--arafa-white, #fff);
  display: block !important;
  margin: 0;
}

.main-menu--five .main-menu__list>.megamenu.megamenu-clickable>ul {
  top: -20px !important;
}

.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(--arafa-base, #351C42);
}

@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}

.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--arafa-secondary, #F6D469);
}

.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(--arafa-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--arafa-dark3-rgb, 32, 12, 43), 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}

.demo-one__card:hover {
  transform: translateY(-10px);
}

.demo-one__title {
  margin: 0;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  color: var(--arafa-base, #351C42);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}

.demo-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.demo-one__title a:hover {
  background-size: 100% 1px;
}

.demo-one__image {
  position: relative;
  overflow: hidden;
}

.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(--arafa-dark-rgb, 36, 16, 47), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}

.demo-one .arafa-btn {
  padding: 10px 17px 10px 18px;
}

.demo-one .arafa-btn__icon-box {
  width: 30px;
  height: 30px;
}

.demo-one .arafa-btn__icon-box__inner {
  width: 30px;
  height: 30px;
}

.demo-one .arafa-btn__icon-box__inner span {
  font-size: 10px;
}

.demo-one .arafa-btn__text {
  font-size: 14px;
  margin-left: 28px;
}

.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}

.demo-one__title {
  padding-top: 20.5px;
  padding-bottom: 20.5px;
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__inner {
  padding: 40px 40px 21px;
  background-color: var(--arafa-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--arafa-dark3-rgb, 32, 12, 43), 0.07);
}

.home-showcase .demo-one__card {
  box-shadow: none;
}

.home-showcase .demo-one__btns {
  flex-direction: column;
}

.home-showcase .arafa-btn {
  padding: 10px 17px 10px 18px;
}

.home-showcase .arafa-btn__icon-box {
  width: 30px;
  height: 30px;
}

.home-showcase .arafa-btn__icon-box__inner {
  width: 30px;
  height: 30px;
}

.home-showcase .arafa-btn__icon-box__inner span {
  font-size: 10px;
}

.home-showcase .arafa-btn__text {
  font-size: 14px;
  margin-left: 28px;
}

.home-showcase .demo-one__title {
  padding: 0;
  font-size: 16px;
  margin-top: 15px;
  padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--arafa-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(--arafa-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: #97ffe8;
  opacity: 0.7;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background: linear-gradient(to right, #97ffe8, #d0fdf1);
  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: #000;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.mobile-nav__close:hover {
  color: var(--arafa-secondary, #F6D469);
}

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

.mobile-nav__content .main-menu__list li>a {
  display: flex;
  justify-content: space-between;
  line-height: 1.5;
  color: #000000;
  font-size: 16px;
  text-transform: capitalize;
  height: 36px;
  align-items: center;
  transition: 500ms;
  font-family: 'cardo';
  font-weight: 600;
}

.mobile-nav__content .main-menu__list li ul li a {
  font-size: 16px;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--arafa-secondary, #F6D469);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--arafa-secondary, #F6D469);
  border: none;
  outline: none;
  color: var(--arafa-base, #351C42);
  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: #000;
  color: var(--arafa-white, #fff);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: #000;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 20px;
}

.mobile-nav__social a:hover {
  color: var(--arafa-secondary, #F6D469);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: #000;
  font-size: 13px;
  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(--arafa-secondary, #F6D469);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--arafa-secondary, #F6D469);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--arafa-base, #351C42);
}

.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.8;
  cursor: url(../images/close.png), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}

.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  background-color: var(--arafa-white, #fff);
  font-size: 15px;
  color: var(--arafa-text, #757277);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
  transition: all 500ms ease;
}

.search-popup__form .arafa-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-align: center;
  color: var(--arafa-base, #351C42);
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--arafa-secondary, #F6D469);
}

.search-popup__form .arafa-btn:hover {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-base, #351C42);
}

.search-popup__form .arafa-btn span {
  position: relative;
  top: 2.5px;
}

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

.search-popup--two .arafa-btn {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-orange, #E76100);
}

.search-popup--two .arafa-btn:hover {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-black2);
}

.search-popup--three .arafa-btn {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-brown);
}

.search-popup--three .arafa-btn:hover {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-bramble);
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__control__input {
  padding: 0;
  border: none;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  height: 65px;
  background-color: var(--arafa-white2, #EFECE7);
  border-radius: 10px;
}

@media (max-width: 425px) {
  .form-one__control__input {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.form-one__control__input,
.form-one__control__input::placeholder {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--arafa-text, #757277);
  line-height: 1;
}

.form-one__control__input {
  color: var(--arafa-base, #351C42);
}

.form-one__control__message {
  padding-top: 25px;
  padding-bottom: 25px;
  height: 165px;
  margin-bottom: -9px;
}

.form-one__control .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
}

.form-one__control .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.form-one__control .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 65px;
  outline: none !important;
  border-radius: 100px;
  border: 0;
  background-color: var(--arafa-white, #fff) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-text, #757277) !important;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 65px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

@media (max-width: 425px) {
  .form-one__control .bootstrap-select>.dropdown-toggle {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.form-one__control .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 16px;
  color: var(--arafa-text, #757277);
}

@media (max-width: 425px) {
  .form-one__control .bootstrap-select>.dropdown-toggle:before {
    right: 20px;
  }
}

.form-one__control .bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid var(--arafa-border-color, #D7D3CB);
}

.form-one__control .bootstrap-select .dropdown-menu {
  border: none;
}

.form-one__control .bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 400;
  padding: 10px 30px;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-weight: normal;
  color: var(--arafa-base, #351C42);
  background-color: var(--arafa-white, #fff);
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.form-one__control .bootstrap-select .dropdown-menu>li:hover>a,
.form-one__control .bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--arafa-secondary, #F6D469);
  color: var(--arafa-base, #351C42);
  border-color: var(--arafa-secondary, #F6D469);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color: var(--arafa-base, #351C42);
  position: relative;
  padding-top: 122px;
  padding-bottom: 128px;
}

@media (max-width: 767px) {
  .page-header {
    padding-top: 102px;
    padding-bottom: 108px;
  }
}

@media (max-width: 425px) {
  .page-header {
    padding-top: 92px;
    padding-bottom: 98px;
  }
}

.page-header__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-header__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, RGBA(var(--arafa-base-rgb, 53, 28, 66), 0.8) 0%, RGBA(var(--arafa-base-rgb, 53, 28, 66), 0.8) 100%);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 50px;
  color: var(--arafa-white, #fff);
  line-height: 1.4;
  margin-bottom: 19px;
}

@media (max-width: 767px) {
  .page-header__title {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .page-header__title {
    font-size: 40px;
  }
}

@media (max-width: 425px) {
  .page-header__title {
    font-size: 35px;
  }
}

.arafa-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  margin-bottom: 0;
}

.arafa-breadcrumb li {
  font-size: 14px;
  color: var(--arafa-white, #fff);
  text-transform: capitalize;
  display: flex;
  align-items: center;
}

.arafa-breadcrumb li:not(:last-of-type)::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: relative;
  top: 0px;
  margin-left: 10px;
  margin-right: 10px;
}

.arafa-breadcrumb li i {
  position: relative;
  top: -1px;
  margin-right: 9px;
  font-size: 14px;
  color: var(--arafa-secondary, #F6D469);
}

.arafa-breadcrumb li span,
.arafa-breadcrumb li a {
  color: inherit;
  display: inline-flex;
  line-height: 1.5;
}

.arafa-breadcrumb li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.arafa-breadcrumb li a:hover {
  background-size: 100% 1px;
}

.arafa-breadcrumb li a:hover {
  color: var(--arafa-secondary, #F6D469);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
}

.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 440px;
  width: 100%;
}

.google-map__contact {
  overflow: hidden;
  background-color: var(--arafa-gray, #888888);
}

.contact-map {
  position: relative;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .contact-map {
    padding-bottom: 80px;
  }
}

.contact-map .container-fluid {
  padding-left: 0;
  padding-right: 0;
  max-width: 1654px;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  padding-top: 206px;
  padding-bottom: 100px;
  background-color: var(--arafa-white, #fff);
}

@media (max-width: 767px) {
  .client-carousel {
    padding-top: 186px;
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .client-carousel {
    padding-top: 156px;
    padding-bottom: 50px;
  }
}

.client-carousel__one {
  position: relative;
}

.client-carousel__one .owl-stage-outer {
  padding-top: 30px;
  padding-bottom: 30px;
}

.client-carousel__one .owl-nav {
  position: absolute;
  width: 100%;
  top: -116px;
  left: 0;
}

.client-carousel__one .owl-nav.disabled {
  display: flex !important;
}

.client-carousel__item {
  position: relative;
  transition: transform 500ms ease;
}

.client-carousel__item img {
  transition: transform 500ms ease;
}

.client-carousel__item__hover-img {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}

.client-carousel__item:hover .client-carousel__item__hover-img {
  opacity: 1;
}

.client-carousel__item:nth-child(1),
.client-carousel__item:nth-child(1) img {
  width: 86px;
  height: 87px;
}

.client-carousel__item:nth-child(2),
.client-carousel__item:nth-child(2) img {
  width: 85px;
  height: 86px;
}

.client-carousel__item:nth-child(3),
.client-carousel__item:nth-child(4),
.client-carousel__item:nth-child(3) img,
.client-carousel__item:nth-child(4) img {
  width: 80px;
  height: 79px;
}

.client-carousel__item:nth-child(5),
.client-carousel__item:nth-child(5) img {
  width: 87px;
  height: 84px;
}

.client-carousel__item:nth-child(6),
.client-carousel__item:nth-child(6) img {
  width: 83px;
  height: 84px;
}

@media (max-width: 1199px) {

  .client-carousel__item,
  .client-carousel__item img {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {

  .client-carousel__item,
  .client-carousel__item img {
    width: 70px !important;
    height: 70px !important;
  }
}

@media (max-width: 375px) {

  .client-carousel__item,
  .client-carousel__item img {
    width: 60px !important;
    height: 60px !important;
  }
}

@media (max-width: 359px) {

  .client-carousel__item,
  .client-carousel__item img {
    width: 70px !important;
    height: 70px !important;
  }
}

.client-carousel--home-4 .client-carousel__one .owl-nav button span:hover {
  background-color: var(--arafa-orange, #E76100);
}

.client-carousel--home-5 .client-carousel__one .owl-nav button span:hover {
  background-color: var(--arafa-brown2);
}

.client-carousel-two {
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
  background-color: var(--arafa-base, #351C42);
}

.client-carousel-two__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: multiply;
}

.client-carousel-two__carousel .owl-stage-outer {
  padding-top: 30px;
  padding-bottom: 30px;
}

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

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# 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 zumpBottom {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes rotated {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@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 slowXmove {

  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 smartMove {
  0% {
    width: 0;
  }

  15% {
    width: 100%;
  }

  85% {
    opacity: 1;
  }

  90% {
    width: 100%;
    opacity: 0;
  }

  100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes zumpX {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-30px);
  }
}

@keyframes zumpY {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-30px);
  }
}

@keyframes zumpXtwo {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(30px);
  }
}

@keyframes zump {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  50% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one__map {
  position: relative;
}

.contact-one__google__map iframe {
  border-radius: 20px;
  height: 717.98px !important;
}

.contact-one__info {
  padding: 30px 30px 28px;
  width: calc(100% - 96px);
  position: absolute;
  left: 50%;
  bottom: 58px;
  transform: translateX(-50%);
  background-color: var(--arafa-white, #fff);
  border-radius: 20px;
}

@media (max-width: 575px) {
  .contact-one__info {
    padding: 25px;
    width: calc(100% - 60px);
    bottom: 40px;
  }
}

@media (max-width: 375px) {
  .contact-one__info {
    width: calc(100% - 40px);
    bottom: 30px;
  }
}

.contact-one__info__item+.contact-one__info__item {
  margin-top: 28px;
}

.contact-one__info__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 450px) {
  .contact-one__info__item {
    flex-direction: column;
    text-align: center;
  }
}

.contact-one__info__icon {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--arafa-purple, #965995);
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.contact-one__info__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0);
  opacity: 0;
  transition: transform 400ms ease, opacity 400ms ease;
  background-color: var(--arafa-secondary, #F6D469);
}

.contact-one__info__icon span {
  font-size: 18px;
  color: var(--arafa-purple, #965995);
  transition: all 0.4s ease-in-out;
}

.contact-one__info__icon span.icon-envelope {
  font-size: 15px;
}

.contact-one__info__item:hover .contact-one__info__icon {
  border-color: transparent;
}

.contact-one__info__item:hover .contact-one__info__icon::after {
  transform: scale(1);
  opacity: 1;
}

.contact-one__info__item:hover .contact-one__info__icon span {
  color: var(--arafa-base, #351C42);
}

.contact-one__info__title {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 11px;
}

.contact-one__info__text {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-text, #757277);
  font-weight: 400;
  line-height: 1.562;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

.contact-one__info__text--link {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.contact-one__info__text--link:hover {
  background-size: 100% 1px;
}

.contact-one__info__text--link:hover {
  color: var(--arafa-base, #351C42);
}

.contact-one__form {
  position: relative;
  padding: 43px 40px 57px;
  background-color: var(--arafa-white2, #EFECE7);
  border-radius: 20px;
}

@media (max-width: 500px) {
  .contact-one__form {
    padding: 33px 30px 47px;
  }
}

@media (max-width: 375px) {
  .contact-one__form {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.contact-one__form__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: multiply;
  z-index: 1;
  border-radius: 20px;
}

.contact-one__form__inner {
  position: relative;
  z-index: 11;
}

.contact-one__form__inner .form-one__control__input {
  border-radius: 100px;
  background-color: var(--arafa-white, #fff);
}

.contact-one__form__inner .form-one__control__message {
  border-radius: 20px;
  height: 138px;
}

.contact-one__title {
  position: relative;
  z-index: 11;
  font-size: 24px;
  line-height: 1.333;
  text-transform: capitalize;
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
/* ******************* video banner ****************** */
.main-banner {
  position: relative;
  max-height: 100%;
  overflow: hidden;
  margin-bottom: -11px;
  bottom: 2px;
  margin-top: 0;
}

#bg-video {
  min-width: 100%;
  max-width: 100%;
  max-height: 650px;
  object-fit: cover;
}

#bg-video::-webkit-media-controls {
  display: none !important;
}

.video-overlay {
  position: absolute;
  background: linear-gradient(180deg, rgb(1 127 141 / 30%) 11.8%, rgb(126 156 166 / 0%) 103.8%);
  top: 0;
  left: 0;
  bottom: 7px;
  width: 100%;
}

.main-banner .caption {
  display: none;
}

.main-banner .caption h1 {
  color: #055b71;
  font-size: 30px;
  font-style: normal;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  font-family: "Bangers", system-ui;
  font-weight: 400;
  letter-spacing: 2px;
}

.main-banner .caption h5 {
  color: #010034;
  font-size: 45px;
  text-align: center;
  font-weight: 600;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #f5a425;
  font-weight: 900;
}

.main-banner .caption {
  position: absolute;
  width: 40%;
  left: 26%;
  top: 64%;
  transform: translate(-50%, -50%);
  background-color: #ffffffb0;
  padding: 25px 0px;
  display: block;
  border-radius: 12px;
}

@media screen and (max-width: 1180px) {
  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 58px;
  }
}

@media screen and (max-width: 767px) {
  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 36px;
  }
}

.frame-container iframe {
  width: 100%;
  height: 127.5vh;
}

.top-feature {
  position: relative;
  margin-top: -80px;
  z-index: 1;

}


.event-title h5 {
  font-family: 'Roboto Serif';
  font-weight: bold;
  font-size: 28px;
  color: black;
  word-wrap: break-word;
}



/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  position: relative;
}

.about-one--home .about-one__text-box__image img {
  border-radius: 100px;
}

.about-one__bg {
  position: relative;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: calc(50% - 15px);
  height: calc(100% - 260px);
  background-color: var(--arafa-white2, #EFECE7);
  z-index: -1;
  border-radius: 0px 1000px 1000px 0px;
}

@media (max-width: 1199px) {
  .about-one__bg {
    display: none;
  }
}

.about-one__bg__border {
  position: absolute;
  top: 0;
  left: -10px;
  width: calc(100% - 80px);
  height: 100%;
  border-radius: 0px 1000px 1000px 0px;
  border: 5px solid var(--arafa-secondary, #F6D469);
  animation: zumpX 1s infinite alternate;
}

.about-one__bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--arafa-white2, #EFECE7);
  mix-blend-mode: multiply;
  border-radius: 0px 1000px 1000px 0px;
}

.about-one .row {
  align-items: center;
}

.about-one__image {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: 64px;
  width: 464px;
  height: 464px;
}

@media (max-width: 1399px) {
  .about-one__image {
    margin-right: 50px;
  }
}

@media (max-width: 1199px) {
  .about-one__image {
    margin-left: 45px;
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .about-one__image {
    width: 380px;
    height: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 425px) {
  .about-one__image {
    width: 330px;
    height: 330px;
  }
}

@media (max-width: 375px) {
  .about-one__image {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 360px) {
  .about-one__image {
    width: 290px;
    height: 290px;
  }
}

.about-one__image__one {
  width: 464px;
  height: 464px;
  border-radius: 50%;
}

@media (max-width: 575px) {
  .about-one__image__one {
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 425px) {
  .about-one__image__one {
    width: 330px;
    height: 330px;
  }
}

@media (max-width: 375px) {
  .about-one__image__one {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 360px) {
  .about-one__image__one {
    width: 290px;
    height: 290px;
  }
}

.about-one__video {
  position: absolute;
  top: 24px;
  left: -42px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 575px) {
  .about-one__video {
    width: 100px;
    height: 100px;
    left: -10px;
  }
}

@media (max-width: 375px) {
  .about-one__video {
    width: 85px;
    height: 85px;
    left: 0px;
  }
}

.about-one__video__btn {
  background-color: rgba(var(--arafa-white-rgb, 255, 255, 255), 0.5);
  width: 67px;
  height: 67px;
}

.about-one__video__btn span {
  color: var(--arafa-purple, #965995);
  font-size: 18px;
}

.about-one__video__btn .video-button__ripple::before,
.about-one__video__btn .video-button__ripple::after {
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 0 rgba(var(--arafa-white-rgb, 255, 255, 255), 0.25);
}

.about-one__profile {
  position: absolute;
  bottom: 104px;
  right: -35px;
  padding: 17px 21px 17px 17px;
  border-radius: 1000px;
  background-color: var(--arafa-white, #fff);
  display: block;
}

@media (max-width: 1399px) {
  .about-one__profile {
    right: -20px;
  }
}

@media (max-width: 1199px) {
  .about-one__profile {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  }
}

@media (max-width: 575px) {
  .about-one__profile {
    padding: 12px 21px 12px 12px;
    bottom: 40px;
    right: -10px;
  }

  .about-one__profile .volunteer-profile__image {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 425px) {
  .about-one__profile {
    bottom: 30px;
  }
}

@media (max-width: 375px) {
  .about-one__profile {
    right: 0;
    bottom: 25px;
  }
}

.about-one__profile .volunteer-profile__inner {
  border: 0;
  padding: 0;
}

.about-one__content {
  margin-top: 2px;
}

.about-one .sec-title {
  margin-bottom: 34px;
}

.about-one .sec-title__tagline {
  margin-bottom: 23px;
}

.about-one__text-box {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 767px) {
  .about-one__text-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about-one__text-box__image {
  width: 170px;
  flex-shrink: 0;
}

.about-one__text-box__image img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.about-one__text {
  margin-bottom: 0;
}

.about-one__wrapper {
  margin: 29px 0 40px;
  padding: 30px 0 26px;
  border-top: 1px solid var(--arafa-white2, #EFECE7);
  border-bottom: 1px solid var(--arafa-white2, #EFECE7);
}

.about-one__donate {
  width: 100%;
}

.about-one__donate--one {
  max-width: 112px;
}

@media (max-width: 1199px) {
  .about-one__donate--one {
    max-width: 100%;
    text-align: center;
  }
}

.about-one__donate--two {
  max-width: 126px;
}

@media (max-width: 1199px) {
  .about-one__donate--two {
    max-width: 100%;
    text-align: center;
  }
}

.about-one__donate__icon {
  text-align: center;
  margin-bottom: 11px;
  transition: transform 400ms ease;
}

.about-one__donate__icon span {
  font-size: 40px;
  color: var(--arafa-purple, #965995);
  transition: all 0.4s ease-in-out;
}

.about-one__donate:hover .about-one__donate__icon {
  transform: scale(1.3);
}

.about-one__donate:hover .about-one__donate__icon span {
  transform: scale(1.5);
  color: var(--arafa-base, #351C42);
}

.about-one__donate__title {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  line-height: 1.3;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 9px;
}

.about-one__donate__text {
  text-align: center;
}

.about-one__donate__text span {
  font-size: 16px;
  color: var(--arafa-purple, #965995);
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
}

.about-one__hand {
  position: absolute;
  right: 0;
  bottom: 134px;
  z-index: -1;
  animation: slowXmove 6s ease infinite;
}

@media (max-width: 1680px) {
  .about-one__hand {
    width: 190px;
  }
}

@media (max-width: 1599px) {
  .about-one__hand {
    top: 10px;
    bottom: auto;
    width: 190px;
  }
}

@media (max-width: 767px) {
  .about-one__hand {
    display: none;
  }
}

.about-two {
  position: relative;
  background-color: var(--arafa-base, #351C42);
  overflow: hidden;
}

.about-two .container {
  position: relative;
  z-index: 11;
}

.about-two__image {
  position: relative;
  top: -3px;
}

.about-two__image__inner {
  margin-left: 4px;
  width: 100%;
  max-width: 463px;
  position: relative;
}

@media (max-width: 1199px) {
  .about-two__image__inner {
    max-width: 430px;
    margin-left: 0;
  }
}

.about-two__image__one {
  width: 100%;
}

.about-two__image__two {
  width: 217px;
  position: absolute;
  top: 0;
  right: -64px;
  animation: zump 3s infinite linear;
}

@media (max-width: 1199px) {
  .about-two__image__two {
    right: 0;
  }
}

@media (max-width: 991px) {
  .about-two__image__two {
    right: -64px;
  }
}

@media (max-width: 575px) {
  .about-two__image__two {
    right: 0;
  }
}

@media (max-width: 450px) {
  .about-two__image__two {
    width: 200px;
  }
}

@media (max-width: 425px) {
  .about-two__image__two {
    width: 170px;
  }
}

@media (max-width: 375px) {
  .about-two__image__two {
    width: 150px;
  }
}

@media (max-width: 360px) {
  .about-two__image__two {
    width: 130px;
  }
}

.about-two .sec-title {
  margin-bottom: 39px;
}

.about-two .sec-title__tagline {
  color: var(--arafa-white2, #EFECE7);
  margin-bottom: 23px;
}

.about-two .sec-title__tagline::before {
  background-color: var(--arafa-white2, #EFECE7);
}

.about-two .sec-title__tagline::after {
  border-color: var(--arafa-white2, #EFECE7);
}

.about-two .sec-title__title {
  color: var(--arafa-white, #fff);
}

.about-two .sec-title__title__inner {
  z-index: 11;
}

.about-two .sec-title__title__inner::after {
  z-index: -11;
}

.about-two__text {
  color: var(--arafa-white2, #EFECE7);
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 54px;
}

.about-two .contact-information__btn {
  margin-right: 15px;
  padding-right: 20px;
}

@media (max-width: 575px) {
  .about-two .contact-information__btn {
    margin-right: 0;
  }
}

.about-two .contact-information__btn::after {
  display: none;
}

.about-two .contact-information__phone {
  padding-left: 0;
  margin-left: 15px;
}

@media (max-width: 575px) {
  .about-two .contact-information__phone {
    margin-left: 0;
  }
}

.about-two .contact-information__phone__icon {
  border-color: var(--arafa-secondary, #F6D469);
}

.about-two .contact-information__phone__icon span {
  color: var(--arafa-secondary, #F6D469);
}

.about-two .contact-information__phone__text h5,
.about-two .contact-information__phone__text span {
  color: var(--arafa-white2, #EFECE7);
}

.about-two .contact-information__phone__text h5:hover {
  color: var(--arafa-secondary, #F6D469);
}

.about-two .contact-information__phone:hover .contact-information__phone__icon::after {
  background-color: var(--arafa-secondary, #F6D469);
}

.about-two .contact-information__phone:hover .contact-information__phone__icon span {
  color: var(--arafa-base, #351C42);
}

.about-two__shape__shape {
  position: absolute;
  width: 270px;
  height: 199px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1799px) {
  .about-two__shape__shape {
    width: 200px;
    height: 150px;
  }
}

@media (max-width: 1599px) {
  .about-two__shape__shape {
    width: 160px;
    height: 120px;
  }
}

@media (max-width: 1199px) {
  .about-two__shape__shape {
    width: 150px;
    height: 110px;
  }
}

@media (max-width: 767px) {
  .about-two__shape__shape {
    width: 130px;
    height: 100px;
  }
}

@media (max-width: 575px) {
  .about-two__shape__shape {
    width: 100px;
    height: 70px;
  }
}

.about-two__shape__shape::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--arafa-secondary, #F6D469);
}

.about-two__shape__shape--one {
  top: -2px;
  left: 105px;
  border-radius: 0px 0px 1000px 1000px;
  animation: zumpX 2000ms infinite alternate;
}

@media (max-width: 1799px) {
  .about-two__shape__shape--one {
    left: 70px;
  }
}

@media (max-width: 767px) {
  .about-two__shape__shape--one {
    left: 50px;
  }
}

.about-two__shape__shape--one::after {
  left: 40px;
  border-radius: 0px 0px 1000px 1000px;
  animation: zumpX 2000ms infinite alternate;
}

.about-two__shape__shape--two {
  right: 105px;
  bottom: -2px;
  border-radius: 1000px 1000px 0px 0px;
  animation: zumpXtwo 2000ms infinite alternate;
}

@media (max-width: 1799px) {
  .about-two__shape__shape--two {
    right: 70px;
  }
}

@media (max-width: 767px) {
  .about-two__shape__shape--two {
    right: 50px;
  }
}

.about-two__shape__shape--two::after {
  right: 40px;
  border-radius: 1000px 1000px 0px 0px;
  animation: zumpXtwo 2000ms infinite alternate;
}

.about-three {
  position: relative;
  padding-top: 271px;
  padding-bottom: 130px;
  background-color: var(--arafa-white, #fff);
}

@media (max-width: 1199px) {
  .about-three {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

@media (max-width: 767px) {
  .about-three {
    padding: 110px 0;
  }
}

@media (max-width: 575px) {
  .about-three {
    padding: 80px 0;
  }
}

.about-three__image__inner {
  position: relative;
  width: 100%;
  max-width: 370px;
  margin-left: auto;
}

@media (max-width: 1199px) {
  .about-three__image__inner {
    max-width: 340px;
  }
}

@media (max-width: 991px) {
  .about-three__image__inner {
    max-width: 370px;
    margin-left: 200px;
  }
}

@media (max-width: 767px) {
  .about-three__image__inner {
    max-width: 340px;
    margin-left: 130px;
  }
}

@media (max-width: 500px) {
  .about-three__image__inner {
    margin-left: 35px;
  }
}

@media (max-width: 412px) {
  .about-three__image__inner {
    max-width: 310px;
    margin-left: 25px;
  }
}

@media (max-width: 375px) {
  .about-three__image__inner {
    max-width: 300px;
  }
}

@media (max-width: 360px) {
  .about-three__image__inner {
    max-width: 263px;
  }
}

.about-three__image__inner::after {
  content: "";
  position: absolute;
  top: -30px;
  left: -55px;
  width: 100%;
  height: 100%;
  border-radius: 1000px 1000px 0 0;
  border: 3px solid var(--arafa-purple, #965995);
  transition: all 500ms ease;
  z-index: 1;
  transition: all 400ms ease;
}

@media (max-width: 500px) {
  .about-three__image__inner::after {
    left: -35px;
  }
}

@media (max-width: 412px) {
  .about-three__image__inner::after {
    top: -25px;
    left: -25px;
  }
}

.about-three__image__inner:hover::after {
  left: -30px;
}

@media (max-width: 500px) {
  .about-three__image__inner:hover::after {
    left: -25px;
  }
}

@media (max-width: 412px) {
  .about-three__image__inner:hover::after {
    top: -20px;
    left: -20px;
  }
}

.about-three__image__one {
  position: relative;
  border-radius: 1000px 1000px 0 0;
  max-width: 100%;
  display: block;
  z-index: 11;
}

.about-three__image__two {
  border-radius: 20px;
  position: absolute;
  left: -200px;
  bottom: -71px;
  z-index: 12;
}

@media (max-width: 1199px) {
  .about-three__image__two {
    max-width: 200px;
    left: -120px;
    bottom: -101px;
  }
}

@media (max-width: 991px) {
  .about-three__image__two {
    max-width: 270px;
    left: -200px;
    bottom: -71px;
  }
}

@media (max-width: 767px) {
  .about-three__image__two {
    max-width: 200px;
    left: -130px;
  }
}

@media (max-width: 500px) {
  .about-three__image__two {
    display: none;
  }
}

.about-three__experience {
  position: absolute;
  right: 0;
  bottom: -100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 317px;
  height: 248px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  z-index: 12;
  animation: movebounce3 3s linear infinite;
}

.about-three__experience__content {
  text-align: center;
}

.about-three__experience__title {
  font-size: 30px;
  line-height: 24px;
  letter-spacing: -1.2px;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.about-three__experience__text {
  color: var(--arafa-base, #351C42);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.64px;
  text-transform: capitalize;
  margin-bottom: 0;
}

.about-three__experience__text br {
  display: inline;
}

.about-three__shape {
  position: absolute;
  top: -30px;
  left: -80%;
  animation: zumpX 1500ms infinite alternate;
  z-index: 1;
}

.about-three__shape-box {
  position: absolute;
  left: -66px;
  bottom: -100px;
  z-index: 12;
  width: 270px;
  height: 260px;
  border: 1px solid var(--arafa-secondary, #F6D469);
  border-radius: 20px;
  z-index: 1;
  animation: zumpX 1500ms infinite alternate;
}

@media (max-width: 1199px) {
  .about-three__shape-box {
    bottom: -130px;
  }
}

@media (max-width: 991px) {
  .about-three__shape-box {
    bottom: -100px;
  }
}

@media (max-width: 500px) {
  .about-three__shape-box {
    display: none;
  }
}

.about-three__content {
  margin-top: -20px;
}

@media (max-width: 991px) {
  .about-three__content {
    margin-top: 100px;
  }
}

.about-three .sec-title {
  margin-bottom: 40px;
}

.about-three .sec-title__tagline {
  margin-bottom: 23px;
}

.about-three .sec-title__title__inner {
  z-index: 11;
}

.about-three .sec-title__title__inner::after {
  z-index: -11;
}

.about-three__text {
  text-transform: capitalize;
}

.about-three__text--one {
  font-weight: 700;
  margin-bottom: 29px;
}

.about-three__text--two {
  margin-bottom: 58px;
}

@media (max-width: 1199px) {
  .about-three__text--two {
    margin-bottom: 40px;
  }
}

.about-three__progress {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 55px;
}

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

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

@media (max-width: 767px) {
  .about-three__progress {
    grid-template-columns: repeat(1, 1fr);
  }
}

.about-three__progress .progress-box__title {
  font-size: 16px;
  line-height: 14px;
  margin-bottom: 10px;
}

.about-three__progress .progress-box__bar__inner::before,
.about-three__progress .progress-box__bar__inner::after {
  display: none;
}

.about-three__progress .progress-box__number {
  bottom: calc(100% + 11px);
}

.about-four {
  position: relative;
  margin-top: -113px;
}

.about-four__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0.5;
  z-index: 1;
}

.about-four__inner-bg {
  position: absolute;
  top: -65px;
  left: 0;
  width: 20.4%;
  height: 120%;
  background: linear-gradient(109.6deg, #D3FEF2 11.2%, #C9FDEF 100.2%);
}

@media (max-width: 1199px) {
  .about-four__inner-bg {
    width: 41%;
  }
}

@media (max-width: 991px) {
  .about-four__inner-bg {
    display: none;
  }
}

.about-four .container {
  position: relative;
  z-index: 2;
}

.about-four__image {
  position: relative;
  padding-right: 30px;
}

@media (max-width: 991px) {
  .about-four__image {
    padding-right: 0;
  }
}

.about-four__image img {
  width: 100%;
  display: block;
  clip-path: polygon(20% 0%, 80% 0%, 100% 15%, 100% 80%, 100% 100%, 16% 100%, 0 86%, 0 0);
}

.about-four__experience {
  position: absolute;
  right: 46px;
  bottom: 14px;
  padding: 8px 20px 25px;
  background-color: #ffffff8a;
  clip-path: polygon(20% 0%, 80% 0%, 100% 15%, 100% 80%, 100% 100%, 16% 100%, 0 86%, 0 0);
}

@media (max-width: 991px) {
  .about-four__experience {
    right: 30px;
  }
}

@media (max-width: 430px) {
  .about-four__experience {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 412px) {
  .about-four__experience {
    padding: 25px;
  }
}

.about-four__experience__year {
  margin-bottom: 0px;
  font-family: "Neuton", serif;
  font-size: 50px;
  color: #000000;
  font-weight: 400;
}

@media (max-width: 412px) {
  .about-four__experience__year {
    font-size: 45px;
  }
}

.about-four__experience__text {
  margin: 0;
  font-family: 'Gontserrat';
  font-size: 12px;
  color: var(--arafa-base);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 0;
}

@media (max-width: 412px) {
  .about-four__experience__text {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .about-four__experience__text br {
    display: inline;
  }
}

.about-four .sec-title {
  margin-bottom: 23px;
}

.about-four__text {
  /* text-transform: capitalize; */
  margin-bottom: 26px;
  font-family: 'poppins';
  margin-top: -30px;
}

.about-four__list {
  margin-bottom: 43px;
  padding: 0;
  list-style: none;
}

.about-four__list li+li {
  margin-top: 8px;
}

.about-four__list li {
  display: flex;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.75;
}

.about-four__list li span {
  position: relative;
  top: 5px;
  font-size: 16px;
  color: var(--arafa-orange, #E76100);
}

.about-four .arafa-btn-two {
  margin-bottom: 43px;
  padding: 15px 26px;
}

.about-four__text-bottom {
  margin: 0;
  font-family: var(--arafa-heading-font2, "Castoro", serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.04em;
  text-transform: capitalize;
}

@media (max-width: 430px) {
  .about-four__text-bottom {
    font-size: 22px;
  }
}

.about-five {
  padding-bottom: 289px;
  position: relative;
  overflow: hidden;
  background-color: var(--arafa-gray4);
}

@media (max-width: 767px) {
  .about-five {
    padding-bottom: 269px;
  }
}

@media (max-width: 575px) {
  .about-five {
    padding-bottom: 249px;
  }
}

.about-five__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.15;
}

.about-five .container {
  position: relative;
  z-index: 1;
}

.about-five__image {
  padding-top: 144px;
  padding-right: 23px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 23px;
}

@media (max-width: 1199px) {
  .about-five__image {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .about-five__image {
    padding-top: 175px;
  }
}

@media (max-width: 530px) {
  .about-five__image {
    padding-top: 190px;
  }
}

@media (max-width: 500px) {
  .about-five__image {
    padding-top: 220px;
  }
}

@media (max-width: 430px) {
  .about-five__image {
    padding-top: 245px;
  }
}

.about-five__image__one {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 225px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 675.000000 876.000000"><g transform="translate(0.000000,876.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M3350 8744 c0 -47 -278 -337 -440 -459 -36 -27 -69 -55 -73 -62 -4 -7 -13 -13 -18 -13 -6 0 -37 -20 -69 -45 -32 -25 -61 -45 -64 -45 -2 0 -33 -19 -68 -43 -35 -24 -70 -46 -78 -50 -8 -4 -28 -16 -45 -27 -16 -11 -39 -24 -50 -30 -11 -6 -38 -21 -60 -34 -22 -13 -71 -40 -110 -61 -38 -21 -83 -46 -100 -57 -16 -10 -37 -20 -45 -24 -8 -3 -22 -10 -30 -15 -8 -5 -22 -12 -30 -15 -8 -3 -22 -10 -30 -15 -8 -5 -22 -12 -30 -15 -25 -10 -32 -13 -125 -64 -49 -27 -142 -75 -205 -108 -182 -93 -220 -114 -226 -123 -3 -5 -12 -9 -20 -9 -9 0 -30 -11 -47 -24 -18 -14 -43 -30 -57 -35 -14 -6 -38 -20 -55 -31 -16 -11 -37 -23 -45 -27 -8 -3 -31 -18 -50 -32 -41 -31 -69 -49 -90 -58 -8 -4 -50 -33 -92 -65 -42 -32 -81 -58 -87 -58 -5 0 -14 -6 -18 -13 -4 -7 -51 -47 -104 -90 -125 -100 -396 -371 -468 -467 -92 -122 -120 -167 -176 -280 -78 -158 -99 -220 -128 -370 -17 -89 -18 -2925 -1 -3015 17 -86 44 -188 55 -199 5 -6 9 -18 9 -29 0 -22 88 -207 124 -260 14 -21 26 -40 26 -43 0 -9 122 -167 164 -213 160 -174 422 -413 556 -506 30 -21 71 -51 91 -66 20 -16 40 -29 44 -29 4 0 24 -12 44 -27 40 -31 67 -48 96 -63 11 -6 34 -19 50 -29 17 -11 50 -31 75 -44 25 -14 61 -34 80 -45 19 -12 60 -34 90 -50 30 -16 82 -44 115 -62 33 -18 148 -78 255 -133 240 -122 426 -221 500 -266 19 -11 44 -25 55 -31 11 -6 34 -19 50 -30 17 -11 36 -23 44 -27 31 -14 272 -181 356 -245 108 -83 364 -334 420 -412 22 -30 45 -56 50 -56 6 0 27 24 48 54 66 91 291 313 407 401 36 27 69 55 73 62 4 7 13 13 18 13 6 0 37 20 69 45 32 25 61 45 64 45 3 0 34 19 69 43 34 24 69 46 77 50 8 4 29 16 45 27 17 11 39 24 50 30 11 6 38 21 60 33 22 13 69 39 105 59 36 19 81 45 100 57 19 11 42 23 50 27 8 3 22 10 30 15 8 5 22 12 30 15 8 3 22 10 30 15 8 5 22 12 30 15 8 3 22 9 30 14 8 5 51 28 95 51 339 174 424 219 431 230 3 5 11 9 19 9 8 0 31 12 52 26 21 14 47 30 58 35 11 5 34 18 50 29 17 11 37 23 45 27 8 3 31 18 50 32 41 31 69 49 90 58 8 4 50 33 92 65 42 32 81 58 87 58 5 0 14 6 18 12 4 7 51 47 103 90 190 153 459 438 556 588 44 69 46 73 88 157 71 143 107 249 126 372 11 70 17 84 31 76 5 -4 9 545 9 1426 0 1257 -2 1433 -15 1443 -8 6 -19 38 -24 71 -11 75 -40 187 -52 199 -5 6 -9 18 -9 29 0 22 -88 207 -124 260 -14 21 -26 40 -26 43 0 21 -174 226 -296 348 -181 181 -434 392 -552 461 -9 6 -33 22 -53 38 -20 15 -40 27 -43 27 -4 0 -25 12 -49 27 -55 36 -67 43 -124 74 -26 15 -64 36 -83 47 -19 12 -57 33 -85 47 -27 15 -77 41 -110 60 -33 18 -136 72 -230 119 -93 48 -178 91 -187 96 -10 6 -26 14 -35 20 -10 5 -54 28 -98 50 -44 23 -107 57 -140 76 -33 19 -69 39 -80 44 -11 6 -33 19 -50 30 -16 11 -39 24 -50 30 -63 34 -297 193 -405 275 -160 123 -450 425 -450 469 0 9 -7 16 -15 16 -8 0 -15 -7 -15 -16z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 675.000000 876.000000"><g transform="translate(0.000000,876.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M3350 8744 c0 -47 -278 -337 -440 -459 -36 -27 -69 -55 -73 -62 -4 -7 -13 -13 -18 -13 -6 0 -37 -20 -69 -45 -32 -25 -61 -45 -64 -45 -2 0 -33 -19 -68 -43 -35 -24 -70 -46 -78 -50 -8 -4 -28 -16 -45 -27 -16 -11 -39 -24 -50 -30 -11 -6 -38 -21 -60 -34 -22 -13 -71 -40 -110 -61 -38 -21 -83 -46 -100 -57 -16 -10 -37 -20 -45 -24 -8 -3 -22 -10 -30 -15 -8 -5 -22 -12 -30 -15 -8 -3 -22 -10 -30 -15 -8 -5 -22 -12 -30 -15 -25 -10 -32 -13 -125 -64 -49 -27 -142 -75 -205 -108 -182 -93 -220 -114 -226 -123 -3 -5 -12 -9 -20 -9 -9 0 -30 -11 -47 -24 -18 -14 -43 -30 -57 -35 -14 -6 -38 -20 -55 -31 -16 -11 -37 -23 -45 -27 -8 -3 -31 -18 -50 -32 -41 -31 -69 -49 -90 -58 -8 -4 -50 -33 -92 -65 -42 -32 -81 -58 -87 -58 -5 0 -14 -6 -18 -13 -4 -7 -51 -47 -104 -90 -125 -100 -396 -371 -468 -467 -92 -122 -120 -167 -176 -280 -78 -158 -99 -220 -128 -370 -17 -89 -18 -2925 -1 -3015 17 -86 44 -188 55 -199 5 -6 9 -18 9 -29 0 -22 88 -207 124 -260 14 -21 26 -40 26 -43 0 -9 122 -167 164 -213 160 -174 422 -413 556 -506 30 -21 71 -51 91 -66 20 -16 40 -29 44 -29 4 0 24 -12 44 -27 40 -31 67 -48 96 -63 11 -6 34 -19 50 -29 17 -11 50 -31 75 -44 25 -14 61 -34 80 -45 19 -12 60 -34 90 -50 30 -16 82 -44 115 -62 33 -18 148 -78 255 -133 240 -122 426 -221 500 -266 19 -11 44 -25 55 -31 11 -6 34 -19 50 -30 17 -11 36 -23 44 -27 31 -14 272 -181 356 -245 108 -83 364 -334 420 -412 22 -30 45 -56 50 -56 6 0 27 24 48 54 66 91 291 313 407 401 36 27 69 55 73 62 4 7 13 13 18 13 6 0 37 20 69 45 32 25 61 45 64 45 3 0 34 19 69 43 34 24 69 46 77 50 8 4 29 16 45 27 17 11 39 24 50 30 11 6 38 21 60 33 22 13 69 39 105 59 36 19 81 45 100 57 19 11 42 23 50 27 8 3 22 10 30 15 8 5 22 12 30 15 8 3 22 10 30 15 8 5 22 12 30 15 8 3 22 9 30 14 8 5 51 28 95 51 339 174 424 219 431 230 3 5 11 9 19 9 8 0 31 12 52 26 21 14 47 30 58 35 11 5 34 18 50 29 17 11 37 23 45 27 8 3 31 18 50 32 41 31 69 49 90 58 8 4 50 33 92 65 42 32 81 58 87 58 5 0 14 6 18 12 4 7 51 47 103 90 190 153 459 438 556 588 44 69 46 73 88 157 71 143 107 249 126 372 11 70 17 84 31 76 5 -4 9 545 9 1426 0 1257 -2 1433 -15 1443 -8 6 -19 38 -24 71 -11 75 -40 187 -52 199 -5 6 -9 18 -9 29 0 22 -88 207 -124 260 -14 21 -26 40 -26 43 0 21 -174 226 -296 348 -181 181 -434 392 -552 461 -9 6 -33 22 -53 38 -20 15 -40 27 -43 27 -4 0 -25 12 -49 27 -55 36 -67 43 -124 74 -26 15 -64 36 -83 47 -19 12 -57 33 -85 47 -27 15 -77 41 -110 60 -33 18 -136 72 -230 119 -93 48 -178 91 -187 96 -10 6 -26 14 -35 20 -10 5 -54 28 -98 50 -44 23 -107 57 -140 76 -33 19 -69 39 -80 44 -11 6 -33 19 -50 30 -16 11 -39 24 -50 30 -63 34 -297 193 -405 275 -160 123 -450 425 -450 469 0 9 -7 16 -15 16 -8 0 -15 -7 -15 -16z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.about-five__image__two {
  position: relative;
  top: 40px;
  width: 100%;
  max-width: 151px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 453.000000 744.000000"><g transform="translate(0.000000,744.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M2242 7412 c-25 -57 -180 -228 -282 -310 -25 -21 -49 -43 -53 -49 -4 -7 -13 -13 -18 -13 -6 0 -37 -20 -69 -45 -32 -25 -62 -45 -65 -45 -4 0 -24 -12 -44 -27 -40 -31 -67 -48 -96 -63 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -37 -23 -45 -27 -51 -24 -301 -227 -386 -314 -87 -90 -214 -247 -214 -265 0 -3 -11 -20 -25 -38 -25 -32 -29 -34 -117 -41 -50 -4 -105 -13 -122 -20 -17 -8 -38 -16 -46 -20 -55 -22 -157 -102 -199 -155 -39 -49 -82 -131 -100 -191 -16 -51 -16 -3688 0 -3738 36 -115 100 -208 186 -273 67 -49 92 -66 113 -74 8 -3 29 -12 47 -19 18 -8 73 -17 122 -21 88 -7 92 -8 116 -40 14 -18 25 -35 25 -39 0 -33 275 -338 372 -413 92 -71 177 -132 184 -132 3 0 23 -13 43 -28 20 -16 43 -32 51 -36 16 -7 35 -18 95 -57 22 -14 47 -29 55 -32 8 -4 29 -16 45 -27 17 -11 39 -24 50 -30 11 -6 34 -19 50 -30 17 -11 39 -24 50 -30 21 -11 116 -73 237 -154 87 -59 334 -303 368 -363 13 -24 29 -43 35 -43 6 0 22 18 34 40 23 42 237 264 301 313 61 48 160 117 166 117 3 0 23 12 43 28 40 30 67 47 96 62 11 6 34 19 50 30 17 11 39 24 50 30 11 6 34 19 50 30 17 11 39 24 50 29 11 5 36 20 55 33 19 13 42 27 50 31 8 4 29 16 45 27 17 11 37 23 45 27 8 4 76 52 150 108 183 138 366 329 445 463 45 77 49 79 146 87 82 6 133 19 179 46 8 5 22 12 30 16 39 17 134 100 169 146 47 63 81 129 81 157 0 11 9 29 20 40 20 20 20 33 20 1860 0 1618 -2 1840 -15 1840 -8 0 -17 12 -20 28 -10 44 -45 113 -86 169 -41 55 -157 149 -209 169 -8 3 -29 12 -47 19 -18 8 -73 17 -122 21 -88 7 -92 8 -116 40 -14 18 -25 35 -25 39 0 17 -135 182 -224 273 -85 87 -311 272 -332 272 -3 0 -23 13 -43 28 -20 16 -43 32 -51 36 -16 7 -35 18 -95 57 -22 14 -47 29 -55 32 -8 4 -28 16 -45 27 -16 11 -39 24 -50 30 -11 5 -29 16 -40 22 -128 82 -155 98 -160 98 -4 0 -32 19 -63 43 -31 23 -70 51 -87 62 -64 40 -142 112 -295 274 -33 35 -80 100 -88 120 -7 20 -8 19 -20 -7z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 453.000000 744.000000"><g transform="translate(0.000000,744.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M2242 7412 c-25 -57 -180 -228 -282 -310 -25 -21 -49 -43 -53 -49 -4 -7 -13 -13 -18 -13 -6 0 -37 -20 -69 -45 -32 -25 -62 -45 -65 -45 -4 0 -24 -12 -44 -27 -40 -31 -67 -48 -96 -63 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -39 -24 -50 -30 -11 -6 -33 -19 -50 -30 -16 -11 -37 -23 -45 -27 -51 -24 -301 -227 -386 -314 -87 -90 -214 -247 -214 -265 0 -3 -11 -20 -25 -38 -25 -32 -29 -34 -117 -41 -50 -4 -105 -13 -122 -20 -17 -8 -38 -16 -46 -20 -55 -22 -157 -102 -199 -155 -39 -49 -82 -131 -100 -191 -16 -51 -16 -3688 0 -3738 36 -115 100 -208 186 -273 67 -49 92 -66 113 -74 8 -3 29 -12 47 -19 18 -8 73 -17 122 -21 88 -7 92 -8 116 -40 14 -18 25 -35 25 -39 0 -33 275 -338 372 -413 92 -71 177 -132 184 -132 3 0 23 -13 43 -28 20 -16 43 -32 51 -36 16 -7 35 -18 95 -57 22 -14 47 -29 55 -32 8 -4 29 -16 45 -27 17 -11 39 -24 50 -30 11 -6 34 -19 50 -30 17 -11 39 -24 50 -30 21 -11 116 -73 237 -154 87 -59 334 -303 368 -363 13 -24 29 -43 35 -43 6 0 22 18 34 40 23 42 237 264 301 313 61 48 160 117 166 117 3 0 23 12 43 28 40 30 67 47 96 62 11 6 34 19 50 30 17 11 39 24 50 30 11 6 34 19 50 30 17 11 39 24 50 29 11 5 36 20 55 33 19 13 42 27 50 31 8 4 29 16 45 27 17 11 37 23 45 27 8 4 76 52 150 108 183 138 366 329 445 463 45 77 49 79 146 87 82 6 133 19 179 46 8 5 22 12 30 16 39 17 134 100 169 146 47 63 81 129 81 157 0 11 9 29 20 40 20 20 20 33 20 1860 0 1618 -2 1840 -15 1840 -8 0 -17 12 -20 28 -10 44 -45 113 -86 169 -41 55 -157 149 -209 169 -8 3 -29 12 -47 19 -18 8 -73 17 -122 21 -88 7 -92 8 -116 40 -14 18 -25 35 -25 39 0 17 -135 182 -224 273 -85 87 -311 272 -332 272 -3 0 -23 13 -43 28 -20 16 -43 32 -51 36 -16 7 -35 18 -95 57 -22 14 -47 29 -55 32 -8 4 -28 16 -45 27 -16 11 -39 24 -50 30 -11 5 -29 16 -40 22 -128 82 -155 98 -160 98 -4 0 -32 19 -63 43 -31 23 -70 51 -87 62 -64 40 -142 112 -295 274 -33 35 -80 100 -88 120 -7 20 -8 19 -20 -7z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.about-five__image__three {
  width: 100%;
  max-width: 373px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 1173.000000"><g transform="translate(0.000000,1173.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4401 11605 c-137 -173 -430 -451 -636 -601 -96 -70 -206 -147 -227 -159 -9 -5 -49 -30 -88 -55 -39 -25 -83 -53 -98 -62 -15 -9 -38 -23 -52 -31 -50 -27 -196 -111 -220 -126 -14 -9 -45 -26 -70 -39 -25 -13 -76 -40 -115 -61 -38 -21 -155 -82 -260 -136 -430 -223 -580 -302 -620 -326 -16 -10 -51 -29 -76 -42 -88 -49 -125 -70 -242 -141 -65 -39 -125 -76 -135 -81 -103 -62 -373 -256 -472 -340 -203 -170 -412 -369 -532 -505 -104 -118 -228 -281 -261 -341 -7 -13 -24 -42 -39 -65 -52 -81 -153 -306 -178 -399 -4 -16 -12 -43 -18 -60 -11 -33 -35 -153 -51 -256 -15 -94 -15 -3770 0 -3853 44 -247 57 -292 134 -481 151 -367 443 -719 945 -1140 48 -41 279 -215 284 -215 2 0 52 -33 112 -73 106 -71 319 -200 439 -267 33 -18 78 -43 100 -55 72 -40 217 -117 380 -200 254 -130 458 -236 490 -255 17 -10 59 -33 95 -52 276 -149 618 -364 819 -516 203 -154 454 -394 592 -567 39 -50 80 -91 89 -93 9 -2 24 8 33 22 51 77 225 266 380 413 123 117 381 317 532 413 34 22 157 99 175 110 58 36 209 125 248 145 26 14 74 41 107 59 74 42 139 76 380 201 456 237 580 303 620 326 16 10 51 29 76 42 88 49 125 70 242 141 65 39 125 76 135 81 103 62 373 256 472 340 127 107 303 267 405 370 127 127 342 391 387 476 8 13 25 42 40 65 34 53 113 219 144 302 44 117 88 294 99 395 4 36 12 60 21 64 12 4 14 271 14 1889 0 1486 -3 1883 -12 1881 -8 -1 -16 17 -21 48 -34 210 -55 282 -132 470 -141 342 -387 651 -830 1041 -226 199 -445 356 -757 541 -250 149 -332 194 -953 513 -99 51 -193 100 -210 110 -16 10 -59 33 -95 53 -124 66 -185 101 -273 154 -48 29 -90 53 -92 53 -9 0 -372 246 -452 306 -203 155 -459 399 -590 565 -43 54 -85 99 -93 99 -8 0 -48 -43 -89 -95z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 1173.000000"><g transform="translate(0.000000,1173.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4401 11605 c-137 -173 -430 -451 -636 -601 -96 -70 -206 -147 -227 -159 -9 -5 -49 -30 -88 -55 -39 -25 -83 -53 -98 -62 -15 -9 -38 -23 -52 -31 -50 -27 -196 -111 -220 -126 -14 -9 -45 -26 -70 -39 -25 -13 -76 -40 -115 -61 -38 -21 -155 -82 -260 -136 -430 -223 -580 -302 -620 -326 -16 -10 -51 -29 -76 -42 -88 -49 -125 -70 -242 -141 -65 -39 -125 -76 -135 -81 -103 -62 -373 -256 -472 -340 -203 -170 -412 -369 -532 -505 -104 -118 -228 -281 -261 -341 -7 -13 -24 -42 -39 -65 -52 -81 -153 -306 -178 -399 -4 -16 -12 -43 -18 -60 -11 -33 -35 -153 -51 -256 -15 -94 -15 -3770 0 -3853 44 -247 57 -292 134 -481 151 -367 443 -719 945 -1140 48 -41 279 -215 284 -215 2 0 52 -33 112 -73 106 -71 319 -200 439 -267 33 -18 78 -43 100 -55 72 -40 217 -117 380 -200 254 -130 458 -236 490 -255 17 -10 59 -33 95 -52 276 -149 618 -364 819 -516 203 -154 454 -394 592 -567 39 -50 80 -91 89 -93 9 -2 24 8 33 22 51 77 225 266 380 413 123 117 381 317 532 413 34 22 157 99 175 110 58 36 209 125 248 145 26 14 74 41 107 59 74 42 139 76 380 201 456 237 580 303 620 326 16 10 51 29 76 42 88 49 125 70 242 141 65 39 125 76 135 81 103 62 373 256 472 340 127 107 303 267 405 370 127 127 342 391 387 476 8 13 25 42 40 65 34 53 113 219 144 302 44 117 88 294 99 395 4 36 12 60 21 64 12 4 14 271 14 1889 0 1486 -3 1883 -12 1881 -8 -1 -16 17 -21 48 -34 210 -55 282 -132 470 -141 342 -387 651 -830 1041 -226 199 -445 356 -757 541 -250 149 -332 194 -953 513 -99 51 -193 100 -210 110 -16 10 -59 33 -95 53 -124 66 -185 101 -273 154 -48 29 -90 53 -92 53 -9 0 -372 246 -452 306 -203 155 -459 399 -590 565 -43 54 -85 99 -93 99 -8 0 -48 -43 -89 -95z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.about-five__image img {
  width: 100%;
  display: block;
}

.about-five__content {
  position: relative;
  top: 36px;
}

@media (max-width: 1199px) {
  .about-five__content {
    top: 0;
    margin-top: 36px;
  }
}

.about-five .sec-title {
  margin-bottom: 29px;
}

.about-five__text {
  text-transform: capitalize;
  margin-bottom: 31px;
}

.about-five__wrapper {
  margin-bottom: 40px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 50px;
  border-bottom: 1px solid rgba(var(--arafa-base-rgb), 0.15);
}

@media (max-width: 360px) {
  .about-five__wrapper {
    flex-direction: column;
  }
}

.about-five__donate__icon {
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--arafa-white, #fff);
  transition: all 500ms ease;
}

.about-five__donate__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0);
  opacity: 0;
  transition: transform 400ms ease, opacity 400ms ease;
  background-color: var(--arafa-brown);
}

.about-five__donate__icon span {
  font-size: 40px;
  color: var(--arafa-brown);
  transition: all 500ms ease;
}

.about-five__donate:hover .about-five__donate__icon::after {
  opacity: 1;
  transform: scale(1);
}

.about-five__donate:hover .about-five__donate__icon span {
  color: var(--arafa-white, #fff);
}

.about-five__donate__title {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  line-height: 1.3;
  font-weight: normal;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 1px;
}

.about-five__donate__text {
  text-align: center;
}

.about-five__donate__text span {
  font-size: 16px;
  color: var(--arafa-base);
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
}

.about-five .contact-information {
  gap: 30px;
}

.about-five .contact-information__btn {
  position: relative;
  margin-right: 0;
}

.about-five .contact-information__btn::after {
  display: none;
}

.about-five .contact-information__phone {
  padding-left: 0;
}

.about-five .contact-information__phone__icon {
  border-color: var(--arafa-brown2);
  background-color: var(--arafa-white, #fff);
}

.about-five .contact-information__phone__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
  background-color: var(--arafa-brown2);
}

.about-five .contact-information__phone__icon span {
  color: var(--arafa-brown2);
}

.about-five .contact-information__phone__text h5 {
  font-size: 24px;
  margin-top: 8px;
}

@media (max-width: 375px) {
  .about-five .contact-information__phone__text h5 {
    font-size: 20px;
  }
}

.about-five .contact-information__phone__text h5:hover {
  color: var(--arafa-brown2);
}

.about-five__shape-box img {
  position: absolute;
  top: 0;
  max-width: 100%;
  height: auto;
  animation: zumpX 1s infinite alternate;
}

.about-five__light-one {
  left: 97px;
}

@media (max-width: 1699px) {
  .about-five__light-one {
    left: 40px;
  }
}

@media (max-width: 1599px) {
  .about-five__light-one {
    left: 20px;
  }
}

@media (max-width: 1399px) {
  .about-five__light-one {
    display: none;
  }
}

.about-five__light-two {
  left: 229px;
}

@media (max-width: 1699px) {
  .about-five__light-two {
    left: 160px;
  }
}

@media (max-width: 1599px) {
  .about-five__light-two {
    left: 140px;
  }
}

@media (max-width: 1399px) {
  .about-five__light-two {
    display: none;
  }
}

.about-five__light-three {
  right: 60px;
}

@media (max-width: 1699px) {
  .about-five__light-three {
    right: 40px;
  }
}

@media (max-width: 1599px) {
  .about-five__light-three {
    right: 20px;
  }
}

@media (max-width: 1499px) {
  .about-five__light-three {
    top: -125px !important;
  }
}

@media (max-width: 1199px) {
  .about-five__light-three {
    top: 0 !important;
    right: 60px;
  }
}

@media (max-width: 767px) {
  .about-five__light-three {
    top: -50px !important;
    right: 40px;
  }
}

@media (max-width: 575px) {
  .about-five__light-three {
    display: none;
  }
}

.about-five__light-four {
  right: 128px;
}

@media (max-width: 1699px) {
  .about-five__light-four {
    right: 108px;
  }
}

@media (max-width: 1599px) {
  .about-five__light-four {
    right: 88px;
  }
}

@media (max-width: 1499px) {
  .about-five__light-four {
    top: -125px !important;
  }
}

@media (max-width: 1199px) {
  .about-five__light-four {
    top: 0 !important;
    right: 128px;
  }
}

@media (max-width: 767px) {
  .about-five__light-four {
    top: -50px !important;
    right: 108px;
  }
}

@media (max-width: 575px) {
  .about-five__light-four {
    display: none;
  }
}

/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
.arafa-accordion .accordion {
  background-color: var(--arafa-white2, #EFECE7);
  border-radius: 10px;
  position: relative;
}

.arafa-accordion .accordion+.accordion {
  margin-top: 10px;
}

.arafa-accordion .accordion-title {
  padding: 26px;
  padding-right: 50.72px;
  cursor: pointer;
}

.arafa-accordion .accordion-title h4 {
  font-size: 16px;
  text-transform: capitalize;
  line-height: 1;
  margin: 0;
  transition: all 500ms ease;
  position: relative;
  letter-spacing: -0.48px;
}

.arafa-accordion .accordion-title__icon {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
}

.arafa-accordion .accordion-title__icon::after,
.arafa-accordion .accordion-title__icon::before {
  width: 2px;
  height: 14px;
  position: absolute;
  background-color: var(--arafa-base, #351C42);
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
  border-radius: 50px;
}

.arafa-accordion .accordion-title__icon::after {
  width: 14px;
  height: 2px;
  border-radius: 50px;
}

.arafa-accordion .active .accordion-title h4 {
  color: var(--arafa-purple, #965995);
}

.arafa-accordion .active .accordion-title__icon::after,
.arafa-accordion .active .accordion-title__icon::before {
  background-color: var(--arafa-purple, #965995);
  opacity: 0;
}

.arafa-accordion .active .accordion-title__icon::after {
  opacity: 1;
}

.arafa-accordion .accordion-content .inner {
  margin-top: -6px;
  padding: 0 27px 26px 21px;
}

.arafa-accordion .accordion-content p {
  margin: 0;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  background-color: var(--arafa-white, #fff);
}

.why-choose-one--volunteer__bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--arafa-white2, #EFECE7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.why-choose-one .container {
  position: relative;
  z-index: 11;
}

.why-choose-one__image {
  display: flex;
  align-items: baseline;
  gap: 30px;
}

@media (max-width: 425px) {
  .why-choose-one__image {
    gap: 20px;
  }
}

.why-choose-one__image__inner {
  width: 50%;
  height: 100%;
}

.why-choose-one__image__inner img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.why-choose-one__image__inner img:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 425px) {
  .why-choose-one__image__inner img:not(:last-child) {
    margin-bottom: 20px;
  }
}

.why-choose-one__content {
  margin-top: 2px;
}

.why-choose-one .sec-title {
  margin-bottom: 29px;
}

.why-choose-one .sec-title__tagline {
  margin-bottom: 23px;
}

.why-choose-one__text {
  text-transform: capitalize;
  margin-bottom: 30px;
}

.why-choose-one__hand__one {
  position: absolute;
  left: 0;
  bottom: 176px;
  animation: slowXmove 6s ease infinite;
}

@media (max-width: 1680px) {
  .why-choose-one__hand__one {
    width: 230px;
  }
}

@media (max-width: 1599px) {
  .why-choose-one__hand__one {
    display: none;
  }
}

.why-choose-one__hand__two {
  position: absolute;
  top: 298px;
  right: 0;
  animation: slowXmove 6s ease infinite;
}

@media (max-width: 1680px) {
  .why-choose-one__hand__two {
    width: 190px;
  }
}

@media (max-width: 1599px) {
  .why-choose-one__hand__two {
    top: 10px;
    bottom: auto;
    width: 190px;
  }
}

@media (max-width: 767px) {
  .why-choose-one__hand__two {
    display: none;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-one {
  position: relative;
  background-color: var(--arafa-base, #351C42);
}

.testimonials-one__bg {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
}

.testimonials-one__wrapper {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  border: 1px solid var(--arafa-white, #fff);
  overflow: hidden;
}

.testimonials-one__wrapper .testimonials-card__bg {
  border-radius: 0;
}

.testimonials-one__top {
  padding: 60px 58px 0;
  margin-bottom: 58px;
}

@media (max-width: 1199px) {
  .testimonials-one__top {
    padding: 40px 40px 0;
  }
}

@media (max-width: 575px) {
  .testimonials-one__top {
    padding: 30px 30px 0;
  }
}

.testimonials-one .sec-title {
  margin-bottom: 0;
}

.testimonials-one .sec-title__tagline {
  color: var(--arafa-white, #fff);
  margin-bottom: 23px;
}

.testimonials-one .sec-title__tagline::before {
  background-color: var(--arafa-white, #fff);
}

.testimonials-one .sec-title__tagline::after {
  border-color: var(--arafa-white, #fff);
}

.testimonials-one .sec-title__title {
  color: var(--arafa-white, #fff);
}

.testimonials-one__image img {
  border-radius: 100px;
  max-width: 100%;
}

.testimonials-one__carousel .owl-dots {
  margin-top: 0 !important;
  position: absolute;
  top: 60px;
  right: 50px;
}

@media (max-width: 991px) {
  .testimonials-one__carousel .owl-dots {
    top: 49px;
    right: 40px;
  }
}

@media (max-width: 767px) {
  .testimonials-one__carousel .owl-dots {
    top: 40px;
  }
}

@media (max-width: 425px) {
  .testimonials-one__carousel .owl-dots {
    right: 30px;
  }
}

@media (max-width: 392px) {
  .testimonials-one__carousel .owl-dots {
    right: 25px;
  }
}

.testimonials-one .testimonials-card {
  padding: 60px;
}

@media (max-width: 991px) {
  .testimonials-one .testimonials-card {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .testimonials-one .testimonials-card {
    padding-top: 90px;
  }
}

@media (max-width: 425px) {
  .testimonials-one .testimonials-card {
    padding: 90px 30px 30px;
  }
}

@media (max-width: 392px) {
  .testimonials-one .testimonials-card {
    padding: 90px 25px 25px;
  }
}

.testimonials-one .testimonials-card__info__left {
  padding-right: 45px;
}

.testimonials-one .testimonials-card__content {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 40px 50px;
}

@media (max-width: 767px) {
  .testimonials-one .testimonials-card__content {
    flex-direction: column;
  }
}

.testimonials-one .testimonials-card__text {
  width: 100%;
  max-width: 810px;
  padding-right: 0;
  margin-top: 18px;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .testimonials-one .testimonials-card__text {
    margin-top: 8px;
  }
}

.testimonials-one .testimonials-card__quote {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 144px;
  height: 144px;
  background-color: var(--arafa-white2, #EFECE7);
  border-radius: 50%;
  transition: all 400ms ease;
}

.testimonials-one .testimonials-card__quote span {
  transition: all 400ms ease;
}

@media (max-width: 991px) {
  .testimonials-one .testimonials-card__quote {
    width: 80px;
    height: 80px;
  }

  .testimonials-one .testimonials-card__quote span {
    font-size: 30px;
  }
}

.testimonials-one .testimonials-card:hover .testimonials-card__quote {
  background-color: var(--arafa-base, #351C42);
}

.testimonials-one .testimonials-card:hover .testimonials-card__quote span {
  color: var(--arafa-white, #fff);
}

.testimonials-one__shape__one,
.testimonials-one__shape__two {
  position: absolute;
  animation: zumpX 1500ms infinite alternate;
}

.testimonials-one__shape__one {
  top: 0;
  left: 0;
}

@media (max-width: 1599px) {
  .testimonials-one__shape__one {
    top: -50px;
  }
}

.testimonials-one__shape__two {
  right: 0;
  bottom: 0;
}

@media (max-width: 1599px) {
  .testimonials-one__shape__two {
    bottom: -50px;
  }
}

.testimonials-two {
  position: relative;
  background-color: var(--arafa-white, #fff);
}

.testimonials-two__top {
  padding: 60px 60px 59px;
  border-radius: 20px;
  border: 1px solid var(--arafa-white3, #D7D3CB);
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .testimonials-two__top {
    padding: 40px 40px 39px;
  }
}

@media (max-width: 575px) {
  .testimonials-two__top {
    padding: 30px 30px 29px;
  }
}

.testimonials-two .sec-title {
  width: 100%;
  max-width: 570px;
  margin-bottom: 0;
}

.testimonials-two .sec-title__tagline {
  margin-bottom: 23px;
}

.testimonials-two__text {
  padding-left: 39px;
  text-transform: capitalize;
  margin-bottom: 0;
  margin-top: -4px;
}

@media (max-width: 1199px) {
  .testimonials-two__text {
    padding-left: 15px;
  }
}

@media (max-width: 991px) {
  .testimonials-two__text {
    padding-left: 0;
  }
}

.testimonials-two .testimonials-card__name {
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
}

.testimonials-three {
  position: relative;
}

.testimonials-three .sec-title {
  margin-bottom: 37px;
}

.testimonials-three__content {
  position: relative;
}

.testimonials-three__content__text {
  text-transform: capitalize;
  margin-bottom: 49px;
}

.testimonials-three__carousel .owl-stage {
  padding-left: 0 !important;
}

@media (max-width: 1199px) {
  .testimonials-three__carousel {
    padding: 0 15px;
  }
}

.testimonials-three__custome-navs {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1199px) {
  .testimonials-three__custome-navs {
    margin: 0 0 50px;
  }
}

.testimonials-three__custome-navs button {
  border: 0;
  outline: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--arafa-white2, #EFECE7);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--arafa-base, #351C42);
  border-radius: 50%;
  font-size: 15px;
  color: var(--arafa-base, #351C42);
  transition: all 500ms ease;
}

.testimonials-three__custome-navs button:hover {
  background-color: var(--arafa-purple, #965995);
  color: var(--arafa-white, #fff);
}

.testimonials-three .testimonials-card {
  background-color: var(--arafa-white, #fff);
  border-radius: 20px;
  border: 3px solid var(--arafa-border-color, #D7D3CB);
}

.testimonials-three .testimonials-card__bg {
  display: none;
}

.testimonials-three--home-4 {
  background: var(--arafa-white, #fff);
}

.testimonials-three--home-4 .sec-title {
  margin-top: 63px;
  margin-bottom: 33px;
}

@media (max-width: 1199px) {
  .testimonials-three--home-4 .sec-title {
    margin-top: 0;
  }
}

.testimonials-three--home-4 .testimonials-three__custome-navs {
  gap: 20px;
}

@media (max-width: 767px) {
  .testimonials-three--home-4 .testimonials-three__custome-navs {
    gap: 15px;
  }
}

.testimonials-three--home-4 .testimonials-three__custome-navs button {
  width: 60px;
  height: 60px;
  background-color: transparent;
  font-size: 22px;
  color: var(--arafa-brown);
  border: 1px solid rgba(var(--arafa-base-rgb), 0.1);
}

@media (max-width: 767px) {
  .testimonials-three--home-4 .testimonials-three__custome-navs button {
    font-size: 16px;
    width: 50px;
    height: 50px;
  }
}

.testimonials-three--home-4 .testimonials-three__custome-navs button:hover {
  background-color: var(--arafa-orange, #E76100);
  color: var(--arafa-white, #fff);
  border-color: var(--arafa-orange, #E76100);
}

.testimonials-three--home-4 .testimonials-card {
  transition: all 500ms ease;
  border-width: 1px;
}

.testimonials-three--home-4 .testimonials-card:hover {
  border-color: var(--arafa-orange, #E76100);
}

.testimonials-three--home-4 .testimonials-card .testimonials-card__quote span {
  font-size: 46px;
  color: var(--arafa-orange, #E76100);
}

.testimonials-three--home-4 .testimonials-card .testimonials-card__text {
  font-style: italic;
}

.testimonials-three--home-4 .testimonials-card .testimonials-card__name {
  font-family: var(--arafa-heading-font2, "Castoro", serif);
  font-weight: 400;
}

.testimonials-three--home-4 .testimonials-card .testimonials-card__designation {
  color: var(--arafa-orange, #E76100);
}

.testimonials-three--home-4 .testimonials-card .video-button {
  background-color: var(--arafa-orange, #E76100);
}

.testimonials-three--home-4 .testimonials-card .video-button:hover {
  background-color: var(--arafa-orange, #E76100);
}

.testimonials-three--home-4 .testimonials-card .video-button:hover span {
  color: var(--arafa-white, #fff);
}

.testimonials-four {
  position: relative;
  background-color: var(--arafa-white, #fff);
}

.testimonials-four .container {
  position: relative;
  z-index: 3;
}

.testimonials-four .sec-title {
  width: 100%;
  max-width: 491px;
  margin: 0 auto 59px;
  text-align: center;
}

.testimonials-four__carousel.owl-carousel .owl-nav {
  margin-top: 60px;
}

.testimonials-four__carousel.owl-carousel .owl-nav::before,
.testimonials-four__carousel.owl-carousel .owl-nav::after {
  display: none;
}

@media (min-width: 1600px) {
  .testimonials-four__carousel.owl-carousel .owl-nav {
    width: 100%;
    margin-top: 0;
    position: absolute;
    bottom: 117px;
    display: flex;
    justify-content: center;
    justify-content: space-between;
  }
}

.testimonials-four__carousel.owl-carousel .owl-nav button {
  position: relative;
}

.testimonials-four__carousel.owl-carousel .owl-nav button:hover {
  background-color: transparent !important;
}

.testimonials-four__carousel.owl-carousel .owl-nav button span {
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: 1px solid rgba(var(--arafa-base-rgb), 0.1);
  font-size: 22px;
  color: var(--arafa-brown);
}

@media (max-width: 1399px) {
  .testimonials-four__carousel.owl-carousel .owl-nav button span {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

.testimonials-four__carousel.owl-carousel .owl-nav button span:hover {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-brown);
  border-color: var(--arafa-brown);
}

@media (min-width: 1600px) {
  .testimonials-four__carousel.owl-carousel .owl-nav .owl-prev {
    left: 100px;
  }
}

@media (min-width: 1600px) {
  .testimonials-four__carousel.owl-carousel .owl-nav .owl-next {
    right: 100px;
  }
}

.testimonials-four__item {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-four__image {
  margin: 0 auto;
  position: relative;
  width: 208px;
  height: 208px;
  z-index: 1;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 624.000000 624.000000"><g transform="translate(0.000000,624.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M3060 6163 c-54 -83 -206 -228 -305 -293 -13 -8 -58 -39 -100 -67 -41 -29 -79 -53 -83 -53 -4 0 -38 -20 -75 -45 -38 -25 -73 -45 -77 -45 -5 0 -37 -19 -72 -42 -90 -60 -101 -67 -118 -75 -35 -16 -220 -161 -276 -217 -221 -219 -322 -412 -341 -652 l-5 -60 -87 -12 c-136 -18 -217 -38 -261 -63 -8 -5 -22 -12 -30 -15 -8 -3 -22 -10 -30 -15 -8 -5 -22 -12 -30 -16 -37 -16 -180 -133 -260 -212 -72 -72 -188 -215 -237 -296 -7 -11 -65 -108 -130 -215 -132 -220 -183 -299 -227 -351 -17 -20 -49 -58 -71 -85 -54 -65 -133 -138 -189 -175 -26 -18 -46 -39 -46 -49 0 -9 18 -29 39 -43 53 -35 135 -109 180 -161 87 -103 115 -138 125 -156 6 -10 33 -52 60 -92 28 -40 61 -93 74 -118 13 -25 35 -59 48 -77 13 -17 24 -36 24 -42 0 -5 19 -38 42 -73 48 -70 64 -96 74 -118 22 -45 169 -226 240 -296 214 -209 396 -302 630 -321 l60 -5 12 -87 c18 -136 38 -217 63 -261 5 -8 12 -22 15 -30 3 -8 10 -22 15 -30 5 -8 12 -22 16 -30 30 -66 278 -340 350 -387 15 -10 53 -36 83 -58 30 -22 64 -45 75 -52 11 -7 103 -63 205 -124 249 -150 309 -191 416 -280 100 -83 152 -138 204 -211 18 -27 41 -48 50 -48 10 0 29 18 43 39 35 53 109 135 161 180 103 87 138 115 156 125 10 6 52 33 92 60 40 28 93 61 118 74 25 13 59 35 77 48 17 13 36 24 42 24 5 0 38 19 73 42 70 48 96 64 118 74 46 23 226 168 295 238 209 214 303 399 322 632 l5 60 87 12 c136 18 217 38 261 63 8 5 22 12 30 15 8 3 22 10 30 15 8 5 22 12 30 16 37 17 180 133 255 209 70 69 197 227 242 299 7 11 63 103 124 205 150 249 191 309 280 416 79 94 134 148 204 199 70 51 71 62 8 105 -83 54 -227 205 -293 305 -8 13 -37 56 -64 97 -28 40 -61 93 -74 118 -13 25 -35 59 -48 77 -13 17 -24 36 -24 42 0 5 -19 38 -42 73 -48 70 -64 96 -74 118 -18 37 -163 221 -218 276 -219 221 -412 322 -652 341 l-60 5 -12 87 c-18 136 -38 217 -63 261 -5 8 -12 22 -15 30 -3 8 -10 22 -15 30 -5 8 -12 22 -16 30 -16 35 -128 174 -205 253 -69 71 -221 193 -303 244 -11 7 -108 65 -215 130 -213 128 -335 207 -346 224 -3 6 -20 19 -37 30 -45 27 -163 145 -210 209 -64 87 -73 89 -117 23z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 624.000000 624.000000"><g transform="translate(0.000000,624.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M3060 6163 c-54 -83 -206 -228 -305 -293 -13 -8 -58 -39 -100 -67 -41 -29 -79 -53 -83 -53 -4 0 -38 -20 -75 -45 -38 -25 -73 -45 -77 -45 -5 0 -37 -19 -72 -42 -90 -60 -101 -67 -118 -75 -35 -16 -220 -161 -276 -217 -221 -219 -322 -412 -341 -652 l-5 -60 -87 -12 c-136 -18 -217 -38 -261 -63 -8 -5 -22 -12 -30 -15 -8 -3 -22 -10 -30 -15 -8 -5 -22 -12 -30 -16 -37 -16 -180 -133 -260 -212 -72 -72 -188 -215 -237 -296 -7 -11 -65 -108 -130 -215 -132 -220 -183 -299 -227 -351 -17 -20 -49 -58 -71 -85 -54 -65 -133 -138 -189 -175 -26 -18 -46 -39 -46 -49 0 -9 18 -29 39 -43 53 -35 135 -109 180 -161 87 -103 115 -138 125 -156 6 -10 33 -52 60 -92 28 -40 61 -93 74 -118 13 -25 35 -59 48 -77 13 -17 24 -36 24 -42 0 -5 19 -38 42 -73 48 -70 64 -96 74 -118 22 -45 169 -226 240 -296 214 -209 396 -302 630 -321 l60 -5 12 -87 c18 -136 38 -217 63 -261 5 -8 12 -22 15 -30 3 -8 10 -22 15 -30 5 -8 12 -22 16 -30 30 -66 278 -340 350 -387 15 -10 53 -36 83 -58 30 -22 64 -45 75 -52 11 -7 103 -63 205 -124 249 -150 309 -191 416 -280 100 -83 152 -138 204 -211 18 -27 41 -48 50 -48 10 0 29 18 43 39 35 53 109 135 161 180 103 87 138 115 156 125 10 6 52 33 92 60 40 28 93 61 118 74 25 13 59 35 77 48 17 13 36 24 42 24 5 0 38 19 73 42 70 48 96 64 118 74 46 23 226 168 295 238 209 214 303 399 322 632 l5 60 87 12 c136 18 217 38 261 63 8 5 22 12 30 15 8 3 22 10 30 15 8 5 22 12 30 16 37 17 180 133 255 209 70 69 197 227 242 299 7 11 63 103 124 205 150 249 191 309 280 416 79 94 134 148 204 199 70 51 71 62 8 105 -83 54 -227 205 -293 305 -8 13 -37 56 -64 97 -28 40 -61 93 -74 118 -13 25 -35 59 -48 77 -13 17 -24 36 -24 42 0 5 -19 38 -42 73 -48 70 -64 96 -74 118 -18 37 -163 221 -218 276 -219 221 -412 322 -652 341 l-60 5 -12 87 c-18 136 -38 217 -63 261 -5 8 -12 22 -15 30 -3 8 -10 22 -15 30 -5 8 -12 22 -16 30 -16 35 -128 174 -205 253 -69 71 -221 193 -303 244 -11 7 -108 65 -215 130 -213 128 -335 207 -346 224 -3 6 -20 19 -37 30 -45 27 -163 145 -210 209 -64 87 -73 89 -117 23z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: var(--arafa-bramble);
}

.testimonials-four__image__inner {
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  -webkit-mask: url('data:image/svg+xml;utf8, <svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 594.000000 594.000000"><g transform="translate(0.000000,594.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M2911 5865 c-55 -76 -141 -164 -227 -231 -45 -35 -85 -64 -89 -64 -4 0 -24 -13 -45 -30 -21 -16 -41 -30 -45 -30 -3 0 -21 -11 -38 -24 -18 -13 -54 -36 -82 -51 -27 -14 -63 -35 -80 -46 -16 -10 -39 -23 -50 -29 -32 -17 -55 -32 -133 -85 -40 -28 -81 -54 -90 -60 -9 -5 -30 -21 -46 -35 -187 -160 -297 -287 -360 -415 -60 -123 -67 -146 -80 -257 -6 -54 -17 -103 -24 -110 -7 -7 -56 -18 -110 -24 -53 -7 -113 -17 -132 -24 -85 -31 -118 -46 -158 -72 -24 -15 -46 -28 -49 -28 -11 0 -124 -95 -207 -175 -76 -72 -242 -290 -280 -365 -4 -8 -12 -24 -19 -35 -7 -11 -41 -69 -77 -129 -36 -60 -73 -120 -82 -135 -10 -14 -21 -33 -25 -41 -15 -34 -131 -180 -197 -249 -39 -40 -95 -89 -123 -108 -30 -19 -53 -43 -53 -52 0 -9 29 -38 64 -64 35 -26 90 -75 123 -110 63 -67 153 -181 153 -192 0 -4 14 -24 30 -45 17 -21 30 -40 30 -43 0 -3 13 -25 29 -49 16 -24 39 -61 51 -83 12 -22 30 -53 41 -70 10 -16 23 -39 29 -50 19 -35 34 -59 85 -134 28 -40 55 -82 62 -93 6 -11 15 -23 20 -27 4 -3 34 -39 66 -78 51 -65 230 -226 285 -256 45 -26 169 -85 202 -97 19 -7 79 -17 132 -24 54 -6 103 -17 110 -24 7 -7 18 -56 24 -110 7 -53 17 -113 24 -132 34 -94 54 -138 76 -167 13 -17 24 -35 24 -38 0 -8 57 -83 76 -100 5 -5 30 -34 54 -63 53 -66 178 -171 302 -255 51 -35 100 -66 108 -70 17 -9 19 -10 164 -97 59 -36 120 -73 134 -82 15 -10 34 -21 42 -25 29 -13 172 -125 236 -185 35 -33 85 -89 111 -124 26 -35 54 -64 63 -64 9 0 37 29 63 64 26 35 75 90 110 123 67 63 181 153 192 153 4 0 24 14 45 30 21 17 40 30 43 30 3 0 25 13 49 29 24 16 61 39 83 51 22 12 54 30 70 41 17 10 39 23 50 29 35 19 59 34 134 85 40 28 82 55 93 62 11 6 23 15 27 20 3 4 39 34 78 66 65 51 226 230 256 285 26 45 85 169 97 202 7 19 17 79 24 132 6 54 17 103 24 110 7 7 56 18 110 24 53 7 113 17 132 24 94 34 138 54 167 76 17 13 35 24 38 24 8 0 83 57 100 76 6 5 34 30 63 54 66 53 171 178 255 302 35 51 66 100 70 108 9 17 10 19 97 164 36 59 73 120 82 134 10 15 21 34 25 42 12 28 120 164 182 232 34 37 91 88 126 114 36 27 65 55 65 65 0 9 -19 29 -42 45 -68 46 -165 142 -234 230 -35 45 -64 85 -64 89 0 4 -13 24 -30 45 -16 21 -30 40 -30 43 0 3 -13 25 -29 49 -16 24 -39 61 -51 83 -12 22 -30 54 -41 70 -10 17 -23 39 -29 50 -19 35 -34 59 -85 134 -27 40 -54 80 -60 89 -13 22 -47 61 -125 146 -107 117 -226 211 -325 260 -123 60 -146 67 -257 80 -54 6 -103 17 -110 24 -7 7 -18 56 -24 110 -7 53 -17 113 -24 132 -34 94 -54 138 -76 167 -13 17 -24 35 -24 38 0 13 -91 122 -175 209 -57 60 -160 143 -255 207 -103 69 -108 73 -172 108 -24 13 -62 36 -86 52 -24 16 -47 29 -51 29 -4 0 -26 12 -48 28 -54 37 -75 51 -93 59 -33 15 -179 131 -249 197 -40 39 -89 95 -108 124 -20 29 -42 52 -52 52 -10 0 -32 -20 -50 -45z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8, <svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 594.000000 594.000000"><g transform="translate(0.000000,594.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M2911 5865 c-55 -76 -141 -164 -227 -231 -45 -35 -85 -64 -89 -64 -4 0 -24 -13 -45 -30 -21 -16 -41 -30 -45 -30 -3 0 -21 -11 -38 -24 -18 -13 -54 -36 -82 -51 -27 -14 -63 -35 -80 -46 -16 -10 -39 -23 -50 -29 -32 -17 -55 -32 -133 -85 -40 -28 -81 -54 -90 -60 -9 -5 -30 -21 -46 -35 -187 -160 -297 -287 -360 -415 -60 -123 -67 -146 -80 -257 -6 -54 -17 -103 -24 -110 -7 -7 -56 -18 -110 -24 -53 -7 -113 -17 -132 -24 -85 -31 -118 -46 -158 -72 -24 -15 -46 -28 -49 -28 -11 0 -124 -95 -207 -175 -76 -72 -242 -290 -280 -365 -4 -8 -12 -24 -19 -35 -7 -11 -41 -69 -77 -129 -36 -60 -73 -120 -82 -135 -10 -14 -21 -33 -25 -41 -15 -34 -131 -180 -197 -249 -39 -40 -95 -89 -123 -108 -30 -19 -53 -43 -53 -52 0 -9 29 -38 64 -64 35 -26 90 -75 123 -110 63 -67 153 -181 153 -192 0 -4 14 -24 30 -45 17 -21 30 -40 30 -43 0 -3 13 -25 29 -49 16 -24 39 -61 51 -83 12 -22 30 -53 41 -70 10 -16 23 -39 29 -50 19 -35 34 -59 85 -134 28 -40 55 -82 62 -93 6 -11 15 -23 20 -27 4 -3 34 -39 66 -78 51 -65 230 -226 285 -256 45 -26 169 -85 202 -97 19 -7 79 -17 132 -24 54 -6 103 -17 110 -24 7 -7 18 -56 24 -110 7 -53 17 -113 24 -132 34 -94 54 -138 76 -167 13 -17 24 -35 24 -38 0 -8 57 -83 76 -100 5 -5 30 -34 54 -63 53 -66 178 -171 302 -255 51 -35 100 -66 108 -70 17 -9 19 -10 164 -97 59 -36 120 -73 134 -82 15 -10 34 -21 42 -25 29 -13 172 -125 236 -185 35 -33 85 -89 111 -124 26 -35 54 -64 63 -64 9 0 37 29 63 64 26 35 75 90 110 123 67 63 181 153 192 153 4 0 24 14 45 30 21 17 40 30 43 30 3 0 25 13 49 29 24 16 61 39 83 51 22 12 54 30 70 41 17 10 39 23 50 29 35 19 59 34 134 85 40 28 82 55 93 62 11 6 23 15 27 20 3 4 39 34 78 66 65 51 226 230 256 285 26 45 85 169 97 202 7 19 17 79 24 132 6 54 17 103 24 110 7 7 56 18 110 24 53 7 113 17 132 24 94 34 138 54 167 76 17 13 35 24 38 24 8 0 83 57 100 76 6 5 34 30 63 54 66 53 171 178 255 302 35 51 66 100 70 108 9 17 10 19 97 164 36 59 73 120 82 134 10 15 21 34 25 42 12 28 120 164 182 232 34 37 91 88 126 114 36 27 65 55 65 65 0 9 -19 29 -42 45 -68 46 -165 142 -234 230 -35 45 -64 85 -64 89 0 4 -13 24 -30 45 -16 21 -30 40 -30 43 0 3 -13 25 -29 49 -16 24 -39 61 -51 83 -12 22 -30 54 -41 70 -10 17 -23 39 -29 50 -19 35 -34 59 -85 134 -27 40 -54 80 -60 89 -13 22 -47 61 -125 146 -107 117 -226 211 -325 260 -123 60 -146 67 -257 80 -54 6 -103 17 -110 24 -7 7 -18 56 -24 110 -7 53 -17 113 -24 132 -34 94 -54 138 -76 167 -13 17 -24 35 -24 38 0 13 -91 122 -175 209 -57 60 -160 143 -255 207 -103 69 -108 73 -172 108 -24 13 -62 36 -86 52 -24 16 -47 29 -51 29 -4 0 -26 12 -48 28 -54 37 -75 51 -93 59 -33 15 -179 131 -249 197 -40 39 -89 95 -108 124 -20 29 -42 52 -52 52 -10 0 -32 -20 -50 -45z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.testimonials-four__image__inner img {
  object-fit: cover;
  height: 100%;
}

.testimonials-four__quote {
  margin-top: -68px;
  margin-bottom: 40px;
}

.testimonials-four__quote span {
  font-size: 106px;
  color: var(--arafa-brown2);
}

.testimonials-four__text {
  margin-bottom: 31px;
  font-size: 22px;
  line-height: 1.59;
  font-style: italic;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .testimonials-four__text {
    font-size: 20px;
  }
}

@media (max-width: 430px) {
  .testimonials-four__text {
    font-size: 18px;
  }
}

.testimonials-four .arafa-ratings {
  margin-bottom: 31px;
  justify-content: center;
}

.testimonials-four .arafa-ratings span {
  font-size: 16px;
  color: var(--arafa-bramble);
}

.testimonials-four__name {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 1.46;
  text-transform: capitalize;
}

.testimonials-four__designation {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--arafa-brown2);
  line-height: 1;
  text-transform: capitalize;
}

.testimonials-four__left {
  width: 415px;
  position: relative;
  position: absolute;
  top: 138px;
  left: 99px;
}

@media (max-width: 1799px) {
  .testimonials-four__left {
    left: 10px;
  }
}

@media (max-width: 1599px) {
  .testimonials-four__left {
    left: 20px;
    width: 280px;
  }
}

@media (max-width: 1399px) {
  .testimonials-four__left {
    width: 250px;
  }
}

@media (max-width: 1350px) {
  .testimonials-four__left {
    display: none;
  }
}

.testimonials-four__left__image {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  width: 372px;
  height: 372px;
  z-index: 1;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4455 8941 c-23 -45 -109 -147 -200 -236 -147 -145 -239 -214 -530 -400 -27 -17 -57 -35 -65 -39 -8 -4 -24 -12 -35 -19 -11 -7 -56 -34 -100 -60 -92 -55 -97 -58 -185 -113 -36 -22 -90 -55 -120 -74 -170 -106 -403 -306 -547 -472 -218 -250 -319 -485 -342 -793 l-6 -80 -87 -7 c-302 -23 -541 -127 -786 -341 -54 -47 -224 -218 -263 -262 -62 -73 -269 -365 -269 -380 0 -2 -14 -24 -30 -48 -17 -25 -30 -47 -30 -51 0 -3 -20 -36 -43 -73 -24 -37 -47 -75 -50 -83 -4 -8 -16 -28 -27 -45 -11 -16 -23 -37 -27 -45 -21 -47 -197 -311 -274 -410 -87 -113 -249 -276 -339 -343 -36 -26 -71 -52 -77 -57 -21 -18 -15 -39 16 -55 88 -45 300 -251 416 -405 78 -103 216 -312 278 -420 57 -100 109 -187 127 -215 11 -16 23 -37 27 -46 21 -44 128 -204 209 -312 85 -115 249 -292 356 -385 250 -216 487 -318 793 -341 l80 -6 6 -80 c23 -308 127 -549 342 -792 163 -185 314 -316 517 -450 154 -102 170 -112 280 -177 52 -31 102 -61 110 -66 8 -5 33 -19 55 -31 22 -12 63 -36 90 -54 28 -17 91 -58 140 -90 210 -135 440 -339 548 -486 26 -35 52 -70 57 -76 18 -21 39 -15 55 16 67 131 344 386 590 546 193 124 204 131 325 200 25 14 59 34 75 45 17 10 47 28 67 39 110 60 355 229 463 320 42 35 212 206 262 263 216 246 319 486 342 793 l6 80 80 6 c308 23 549 127 792 342 153 135 225 212 351 376 44 56 182 259 182 266 0 2 13 24 30 48 17 25 30 47 30 51 0 3 19 36 43 73 55 90 62 101 88 148 12 22 36 63 54 90 17 28 58 91 90 140 153 239 342 445 537 588 46 33 48 51 9 72 -83 43 -287 240 -402 387 -75 97 -252 362 -272 408 -4 8 -18 33 -32 55 -14 22 -34 56 -45 75 -11 19 -29 49 -40 65 -11 17 -23 37 -27 45 -3 8 -26 45 -50 82 -24 37 -43 69 -43 72 0 8 -90 136 -169 241 -69 92 -220 252 -331 351 -238 212 -488 320 -795 343 l-80 6 -7 87 c-23 302 -127 541 -341 786 -54 61 -222 229 -267 266 -93 76 -360 266 -375 266 -2 0 -24 14 -48 30 -25 17 -47 30 -50 30 -4 0 -25 13 -49 29 -24 16 -61 39 -83 51 -22 12 -53 30 -70 41 -16 10 -37 22 -45 26 -15 6 -43 24 -205 128 -219 141 -438 336 -558 498 -32 42 -65 77 -72 77 -8 0 -21 -13 -30 -29z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4455 8941 c-23 -45 -109 -147 -200 -236 -147 -145 -239 -214 -530 -400 -27 -17 -57 -35 -65 -39 -8 -4 -24 -12 -35 -19 -11 -7 -56 -34 -100 -60 -92 -55 -97 -58 -185 -113 -36 -22 -90 -55 -120 -74 -170 -106 -403 -306 -547 -472 -218 -250 -319 -485 -342 -793 l-6 -80 -87 -7 c-302 -23 -541 -127 -786 -341 -54 -47 -224 -218 -263 -262 -62 -73 -269 -365 -269 -380 0 -2 -14 -24 -30 -48 -17 -25 -30 -47 -30 -51 0 -3 -20 -36 -43 -73 -24 -37 -47 -75 -50 -83 -4 -8 -16 -28 -27 -45 -11 -16 -23 -37 -27 -45 -21 -47 -197 -311 -274 -410 -87 -113 -249 -276 -339 -343 -36 -26 -71 -52 -77 -57 -21 -18 -15 -39 16 -55 88 -45 300 -251 416 -405 78 -103 216 -312 278 -420 57 -100 109 -187 127 -215 11 -16 23 -37 27 -46 21 -44 128 -204 209 -312 85 -115 249 -292 356 -385 250 -216 487 -318 793 -341 l80 -6 6 -80 c23 -308 127 -549 342 -792 163 -185 314 -316 517 -450 154 -102 170 -112 280 -177 52 -31 102 -61 110 -66 8 -5 33 -19 55 -31 22 -12 63 -36 90 -54 28 -17 91 -58 140 -90 210 -135 440 -339 548 -486 26 -35 52 -70 57 -76 18 -21 39 -15 55 16 67 131 344 386 590 546 193 124 204 131 325 200 25 14 59 34 75 45 17 10 47 28 67 39 110 60 355 229 463 320 42 35 212 206 262 263 216 246 319 486 342 793 l6 80 80 6 c308 23 549 127 792 342 153 135 225 212 351 376 44 56 182 259 182 266 0 2 13 24 30 48 17 25 30 47 30 51 0 3 19 36 43 73 55 90 62 101 88 148 12 22 36 63 54 90 17 28 58 91 90 140 153 239 342 445 537 588 46 33 48 51 9 72 -83 43 -287 240 -402 387 -75 97 -252 362 -272 408 -4 8 -18 33 -32 55 -14 22 -34 56 -45 75 -11 19 -29 49 -40 65 -11 17 -23 37 -27 45 -3 8 -26 45 -50 82 -24 37 -43 69 -43 72 0 8 -90 136 -169 241 -69 92 -220 252 -331 351 -238 212 -488 320 -795 343 l-80 6 -7 87 c-23 302 -127 541 -341 786 -54 61 -222 229 -267 266 -93 76 -360 266 -375 266 -2 0 -24 14 -48 30 -25 17 -47 30 -50 30 -4 0 -25 13 -49 29 -24 16 -61 39 -83 51 -22 12 -53 30 -70 41 -16 10 -37 22 -45 26 -15 6 -43 24 -205 128 -219 141 -438 336 -558 498 -32 42 -65 77 -72 77 -8 0 -21 -13 -30 -29z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

@media (max-width: 1599px) {
  .testimonials-four__left__image {
    top: 95px;
    width: 260px;
  }
}

@media (max-width: 1399px) {
  .testimonials-four__left__image {
    top: 50px;
    width: 220px;
  }
}

.testimonials-four__left__shape {
  max-width: 100%;
  height: auto;
}

.testimonials-four__right {
  width: 372px;
  position: relative;
  position: absolute;
  right: 120px;
  bottom: 284px;
}

@media (max-width: 1799px) {
  .testimonials-four__right {
    right: 20px;
  }
}

@media (max-width: 1599px) {
  .testimonials-four__right {
    width: 280px;
  }
}

@media (max-width: 1399px) {
  .testimonials-four__right {
    width: 250px;
  }
}

@media (max-width: 1350px) {
  .testimonials-four__right {
    display: none;
  }
}

.testimonials-four__right__image {
  position: relative;
  z-index: 1;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4455 8941 c-23 -45 -109 -147 -200 -236 -147 -145 -239 -214 -530 -400 -27 -17 -57 -35 -65 -39 -8 -4 -24 -12 -35 -19 -11 -7 -56 -34 -100 -60 -92 -55 -97 -58 -185 -113 -36 -22 -90 -55 -120 -74 -170 -106 -403 -306 -547 -472 -218 -250 -319 -485 -342 -793 l-6 -80 -87 -7 c-302 -23 -541 -127 -786 -341 -54 -47 -224 -218 -263 -262 -62 -73 -269 -365 -269 -380 0 -2 -14 -24 -30 -48 -17 -25 -30 -47 -30 -51 0 -3 -20 -36 -43 -73 -24 -37 -47 -75 -50 -83 -4 -8 -16 -28 -27 -45 -11 -16 -23 -37 -27 -45 -21 -47 -197 -311 -274 -410 -87 -113 -249 -276 -339 -343 -36 -26 -71 -52 -77 -57 -21 -18 -15 -39 16 -55 88 -45 300 -251 416 -405 78 -103 216 -312 278 -420 57 -100 109 -187 127 -215 11 -16 23 -37 27 -46 21 -44 128 -204 209 -312 85 -115 249 -292 356 -385 250 -216 487 -318 793 -341 l80 -6 6 -80 c23 -308 127 -549 342 -792 163 -185 314 -316 517 -450 154 -102 170 -112 280 -177 52 -31 102 -61 110 -66 8 -5 33 -19 55 -31 22 -12 63 -36 90 -54 28 -17 91 -58 140 -90 210 -135 440 -339 548 -486 26 -35 52 -70 57 -76 18 -21 39 -15 55 16 67 131 344 386 590 546 193 124 204 131 325 200 25 14 59 34 75 45 17 10 47 28 67 39 110 60 355 229 463 320 42 35 212 206 262 263 216 246 319 486 342 793 l6 80 80 6 c308 23 549 127 792 342 153 135 225 212 351 376 44 56 182 259 182 266 0 2 13 24 30 48 17 25 30 47 30 51 0 3 19 36 43 73 55 90 62 101 88 148 12 22 36 63 54 90 17 28 58 91 90 140 153 239 342 445 537 588 46 33 48 51 9 72 -83 43 -287 240 -402 387 -75 97 -252 362 -272 408 -4 8 -18 33 -32 55 -14 22 -34 56 -45 75 -11 19 -29 49 -40 65 -11 17 -23 37 -27 45 -3 8 -26 45 -50 82 -24 37 -43 69 -43 72 0 8 -90 136 -169 241 -69 92 -220 252 -331 351 -238 212 -488 320 -795 343 l-80 6 -7 87 c-23 302 -127 541 -341 786 -54 61 -222 229 -267 266 -93 76 -360 266 -375 266 -2 0 -24 14 -48 30 -25 17 -47 30 -50 30 -4 0 -25 13 -49 29 -24 16 -61 39 -83 51 -22 12 -53 30 -70 41 -16 10 -37 22 -45 26 -15 6 -43 24 -205 128 -219 141 -438 336 -558 498 -32 42 -65 77 -72 77 -8 0 -21 -13 -30 -29z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4455 8941 c-23 -45 -109 -147 -200 -236 -147 -145 -239 -214 -530 -400 -27 -17 -57 -35 -65 -39 -8 -4 -24 -12 -35 -19 -11 -7 -56 -34 -100 -60 -92 -55 -97 -58 -185 -113 -36 -22 -90 -55 -120 -74 -170 -106 -403 -306 -547 -472 -218 -250 -319 -485 -342 -793 l-6 -80 -87 -7 c-302 -23 -541 -127 -786 -341 -54 -47 -224 -218 -263 -262 -62 -73 -269 -365 -269 -380 0 -2 -14 -24 -30 -48 -17 -25 -30 -47 -30 -51 0 -3 -20 -36 -43 -73 -24 -37 -47 -75 -50 -83 -4 -8 -16 -28 -27 -45 -11 -16 -23 -37 -27 -45 -21 -47 -197 -311 -274 -410 -87 -113 -249 -276 -339 -343 -36 -26 -71 -52 -77 -57 -21 -18 -15 -39 16 -55 88 -45 300 -251 416 -405 78 -103 216 -312 278 -420 57 -100 109 -187 127 -215 11 -16 23 -37 27 -46 21 -44 128 -204 209 -312 85 -115 249 -292 356 -385 250 -216 487 -318 793 -341 l80 -6 6 -80 c23 -308 127 -549 342 -792 163 -185 314 -316 517 -450 154 -102 170 -112 280 -177 52 -31 102 -61 110 -66 8 -5 33 -19 55 -31 22 -12 63 -36 90 -54 28 -17 91 -58 140 -90 210 -135 440 -339 548 -486 26 -35 52 -70 57 -76 18 -21 39 -15 55 16 67 131 344 386 590 546 193 124 204 131 325 200 25 14 59 34 75 45 17 10 47 28 67 39 110 60 355 229 463 320 42 35 212 206 262 263 216 246 319 486 342 793 l6 80 80 6 c308 23 549 127 792 342 153 135 225 212 351 376 44 56 182 259 182 266 0 2 13 24 30 48 17 25 30 47 30 51 0 3 19 36 43 73 55 90 62 101 88 148 12 22 36 63 54 90 17 28 58 91 90 140 153 239 342 445 537 588 46 33 48 51 9 72 -83 43 -287 240 -402 387 -75 97 -252 362 -272 408 -4 8 -18 33 -32 55 -14 22 -34 56 -45 75 -11 19 -29 49 -40 65 -11 17 -23 37 -27 45 -3 8 -26 45 -50 82 -24 37 -43 69 -43 72 0 8 -90 136 -169 241 -69 92 -220 252 -331 351 -238 212 -488 320 -795 343 l-80 6 -7 87 c-23 302 -127 541 -341 786 -54 61 -222 229 -267 266 -93 76 -360 266 -375 266 -2 0 -24 14 -48 30 -25 17 -47 30 -50 30 -4 0 -25 13 -49 29 -24 16 -61 39 -83 51 -22 12 -53 30 -70 41 -16 10 -37 22 -45 26 -15 6 -43 24 -205 128 -219 141 -438 336 -558 498 -32 42 -65 77 -72 77 -8 0 -21 -13 -30 -29z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.testimonials-four__right__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -131px;
}

@media (max-width: 1599px) {
  .testimonials-four__right__shape {
    max-width: 200px;
    bottom: -55px;
  }
}

@media (max-width: 1399px) {
  .testimonials-four__right__shape {
    bottom: -40px;
  }
}

/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/
.video-one {
  padding: 192px 0;
  position: relative;
}

@media (max-width: 767px) {
  .video-one {
    padding: 115px 0;
  }
}

.video-one__bg {
  position: relative;
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.video-one__bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: RGBA(var(--arafa-base-rgb, 53, 28, 66), 0.8);
}

.video-one .container {
  position: relative;
  z-index: 2;
}

.video-one__title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  font-size: 150px;
  text-align: center;
  line-height: 0.666;
  letter-spacing: -6px;
  text-transform: capitalize;
  color: RGBA(var(--arafa-base-rgb, 53, 28, 66), 1);
  text-shadow: 1px 1px 0 var(--arafa-white, #fff), -1px -1px 0 var(--arafa-white, #fff), 1px -1px 0 var(--arafa-white, #fff), -1px 1px 0 var(--arafa-white, #fff), 1px 1px 0 var(--arafa-white, #fff);
  z-index: 1;
}

.video-one__title__one {
  color: RGBA(var(--arafa-purple-rgb, 150, 89, 149), 1);
}

@media (max-width: 1199px) {
  .video-one__title {
    font-size: 126px;
  }
}

@media (max-width: 991px) {
  .video-one__title {
    font-size: 80px;
  }

  .video-one__title__two {
    color: RGBA(var(--arafa-purple-rgb, 150, 89, 149), 1);
  }
}

@media (max-width: 767px) {
  .video-one__title {
    display: none;
  }
}

.video-one__button {
  width: 231px;
  height: 231px;
  background-color: var(--arafa-purple, #965995);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media (max-width: 767px) {
  .video-one__button {
    width: 150px;
    height: 150px;
  }
}

.video-one__button::after {
  content: "";
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  position: absolute;
  top: -60px;
  left: -60px;
  border-radius: 50%;
  border: 1px dashed RGBA(var(--arafa-white-rgb, 255, 255, 255), 0.25);
  animation-duration: 1500ms;
  animation: rotated 10s infinite linear;
  transition: 500ms all ease;
  animation-play-state: running;
}

.video-one__button:hover::after {
  border-color: rgba(var(--arafa-secondary-rgb, 246, 212, 105), 0.7);
}

.video-one__button span {
  position: relative;
  z-index: 99;
  font-size: 65px;
  color: var(--arafa-secondary, #F6D469);
}

@media (max-width: 767px) {
  .video-one__button span {
    font-size: 35px;
  }
}

.video-one__button .video-button__ripple::before,
.video-one__button .video-button__ripple::after {
  box-shadow: 0 0 0 0 rgba(var(--arafa-secondary-rgb, 246, 212, 105), 0.6);
}

.video-two {
  position: relative;
  background-color: var(--arafa-white, #fff);
}

.video-two .container {
  position: relative;
  z-index: 1;
}

.video-two__image {
  position: relative;
  width: 100%;
  height: 530px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 408.000000"><g transform="translate(0.000000,408.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4473 4043 c-7 -2 -13 -9 -13 -14 0 -29 -169 -172 -230 -195 -8 -3 -23 -10 -32 -15 -10 -5 -43 -17 -75 -28 -262 -86 -567 -97 -973 -36 -661 99 -1005 94 -1239 -18 -87 -42 -157 -114 -206 -212 -22 -44 -41 -82 -42 -84 -1 -2 -71 -3 -155 -2 -113 2 -157 -1 -170 -11 -11 -8 -21 -38 -27 -78 -11 -76 -25 -115 -68 -191 -31 -54 -127 -152 -167 -170 -12 -5 -28 -13 -36 -17 -51 -29 -74 -37 -150 -52 l-85 -16 -5 -99 c-6 -110 -7 -112 -88 -114 -43 -1 -137 -48 -211 -105 -52 -41 -161 -156 -186 -198 -71 -120 -168 -238 -260 -316 l-50 -43 40 -32 c72 -58 145 -140 213 -242 122 -184 232 -291 361 -355 33 -17 75 -30 93 -31 81 -2 82 -4 88 -114 l5 -99 85 -16 c76 -15 99 -23 150 -52 8 -4 26 -13 39 -18 37 -16 154 -141 177 -191 39 -81 53 -123 59 -182 5 -42 11 -60 26 -68 12 -6 80 -9 170 -8 82 1 151 0 152 -2 1 -2 20 -40 42 -84 154 -309 523 -368 1445 -230 272 41 499 50 685 26 287 -36 470 -117 602 -267 36 -40 54 -53 66 -48 9 3 17 10 17 15 0 29 169 172 230 195 8 3 23 10 32 15 10 5 43 17 75 28 262 86 566 97 973 36 570 -85 872 -92 1115 -28 159 42 262 123 330 258 22 44 41 82 42 84 1 2 70 3 152 2 90 -1 158 2 170 8 15 8 21 26 26 68 6 59 20 101 59 182 23 50 140 175 177 191 13 5 31 14 39 18 51 29 74 37 150 52 l85 16 5 99 c6 110 7 112 88 114 43 1 137 48 211 105 52 41 161 156 186 198 71 120 168 238 260 316 l50 43 -40 31 c-69 55 -143 140 -217 248 -89 132 -164 218 -239 276 -74 57 -168 104 -211 105 -81 2 -82 4 -88 114 l-5 99 -85 16 c-76 15 -99 23 -150 52 -8 4 -24 12 -36 17 -40 18 -136 116 -167 170 -43 76 -57 114 -69 191 -6 38 -17 70 -27 78 -12 10 -56 13 -169 11 -84 -1 -154 0 -155 2 -1 2 -20 40 -42 84 -154 309 -523 368 -1445 230 -406 -61 -713 -50 -970 35 -123 41 -244 120 -321 210 -23 27 -45 50 -48 49 -3 0 -12 -3 -18 -6z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 408.000000"><g transform="translate(0.000000,408.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4473 4043 c-7 -2 -13 -9 -13 -14 0 -29 -169 -172 -230 -195 -8 -3 -23 -10 -32 -15 -10 -5 -43 -17 -75 -28 -262 -86 -567 -97 -973 -36 -661 99 -1005 94 -1239 -18 -87 -42 -157 -114 -206 -212 -22 -44 -41 -82 -42 -84 -1 -2 -71 -3 -155 -2 -113 2 -157 -1 -170 -11 -11 -8 -21 -38 -27 -78 -11 -76 -25 -115 -68 -191 -31 -54 -127 -152 -167 -170 -12 -5 -28 -13 -36 -17 -51 -29 -74 -37 -150 -52 l-85 -16 -5 -99 c-6 -110 -7 -112 -88 -114 -43 -1 -137 -48 -211 -105 -52 -41 -161 -156 -186 -198 -71 -120 -168 -238 -260 -316 l-50 -43 40 -32 c72 -58 145 -140 213 -242 122 -184 232 -291 361 -355 33 -17 75 -30 93 -31 81 -2 82 -4 88 -114 l5 -99 85 -16 c76 -15 99 -23 150 -52 8 -4 26 -13 39 -18 37 -16 154 -141 177 -191 39 -81 53 -123 59 -182 5 -42 11 -60 26 -68 12 -6 80 -9 170 -8 82 1 151 0 152 -2 1 -2 20 -40 42 -84 154 -309 523 -368 1445 -230 272 41 499 50 685 26 287 -36 470 -117 602 -267 36 -40 54 -53 66 -48 9 3 17 10 17 15 0 29 169 172 230 195 8 3 23 10 32 15 10 5 43 17 75 28 262 86 566 97 973 36 570 -85 872 -92 1115 -28 159 42 262 123 330 258 22 44 41 82 42 84 1 2 70 3 152 2 90 -1 158 2 170 8 15 8 21 26 26 68 6 59 20 101 59 182 23 50 140 175 177 191 13 5 31 14 39 18 51 29 74 37 150 52 l85 16 5 99 c6 110 7 112 88 114 43 1 137 48 211 105 52 41 161 156 186 198 71 120 168 238 260 316 l50 43 -40 31 c-69 55 -143 140 -217 248 -89 132 -164 218 -239 276 -74 57 -168 104 -211 105 -81 2 -82 4 -88 114 l-5 99 -85 16 c-76 15 -99 23 -150 52 -8 4 -24 12 -36 17 -40 18 -136 116 -167 170 -43 76 -57 114 -69 191 -6 38 -17 70 -27 78 -12 10 -56 13 -169 11 -84 -1 -154 0 -155 2 -1 2 -20 40 -42 84 -154 309 -523 368 -1445 230 -406 -61 -713 -50 -970 35 -123 41 -244 120 -321 210 -23 27 -45 50 -48 49 -3 0 -12 -3 -18 -6z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background: linear-gradient(90deg, var(--arafa-brown2) 0%, rgba(var(--arafa-brown2-rgb), 0.2) 100%);
}

@media (max-width: 1199px) {
  .video-two__image {
    height: 420px;
  }
}

@media (max-width: 991px) {
  .video-two__image {
    height: 310px;
  }
}

.video-two__image__inner {
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 402.000000"><g transform="translate(0.000000,402.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4475 3982 c-5 -4 -27 -28 -47 -54 -54 -66 -134 -122 -248 -171 -227 -97 -609 -121 -1000 -62 -496 74 -793 92 -1005 60 -276 -43 -396 -119 -486 -312 l-29 -63 -166 0 c-122 0 -166 -3 -169 -12 -3 -7 -9 -40 -14 -73 -5 -33 -15 -76 -22 -95 -21 -55 -80 -141 -130 -190 -72 -70 -216 -135 -314 -142 l-40 -3 -5 -100 -5 -100 -45 -6 c-48 -6 -125 -30 -162 -51 -91 -52 -205 -159 -274 -259 -110 -157 -186 -249 -243 -294 -34 -27 -61 -51 -61 -55 0 -4 27 -28 61 -55 57 -45 133 -137 243 -294 69 -100 183 -207 274 -259 37 -21 114 -45 162 -51 l45 -6 5 -100 5 -100 40 -3 c98 -7 242 -72 314 -142 50 -49 109 -135 130 -190 7 -19 17 -62 22 -95 5 -33 11 -66 14 -72 3 -10 47 -13 169 -13 l166 0 29 -63 c33 -70 93 -155 131 -185 38 -30 138 -78 200 -95 239 -70 553 -62 1160 28 364 54 668 42 928 -36 34 -10 70 -23 80 -28 9 -5 37 -19 62 -31 70 -35 146 -96 182 -145 51 -69 65 -69 116 0 36 49 112 110 182 145 25 12 53 26 62 31 99 50 389 99 583 99 93 0 307 -18 425 -35 611 -90 915 -98 1160 -28 164 46 258 126 331 280 l29 63 166 0 c122 0 166 3 169 13 3 6 9 39 14 72 5 33 15 76 22 95 21 55 80 141 130 190 72 70 216 135 314 142 l40 3 5 100 5 100 45 6 c48 6 125 30 162 51 91 52 205 159 274 259 110 157 186 249 243 294 34 27 61 51 61 55 0 3 -29 29 -64 58 -58 46 -130 134 -250 306 -61 87 -179 195 -264 244 -37 21 -114 45 -162 51 l-45 6 -5 100 -5 100 -55 6 c-155 17 -294 104 -380 239 -44 69 -60 109 -71 185 -5 33 -11 66 -14 73 -3 9 -47 12 -169 12 l-165 0 -27 58 c-60 127 -117 190 -217 239 -240 118 -571 123 -1277 18 -124 -18 -334 -35 -435 -35 -192 1 -478 50 -571 98 -11 5 -39 20 -64 32 -70 36 -137 88 -178 138 -36 46 -52 62 -62 62 -3 0 -9 -4 -15 -8z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 402.000000"><g transform="translate(0.000000,402.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4475 3982 c-5 -4 -27 -28 -47 -54 -54 -66 -134 -122 -248 -171 -227 -97 -609 -121 -1000 -62 -496 74 -793 92 -1005 60 -276 -43 -396 -119 -486 -312 l-29 -63 -166 0 c-122 0 -166 -3 -169 -12 -3 -7 -9 -40 -14 -73 -5 -33 -15 -76 -22 -95 -21 -55 -80 -141 -130 -190 -72 -70 -216 -135 -314 -142 l-40 -3 -5 -100 -5 -100 -45 -6 c-48 -6 -125 -30 -162 -51 -91 -52 -205 -159 -274 -259 -110 -157 -186 -249 -243 -294 -34 -27 -61 -51 -61 -55 0 -4 27 -28 61 -55 57 -45 133 -137 243 -294 69 -100 183 -207 274 -259 37 -21 114 -45 162 -51 l45 -6 5 -100 5 -100 40 -3 c98 -7 242 -72 314 -142 50 -49 109 -135 130 -190 7 -19 17 -62 22 -95 5 -33 11 -66 14 -72 3 -10 47 -13 169 -13 l166 0 29 -63 c33 -70 93 -155 131 -185 38 -30 138 -78 200 -95 239 -70 553 -62 1160 28 364 54 668 42 928 -36 34 -10 70 -23 80 -28 9 -5 37 -19 62 -31 70 -35 146 -96 182 -145 51 -69 65 -69 116 0 36 49 112 110 182 145 25 12 53 26 62 31 99 50 389 99 583 99 93 0 307 -18 425 -35 611 -90 915 -98 1160 -28 164 46 258 126 331 280 l29 63 166 0 c122 0 166 3 169 13 3 6 9 39 14 72 5 33 15 76 22 95 21 55 80 141 130 190 72 70 216 135 314 142 l40 3 5 100 5 100 45 6 c48 6 125 30 162 51 91 52 205 159 274 259 110 157 186 249 243 294 34 27 61 51 61 55 0 3 -29 29 -64 58 -58 46 -130 134 -250 306 -61 87 -179 195 -264 244 -37 21 -114 45 -162 51 l-45 6 -5 100 -5 100 -55 6 c-155 17 -294 104 -380 239 -44 69 -60 109 -71 185 -5 33 -11 66 -14 73 -3 9 -47 12 -169 12 l-165 0 -27 58 c-60 127 -117 190 -217 239 -240 118 -571 123 -1277 18 -124 -18 -334 -35 -435 -35 -192 1 -478 50 -571 98 -11 5 -39 20 -64 32 -70 36 -137 88 -178 138 -36 46 -52 62 -62 62 -3 0 -9 -4 -15 -8z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.video-two__image__inner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.video-two__button {
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 81px;
  height: 81px;
  background-color: RGBA(var(--arafa-white-rgb, 255, 255, 255), 0.5);
  z-index: 2;
}

@media (max-width: 575px) {
  .video-two__button {
    width: 60px;
    height: 60px;
  }
}

.video-two__button span {
  font-size: 23px;
  color: var(--arafa-brown2);
}

@media (max-width: 575px) {
  .video-two__button span {
    font-size: 18px;
  }
}

.video-two__button:hover {
  background-color: var(--arafa-white, #fff);
}

.video-two__button:hover span {
  color: var(--arafa-brown2);
}

.video-two__button .video-button__ripple::before,
.video-two__button .video-button__ripple::after {
  box-shadow: 0 0 0 0 rgba(var(--arafa-white-rgb, 255, 255, 255), 0.25);
}

.video-two__dome {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 39px;
  bottom: 0;
  opacity: 0.25;
}

@media (max-width: 1799px) {
  .video-two__dome {
    max-width: 190px;
  }
}

@media (max-width: 1599px) {
  .video-two__dome {
    max-width: 150px;
  }
}

@media (max-width: 1199px) {
  .video-two__dome {
    max-width: 140px;
    left: 20px;
  }
}

@media (max-width: 991px) {
  .video-two__dome {
    max-width: 110px;
  }
}

@media (max-width: 767px) {
  .video-two__dome {
    max-width: 100px;
  }
}

@media (max-width: 575px) {
  .video-two__dome {
    max-width: 90px;
    left: 10px;
  }
}

.video-two__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 62px;
  bottom: 143px;
  animation: zump 2s infinite linear;
}

@media (max-width: 1599px) {
  .video-two__shape {
    right: 50px;
    bottom: 80px;
  }
}

@media (max-width: 1399px) {
  .video-two__shape {
    right: 50px;
    bottom: 50px;
  }
}

@media (max-width: 1199px) {
  .video-two__shape {
    bottom: 30px;
  }
}

@media (max-width: 991px) {
  .video-two__shape {
    right: 30px;
    bottom: 20px;
  }
}

@media (max-width: 767px) {
  .video-two__shape {
    max-width: 115px;
  }
}

@media (max-width: 575px) {
  .video-two__shape {
    max-width: 100px;
  }
}

/*--------------------------------------------------------------
# vision mission
--------------------------------------------------------------*/
.rs-service-3 {
  position: relative;
  z-index: 10;
  overflow: hidden;
}

@media only screen and (max-width: 575px) {
  .rs-service-3 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.rs-service-3 .rs-background-text {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}

.rs-service-3 .rs-background-text span {
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 200px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 0.71;
  background-color: transparent;
  background-image: linear-gradient(180deg, #212C4A14 0%, #FFFFFF00 60%);
  font-family: "Urbanist", sans-serif;
}

.rs-service-3__item {
  background: linear-gradient(179.4deg, #C7FDEE -16.9%, #FDFFFE 119.9%);
  padding: 35px 30px 35px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  margin-top: 30px;
  height: auto;
  box-shadow: rgb(0 0 0 / 48%) 6px 2px 16px 0px, rgb(143 126 126 / 0%) -6px -2px 16px 0px;
}

.rs-service-3__item .rs-bg-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.rs-service-3__item .icon {
  width: 60px;
  margin-bottom: 30px;
}

.rs-service-3__item .title a {
  color: #000000;
  font-size: 24px;
  line-height: 32px;
  transition: none;
  font-family: 'Roboto Serif';
  font-weight: 600;
}

.rs-service-3__item .title a:hover {
  color: #000000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: #000000;
}

.rs-service-3__item p {
  color: #6f6f6f;
  margin-top: 18px;
  margin-bottom: 20px;
  font-family: 'Inter';
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-service-3__item p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-service-3__item p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .rs-service-3__item p {
    font-size: 13px;
  }
}

.rs-service-3__item>a {
  color: #000000;
  font-size: 0px;
  transition: all linear 0.3s;
  display: flex;
  align-items: center;
}

.rs-service-3__item>a i {
  font-size: 20px;
  margin-left: 0px;
  transition: all linear 0.3s;
}

.rs-service-3__item .rs-number-box {
  position: absolute;
  right: 0;
  top: 35px;
  background: white;
  width: 75px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px 0 0 30px;
}

.rs-service-3__item .rs-number-box span {
  font-size: 30px;
  color: #000000;
  font-weight: 700;
  font-family: 'El Messiri';
}

.rs-service-3__item:hover>a {
  font-size: 16px;
}

.rs-service-3__item:hover>a i {
  margin-left: 8px;
}

.rs-service-3.rs-service-grid-2 {
  background: transparent;
}

.rs-service-3.rs-service-grid-2 .rs-background-text {
  display: none;
}

.rs-service-3.rs-service-grid-2 .rs-section-title {
  text-align: center;
  padding-bottom: 25px;
}

.rs-service-3.rs-service-grid-2 .rs-service-3__item {
  background: #002559;
}

.rs-service-3.rs-service-grid-2 .rs-service-3__item .rs-number-box {
  background: #FFFFFF24;
}

.rs-service-3.rs-service-grid-2 .rs-service-3__item .rs-number-box span {
  color: #ffffff;
}

.rs-service-3.rs-service-grid-2 .rs-service-3__item .title a {
  background-image: none;
  transition: all linear 0.3s;
}

.rs-service-3.rs-service-grid-2 .rs-service-3__item .title a:hover {
  color: #F26F20;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
  background-color: inherit;
}


/*************************************************************
Download Button
*************************************************************/
.btn-download a {
  background: linear-gradient(to right, #FCBB8B, #FF7E90);
  padding: 8px 16px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  left: 100%;
  bottom: 12px;
  color: white;
  top: 25px;
  font-family: 'Roboto Serif';
  font-weight: 600;
}

.download-container {
  display: flex;
  background-color: #d5fdf2;
  padding: 0px 22% 10px;
  border-radius: 100px;
  margin-bottom: 58px;
  position: relative;
  z-index: 5;
}

section.download-btn {
  margin: 60px 0 0;
}

section.download-btn .sec-title__title {
  position: relative;
  top: 12px;
  font-size: 34px;
}

/*--------------------------------------------------------------
# highlights
--------------------------------------------------------------*/
.services-three {
  position: relative;
  display: block;
  padding: 90px 0 60px;
  z-index: 1;
  background: linear-gradient(179.4deg, #d0fef1 -16.9%, #f1fffb17 119.9%);
  border-top: 2px solid black;
  border-image: linear-gradient(to right, #d0fcf0, #79E1C4, #d0fcf0) 1;
  margin-top: -26px;
}

.services-three__img.highlight1 {
  border-radius: 0 150px 0 150px;
}

.services-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.services-three__img::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: linear-gradient(0deg, #fcb98bba 11%, rgb(0 0 0 / 0%) 30%);
  z-index: 1;
}



.services-three__img:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--insur-black-rgb), 0.3);
  transition: all 500ms ease;
  transform: translate3d(0px, -100%, 0px);
}

.services-three__single:hover .services-three__img:after {
  transform: translate3d(0px, 0, 0px);
}

.services-three__img img {
  width: 100%;
  border-radius: var(--insur-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__single:hover .services-three__img img {
  transform: scale(1.05);
}

.services-three__content {
  position: absolute;
  bottom: 25px;
  left: 34%;
  z-index: 2;
}

.services-three__title {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: var(--insur-letter-spacing);
}

.services-three__title a {
  color: black;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: Barlow Semi Condensed;
  font-size: 40px;
  letter-spacing: 2px;
  position: relative;
  right: 0%;
  font-weight: 600;
  font-size: 26px;
  text-align: center;
}

.services-three__single:hover .services-three__title a {
  color: black;
}

.services-three__get-quote {
  position: relative;
  display: block;
  background-color: var(--insur-extra);
  border-radius: var(--insur-bdr-radius);
  padding: 39px 60px 50px;
}

.services-three__get-quote-sub-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 33px;
}

.services-three__get-quote-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: var(--insur-letter-spacing);
  margin-bottom: 26px;
}

.services-three__get-quote-btn {
  padding: 12px 30px 12px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# instutution
--------------------------------------------------------------*/
.faq__area {
  padding: 10px 0 134px;
  background: linear-gradient(179.4deg, rgb(241 255 251 / 9%) -16.9%, rgb(208 254 241) 119.9%);
  margin-bottom: 70px;
  border-bottom: 2px solid black;
  border-image: linear-gradient(to right, #d0fcf0, #79E1C4, #d0fcf0) 1;
}

.faq__area .title-wrapper p {
  font-size: 18px;
  padding-top: 20px;
  padding-bottom: 30px;
}

.faq__left {
  position: relative;
  margin-right: 40px;
}

@media (max-width: 991px) {
  .faq__left {
    margin-bottom: 120px;
  }
}

@media (max-width: 767px) {
  .faq__left {
    margin-right: 0;
    margin-bottom: 60px;
  }
}

.faq__left .image {
  position: relative;
  z-index: 1;
  border-radius: 12px 12px 0px 0px;
}

.faq__left .shape {
  position: absolute;
  right: 0;
  top: -35px;
  z-index: 0;
}

.faq__left .contact-box {
  position: absolute;
  bottom: -72px;
  right: -17%;
  z-index: 3;
  width: 122%;
  box-shadow: rgb(0 0 0 / 48%) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

.contact-box h4 {
  font-size: 17px;
  text-align: center;
  font-family: 'Roboto Serif';
}

@media (max-width: 767px) {
  .faq__left .contact-box {
    position: unset;
  }
}

.faq__list .accordion-item {
  border-radius: 8px;
  margin-bottom: 15px;
  background: var(--white);
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}

.faq__list .accordion-button {
  color: var(--black-6);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  border-radius: 0;
  font-family: "Manrope", sans-serif;
}

.faq__list .accordion-button::after {
  background-image: none;
  content: "+";
  -webkit-transform: unset;
  transform: unset;
  width: 20px;
  height: 20px;
  color: var(--black-6);
  border: 1px solid var(--black-6);
  line-height: 18px;
  text-align: center;
  border-radius: 100px;
}

.faq__list .accordion-button:focus {
  outline: none;
  border: none;
}

.faq__list .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  color: var(--primary);
  background-color: transparent;
}

.faq__list .accordion-button:not(.collapsed)::after {
  content: "-";
  color: var(--primary);
  border-color: var(--primary);
}

.contact-box {
  max-width: 410px;
  padding: 12px;
  border-radius: 8px;
  background: white;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}

/*--------------------------------------------------------------
# Prayer Time
--------------------------------------------------------------*/
.prayer-time {
  position: relative;
  margin-top: -159px;
  z-index: 1;
}

.prayer-time__inner {
  position: relative;
  padding: 33px 40px 35px 298px;
  background-color: var(--arafa-brown);
  border-radius: 100px 100px 0px 0px;
}

@media (max-width: 767px) {
  .prayer-time__inner {
    padding-left: 40px;
  }
}

@media (max-width: 575px) {
  .prayer-time__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.prayer-time__grid {
  --bs-gutter-x: 53px;
  --bs-gutter-y: 26.5px;
}

.prayer-time__image {
  width: 100%;
  max-width: 206px;
  height: 94px;
  position: relative;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .prayer-time__image {
    display: none;
  }
}

.prayer-time__image__box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: var(--arafa-white, #fff);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 618.000000 282.000000"><g transform="translate(0.000000,282.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M3002 2724 c-34 -35 -68 -64 -76 -64 -7 0 -19 -7 -26 -15 -7 -8 -22 -15 -34 -15 -12 0 -26 -4 -31 -9 -6 -6 -44 -18 -85 -27 -96 -23 -451 -32 -520 -13 -25 6 -81 15 -125 19 -44 5 -109 14 -145 20 -37 7 -161 12 -285 13 -203 0 -225 -2 -285 -22 -97 -33 -145 -66 -190 -126 -22 -30 -40 -58 -40 -63 0 -5 -7 -23 -15 -39 -10 -20 -16 -62 -16 -119 -1 -96 -8 -114 -46 -114 -38 0 -185 -75 -251 -128 -33 -26 -77 -68 -97 -92 -47 -57 -69 -69 -116 -63 -47 7 -164 -14 -204 -36 -37 -20 -103 -68 -130 -96 -28 -27 -85 -101 -85 -110 0 -13 -88 -120 -139 -170 -28 -27 -51 -55 -51 -61 0 -6 15 -22 32 -34 33 -22 119 -120 127 -143 8 -24 96 -133 140 -175 25 -23 64 -53 87 -65 46 -27 175 -52 226 -45 45 7 70 -6 110 -59 67 -90 277 -223 352 -223 36 0 44 -18 45 -112 1 -80 11 -126 42 -178 5 -8 13 -24 18 -35 13 -29 70 -79 116 -102 95 -48 148 -56 375 -56 213 0 227 1 526 49 137 21 399 19 510 -5 150 -33 215 -64 297 -141 36 -33 67 -60 70 -60 3 0 32 27 65 60 33 33 71 64 84 70 12 5 30 14 38 19 22 12 76 30 145 48 81 21 449 30 514 12 25 -6 82 -15 126 -19 44 -5 109 -14 145 -20 37 -7 161 -12 285 -13 203 0 225 2 284 22 118 41 150 64 209 148 12 18 22 36 22 41 0 5 7 23 15 39 10 20 16 62 16 119 1 96 9 114 45 114 72 0 287 136 352 223 40 53 65 66 111 59 44 -6 167 16 206 37 37 20 103 69 130 96 28 27 85 101 85 110 0 13 88 120 139 170 28 27 51 55 51 61 0 6 -15 22 -32 34 -33 22 -119 120 -127 143 -7 21 -93 131 -130 166 -69 65 -131 97 -213 111 -43 7 -92 10 -111 7 -41 -6 -65 7 -111 61 -85 102 -238 201 -341 219 -49 9 -53 17 -54 112 0 83 -11 128 -42 181 -5 8 -13 24 -18 36 -12 26 -79 84 -123 105 -90 44 -146 52 -363 52 -206 0 -281 -6 -535 -49 -130 -21 -395 -19 -506 5 -150 33 -215 64 -297 141 -36 33 -68 59 -73 59 -5 -1 -37 -30 -72 -65z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 618.000000 282.000000"><g transform="translate(0.000000,282.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M3002 2724 c-34 -35 -68 -64 -76 -64 -7 0 -19 -7 -26 -15 -7 -8 -22 -15 -34 -15 -12 0 -26 -4 -31 -9 -6 -6 -44 -18 -85 -27 -96 -23 -451 -32 -520 -13 -25 6 -81 15 -125 19 -44 5 -109 14 -145 20 -37 7 -161 12 -285 13 -203 0 -225 -2 -285 -22 -97 -33 -145 -66 -190 -126 -22 -30 -40 -58 -40 -63 0 -5 -7 -23 -15 -39 -10 -20 -16 -62 -16 -119 -1 -96 -8 -114 -46 -114 -38 0 -185 -75 -251 -128 -33 -26 -77 -68 -97 -92 -47 -57 -69 -69 -116 -63 -47 7 -164 -14 -204 -36 -37 -20 -103 -68 -130 -96 -28 -27 -85 -101 -85 -110 0 -13 -88 -120 -139 -170 -28 -27 -51 -55 -51 -61 0 -6 15 -22 32 -34 33 -22 119 -120 127 -143 8 -24 96 -133 140 -175 25 -23 64 -53 87 -65 46 -27 175 -52 226 -45 45 7 70 -6 110 -59 67 -90 277 -223 352 -223 36 0 44 -18 45 -112 1 -80 11 -126 42 -178 5 -8 13 -24 18 -35 13 -29 70 -79 116 -102 95 -48 148 -56 375 -56 213 0 227 1 526 49 137 21 399 19 510 -5 150 -33 215 -64 297 -141 36 -33 67 -60 70 -60 3 0 32 27 65 60 33 33 71 64 84 70 12 5 30 14 38 19 22 12 76 30 145 48 81 21 449 30 514 12 25 -6 82 -15 126 -19 44 -5 109 -14 145 -20 37 -7 161 -12 285 -13 203 0 225 2 284 22 118 41 150 64 209 148 12 18 22 36 22 41 0 5 7 23 15 39 10 20 16 62 16 119 1 96 9 114 45 114 72 0 287 136 352 223 40 53 65 66 111 59 44 -6 167 16 206 37 37 20 103 69 130 96 28 27 85 101 85 110 0 13 88 120 139 170 28 27 51 55 51 61 0 6 -15 22 -32 34 -33 22 -119 120 -127 143 -7 21 -93 131 -130 166 -69 65 -131 97 -213 111 -43 7 -92 10 -111 7 -41 -6 -65 7 -111 61 -85 102 -238 201 -341 219 -49 9 -53 17 -54 112 0 83 -11 128 -42 181 -5 8 -13 24 -18 36 -12 26 -79 84 -123 105 -90 44 -146 52 -363 52 -206 0 -281 -6 -535 -49 -130 -21 -395 -19 -506 5 -150 33 -215 64 -297 141 -36 33 -68 59 -73 59 -5 -1 -37 -30 -72 -65z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.prayer-time__image__inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 618.000000 282.000000"><g transform="translate(0.000000,282.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M3002 2724 c-34 -35 -68 -64 -76 -64 -7 0 -19 -7 -26 -15 -7 -8 -22 -15 -34 -15 -12 0 -26 -4 -31 -9 -6 -6 -44 -18 -85 -27 -96 -23 -451 -32 -520 -13 -25 6 -81 15 -125 19 -44 5 -109 14 -145 20 -37 7 -161 12 -285 13 -203 0 -225 -2 -285 -22 -97 -33 -145 -66 -190 -126 -22 -30 -40 -58 -40 -63 0 -5 -7 -23 -15 -39 -10 -20 -16 -62 -16 -119 -1 -96 -8 -114 -46 -114 -38 0 -185 -75 -251 -128 -33 -26 -77 -68 -97 -92 -47 -57 -69 -69 -116 -63 -47 7 -164 -14 -204 -36 -37 -20 -103 -68 -130 -96 -28 -27 -85 -101 -85 -110 0 -13 -88 -120 -139 -170 -28 -27 -51 -55 -51 -61 0 -6 15 -22 32 -34 33 -22 119 -120 127 -143 8 -24 96 -133 140 -175 25 -23 64 -53 87 -65 46 -27 175 -52 226 -45 45 7 70 -6 110 -59 67 -90 277 -223 352 -223 36 0 44 -18 45 -112 1 -80 11 -126 42 -178 5 -8 13 -24 18 -35 13 -29 70 -79 116 -102 95 -48 148 -56 375 -56 213 0 227 1 526 49 137 21 399 19 510 -5 150 -33 215 -64 297 -141 36 -33 67 -60 70 -60 3 0 32 27 65 60 33 33 71 64 84 70 12 5 30 14 38 19 22 12 76 30 145 48 81 21 449 30 514 12 25 -6 82 -15 126 -19 44 -5 109 -14 145 -20 37 -7 161 -12 285 -13 203 0 225 2 284 22 118 41 150 64 209 148 12 18 22 36 22 41 0 5 7 23 15 39 10 20 16 62 16 119 1 96 9 114 45 114 72 0 287 136 352 223 40 53 65 66 111 59 44 -6 167 16 206 37 37 20 103 69 130 96 28 27 85 101 85 110 0 13 88 120 139 170 28 27 51 55 51 61 0 6 -15 22 -32 34 -33 22 -119 120 -127 143 -7 21 -93 131 -130 166 -69 65 -131 97 -213 111 -43 7 -92 10 -111 7 -41 -6 -65 7 -111 61 -85 102 -238 201 -341 219 -49 9 -53 17 -54 112 0 83 -11 128 -42 181 -5 8 -13 24 -18 36 -12 26 -79 84 -123 105 -90 44 -146 52 -363 52 -206 0 -281 -6 -535 -49 -130 -21 -395 -19 -506 5 -150 33 -215 64 -297 141 -36 33 -68 59 -73 59 -5 -1 -37 -30 -72 -65z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 618.000000 282.000000"><g transform="translate(0.000000,282.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M3002 2724 c-34 -35 -68 -64 -76 -64 -7 0 -19 -7 -26 -15 -7 -8 -22 -15 -34 -15 -12 0 -26 -4 -31 -9 -6 -6 -44 -18 -85 -27 -96 -23 -451 -32 -520 -13 -25 6 -81 15 -125 19 -44 5 -109 14 -145 20 -37 7 -161 12 -285 13 -203 0 -225 -2 -285 -22 -97 -33 -145 -66 -190 -126 -22 -30 -40 -58 -40 -63 0 -5 -7 -23 -15 -39 -10 -20 -16 -62 -16 -119 -1 -96 -8 -114 -46 -114 -38 0 -185 -75 -251 -128 -33 -26 -77 -68 -97 -92 -47 -57 -69 -69 -116 -63 -47 7 -164 -14 -204 -36 -37 -20 -103 -68 -130 -96 -28 -27 -85 -101 -85 -110 0 -13 -88 -120 -139 -170 -28 -27 -51 -55 -51 -61 0 -6 15 -22 32 -34 33 -22 119 -120 127 -143 8 -24 96 -133 140 -175 25 -23 64 -53 87 -65 46 -27 175 -52 226 -45 45 7 70 -6 110 -59 67 -90 277 -223 352 -223 36 0 44 -18 45 -112 1 -80 11 -126 42 -178 5 -8 13 -24 18 -35 13 -29 70 -79 116 -102 95 -48 148 -56 375 -56 213 0 227 1 526 49 137 21 399 19 510 -5 150 -33 215 -64 297 -141 36 -33 67 -60 70 -60 3 0 32 27 65 60 33 33 71 64 84 70 12 5 30 14 38 19 22 12 76 30 145 48 81 21 449 30 514 12 25 -6 82 -15 126 -19 44 -5 109 -14 145 -20 37 -7 161 -12 285 -13 203 0 225 2 284 22 118 41 150 64 209 148 12 18 22 36 22 41 0 5 7 23 15 39 10 20 16 62 16 119 1 96 9 114 45 114 72 0 287 136 352 223 40 53 65 66 111 59 44 -6 167 16 206 37 37 20 103 69 130 96 28 27 85 101 85 110 0 13 88 120 139 170 28 27 51 55 51 61 0 6 -15 22 -32 34 -33 22 -119 120 -127 143 -7 21 -93 131 -130 166 -69 65 -131 97 -213 111 -43 7 -92 10 -111 7 -41 -6 -65 7 -111 61 -85 102 -238 201 -341 219 -49 9 -53 17 -54 112 0 83 -11 128 -42 181 -5 8 -13 24 -18 36 -12 26 -79 84 -123 105 -90 44 -146 52 -363 52 -206 0 -281 -6 -535 -49 -130 -21 -395 -19 -506 5 -150 33 -215 64 -297 141 -36 33 -68 59 -73 59 -5 -1 -37 -30 -72 -65z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
  z-index: 1;
}

.prayer-time__image__inner img {
  width: 100%;
  display: block;
}

.prayer-time__col {
  width: 20%;
}

@media (max-width: 1199px) {
  .prayer-time__col {
    width: 33.3333333333%;
  }
}

@media (max-width: 991px) {
  .prayer-time__col {
    width: 50%;
  }
}

@media (max-width: 430px) {
  .prayer-time__col {
    width: 100%;
  }
}

.prayer-time__col:not(:last-child) .prayer-time__box::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(var(--arafa-base-rgb), 0.15);
  position: absolute;
  top: 50%;
  right: -26.5px;
  transform: translateY(-50%);
}

@media (max-width: 1199px) {
  .prayer-time__col:nth-child(3) .prayer-time__box::after {
    visibility: hidden;
  }
}

@media (max-width: 991px) {
  .prayer-time__col:nth-child(3) .prayer-time__box::after {
    visibility: visible;
  }
}

@media (max-width: 430px) {
  .prayer-time__col:nth-child(3) .prayer-time__box::after {
    visibility: hidden;
  }
}

@media (max-width: 991px) {

  .prayer-time__col:nth-child(2) .prayer-time__box::after,
  .prayer-time__col:nth-child(4) .prayer-time__box::after {
    visibility: hidden;
  }
}

@media (max-width: 430px) {
  .prayer-time__col:nth-child(1) .prayer-time__box::after {
    visibility: hidden;
  }
}

.prayer-time__box {
  position: relative;
  text-align: center;
}

.prayer-time__title {
  margin-bottom: 9px;
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
  text-transform: capitalize;
}

.prayer-time__text {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.prayer-time__text li+li {
  margin-top: 10px;
}

.prayer-time__text li {
  font-size: 16px;
  color: var(--arafa-base);
  font-weight: 400;
  line-height: 21px;
  text-transform: capitalize;
}

.prayer-time__text li span {
  color: inherit;
}

/*--------------------------------------------------------------
# Support
--------------------------------------------------------------*/
.support-one {
  position: relative;
  z-index: 1;
}

.support-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--arafa-white2, #EFECE7);
  z-index: 1;
}

.support-one .container {
  position: relative;
  z-index: 11;
}

.support-one .sec-title {
  width: 100%;
  max-width: 537px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.support-one .sec-title__tagline {
  margin-left: auto;
  margin-right: auto;
}

.support-one .sec-title__title {
  text-transform: none;
}

.support-one__shape__one {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  animation: slowXmove 6s ease infinite;
}

@media (max-width: 1399px) {
  .support-one__shape__one {
    width: 300px;
  }
}

@media (max-width: 1199px) {
  .support-one__shape__one {
    width: 220px;
  }
}

@media (max-width: 991px) {
  .support-one__shape__one {
    width: 210px;
  }
}

@media (max-width: 767px) {
  .support-one__shape__one {
    display: none;
  }
}

.support-one__shape__two {
  position: absolute;
  right: 0;
  bottom: 10px;
  z-index: -1;
  animation: slowXmove 6s ease infinite;
}

@media (max-width: 1799px) {
  .support-one__shape__two {
    width: 250px;
  }
}

@media (max-width: 767px) {
  .support-one__shape__two {
    display: none;
  }
}

.support-card {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .support-card {
    flex-direction: column;
    height: auto;
  }

  .support-card--direction .support-card__image {
    order: 0;
  }

  .support-card--direction .support-card__content {
    order: 1;
  }
}

.support-card__image {
  width: 50%;
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .support-card__image {
    width: 100%;
    height: auto;
  }
}

.support-card__image::after {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(var(--arafa-white-rgb, 255, 255, 255), 0) 0%, rgba(var(--arafa-white-rgb, 255, 255, 255), 0.2) 100%);
  background: linear-gradient(to right, rgba(var(--arafa-white-rgb, 255, 255, 255), 0) 0%, rgba(var(--arafa-white-rgb, 255, 255, 255), 0.2) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.support-card__image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
  transition: all 500ms ease;
}

.support-card:hover .support-card__image::after {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

.support-card:hover .support-card__image img {
  transform: scale(1.1);
}

.support-card__content {
  width: 50%;
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--arafa-white2, #EFECE7);
  border-radius: 20px;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 575px) {
  .support-card__content {
    width: 100%;
    min-height: 270px;
  }
}

.support-card__content::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--arafa-base, #351C42);
  z-index: -1;
  position: absolute;
  top: 100%;
  left: 100%;
  border-radius: 20px;
  transition: all 400ms ease;
}

.support-card__content__inner {
  text-align: center;
}

.support-card:hover .support-card__content::after {
  top: 0%;
  left: 0%;
}

.support-card__title {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 24px;
  line-height: 1.25;
  text-transform: capitalize;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.support-card:hover .support-card__title {
  color: var(--arafa-white, #fff);
}

.support-card__collected {
  display: inline-block;
  padding: 10px;
  background-color: var(--arafa-purple, #965995);
  color: var(--arafa-white2, #EFECE7);
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.support-card:hover .support-card__collected {
  color: var(--arafa-base, #351C42);
  background-color: var(--arafa-secondary, #F6D469);
}

.support-one--pricing .support-card__content {
  background-color: var(--arafa-white, #fff);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-one__top {
  margin-bottom: 65px;
}

.gallery-one__top .owl-stage-outer {
  border-radius: 20px;
}

.gallery-one__top__image {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 465px;
  width: 100%;
  transform: scale(1);
  transition: transform 10000ms ease, -webkit-transform 10000ms ease;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 500px) {
  .gallery-one__top__image {
    height: 380px;
  }
}

.active .gallery-one__top__image {
  transform: scale(1.2);
}

.gallery-one__top .owl-nav {
  margin-top: 0;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 70px);
}

.gallery-one__top .owl-nav::before,
.gallery-one__top .owl-nav::after {
  display: none;
}

@media (max-width: 767px) {
  .gallery-one__top .owl-nav {
    width: calc(100% - 40px);
  }
}

@media (max-width: 500px) {
  .gallery-one__top .owl-nav {
    width: calc(100% - 20px);
  }
}

@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: 50px;
  flex-wrap: wrap;
}

.gallery-one__filter__list li+li span {
  border-left: 1px solid var(--arafa-secondary, #F6D469);
}

.gallery-one__filter__list li {
  cursor: pointer;
}

.gallery-one__filter__list li span {
  display: block;
  font-size: 16px;
  background-color: var(--arafa-base, #351C42);
  color: var(--arafa-white, #fff);
  transition: all 500ms ease;
  text-transform: capitalize;
  font-weight: 500;
  padding: 15px 20px;
  line-height: 1.2em;
}

.gallery-one__filter__list li.active span,
.gallery-one__filter__list li:hover span {
  background-color: var(--arafa-secondary, #F6D469);
  color: var(--arafa-base, #351C42);
}

.gallery-one__card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-one__card img {
  display: block;
  width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
  border-radius: 20px;
}

.gallery-one__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--arafa-base-rgb, 53, 28, 66), 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  border-radius: 20px;
}

.gallery-one__card__hover .img-popup {
  position: relative;
}

.gallery-one__card:hover img {
  transform: scale(1.05);
}

.gallery-one__card:hover .gallery-one__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}

.gallery-one__card__icon {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
}

.gallery-one__card__icon::after,
.gallery-one__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--arafa-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
}

.gallery-one__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

section.events-gallery.pb-5 {
  margin-top: 0;
}

/************************************* button ********************************/
.rts-nbg-btn {
  font-weight: 500;
  position: relative;
  color: #FF8490;
  text-transform: capitalize;
  font-family: 'Roboto Serif';
}

.about-four__content .rts-nbg-btn {
  font-weight: 500;
  color: #FF8490;
  text-transform: capitalize;
  font-family: 'Gontserrat';
  position: relative;
  bottom: 22px;
}

.rts-nbg-btn::before {
  position: absolute;
  content: '';
  width: 90%;
  height: 1px;
  background: #FF8490;
  bottom: -2px;
  border-radius: inherit;
}

.rts-nbg-btn.btn-arrow span {
  transform: rotate(-35deg);
  margin-left: 5px;
  display: inline-block;
  transition: all 0.4s ease;
}

.rts-nbg-btn.btn-arrow:hover span {
  transform: rotate(0);
}

.rts-arrow {
  color: var(--rt-primary);
  font-weight: 600;
  display: inline-block;
}

.rts-arrow span {
  margin-left: 5px;
}

.rts__round--btn {
  height: 50px;
  width: 50px;
  border: 1px solid var(--rt-heading);
  color: var(--rt-heading);
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: var(--transition);
}

.rts__round--btn i {
  transform: rotate(-30deg);
  transition: var(--transition);
}

.rts__round--btn:hover {
  background: var(--rt-primary-1);
  border-color: var(--rt-primary-1);
}

.rts__round--btn:hover i {
  color: var(--rt-white);
  transform: rotate(0);
}

/* Swiper slider button - Arrow button style */
.rt-slider-btn {
  position: absolute;
  top: 50%;
  background: transparent;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  color: var(--rt-body);
  left: 100px;
  z-index: 9;
  transform: translateY(-50%);
  font-size: 24px;
  transition: var(--transition);
  border: 1px solid var(--rt-body);
  display: grid;
  place-items: center;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .rt-slider-btn {
    left: 50px;
  }
}

.rt-slider-btn:hover {
  background: var(--rt-primary-2);
  border-color: var(--rt-primary-2) !important;
}

.rt-slider-btn:hover i {
  color: var(--rt-white);
}

.rt-slider-btn i {
  color: var(--rt-body);
}

.rt-slider-btn.rt-prev {
  left: auto;
  right: 100px;
}

@media (max-width: 1024px) {
  .rt-slider-btn.rt-prev {
    right: 50px;
  }
}


/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar-one {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(100%);
  transform-origin: right center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.sidebar-one.active {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.sidebar-one__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--arafa-dark, #24102F);
  opacity: 0.7;
  cursor: url(../images/close.png), auto;
}

.sidebar-one__content {
  width: 360px;
  background-color: var(--arafa-dark, #24102F);
  z-index: 10;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  padding-top: 45px;
  padding-bottom: 30px;
  padding-left: 35px;
  padding-right: 35px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  /* hide scrollbar but allow scrolling */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.sidebar-one__content::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.sidebar-one.active .sidebar-one__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.sidebar-one__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: var(--arafa-white, #fff);
  cursor: pointer;
}

.sidebar-one__close:hover {
  color: var(--arafa-secondary, #F6D469);
}

.sidebar-one__item:not(:last-child) {
  margin-bottom: 40px;
}

.sidebar-one__title {
  font-size: 20px;
  color: var(--arafa-white, #fff);
  line-height: 1.5;
  margin-bottom: 15px;
}

.sidebar-one__about__text {
  color: var(--arafa-white2, #EFECE7);
  text-transform: capitalize;
  margin-bottom: 0;
}

.sidebar-one__information__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-one__information__list li {
  display: flex;
  align-items: flex-start;
}

.sidebar-one__information__list li:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar-one__information__icon {
  position: relative;
  top: 7px;
  font-size: 16px;
  color: var(--arafa-secondary, #F6D469);
  margin-right: 10px;
  line-height: normal;
}

.sidebar-one__information__icon.icon-envelope {
  top: 9px;
  font-size: 14px;
}

.sidebar-one__information__address {
  margin-bottom: 0;
}

.sidebar-one__information__text {
  color: var(--arafa-white2, #EFECE7);
  font-size: 17px;
  margin-bottom: 0;
}

.sidebar-one__information__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.sidebar-one__information__text a:hover {
  background-size: 100% 1px;
}

.sidebar-one__information__text a:hover {
  color: var(--arafa-secondary, #F6D469);
}

.sidebar-one__socila a {
  color: var(--arafa-white, #fff);
}

.sidebar-one__socila a:hover {
  color: var(--arafa-secondary, #F6D469);
}

.sidebar-one__socila a+a::after {
  background-color: var(--arafa-border-color2, #414141);
}

.sidebar-one__newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-one__newsletter__input {
  padding: 0;
  border: none;
  outline: none;
  color: var(--arafa-white, #fff) !important;
  width: calc(100% - 50px);
  height: 50px;
  padding-left: 15px;
  padding-right: 10px;
  background-color: rgba(var(--arafa-white-rgb, 255, 255, 255), 0.08);
}

.sidebar-one__newsletter__input::placeholder {
  color: var(--arafa-white3, #D7D3CB) !important;
}

.sidebar-one__newsletter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  width: 50px;
  height: 50px;
  background-color: var(--arafa-secondary, #F6D469);
  transition: all 400ms ease;
}

.sidebar-one__newsletter__btn:hover {
  background-color: var(--arafa-purple, #965995);
}

.sidebar-one__newsletter__btn:hover i {
  color: var(--arafa-white, #fff);
}

.sidebar-one__newsletter__btn i {
  position: relative;
  top: 0px;
  font-size: 20px;
  color: var(--arafa-base, #351C42);
  transition: all 400ms ease;
}

.sidebar__single {
  border-radius: 20px;
  background-color: var(--arafa-white2, #EFECE7);
  padding: 30px;
}

@media (max-width: 1199px) {
  .sidebar__single {
    padding: 30px 25px;
  }
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  text-transform: capitalize;
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  margin-top: -5px;
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .sidebar__title {
    font-size: 22px;
  }
}

.sidebar__form__title {
  margin-bottom: 19px;
}

.sidebar__search {
  display: flex;
  align-items: center;
  position: relative;
  height: 59px;
}

.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  padding-left: 20px;
  padding-right: 40px;
  outline: none;
  border: 0;
  border: 1px solid var(--arafa-border-color, #D7D3CB);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--arafa-white, #fff);
  transition: all 500ms ease;
}

.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
  border-color: var(--arafa-purple, #965995);
}

.sidebar__search button[type=submit] {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: auto;
  font-size: 20px;
  color: var(--arafa-purple, #965995);
  z-index: 11;
}

.sidebar__posts {
  margin-bottom: 0;
}

.sidebar__posts__item {
  display: flex;
}

.sidebar__posts__item:not(:last-of-type) {
  margin-bottom: 29px;
}

.sidebar__posts__image {
  width: 80px;
  flex-shrink: 0;
  margin-right: 16px;
}

.sidebar__posts__image img {
  border-radius: 6px;
}

.sidebar__posts__content {
  position: relative;
  top: -1px;
  width: calc(100% - 80px);
}

.sidebar__posts__meta {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.sidebar__posts__meta a {
  display: inline-flex;
  align-items: center;
  color: var(--arafa-gray, #888888);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.142;
  transition: all 500ms ease;
}

.sidebar__posts__meta a:hover {
  color: var(--arafa-base, #351C42);
  text-shadow: 0 0 1px currentColor;
}

.sidebar__posts__meta a span {
  font-size: 20px;
  color: var(--arafa-purple, #965995);
  margin-right: 10px;
}

.sidebar__posts__title {
  margin: 0;
  text-transform: capitalize;
  color: var(--arafa-base, #351C42);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.555;
}

@media (max-width: 1199px) {
  .sidebar__posts__title {
    font-size: 15px;
  }
}

@media (max-width: 359px) {
  .sidebar__posts__title {
    font-size: 14px;
  }
}

.sidebar__posts__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.sidebar__posts__title a:hover {
  background-size: 100% 1px;
}

.sidebar__categories {
  margin-top: -13px;
  margin-bottom: -12px;
}

.sidebar__categories li:not(:last-child) {
  margin-bottom: 6.5px;
}

.sidebar__categories li a {
  position: relative;
  font-size: 16px;
  color: var(--arafa-base, #351C42);
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 500ms ease;
  padding: 12px 0;
  z-index: 1;
}

.sidebar__categories li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--arafa-secondary, #F6D469);
  border-radius: 6px;
  transition: all 500ms ease;
}

.sidebar__categories li a span {
  color: inherit;
}

.sidebar__categories li a span:last-child {
  font-weight: 400;
}

.sidebar__categories li a:hover {
  padding: 12px 12px;
  color: var(--arafa-dark, #24102F);
  text-shadow: 0 0 1px currentColor;
}

.sidebar__categories li a:hover::after {
  left: 0;
  width: 100%;
}

.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.sidebar__tags a {
  background-color: var(--arafa-white3, #D7D3CB);
  font-size: 14px;
  color: var(--arafa-base, #351C42);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1;
  transition: all 500ms ease;
  display: inline-flex;
  padding: 6px 10.5px;
  border-radius: 100px;
}

.sidebar__tags a:hover {
  color: var(--arafa-base, #351C42);
  background-color: var(--arafa-secondary, #F6D469);
}

.sidebar__comments {
  margin-top: -2px;
  margin-bottom: 0px;
}

.sidebar__comments li {
  display: flex;
  align-items: center;
}

.sidebar__comments li:not(:last-of-type) {
  margin-bottom: 31px;
}

.sidebar__comments__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--arafa-white, #fff);
  font-size: 22px;
  color: var(--arafa-purple, #965995);
  margin-right: 30px;
  border-radius: 50%;
  transition: all 500ms ease;
}

@media (max-width: 1199px) {
  .sidebar__comments__icon {
    margin-right: 20px;
  }
}

.sidebar__comments__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0);
  opacity: 0;
  transition: transform 400ms ease, opacity 400ms ease;
  background-color: var(--arafa-secondary, #F6D469);
}

li:hover .sidebar__comments__icon {
  color: var(--arafa-base, #351C42);
}

li:hover .sidebar__comments__icon::after {
  transform: scale(1);
  opacity: 1;
}

.sidebar__comments__title {
  margin: 0;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  line-height: 1.562;
  font-weight: 400;
  color: var(--arafa-text, #757277);
  text-transform: capitalize;
  transition: all 500ms ease;
}

.sidebar__comments__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.sidebar__comments__title a:hover {
  background-size: 100% 1px;
}

.sidebar__comments__title a:hover {
  color: var(--arafa-base, #351C42);
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog-one,
.blog-two {
  position: relative;
  background-color: var(--arafa-white, #fff);
}

.blog-one__carousel,
.blog-two__carousel {
  position: relative;
}

.blog-one__carousel .owl-dots,
.blog-two__carousel .owl-dots {
  display: flex !important;
  margin-top: 0 !important;
  position: absolute;
  top: -128px;
  right: 0;
  z-index: 1;
}

@media (max-width: 767px) {

  .blog-one__carousel .owl-dots,
  .blog-two__carousel .owl-dots {
    position: static;
    margin-top: 60px !important;
  }
}

.blog-one--page .blog-two__carousel,
.blog-two--page .blog-two__carousel {
  position: relative;
}

.blog-one--page .blog-two__carousel .owl-dots,
.blog-two--page .blog-two__carousel .owl-dots {
  position: static;
  margin-top: 60px !important;
}

.blog-three .sec-title {
  width: 100%;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.blog-four__top {
  margin-bottom: 43px;
}

.blog-four__custome-navs {
  position: relative;
  top: 11px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

@media (max-width: 991px) {
  .blog-four__custome-navs {
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .blog-four__custome-navs {
    top: 0;
    justify-content: flex-start;
  }
}

.blog-four__custome-navs button {
  border: 0;
  outline: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: transparent;
  font-size: 22px;
  color: var(--arafa-brown);
  border-radius: 50%;
  border: 1px solid rgba(var(--arafa-base-rgb), 0.1);
  transition: all 500ms ease;
}

@media (max-width: 991px) {
  .blog-four__custome-navs button {
    font-size: 16px;
    width: 50px;
    height: 50px;
  }
}

.blog-four__custome-navs button:hover {
  background-color: var(--arafa-orange, #E76100);
  color: var(--arafa-white, #fff);
  border-color: var(--arafa-orange, #E76100);
}

.blog-five {
  background-color: var(--arafa-gray4);
}

.blog-five__top {
  margin-bottom: 59px;
}

.blog-five .sec-title {
  margin: 0;
}

@media (max-width: 991px) {
  .blog-five .sec-title {
    text-align: center;
  }

  .blog-five .sec-title .sec-title__tagline {
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
  }

  .blog-five .sec-title .sec-title__tagline::before {
    left: 0;
  }

  .blog-five .sec-title .sec-title__tagline::after {
    left: 5.5px;
  }
}

@media (min-width: 992px) {
  .blog-five__carousel.owl-carousel .owl-dots {
    margin-top: 0 !important;
    position: absolute;
    top: -152px;
    right: 0;
  }
}

.blog-five__carousel.owl-carousel .owl-dots .owl-dot::after {
  border: 2px solid var(--arafa-brown2);
}

.blog-five__carousel.owl-carousel .owl-dots .owl-dot:hover span {
  background-color: var(--arafa-brown2);
}

.blog-five__carousel.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--arafa-brown2);
}

.blog-five__card {
  position: relative;
  min-height: 438px;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  border-radius: 20px;
}

.blog-five__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(90, 32, 5, 0) 0%, #5A2005 100%);
  border-radius: 20px;
}

.blog-five__card__date {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--arafa-white, #fff);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 16px;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-base);
  padding: 0 10px;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 42px;
  text-transform: uppercase;
  font-weight: 700;
  flex-direction: column;
  gap: 3px;
  z-index: 1;
}

@media (max-width: 1199px) {
  .blog-five__card__date {
    left: 20px;
  }
}

.blog-five__card__date span {
  font-size: 16px;
}

.blog-five__card__content {
  width: calc(100% - 34px);
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 1;
}

.blog-five__card__title {
  margin-bottom: 29px;
  font-size: 24px;
  color: var(--arafa-white, #fff);
  line-height: 1.38;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .blog-five__card__title {
    font-size: 22px;
  }
}

.blog-five__card__title:hover {
  color: var(--arafa-brown2);
}

.blog-five__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-five__card__title a:hover {
  background-size: 100% 1px;
}

.blog-five__card__btn {
  display: inline-block;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  font-size: 16px;
  color: var(--arafa-brown2);
  font-weight: 700;
  text-align: center;
  height: 40px;
  max-width: 140px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.blog-five__card__btn::after {
  display: none;
}

.blog-five__card__btn__front {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background-color: var(--arafa-white, #fff);
  perspective: 300px;
  transition: transform 500ms ease;
  transform-origin: top center;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

.blog-five__card__btn:hover .blog-five__card__btn__front {
  transform-origin: bottom center;
  transform: translateY(-100%) translateZ(150px) scaleY(0) rotateX(90deg);
}

.blog-five__card__btn__back {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--arafa-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 700ms ease, top 700ms ease;
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: bottom center;
  width: 100%;
}

.blog-five__card__btn__back span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background-color: var(--arafa-brown2);
  margin-right: 11px;
  transition: all 500ms ease;
}

.blog-five__card__btn:hover .blog-five__card__btn__back {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

.blog-page {
  background-color: var(--arafa-white, #fff);
}

.blog-page--list .blog-page__pagination {
  justify-content: center;
}

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

.blog-page__pagination {
  margin-top: 25px;
}

@media (max-width: 767px) {
  .blog-page__pagination {
    margin-top: 15px;
  }
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details .blog-card {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 58px;
}

.blog-details__hall {
  padding: 10px;
  border-radius: 100px;
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: var(--arafa-secondary, #F6D469);
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--arafa-base, #351C42);
  text-transform: capitalize;
  line-height: 1;
  z-index: 11;
}

@media (max-width: 575px) {
  .blog-details__hall {
    top: 20px;
    left: 20px;
  }
}

@media (max-width: 425px) {
  .blog-details__hall {
    top: 15px;
    left: 15px;
  }
}

.blog-details .blog-card__date {
  top: 30px;
  right: 30px;
  left: auto;
}

@media (max-width: 575px) {
  .blog-details .blog-card__date {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 425px) {
  .blog-details .blog-card__date {
    top: 15px;
    right: 15px;
  }
}

.blog-details .blog-card-four__meta {
  margin-bottom: 37px;
}

.blog-details .blog-card__title {
  margin-bottom: 28px;
}

.blog-details .blog-card-four__text--one {
  margin-bottom: 28.5px;
}

.blog-details .blog-card-four__text--two {
  margin-bottom: 0;
}

.blog-details .blog-card__content {
  text-align: left;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--arafa-border-color, #D7D3CB);
}

.blog-details__inner__image {
  margin-top: 40px;
}

.blog-details__inner__image img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.blog-details__inner__text {
  text-transform: capitalize;
  margin-top: 40px;
  margin-bottom: 26px;
}

.blog-details__inner__list {
  padding: 0;
  margin: 0;
  margin-left: 18px;
}

.blog-details__inner__list li+li {
  margin-top: 8.5px;
}

.blog-details__inner__list li p {
  text-transform: capitalize;
  margin-bottom: 0;
}

.blog-details__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-top: 23px;
  padding-bottom: 23px;
  border-top: 1px solid var(--arafa-border-color, #D7D3CB);
  border-bottom: 1px solid var(--arafa-border-color, #D7D3CB);
}

.blog-details__meta__title {
  font-size: 20px;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 0;
}

.blog-details__tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-details__tags__box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-details__tags__box a {
  background-color: var(--arafa-white3, #D7D3CB);
  font-size: 14px;
  color: var(--arafa-base, #351C42);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1;
  transition: all 500ms ease;
  display: inline-flex;
  padding: 6px 10.5px;
  border-radius: 100px;
}

.blog-details__tags__box a:hover {
  color: var(--arafa-base, #351C42);
  background-color: var(--arafa-secondary, #F6D469);
}

.blog-details__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/*--------------------------------------------------------------
# How Work
--------------------------------------------------------------*/
.how-work-one {
  position: relative;
  background-color: var(--arafa-black2);
  counter-reset: work;
  overflow: hidden;
}

.how-work-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  mix-blend-mode: overlay;
}

.how-work-one .container {
  position: relative;
  z-index: 1;
}

.how-work-one__play {
  margin: 0 auto 52px;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--arafa-orange, #E76100);
  position: relative;
  border-radius: 50%;
}

.how-work-one__play i {
  font-size: 24px;
  color: var(--arafa-orange, #E76100);
}

.how-work-one__play>span {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid RGBA(var(--arafa-orange-rgb, 231, 97, 0), 0.1);
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: pulse-animate 4s linear infinite;
  animation: pulse-animate 4s linear infinite;
}

.how-work-one__play span:nth-child(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.how-work-one__play span:nth-child(3) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.how-work-one__play span:nth-child(4) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

@keyframes pulse-animate {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

.how-work-one .sec-title {
  margin-bottom: 43px;
}

.how-work-one .sec-title__title {
  color: var(--arafa-white, #fff);
}

.how-work-one__item {
  position: relative;
  margin: 0 auto;
  padding: 49px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 370px;
  height: 370px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid RGBA(var(--arafa-white-rgb, 255, 255, 255), 0.15);
  z-index: 1;
  transition: all 500ms ease;
}

@media (max-width: 1199px) {
  .how-work-one__item {
    width: 450px;
    height: 450px;
  }
}

@media (max-width: 991px) {
  .how-work-one__item {
    width: 330px;
    height: 330px;
  }
}

@media (max-width: 767px) {
  .how-work-one__item {
    width: 410px;
    height: 410px;
  }
}

@media (max-width: 575px) {
  .how-work-one__item {
    width: 390px;
    height: 390px;
  }
}

@media (max-width: 430px) {
  .how-work-one__item {
    width: 340px;
    height: 340px;
  }
}

@media (max-width: 375px) {
  .how-work-one__item {
    width: 328px;
    height: 328px;
  }
}

@media (max-width: 360px) {
  .how-work-one__item {
    width: 290px;
    height: 290px;
  }
}

.how-work-one__item::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0);
  opacity: 0;
  transition: transform 400ms ease, opacity 400ms ease;
  background-color: var(--arafa-white, #fff);
  transform: scale(0.7);
}

.how-work-one__item:hover {
  border-color: transparent;
}

.how-work-one__item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.how-work-one__item__number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 74px;
  height: 76px;
  margin: 0 auto 25px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 222.000000 228.000000"><g transform="translate(0.000000,228.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M820 2267 c0 -7 -23 -23 -51 -37 -86 -40 -152 -142 -183 -280 -7 -32 -66 -100 -88 -100 -8 0 -21 -7 -28 -15 -7 -8 -24 -15 -39 -15 -32 0 -123 -31 -145 -49 -39 -33 -50 -73 -50 -196 -1 -143 -1 -143 -118 -257 -99 -97 -118 -138 -118 -256 0 -97 12 -142 53 -196 43 -55 77 -84 135 -114 92 -47 154 -103 186 -167 24 -49 29 -75 33 -159 6 -117 25 -164 84 -203 47 -31 101 -28 204 10 50 19 90 27 138 27 97 0 139 -22 228 -121 99 -109 161 -139 286 -139 102 0 157 16 224 66 45 33 99 94 99 111 0 5 5 14 12 21 14 14 47 135 48 173 0 15 9 47 21 73 28 65 69 84 140 68 84 -20 160 -15 189 11 59 54 72 84 72 164 -1 65 -4 80 -29 116 -32 49 -53 101 -53 137 0 54 39 208 66 262 8 14 14 33 14 41 0 8 7 28 15 43 8 16 15 39 15 52 0 12 9 31 20 42 17 17 20 33 20 120 0 79 -3 100 -14 100 -15 0 -26 21 -26 50 0 37 -113 171 -175 207 -84 48 -110 55 -231 58 -191 5 -259 32 -429 168 -111 89 -197 141 -270 164 -16 5 -29 15 -28 21 2 9 -29 12 -112 12 -86 0 -115 -3 -115 -13z" /></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 222.000000 228.000000"><g transform="translate(0.000000,228.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M820 2267 c0 -7 -23 -23 -51 -37 -86 -40 -152 -142 -183 -280 -7 -32 -66 -100 -88 -100 -8 0 -21 -7 -28 -15 -7 -8 -24 -15 -39 -15 -32 0 -123 -31 -145 -49 -39 -33 -50 -73 -50 -196 -1 -143 -1 -143 -118 -257 -99 -97 -118 -138 -118 -256 0 -97 12 -142 53 -196 43 -55 77 -84 135 -114 92 -47 154 -103 186 -167 24 -49 29 -75 33 -159 6 -117 25 -164 84 -203 47 -31 101 -28 204 10 50 19 90 27 138 27 97 0 139 -22 228 -121 99 -109 161 -139 286 -139 102 0 157 16 224 66 45 33 99 94 99 111 0 5 5 14 12 21 14 14 47 135 48 173 0 15 9 47 21 73 28 65 69 84 140 68 84 -20 160 -15 189 11 59 54 72 84 72 164 -1 65 -4 80 -29 116 -32 49 -53 101 -53 137 0 54 39 208 66 262 8 14 14 33 14 41 0 8 7 28 15 43 8 16 15 39 15 52 0 12 9 31 20 42 17 17 20 33 20 120 0 79 -3 100 -14 100 -15 0 -26 21 -26 50 0 37 -113 171 -175 207 -84 48 -110 55 -231 58 -191 5 -259 32 -429 168 -111 89 -197 141 -270 164 -16 5 -29 15 -28 21 2 9 -29 12 -112 12 -86 0 -115 -3 -115 -13z" /></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: var(--arafa-orange, #E76100);
}

@media (max-width: 991px) {
  .how-work-one__item__number {
    width: 70px;
    height: 72px;
  }
}

.how-work-one__item__number::after {
  content: "0" counter(work);
  counter-increment: work;
  font-family: var(--arafa-heading-font2, "Castoro", serif);
  font-size: 30px;
  color: var(--arafa-white, #fff);
  text-align: center;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.how-work-one__item__title {
  margin-bottom: 11px;
  font-family: var(--arafa-heading-font2, "Castoro", serif);
  font-size: 30px;
  color: var(--arafa-white, #fff);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  transition: all 500ms ease;
}

@media (max-width: 991px) {
  .how-work-one__item__title {
    font-size: 25px;
  }
}

@media (max-width: 375px) {
  .how-work-one__item__title {
    font-size: 20px;
  }
}

.how-work-one__item:hover .how-work-one__item__title {
  color: var(--arafa-base, #351C42);
}

.how-work-one__item__text {
  margin: 0;
  color: var(--arafa-white, #fff);
  text-transform: capitalize;
  transition: all 500ms ease;
}

@media (max-width: 375px) {
  .how-work-one__item__text {
    font-size: 14px;
  }
}

.how-work-one__item:hover .how-work-one__item__text {
  color: var(--arafa-text, #757277);
}

.how-work-one__shape-one {
  position: absolute;
  top: 0;
  left: 0;
  animation: zump 2s linear infinite;
}

@media (max-width: 1199px) {
  .how-work-one__shape-one {
    top: -15px;
    left: -15px;
  }
}

@media (max-width: 991px) {
  .how-work-one__shape-one {
    top: -50px;
    left: -50px;
  }
}

@media (max-width: 767px) {
  .how-work-one__shape-one {
    top: -60px;
    left: -60px;
  }
}

@media (max-width: 575px) {
  .how-work-one__shape-one {
    display: none;
  }
}

.how-work-one__shape-two {
  position: absolute;
  right: 0;
  bottom: 0;
  animation: zumpBottom 2s linear infinite;
}

@media (max-width: 1599px) {
  .how-work-one__shape-two {
    right: -30px;
    bottom: -30px;
  }
}

@media (max-width: 1399px) {
  .how-work-one__shape-two {
    right: -50px;
    bottom: -50px;
  }
}

@media (max-width: 575px) {
  .how-work-one__shape-two {
    right: -70px;
    bottom: -70px;
  }
}

@media (max-width: 430px) {
  .how-work-one__shape-two {
    right: -75px;
    bottom: -75px;
  }
}

@media (max-width: 375px) {
  .how-work-one__shape-two {
    right: -80px;
    bottom: -80px;
  }
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
  margin-top: 48px;
}

@media (max-width: 1399px) {
  .comments-one {
    margin-top: 80px;
  }
}

@media (max-width: 1199px) {
  .comments-one {
    margin-top: 60px;
  }
}

.comments-one__title {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 48px;
  letter-spacing: normal;
}

@media (max-width: 1399px) {
  .comments-one__title {
    margin-bottom: 53px;
  }
}

@media (max-width: 575px) {
  .comments-one__title {
    margin-bottom: 43px;
  }
}

@media (max-width: 425px) {
  .comments-one__title {
    font-size: 26px;
  }
}

@media (max-width: 375px) {
  .comments-one__title {
    font-size: 24px;
  }
}

.comments-one__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comments-one__card {
  display: grid;
  grid-template-columns: 96px auto;
  grid-gap: 20px;
  padding-bottom: 42px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--arafa-border-color, #D7D3CB);
}

@media (max-width: 767px) {
  .comments-one__card {
    grid-template-columns: auto;
  }
}

.comments-one__card:last-child {
  margin-bottom: 0;
}

.comments-one__card__image {
  width: 96px;
  height: 96px;
  border-radius: 50%;
}

.comments-one__card__image img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
}

.comments-one__card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 17px;
  margin-bottom: 24.5px;
}

@media (max-width: 500px) {
  .comments-one__card__top {
    align-items: flex-start;
    flex-direction: column;
  }
}

.comments-one__card__title {
  margin: 0;
  font-size: 24px;
  text-transform: capitalize;
  line-height: 1.333;
  margin-bottom: 4px;
}

@media (max-width: 575px) {
  .comments-one__card__title {
    font-size: 22px;
  }
}

@media (max-width: 425px) {
  .comments-one__card__title {
    font-size: 20px;
  }
}

.comments-one__card__date {
  text-transform: capitalize;
  margin-bottom: 0;
}

.comments-one__card__text {
  text-transform: capitalize;
  margin-bottom: 0;
}

.comments-one__card__reply {
  padding: 10px 10.5px;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-base, #351C42);
  font-weight: normal;
  font-size: 16px;
  border-radius: 100px;
  background-color: var(--arafa-secondary, #F6D469);
  line-height: 1;
  transition: all 0.4s ease-in-out;
}

.comments-one__card__reply:hover {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-purple, #965995);
}

.comments-one__card__ontent {
  position: relative;
}

.comments-form {
  margin-top: 47px;
}

.comments-form__title {
  font-size: 30px;
  margin-bottom: 53px;
  text-transform: capitalize;
  letter-spacing: normal;
}

@media (max-width: 575px) {
  .comments-form__title {
    margin-bottom: 44px;
  }
}

@media (max-width: 425px) {
  .comments-form__title {
    font-size: 26px;
  }
}

@media (max-width: 375px) {
  .comments-form__title {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product-page {
  padding-top: 105px;
}

@media (max-width: 767px) {
  .product-page {
    padding-top: 103px;
  }
}

@media (max-width: 575px) {
  .product-page {
    padding-top: 73px;
  }
}

@media (max-width: 991px) {
  .product-page--left {
    padding-top: 130px;
  }
}

@media (max-width: 767px) {
  .product-page--left {
    padding-top: 110px;
  }
}

@media (max-width: 575px) {
  .product-page--left {
    padding-top: 80px;
  }
}

.product-page__pagination {
  margin-top: 25px;
  justify-content: center;
}

@media (max-width: 767px) {
  .product-page__pagination {
    margin-top: 15px;
  }
}

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

.product {
  position: relative;
}

.product__sidebar {
  margin-top: 72px;
  position: relative;
}

@media (max-width: 991px) {
  .product__sidebar {
    margin-top: 0;
  }
}

.product__sidebar__item+.product__sidebar__item {
  margin-top: 30px;
}

.product__sidebar__item {
  padding: 30px;
  background-color: var(--arafa-white2, #EFECE7);
  border-radius: 20px;
}

.product__sidebar__title {
  position: relative;
  font-size: 18px;
  line-height: 1.333;
  text-transform: capitalize;
  color: var(--arafa-black, #000000);
  font-weight: 600;
  margin-top: -5px;
  margin-bottom: 15px;
}

.product__search {
  display: flex;
  align-items: center;
  position: relative;
  height: 59px;
}

.product__search input[type=search],
.product__search input[type=text] {
  padding-left: 10px;
  padding-right: 35px;
  outline: none;
  border: 0;
  border: 1px solid var(--arafa-border-color, #D7D3CB);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--arafa-white, #fff);
  background-color: var(--arafa-white, #fff);
  transition: all 500ms ease;
}

.product__search input[type=search]:focus,
.product__search input[type=text]:focus {
  border-color: var(--arafa-purple, #965995);
}

.product__search button[type=submit] {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: auto;
  font-size: 20px;
  color: var(--arafa-purple, #965995);
  z-index: 11;
}

.product__price-ranger {
  padding-top: 32px;
}

.product__price-ranger .price-ranger {
  background-color: var(--arafa-white, #fff);
  border-radius: 10px;
  padding: 16px 21px 6px 9px;
  border: 1px solid var(--arafa-border-color, #D7D3CB);
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(2) {
  display: none;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(3) {
  position: relative;
  position: absolute;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(3)::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--arafa-white, #fff);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product__price-ranger #slider-range {
  margin: 0;
  background-color: transparent;
  border: 1px solid var(--arafa-purple, #965995);
  height: 7px;
  border-radius: 10px;
  position: relative;
}

.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: var(--arafa-purple, #965995);
}

.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -6.5px;
  background: var(--arafa-purple, #965995);
  border: 0;
  height: 18px;
  width: 18px !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-top: 7px;
}

.product__price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--arafa-text, #757277);
  font-size: 12px;
  font-weight: 400;
  width: 40px;
  line-height: 14px;
  border: none;
  outline: none;
  font-family: var(--arafa-font, "DM 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(--arafa-text, #757277);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  left: -2px;
}

.product__categories {
  padding-top: 32px;
}

.product__categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: -20px;
}

.product__categories ul li {
  position: relative;
  margin: 0 0 4px;
}

.product__categories ul li a {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--arafa-base, #351C42);
  border-radius: 7px;
  font-weight: 400;
  transition: all 0.3s ease;
  z-index: 1;
  padding: 13.5px 0;
}

.product__categories ul li a>span {
  display: block;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.product__categories ul li a::before {
  display: flex;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--arafa-base, #351C42);
  font-weight: 500;
  background-color: var(--arafa-secondary, #F6D469);
  color: var(--arafa-base, #351C42);
  border-radius: 7px;
  -webkit-transform: translate3d(-150%, 0, 0);
  transform: translate3d(-150%, 0, 0);
  z-index: 11;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.product__categories ul li a:hover::before {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.product__categories ul li a:hover>span {
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
}

.product__categories ul li.active a::after {
  background-color: var(--arafa-secondary, #F6D469);
  color: var(--arafa-base, #351C42);
  font-weight: 600;
}

.product__info-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .product__info-top {
    display: block;
  }
}

.product__showing-text {
  margin: 0;
  color: var(--arafa-base, #351C42);
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .product__showing-text {
    margin-bottom: 10px;
  }
}

.product__showing-sort {
  margin: 0;
  font-size: 18px;
}

.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  position: relative;
  display: block;
  width: 100%;
  min-width: 150px !important;
}

@media (max-width: 767px) {
  .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    min-width: 141px !important;
  }
}

.product__showing-sort .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.product__showing-sort .bootstrap-select .dropdown-menu {
  border: none;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 64px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: transparent !important;
  margin: 0;
  padding: 0;
  padding-left: 0;
  padding-right: 22px;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-base, #351C42) !important;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 64px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

@media (max-width: 767px) {
  .product__showing-sort .bootstrap-select>.dropdown-toggle {
    width: auto;
    padding-left: 0;
  }
}

.product__showing-sort .bootstrap-select>.dropdown-toggle>.filter-option {
  text-align: right;
}

@media (max-width: 767px) {
  .product__showing-sort .bootstrap-select>.dropdown-toggle>.filter-option {
    text-align: left;
  }
}

.product__showing-sort .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 18px;
  color: var(--arafa-text, #757277);
}

.product__showing-sort .bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid var(--arafa-border-color2, #414141);
}

.product__showing-sort .bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 400;
  padding: 10px 22px;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-weight: normal;
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-base, #351C42);
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.product__showing-sort .bootstrap-select .dropdown-menu>li:hover>a,
.product__showing-sort .bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--arafa-secondary, #F6D469);
  color: var(--arafa-base, #351C42);
  border-color: var(--arafa-base, #351C42);
}

.product-item {
  position: relative;
  background-color: var(--arafa-white, #fff);
  border: 1px solid var(--arafa-border-color, #D7D3CB);
  border-radius: 20px;
  transition: all 500ms ease;
}

.product-item:hover {
  box-shadow: 0px 3px 18px rgba(var(--arafa-dark-rgb, 36, 16, 47), 0.07);
}

.product-item__img {
  display: block;
  background-color: var(--arafa-white, #fff);
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.product-item__img img {
  display: block;
  width: 100%;
  border-radius: 20px 20px 0 0;
  transition: all 500ms ease;
}

.product-item:hover .product-item__img img {
  transform: scale(1.05);
}

.product-item__content {
  position: relative;
  text-align: center;
  padding: 30px 20px 29px;
}

.product-item__title {
  font-size: 24px;
  line-height: 1.333;
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 21px;
}

@media (max-width: 767px) {
  .product-item__title {
    font-size: 21px;
  }
}

.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(--arafa-purple, #965995);
}

.product-item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  color: var(--arafa-purple, #965995);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 32px;
}

.product-item__price span {
  color: inherit;
}

/*--------------------------------------------------------------
# Shop Details
--------------------------------------------------------------*/
.product-details {
  position: relative;
}

.product-details__gallery-top {
  position: relative;
  border-radius: 20px;
  background-color: var(--arafa-white2, #EFECE7);
}

.product-details__gallery-top .swiper-slide {
  border-radius: 20px;
}

.product-details__gallery-top__img {
  border-radius: 20px;
  width: 100%;
  display: block;
}

.product-details__gallery-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.product-details__gallery-thumb-slide {
  border-radius: 10px;
  cursor: pointer;
}

.product-details__gallery-thumb__img {
  border-radius: 10px;
  width: 100%;
  display: block;
}

.product-details__content {
  position: relative;
  margin-top: 13px;
}

.product-details__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.product-details__top__left {
  display: flex;
  align-items: center;
  gap: 19px;
}

.product-details__name {
  font-size: 24px;
  line-height: 1.333;
  text-transform: capitalize;
  margin: 0;
}

.product-details__price {
  border-radius: 100px;
  padding: 4.5px 10.5px;
  font-size: 24px;
  line-height: 1.333;
  text-transform: capitalize;
  background-color: var(--arafa-purple, #965995);
  color: var(--arafa-white, #fff);
  margin: 0;
}

.product-details__video {
  top: -8px;
}

.product-details__review {
  margin-top: 8px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--arafa-border-color, #D7D3CB);
}

.product-details__review a {
  display: inline-block;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-text, #757277);
  text-transform: capitalize;
  font-size: 16px;
  line-height: 1.333;
  font-weight: 400;
  transition: all 0.4s ease-in-out;
}

.product-details__review a:hover {
  color: var(--arafa-base, #351C42);
}

.product-details__excerpt {
  margin-top: 32.5px;
  padding-bottom: 29px;
  border-bottom: 1px solid var(--arafa-border-color, #D7D3CB);
}

.product-details__excerpt__text1 {
  margin-bottom: 0;
}

.product-details__content__title {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-black, #000000);
  text-transform: capitalize;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 0;
}

.product-details__color {
  margin: 30px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.product-details__color__box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.product-details__color__btn {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 28px;
  height: 28px;
  border: 1px solid var(--arafa-border-color, #D7D3CB);
  border-radius: 50%;
}

.product-details__color__btn span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.product-details__color__btn--one span {
  background-color: var(--arafa-fuchsia, #FF1C74);
}

.product-details__color__btn--two span {
  background-color: var(--arafa-blue, #6C1CD1);
}

.product-details__color__btn--three span {
  background-color: var(--arafa-green, #59C36A);
}

.product-details__color__btn--four span {
  background-color: var(--arafa-yellow, #FCB720);
}

.product-details__color__btn--five span {
  background-color: var(--arafa-orange, #E76100);
}

.product-details__size {
  display: flex;
  align-items: center;
  gap: 25px 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--arafa-border-color, #D7D3CB);
  margin-bottom: 30px;
}

.product-details__size__box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-details__size__btn {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--arafa-border-color, #D7D3CB);
  border-radius: 50%;
}

.product-details__size__btn span {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  color: var(--arafa-text, #757277);
  text-transform: uppercase;
  font-weight: normal;
  line-height: 1;
}

.product-details__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-details__quantity .quantity-box {
  padding: 0 18px;
  position: relative;
  width: 165px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--arafa-border-color, #D7D3CB);
  border-radius: 100px;
  gap: 10px;
}

.product-details__quantity .quantity-box input {
  padding: 0;
  border: none;
  outline: none;
  width: 78px;
  height: 48px;
  text-align: center;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  color: var(--arafa-purple, #965995);
  outline: none;
  font-size: 16px;
  font-weight: 700;
}

.product-details__quantity .quantity-box button {
  padding: 0;
  color: var(--arafa-base, #351C42);
  font-size: 15px;
  background-color: transparent;
  border: none;
  outline: none;
  transition: all 400ms ease-in-out;
}

.product-details__quantity .quantity-box button i {
  color: inherit;
}

.product-details__quantity .quantity-box button:hover {
  color: var(--arafa-purple, #965995);
}

.product-details__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-details__buttons {
  margin-top: 39px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product-details__btn-wishlist .arafa-btn__icon-box {
  background-color: var(--arafa-purple, #965995);
}

.product-details__btn-wishlist .arafa-btn__icon-box span {
  color: var(--arafa-white, #fff);
}

.product-details__btn-wishlist:hover .arafa-btn__text {
  color: var(--arafa-white, #fff);
}

.product-details__description-wrapper {
  padding-top: 65px;
  padding-bottom: 67px;
  margin-top: 65px;
  background-color: var(--arafa-white2, #EFECE7);
}

.product-details__description {
  position: relative;
}

.product-details__description__title {
  font-size: 24px;
  line-height: 1.333;
  text-transform: capitalize;
  margin-bottom: 29px;
}

.product-details__description__text+.product-details__description__text {
  margin-top: 29px;
}

.product-details__description__text {
  text-transform: capitalize;
  margin-bottom: 0;
}

.product-details__comment {
  margin-top: 118px;
}

@media (max-width: 767px) {
  .product-details__comment {
    margin-top: 98px;
  }
}

@media (max-width: 575px) {
  .product-details__comment {
    margin-top: 68px;
  }
}

.product-details__comments-form__top {
  margin-bottom: 27px;
}

.product-details__comments-form__title {
  margin-bottom: 14px;
}

.product-details__comments-form__text {
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 19px;
}

.product-details__comments-form__ratings {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
}

.product-details__comments-form__ratings__text {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 0;
}

.product-details__comments-form__ratings .arafa-ratings span {
  color: var(--arafa-white2, #EFECE7);
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
}

.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1199px) {
  .cart-page .table-responsive {
    margin-bottom: 30px;
  }
}

.cart-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 28px;
}

@media (max-width: 1199px) {
  .cart-page__table {
    min-width: 1000px;
  }
}

.cart-page__table thead {
  border-radius: 10px;
}

.cart-page__table thead tr {
  background-color: var(--arafa-white2, #EFECE7);
  border: 0 !important;
  border-radius: 10px;
}

.cart-page__table thead tr th {
  font-size: 16px;
  color: var(--arafa-base, #351C42);
  line-height: 1.75;
  font-weight: 500;
  padding-top: 21.5px;
  padding-bottom: 20.5px;
  padding-left: 25px;
  padding-right: 25px;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  text-transform: capitalize;
  border: none;
  background-color: transparent;
  border: 0 !important;
  box-shadow: none;
}

.cart-page__table thead tr th:first-child {
  border-radius: 10px 0 0 10px;
  padding-left: 21px;
}

.cart-page__table thead tr th:last-child {
  border-radius: 0 10px 10px 0;
  padding-right: 21px;
}

.cart-page__table tbody tr td {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--arafa-purple, #965995);
  vertical-align: middle;
  border-top: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 0 !important;
  border-bottom: 1px solid var(--arafa-border-color, #D7D3CB);
  padding: 30px 25px;
  letter-spacing: 0;
}

.cart-page__table tbody tr td.cart-page__table__price {
  color: var(--arafa-purple, #965995);
}

.cart-page__table tbody tr td.cart-page__table__total {
  color: var(--arafa-base, #351C42);
}

.cart-page__table tbody tr td:first-child {
  padding-left: 0;
}

.cart-page__table tbody tr td:last-child {
  padding-right: 0;
}

.cart-page__table .quantity-box {
  width: 127px;
  height: 40px;
  gap: 6px;
}

.cart-page__table .quantity-box input {
  width: 52px;
  height: 38px;
}

.cart-page__table__meta {
  display: flex;
  align-items: center;
}

.cart-page__table__meta__img {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  margin-right: 10px;
  border-radius: 10px;
}

.cart-page__table__meta__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.cart-page__table__meta__title {
  font-size: 18px;
  text-transform: capitalize;
  line-height: 1.33;
  margin: 0;
}

.cart-page__table__meta__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.cart-page__table__meta__title a:hover {
  background-size: 100% 1px;
}

.cart-page__table__meta__title a:hover {
  color: var(--arafa-purple, #965995);
}

.cart-page__table__remove {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  text-transform: capitalize;
  color: var(--arafa-text, #757277);
  font-size: 16px;
  margin-bottom: 0;
}

.cart-page__table__remove:hover {
  color: var(--arafa-base, #351C42);
}

.cart-page__coupone__title {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  color: var(--arafa-text, #757277);
  font-weight: 700;
  line-height: 1.75;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.cart-page__coupone__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

@media (max-width: 767px) {
  .cart-page__coupone__box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cart-page__coupone__form {
  min-width: 445px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 767px) {
  .cart-page__coupone__form {
    min-width: 100%;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}

.cart-page__coupone__form input[type=text] {
  display: block;
  width: 268px;
  height: 62px;
  border: none;
  background-color: var(--arafa-white, #fff);
  padding-left: 18px;
  padding-right: 18px;
  outline: none;
  border-radius: 10px;
  border: 1px solid var(--arafa-border-color, #D7D3CB);
}

@media (max-width: 767px) {
  .cart-page__coupone__form input[type=text] {
    width: 100%;
  }
}

.cart-page__coupone__btn {
  padding: 0 25.5px;
  height: 62px;
  background-color: var(--arafa-purple, #965995);
}

.cart-page__update-btn {
  padding: 20.5px 23.5px;
  background-color: var(--arafa-base, #351C42);
}

.cart-page__bottom-btn {
  border: 0;
  outline: 0;
  border-radius: 10px;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-white, #fff);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  transition: all 400ms ease;
}

.cart-page__bottom-btn:hover {
  color: var(--arafa-base, #351C42);
  background-color: var(--arafa-secondary, #F6D469);
}

.cart-page__cart-checkout {
  padding: 25px 30px 29px;
  border-radius: 20px;
  border: 1px solid var(--arafa-border-color, #D7D3CB);
}

@media (max-width: 375px) {
  .cart-page__cart-checkout {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.cart-page__cart-total {
  position: relative;
  margin: 0;
}

.cart-page__cart-total li:not(:nth-child(2)) {
  display: flex;
  align-items: center;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  justify-content: space-between;
  gap: 15px;
  font-size: 18px;
  color: var(--arafa-base, #351C42);
  text-transform: capitalize;
  font-weight: 700;
}

.cart-page__cart-total li:not(:nth-child(2)) span {
  color: inherit;
}

.cart-page__cart-total li:nth-child(1) {
  margin-bottom: 28px;
  padding-bottom: 25px;
}

.cart-page__cart-total li:nth-child(2) {
  margin-bottom: 28px;
  padding-bottom: 28px;
}

.cart-page__cart-total li:nth-child(3) {
  margin-bottom: 25px;
}

.cart-page__cart-total li:not(:last-child) {
  border-bottom: 1px solid var(--arafa-border-color, #D7D3CB);
}

.cart-page__cart-total__amount {
  text-align: right;
}

.cart-page__cart-total__address {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  color: var(--arafa-text, #757277);
  font-weight: 500;
  line-height: 1.6;
  text-transform: capitalize;
  margin-bottom: 13px;
}

.cart-page__cart-total__address__text {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-text, #757277);
  font-weight: 400;
  line-height: 1.75;
  text-transform: capitalize;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
}

.checkout-page__title {
  font-size: 24px;
  line-height: 1.333;
  text-transform: capitalize;
}

.checkout-page__billing-address {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background-color: var(--arafa-white2, #EFECE7);
}

@media (max-width: 425px) {
  .checkout-page__billing-address {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.checkout-page__billing-address__title {
  margin-bottom: 35px;
}

.checkout-page__input-box--address input:not(:last-child) {
  margin-bottom: 10px;
}

.checkout-page__input-box label {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-base, #351C42);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 17px;
}

.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel],
.checkout-page__input-box textarea {
  height: 65px;
  width: 100%;
  border: none;
  background-color: var(--arafa-white, #fff);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--arafa-text, #757277);
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  display: block;
  font-weight: 400;
  border-radius: 10px;
}

@media (max-width: 425px) {

  .checkout-page__input-box input[type=text],
  .checkout-page__input-box input[type=email],
  .checkout-page__input-box input[type=tel],
  .checkout-page__input-box textarea {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.checkout-page__input-box textarea {
  padding-top: 30px;
  height: 239px;
}

.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(--arafa-font, "DM 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: 65px;
  outline: none !important;
  border-radius: 10px;
  border: 0;
  background-color: var(--arafa-white, #fff) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-text, #757277) !important;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 65px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

@media (max-width: 425px) {
  .checkout-page__input-box .bootstrap-select>.dropdown-toggle {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.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: 16px;
  color: var(--arafa-text, #757277);
}

@media (max-width: 425px) {
  .checkout-page__input-box .bootstrap-select>.dropdown-toggle:before {
    right: 20px;
  }
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid var(--arafa-border-color, #D7D3CB);
}

.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: 400;
  padding: 10px 22px;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-weight: normal;
  color: var(--arafa-base, #351C42);
  background-color: var(--arafa-white, #fff);
  text-transform: capitalize;
  -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(--arafa-secondary, #F6D469);
  color: var(--arafa-base, #351C42);
  border-color: var(--arafa-secondary, #F6D469);
}

.checkout-page__input-item+.checkout-page__input-item {
  margin-top: 12px;
}

.checkout-page__your-order {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background-color: var(--arafa-white2, #EFECE7);
}

@media (max-width: 425px) {
  .checkout-page__your-order {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.checkout-page__your-order__title {
  margin-bottom: 19px;
}

.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 0;
}

.checkout-page__order-table thead tr th {
  font-size: 18px;
  color: var(--arafa-base, #351C42);
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  margin: 0;
  padding: 22px 0;
  border: none;
  border-bottom: 1px solid var(--arafa-border-color, #D7D3CB);
}

.checkout-page__order-table thead tr th:not(:first-child) {
  text-align: right;
}

.checkout-page__order-table tbody tr td {
  margin: 0;
  padding: 23px 0;
  border-bottom: 1px solid var(--arafa-border-color, #D7D3CB);
}

.checkout-page__order-table tbody tr td.pro__title,
.checkout-page__order-table tbody tr td.pro__price {
  font-size: 16px;
  line-height: 1;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-base, #351C42);
  font-weight: normal;
  text-transform: capitalize;
}

.checkout-page__order-table tbody tr td.pro__sub-title,
.checkout-page__order-table tbody tr td.pro__sub-price {
  font-size: 16px;
  line-height: 1;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  color: var(--arafa-base, #351C42);
  font-weight: 700;
  text-transform: capitalize;
}

.checkout-page__order-table tbody tr td .checkout-page__order-address-data {
  margin-top: -4px;
  margin-bottom: -5px;
}

.checkout-page__order-table tbody tr td .checkout-page__order-address {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 16px;
  color: var(--arafa-base, #351C42);
  font-weight: 500;
  line-height: 1.6;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.checkout-page__order-table tbody tr td .checkout-page__order-address-text {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-text, #757277);
  font-weight: 400;
  line-height: 1.75;
  text-transform: capitalize;
  margin-bottom: 0;
}

.checkout-page__order-table tbody tr td .checkout-page__radio-box {
  padding-bottom: 6px;
}

.checkout-page__order-table tbody tr td .checkout-page__input-item+.checkout-page__input-item {
  margin-top: 12px;
}

.checkout-page__order-table tbody tr td .checkout-page__order-text {
  padding-top: 7px;
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 1.714;
  text-transform: capitalize;
  margin-bottom: 0;
}

.checkout-page__order-table tbody tr td:not(:first-child) {
  text-align: right;
}

.checkout-page__order-table tbody tr:nth-child(6) td {
  padding-top: 21px;
}

.checkout-page__order-table tbody tr:nth-child(7) td {
  padding-top: 27px;
  padding-bottom: 19px;
}

.checkout-page__order-table tbody tr:nth-child(8) td {
  border: 0;
  padding-bottom: 25px;
}

.checkout-page__order-table tbody tr:last-child td {
  border: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-page {
  position: relative;
}

.login-page__image img {
  border-radius: 20px;
  width: 100%;
  display: block;
}

.login-page__form {
  padding: 30px 30px 29px;
  background-color: var(--arafa-white2, #EFECE7);
  border-radius: 20px;
}

@media (max-width: 425px) {
  .login-page__form {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.login-page__form__top-title {
  border-radius: 100px;
  padding: 10px;
  display: inline-block;
  color: var(--arafa-purple, #965995);
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  background-color: var(--arafa-white, #fff);
  margin-bottom: 34px;
}

.login-page__form__title {
  font-size: 24px;
  line-height: 1.4;
  text-transform: capitalize;
  margin-bottom: 17px;
}

.login-page__form__input-box+.login-page__form__input-box {
  margin-top: 20px;
}

.login-page__form__checkbox-forgot {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.login-page__form .form-one__control__input {
  background-color: var(--arafa-white, #fff);
  border-radius: 100px;
}

.login-page__form__checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  display: none;
  cursor: pointer;
}

.login-page__form__checkbox label {
  position: relative;
  cursor: pointer;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-text, #757277);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-transform: capitalize;
}

.login-page__form__checkbox label::before {
  content: "";
  background-color: rgba(var(--arafa-purple-rgb, 150, 89, 149), 0.25);
  border: 0;
  outline: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: -1px;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 11px;
}

.login-page__form__checkbox input:checked+label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--arafa-purple, #965995);
}

.login-page__form .arafa-btn {
  margin-top: 6px;
  padding-right: 27px;
}

.login-page__form__forgot {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-text, #757277);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-transform: capitalize;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.login-page__form__forgot:hover {
  background-size: 100% 1px;
}

.login-page__form__forgot:hover {
  color: var(--arafa-base, #351C42);
}

.login-page__form__or {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 37px;
  margin-bottom: 37px;
}

.login-page__form__or-text {
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  color: var(--arafa-base, #351C42);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
}

.login-page__form__or-line {
  flex-grow: 1;
  opacity: 1;
  background-color: transparent;
  margin: 0;
  border-color: var(--arafa-border-color, #D7D3CB);
}

.login-page__form__signin-btn {
  padding: 0;
  border: none;
  outline: none;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-text, #757277);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  background-color: var(--arafa-white, #fff);
  border-radius: 100px;
  width: 100%;
  height: 65px;
  padding-left: 30px;
  padding-right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
}

.login-page__form__signin-btn:hover {
  background-color: var(--arafa-secondary, #F6D469);
  color: var(--arafa-base, #351C42);
}

@media (max-width: 425px) {
  .login-page__form__signin-btn {
    padding-left: 20px;
  }
}

@media (max-width: 375px) {
  .login-page__form__signin-btn {
    font-size: 14px;
  }
}

.login-page__form__signin-btn span {
  color: inherit;
}

.login-page__form__signin-btn+.login-page__form__signin-btn {
  margin-top: 10px;
}

.login-page__form__register-text {
  margin-top: 23px;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-text, #757277);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 0;
}

.login-page__form__register-text a {
  color: var(--arafa-purple, #965995);
  font-weight: 700;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.login-page__form__register-text a:hover {
  background-size: 100% 1px;
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404__content {
  text-align: center;
  width: 100%;
  max-width: 703px;
  margin-left: auto;
  margin-right: auto;
}

.error-404__content__top {
  width: 100%;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 41px;
  position: relative;
  z-index: 1;
}

.error-404__image {
  max-width: 100%;
  height: auto;
  animation: slowXmove 8s ease-in infinite;
}

.error-404__title {
  position: absolute;
  font-size: 135px;
  line-height: 1;
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  color: var(--arafa-purple, #965995);
  margin-bottom: 0;
  z-index: 11;
}

@media (max-width: 425px) {
  .error-404__title {
    font-size: 100px;
  }
}

.error-404__title--one {
  left: 26px;
  bottom: 23px;
  transform: rotate(-15deg);
}

@media (max-width: 425px) {
  .error-404__title--one {
    left: 50px;
  }
}

@media (max-width: 375px) {
  .error-404__title--one {
    left: 30px;
    bottom: 10px;
  }
}

.error-404__title--two {
  left: 55%;
  bottom: 69px;
  transform: translateX(-50%) rotate(20deg);
}

@media (max-width: 425px) {
  .error-404__title--two {
    left: 52%;
  }
}

@media (max-width: 375px) {
  .error-404__title--two {
    bottom: 30px;
  }
}

.error-404__title--three {
  right: -22px;
  bottom: 126px;
  transform: rotate(8deg);
}

@media (max-width: 575px) {
  .error-404__title--three {
    right: 0;
    bottom: 100px;
  }
}

@media (max-width: 425px) {
  .error-404__title--three {
    right: 40px;
    bottom: 80px;
  }
}

@media (max-width: 375px) {
  .error-404__title--three {
    right: 10px;
    bottom: 40px;
  }
}

.error-404__sub-title {
  margin-bottom: 39px;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  overflow: hidden;
  padding: 40px 0 226px;
}

.faq-one--about .accordion-title {
  background-color: var(--arafa-white, #fff);
}

.faq-one--about .accordion-content .inner {
  background-color: var(--arafa-white, #fff);
}

.faq-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: multiply;
  z-index: 1;
}

.faq-one .container {
  position: relative;
  z-index: 11;
}

.faq-one__image {
  position: relative;
}

.faq-one__image img {
  width: 100%;
  display: inline-block;
  clip-path: polygon(20% 0%, 80% 0%, 100% 15%, 100% 80%, 100% 100%, 24% 100%, 0 80%, 0 0);
  position: absolute;
  top: 0;
  z-index: 3;
}

.faq-one__content {
  margin-top: 1px;
}

.faq-one .sec-title {
  margin-bottom: 29px;
}

.faq-one .sec-title__tagline {
  margin-bottom: 23px;
}

.faq-one__text {
  /* text-transform: capitalize; */
  margin-bottom: 30px;
  font-family: 'inter';
}

.faq-one__shape__one {
  position: absolute;
  top: 0;
  right: -257px;
  z-index: 1;
  animation: zumpY 1200ms infinite alternate;
}

.faq-one__shape__two {
  position: absolute;
  left: 110px;
  bottom: 0;
  z-index: 1;
  animation: zumpY 1200ms infinite alternate;
}

.faq-one .arafa-accordion .accordion {
  overflow: hidden;
}

.faq-two {
  position: relative;
  background-color: var(--arafa-gray2);
}

.faq-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.1;
}

.faq-two .container {
  position: relative;
  z-index: 1;
}

.faq-two .sec-title {
  margin-bottom: 43px;
}

.faq-two__image {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 575px) {
  .faq-two__image {
    gap: 25px;
  }
}

@media (max-width: 430px) {
  .faq-two__image {
    gap: 20px;
  }
}

@media (max-width: 375px) {
  .faq-two__image {
    gap: 15px;
  }
}

.faq-two__image__inner {
  position: relative;
  z-index: 1;
}

.faq-two__image img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.faq-two__image__border {
  position: absolute;
  left: -48px;
  bottom: -41px;
  width: 171px;
  height: 161px;
  background-color: var(--arafa-orange, #E76100);
  border-radius: 10px;
  animation: zump 2s linear infinite;
}

@media (max-width: 1199px) {
  .faq-two__image__border {
    left: -25px;
    bottom: -35px;
  }
}

@media (max-width: 430px) {
  .faq-two__image__border {
    width: 151px;
    height: 141px;
    left: -25px;
    bottom: -35px;
  }
}

@media (max-width: 375px) {
  .faq-two__image__border {
    width: 131px;
    height: 121px;
    left: -25px;
    bottom: -35px;
  }
}

@media (max-width: 991px) {
  .faq-two .arafa-accordion {
    margin-top: 20px;
  }
}

.faq-two .arafa-accordion .accordion {
  position: relative;
  background-color: var(--arafa-white, #fff);
}

.faq-two .arafa-accordion .accordion-title {
  position: relative;
  padding: 25px 80px 25px 30px;
  cursor: pointer;
}

@media (max-width: 412px) {
  .faq-two .arafa-accordion .accordion-title {
    padding-left: 20px;
    padding-right: 70px;
  }
}

.faq-two .arafa-accordion .accordion-title h4 {
  font-family: var(--arafa-heading-font2, "Castoro", serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  text-transform: capitalize;
}

.faq-two .arafa-accordion .accordion-title__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  right: 30px;
  background-color: var(--arafa-gray2);
  border-radius: 50%;
}

@media (max-width: 412px) {
  .faq-two .arafa-accordion .accordion-title__icon {
    right: 20px;
  }
}

.faq-two .arafa-accordion .accordion-title__icon span {
  font-size: 8px;
  color: var(--arafa-orange, #E76100);
}

.faq-two .arafa-accordion .accordion-title__icon::after,
.faq-two .arafa-accordion .accordion-title__icon::before {
  display: none;
}

.faq-two .arafa-accordion .active .accordion-title h4 {
  color: var(--arafa-orange, #E76100);
}

.faq-two .arafa-accordion .active .accordion-title__icon {
  background-color: var(--arafa-orange, #E76100);
}

.faq-two .arafa-accordion .active .accordion-title__icon span {
  color: var(--arafa-white, #fff);
  transform: rotate(90deg);
}

.faq-two .arafa-accordion .accordion-content .inner {
  margin-top: 0;
  padding: 2px 30px 21px 30px;
}

@media (max-width: 412px) {
  .faq-two .arafa-accordion .accordion-content .inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}

.faq-page-inner {
  position: relative;
}

.faq-page-inner__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--arafa-white2, #EFECE7);
  mix-blend-mode: multiply;
  z-index: 1;
}

.faq-page-inner .container {
  position: relative;
  z-index: 11;
}

.faq-page-inner .accordion-title {
  background-color: var(--arafa-white, #fff);
  border-radius: 10px;
}

.faq-page-inner .accordion-content .inner {
  background-color: var(--arafa-white, #fff);
}

/*--------------------------------------------------------------
# counter
--------------------------------------------------------------*/
.achievement__area {

  padding: 50px 0;
}

.achievement__top {
  text-align: center;
  padding-bottom: 40px;
}

.achievement__top p {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--green);
  font-family: "Manrope", sans-serif;
}

.achievement__item {
  padding: 30px 25px;
  border-radius: 12px;
  background: white;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  display: flex;
  gap: 15px;
}

.achievement__area .sec-title__title.text-center.pb-3 {
  font-family: 'Vesper Libre';
}

.content span {
  font-family: 'Neuton';
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
}

span.countertail {
  position: relative;
  left: -2%;
}

@media (max-width: 1399px) {
  .achievement__item {
    gap: 10px;
    padding: 20px;
  }
}

@media (max-width: 1199px) {
  .achievement__item {
    padding: 20px 10px;
  }
}

@media (max-width: 991px) {
  .achievement__item {
    margin-bottom: 20px;
  }
}

.achievement__item .bg-2 {
  background-color: rgba(248, 102, 115, 0.1);
}

.achievement__item .bg-3 {
  background-color: rgba(255, 164, 27, 0.1);
}

.achievement__item .bg-4 {
  background-color: rgba(0, 182, 189, 0.1);
}

.achievement__number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--green);
  letter-spacing: 0.96px;
  font-family: "Manrope", sans-serif;
}

@media (max-width: 1399px) {
  .achievement__number {
    font-size: 36px;
  }
}

@media (max-width: 1199px) {
  .achievement__number {
    font-size: 28px;
  }
}

.achievement__info p {
  font-weight: 700;
  line-height: 24px;
  color: var(--gray-5);
}

.achievement__img img {
  position: relative;
  width: 180%;
  left: 0;
  top: 10px;
}

.achievement__img {
  width: 80px;
  height: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(153, 146, 255, 0.1);
  border-radius: 100%;
  padding: 20px;
  -ms-flex-preferred-size: 80px;
  flex-basis: 80px;
}

@media (max-width: 1399px) {
  .achievement__img {
    width: 60px;
    height: 60px;
    padding: 10px;
    -ms-flex-preferred-size: 60px;
    flex-basis: 60px;
  }
}

@media (max-width: 1199px) {
  .achievement__img {
    width: 50px;
    height: 50px;
    padding: 10px;
    -ms-flex-preferred-size: 50px;
    flex-basis: 50px;
  }
}

/*--------------------------------------------------------------
# gallery
--------------------------------------------------------------*/

.gallery-bg {
  background-color: #ffffff;
  padding: 28px 24px;
  width: 18%;
  position: absolute;
  border-radius: 18px;
  left: 41%;
  z-index: 99;
  text-align: center;
  margin-top: -210px;
}

.events-gallery {
  margin-bottom: 40px;
}

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  background: linear-gradient(179.4deg, #ffffff -16.9%, #74ffd6 119.9%);
}

.footer-logo {
  margin: 46px;
}

.footer-nav {
  background-color: white;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.footer-nav ul li {
  list-style-type: none;
  margin: 0px 40px 10px;
}

.footer-nav ul li a {
  font-family: 'Cardo';
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 1px;
  color: black;
}

.footer-nav ul li a:hover {
  color: #FF8490;
}

.footer-address {
  position: relative;
  left: 4%;
}

.footer-addressbox {
  display: flex;
  position: relative;
  top: 12px;
}

.footer-ulpadding {
  display: flex;
  position: relative;
  top: 4px;
}

.main-footer .pattern-layer-one {
  position: absolute;
  left: 0px;
  bottom: 140px;
  width: 449px;
  height: 350px;
  background-repeat: no-repeat;
}

.main-footer .pattern-layer-two {
  position: absolute;
  right: 0px;
  bottom: 140px;
  width: 472px;
  height: 388px;
  background-repeat: no-repeat;
}

.main-footer .widgets-section {
  position: relative;
  text-align: center;
  /* padding:210px 0px 110px; */
}

.main-footer .logo {
  position: relative;
  line-height: 1em;
  margin-bottom: var(--margin-bottom-50);
}

.main-footer .contact-info-list {
  position: relative;
}

.main-footer .contact-info-list li {
  position: relative;
  text-align: left;
  line-height: 1.9em;
  color: var(--white-color);
  padding-left: var(--padding-left-60);
  margin-right: var(--margin-right-100);
  margin-bottom: var(--margin-bottom-30);
  display: inline-table;
}

.main-footer .contact-info-list li:last-child {
  margin-right: var(--margin-zero);
}

.main-footer .contact-info-list li a {
  position: relative;
  display: inline-block;
  color: var(--white-color);
}

.main-footer .contact-info-list li .icon {
  position: absolute;
  left: 0px;
  top: 0px;
  line-height: 1em;
}

.main-footer .contact-info-list li a:hover {
  color: var(--main-color);
}

.main-footer .social-box {
  position: relative;
  margin-top: var(--margin-top-40);
}

.main-footer .social-box li {
  position: relative;
  margin: 0px 6px;
  display: inline-block;
}

.main-footer .social-box li a {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  display: inline-block;
  color: var(--white-color);
  background-color: var(--main-color);
}

.main-footer .social-box li a:hover {
  color: var(--main-color);
  background-color: var(--white-color);
}

.main-footer .social-box.style-two li a {
  background: linear-gradient(to left, var(--main-color-twentytwo) 0%, var(--main-color-eighteen) 100%);
}

.main-footer .social-box.style-two li a:hover {
  background-image: none;
  background-color: var(--white-color) !important;
}

.main-footer .footer-bottom {
  position: relative;
  padding: 6px 0px;
  text-align: center;
  border-top: 1px solid black;
}

.main-footer .footer-bottom .copyright {
  position: relative;
  font-size: var(--font-15);
  color: var(--white-color);
}

.main-footer .footer-bottom .copyright a {
  position: relative;
  color: var(--main-color);
}

.main-footer .footer-bottom .copyright a:hover {
  color: var(--white-color);
}

.main-footer.style-two {
  background-color: var(--main-color-three);
}

.main-footer.style-two .widgets-section {
  padding-top: 190px;
}

.main-footer.style-two .footer-bottom {
  background-color: #01274e
}

/* Style Three */

.main-footer.style-three {
  background-color: var(--dark-color-three);
}

.main-footer.style-three .footer-bottom {
  background-color: #080f19;
}

.main-footer.style-three .social-box li a {
  background-color: var(--main-color-four);
}

.main-footer.style-three .social-box li a:hover {
  color: var(--white-color);
  background-color: var(--main-color-five);
}

.main-footer.style-three .contact-info-list li a:hover {
  color: var(--main-color-four);
}

.main-footer.style-three .footer-bottom .copyright a {
  color: var(--main-color-four);
}

.footer-address p {
  font-family: 'Neuton';
  font-weight: 600;
  font-size: 22px;
  color: #2b2b2b;
  text-align: left;
  padding: 0 38px 0 0;
  line-height: 1.5;
}

.footer-three__bottom__inner {
  text-align: center;
  border-top: 1px solid #ffffff2b;
  padding: 4px 0 0 0;
  font-size: 16px;
}

.footer-logo img {
  width: 30%;
  position: relative;
  right: 0;
}

/*--------------------------------------------------------------
# Story
--------------------------------------------------------------*/
.story-one {
  position: relative;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  padding-bottom: 121px;
}

@media (max-width: 767px) {
  .story-one {
    padding-bottom: 101px;
  }
}

@media (max-width: 575px) {
  .story-one {
    padding-bottom: 71px;
  }
}

.story-one::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(var(--arafa-base-rgb, 53, 28, 66), 0.75);
}

.story-one .container {
  position: relative;
  z-index: 1;
}

.story-one .sec-title {
  width: 100%;
  max-width: 441px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.story-one .sec-title__tagline {
  margin-left: auto;
  margin-right: auto;
  color: var(--arafa-white2, #EFECE7);
  margin-bottom: 23px;
}

.story-one .sec-title__tagline::before {
  background-color: var(--arafa-white2, #EFECE7);
}

.story-one .sec-title__tagline::after {
  border-color: var(--arafa-white2, #EFECE7);
}

.story-one .sec-title__title {
  color: var(--arafa-white, #fff);
}

.story-one__image img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.story-one__content {
  padding: 40px 40px 39px;
  background-color: var(--arafa-white2, #EFECE7);
  border-radius: 20px;
}

@media (max-width: 575px) {
  .story-one__content {
    padding: 30px 30px 29px;
  }
}

.story-one__title {
  font-size: 22px;
  line-height: 22px;
  letter-spacing: -0.66px;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.story-one__text {
  text-transform: capitalize;
  margin-bottom: 0;
}

.story-one__text--one {
  margin-bottom: 20px;
}

.story-one .volunteer-profile {
  margin-top: 44px;
}

.story-one__divider {
  margin-top: 30px;
  margin-bottom: 31px;
  height: 2px;
  background-color: var(--arafa-text, #757277);
}

.story-one__tabs-box .tab-buttons {
  position: relative;
  z-index: 11;
}

.story-one__tabs-box .tab-buttons .tab-btn--one {
  padding-left: 1px;
}

.story-one__tabs-box .tab-buttons .tab-btn--two {
  padding-left: 8px;
}

.story-one__tabs-box .tab-buttons .tab-btn--three {
  padding-left: 24px;
}

.story-one__tabs-box .tab-buttons .tab-btn--four {
  text-align: right;
  padding-right: 25px;
}

.story-one__tabs-box .tab-buttons .tab-btn--five {
  text-align: right;
  padding-right: 11px;
}

.story-one__tabs-box .tab-buttons .tab-btn--six {
  text-align: right;
}

.story-one__tabs-box .tab-buttons .tab-btn--six .tab-btn__text {
  position: relative;
  right: -5px;
}

@media (max-width: 1199px) {
  .story-one__tabs-box .tab-buttons .tab-btn {
    padding: 0;
    text-align: center;
  }

  .story-one__tabs-box .tab-buttons .tab-btn .tab-btn__text {
    right: 0;
  }
}

.story-one__tabs-box .tab-buttons .tab-btn__text {
  cursor: pointer;
  font-size: 50px;
  line-height: 1;
  text-transform: capitalize;
  color: RGBA(var(--arafa-base-rgb, 53, 28, 66), 1);
  text-shadow: 1px 1px 0 var(--arafa-white, #fff), -1px -1px 0 var(--arafa-white, #fff), 1px -1px 0 var(--arafa-white, #fff), -1px 1px 0 var(--arafa-white, #fff), 1px 1px 0 var(--arafa-white, #fff);
  transition: all 500ms ease;
}

.story-one__tabs-box .tab-buttons .tab-btn .tab-btn__text:hover,
.story-one__tabs-box .tab-buttons .tab-btn.active-btn .tab-btn__text {
  color: var(--arafa-secondary, #F6D469);
  text-shadow: 1px 1px 0 var(--arafa-secondary, #F6D469), -1px -1px 0 var(--arafa-secondary, #F6D469), 1px -1px 0 var(--arafa-secondary, #F6D469), -1px 1px 0 var(--arafa-secondary, #F6D469), 1px 1px 0 var(--arafa-secondary, #F6D469);
}

.story-one__tabs-box .tabs-content {
  position: relative;
  display: block;
}

.story-one__tabs-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.story-one__tabs-box .tabs-content .tab.active-tab {
  display: block;
  /*! margin-top: 0px; */
}

/*--------------------------------------------------------------
# Inspiring
--------------------------------------------------------------*/
.inspiring-one {
  position: relative;
  background-color: var(--arafa-white2, #EFECE7);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.inspiring-one .container {
  position: relative;
  z-index: 11;
}

.inspiring-one .sec-title {
  margin-bottom: 39px;
}

.inspiring-one .sec-title__tagline {
  margin-bottom: 23px;
}

.inspiring-one__text {
  margin-bottom: 66px;
}

.inspiring-one__inner {
  width: 100%;
  max-width: 494px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 575px) {
  .inspiring-one__inner {
    grid-template-columns: 1fr;
  }
}

.inspiring-one__inner__content {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 10px;
  background: var(--arafa-white, #fff);
}

.inspiring-one__inner__title {
  font-family: var(--arafa-font, "DM Sans", sans-serif);
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .inspiring-one__inner__title {
    order: 1;
  }
}

.inspiring-one__inner__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--arafa-purple, #965995);
  border-radius: 10px;
  transition: all 400ms ease;
}

@media (max-width: 575px) {
  .inspiring-one__inner__icon {
    order: 0;
  }
}

.inspiring-one__inner__icon span {
  font-size: 40px;
  color: var(--arafa-white, #fff);
  transition: all 400ms ease;
}

.inspiring-one__inner__content:hover .inspiring-one__inner__icon {
  background-color: var(--arafa-secondary, #F6D469);
}

.inspiring-one__inner__content:hover .inspiring-one__inner__icon span {
  color: var(--arafa-base, #351C42);
}

.inspiring-one__image {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 1199px) {
  .inspiring-one__image {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .inspiring-one__image {
    gap: 20px;
  }
}

.inspiring-one__image__inner {
  position: absolute;
  max-width: 270px;
}

.inspiring-one__image__inner img {
  width: 100%;
}

.inspiring-one__image__inner--one {
  top: -130px;
  left: 0;
}

@media (max-width: 1199px) {
  .inspiring-one__image__inner--one {
    position: static;
  }
}

.inspiring-one__image__inner--one img {
  border-radius: 0 0 1000px 1000px;
}

@media (max-width: 1199px) {
  .inspiring-one__image__inner--one img {
    border-radius: 1000px;
  }
}

.inspiring-one__image__inner--two {
  right: 0;
  top: 0;
}

@media (max-width: 1199px) {
  .inspiring-one__image__inner--two {
    position: static;
  }
}

.inspiring-one__image__inner--two img {
  border-radius: 1000px 1000px 0 0;
}

@media (max-width: 1199px) {
  .inspiring-one__image__inner--two img {
    border-radius: 1000px;
  }
}

.inspiring-one__shape {
  position: relative;
  position: absolute;
  width: 234px;
  height: 234px;
  border-radius: 50%;
  background-color: var(--arafa-secondary, #F6D469);
  z-index: 1;
}

.inspiring-one__shape::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--arafa-secondary, #F6D469);
  z-index: 1;
}

.inspiring-one__shape--one {
  top: -117px;
  left: 50px;
  animation: zumpX 1500ms infinite alternate;
}

@media (max-width: 1799px) {
  .inspiring-one__shape--one {
    top: -140px;
  }
}

@media (max-width: 767px) {
  .inspiring-one__shape--one {
    top: -150px;
  }
}

@media (max-width: 575px) {
  .inspiring-one__shape--one {
    top: -175px;
    left: 20px;
  }
}

@media (max-width: 412px) {
  .inspiring-one__shape--one {
    left: 0px;
  }
}

.inspiring-one__shape--one::after {
  top: 0;
  left: 37px;
  animation: zumpX 1500ms infinite alternate;
}

.inspiring-one__shape--two {
  right: 50px;
  bottom: -117px;
  animation: zumpXtwo 1500ms infinite alternate;
}

@media (max-width: 1799px) {
  .inspiring-one__shape--two {
    bottom: -140px;
  }
}

@media (max-width: 767px) {
  .inspiring-one__shape--two {
    bottom: -150px;
  }
}

@media (max-width: 575px) {
  .inspiring-one__shape--two {
    right: 20px;
    bottom: -175px;
  }
}

@media (max-width: 412px) {
  .inspiring-one__shape--two {
    right: 0px;
  }
}

.inspiring-one__shape--two::after {
  top: 0;
  right: 37px;
  animation: zumpXtwo 1500ms infinite alternate;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team-one__top {
  margin-bottom: 92px;
}

.team-one .sec-title {
  width: 100%;
  max-width: 570px;
  margin-bottom: 0;
}

.team-one .sec-title__tagline {
  margin-bottom: 23px;
}

.team-one__text {
  text-transform: capitalize;
  margin-bottom: 0;
}

.team-single {
  position: relative;
}

.team-single::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1000px 1000px 20px 20px;
  border: 2px solid var(--arafa-purple, #965995);
  transition: all 500ms ease;
  z-index: -1;
}

.team-single:hover::before {
  top: -14px;
}

.team-single__image {
  position: relative;
  border-radius: 1000px 1000px 20px 20px;
  overflow: hidden;
  z-index: 1;
  width: calc(100% - 28px);
  left: 28px;
  transition: all 500ms ease;
}

.team-single__image img {
  display: block;
  width: 100%;
  border-radius: 1000px 1000px 20px 20px;
}

.team-single:hover .team-single__image {
  left: 14px;
}

.team-single__content {
  padding: 35px 20px;
  width: 100%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(var(--arafa-base-rgb, 53, 28, 66), 0.5);
  border-radius: 1000px 1000px 20px 20px;
  z-index: 11;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  opacity: 0;
  -webkit-perspective: 50em;
  perspective: 50em;
  transition: transform 500ms ease, opacity 500ms ease;
}

.team-single__content__inner {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 35px;
  text-align: center;
}

.team-single:hover .team-single__content {
  opacity: 1;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}

.team-single__social {
  margin-top: 15px;
}

@media (max-width: 375px) {
  .team-single__social {
    margin-top: 20px;
  }
}

.team-single__social li a {
  border-color: var(--arafa-white, #fff);
  color: var(--arafa-white, #fff);
}

.team-single__social li a::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0);
  opacity: 0;
  transition: transform 400ms ease, opacity 400ms ease;
  background-color: var(--arafa-secondary, #F6D469);
}

.team-single__social li a:hover {
  border-color: var(--arafa-secondary, #F6D469);
  color: var(--arafa-base, #351C42);
}

.team-single__name {
  font-size: 24px;
  color: var(--arafa-white, #fff);
  line-height: 1.458;
  text-transform: capitalize;
  margin-bottom: 10px;
}

@media (max-width: 375px) {
  .team-single__name {
    font-size: 22px;
  }
}

.team-single__designation {
  color: var(--arafa-secondary, #F6D469);
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 0;
}

.team-two {
  position: relative;
  background-color: var(--arafa-white, #fff);
}

.team-two .sec-title {
  margin-bottom: 29px;
}

.team-two .sec-title__title {
  text-transform: capitalize;
}

.team-two__text {
  text-transform: capitalize;
  margin-bottom: 51px;
}

.team-two__custome-navs {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1399px) {
  .team-two__custome-navs {
    gap: 15px;
  }
}

.team-two__custome-navs button {
  outline: 0;
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: 1px solid rgba(var(--arafa-base-rgb), 0.1);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--arafa-brown);
  border-radius: 50%;
  transition: all 500ms ease;
}

@media (max-width: 1399px) {
  .team-two__custome-navs button {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

.team-two__custome-navs button:hover {
  color: var(--arafa-white, #fff);
  background-color: var(--arafa-brown2);
  border-color: var(--arafa-brown2);
}

.team-two__carousel .owl-stage-outer {
  padding-top: 20px;
}

.team-two__carousel .owl-stage {
  padding-left: 0 !important;
}

@media (max-width: 991px) {
  .team-two__carousel {
    padding: 0 15px;
  }
}

.team-two__card {
  position: relative;
}

.team-two__card__image {
  position: relative;
  z-index: 1;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 1095.000000"><g transform="translate(0.000000,1095.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4440 10936 c0 -8 -14 -17 -32 -21 -18 -4 -51 -12 -73 -19 -22 -7 -65 -21 -95 -30 -284 -89 -748 -290 -1005 -436 -22 -12 -60 -34 -85 -48 -382 -217 -800 -526 -1125 -833 -327 -310 -581 -606 -894 -1044 -189 -266 -469 -784 -624 -1155 -95 -228 -214 -566 -247 -700 -5 -19 -18 -66 -29 -105 -21 -70 -79 -307 -88 -355 -2 -14 -10 -54 -18 -90 -54 -263 -85 -485 -114 -820 -8 -85 -11 -940 -11 -2702 l0 -2578 4500 0 4500 0 0 2601 c0 1528 -4 2598 -9 2595 -14 -9 -20 18 -27 122 -6 102 -38 385 -55 487 -49 294 -126 646 -179 808 -5 18 -26 86 -46 152 -20 66 -47 149 -60 185 -13 36 -24 69 -24 74 0 4 -6 22 -14 39 -7 18 -28 70 -45 117 -18 47 -38 99 -45 115 -7 17 -30 71 -51 120 -53 125 -235 492 -295 595 -27 47 -54 94 -59 106 -12 27 -131 220 -191 309 -97 146 -117 174 -227 321 -242 323 -581 691 -858 931 -161 138 -212 180 -355 287 -85 64 -159 119 -165 124 -31 25 -266 178 -333 217 -9 6 -60 35 -112 65 -140 81 -508 270 -526 270 -3 0 -33 13 -67 28 -34 16 -100 44 -147 62 -47 18 -93 36 -102 41 -9 5 -45 18 -80 29 -35 11 -72 25 -83 30 -30 14 -223 73 -277 85 -16 3 -28 12 -28 20 0 11 -13 15 -50 15 -37 0 -50 -4 -50 -14z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 1095.000000"><g transform="translate(0.000000,1095.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4440 10936 c0 -8 -14 -17 -32 -21 -18 -4 -51 -12 -73 -19 -22 -7 -65 -21 -95 -30 -284 -89 -748 -290 -1005 -436 -22 -12 -60 -34 -85 -48 -382 -217 -800 -526 -1125 -833 -327 -310 -581 -606 -894 -1044 -189 -266 -469 -784 -624 -1155 -95 -228 -214 -566 -247 -700 -5 -19 -18 -66 -29 -105 -21 -70 -79 -307 -88 -355 -2 -14 -10 -54 -18 -90 -54 -263 -85 -485 -114 -820 -8 -85 -11 -940 -11 -2702 l0 -2578 4500 0 4500 0 0 2601 c0 1528 -4 2598 -9 2595 -14 -9 -20 18 -27 122 -6 102 -38 385 -55 487 -49 294 -126 646 -179 808 -5 18 -26 86 -46 152 -20 66 -47 149 -60 185 -13 36 -24 69 -24 74 0 4 -6 22 -14 39 -7 18 -28 70 -45 117 -18 47 -38 99 -45 115 -7 17 -30 71 -51 120 -53 125 -235 492 -295 595 -27 47 -54 94 -59 106 -12 27 -131 220 -191 309 -97 146 -117 174 -227 321 -242 323 -581 691 -858 931 -161 138 -212 180 -355 287 -85 64 -159 119 -165 124 -31 25 -266 178 -333 217 -9 6 -60 35 -112 65 -140 81 -508 270 -526 270 -3 0 -33 13 -67 28 -34 16 -100 44 -147 62 -47 18 -93 36 -102 41 -9 5 -45 18 -80 29 -35 11 -72 25 -83 30 -30 14 -223 73 -277 85 -16 3 -28 12 -28 20 0 11 -13 15 -50 15 -37 0 -50 -4 -50 -14z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.team-two__card__shape {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 1095.000000"><g transform="translate(0.000000,1095.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4440 10936 c0 -8 -14 -17 -32 -21 -18 -4 -51 -12 -73 -19 -22 -7 -65 -21 -95 -30 -284 -89 -748 -290 -1005 -436 -22 -12 -60 -34 -85 -48 -382 -217 -800 -526 -1125 -833 -327 -310 -581 -606 -894 -1044 -189 -266 -469 -784 -624 -1155 -95 -228 -214 -566 -247 -700 -5 -19 -18 -66 -29 -105 -21 -70 -79 -307 -88 -355 -2 -14 -10 -54 -18 -90 -54 -263 -85 -485 -114 -820 -8 -85 -11 -940 -11 -2702 l0 -2578 4500 0 4500 0 0 2601 c0 1528 -4 2598 -9 2595 -14 -9 -20 18 -27 122 -6 102 -38 385 -55 487 -49 294 -126 646 -179 808 -5 18 -26 86 -46 152 -20 66 -47 149 -60 185 -13 36 -24 69 -24 74 0 4 -6 22 -14 39 -7 18 -28 70 -45 117 -18 47 -38 99 -45 115 -7 17 -30 71 -51 120 -53 125 -235 492 -295 595 -27 47 -54 94 -59 106 -12 27 -131 220 -191 309 -97 146 -117 174 -227 321 -242 323 -581 691 -858 931 -161 138 -212 180 -355 287 -85 64 -159 119 -165 124 -31 25 -266 178 -333 217 -9 6 -60 35 -112 65 -140 81 -508 270 -526 270 -3 0 -33 13 -67 28 -34 16 -100 44 -147 62 -47 18 -93 36 -102 41 -9 5 -45 18 -80 29 -35 11 -72 25 -83 30 -30 14 -223 73 -277 85 -16 3 -28 12 -28 20 0 11 -13 15 -50 15 -37 0 -50 -4 -50 -14z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 1095.000000"><g transform="translate(0.000000,1095.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M4440 10936 c0 -8 -14 -17 -32 -21 -18 -4 -51 -12 -73 -19 -22 -7 -65 -21 -95 -30 -284 -89 -748 -290 -1005 -436 -22 -12 -60 -34 -85 -48 -382 -217 -800 -526 -1125 -833 -327 -310 -581 -606 -894 -1044 -189 -266 -469 -784 -624 -1155 -95 -228 -214 -566 -247 -700 -5 -19 -18 -66 -29 -105 -21 -70 -79 -307 -88 -355 -2 -14 -10 -54 -18 -90 -54 -263 -85 -485 -114 -820 -8 -85 -11 -940 -11 -2702 l0 -2578 4500 0 4500 0 0 2601 c0 1528 -4 2598 -9 2595 -14 -9 -20 18 -27 122 -6 102 -38 385 -55 487 -49 294 -126 646 -179 808 -5 18 -26 86 -46 152 -20 66 -47 149 -60 185 -13 36 -24 69 -24 74 0 4 -6 22 -14 39 -7 18 -28 70 -45 117 -18 47 -38 99 -45 115 -7 17 -30 71 -51 120 -53 125 -235 492 -295 595 -27 47 -54 94 -59 106 -12 27 -131 220 -191 309 -97 146 -117 174 -227 321 -242 323 -581 691 -858 931 -161 138 -212 180 -355 287 -85 64 -159 119 -165 124 -31 25 -266 178 -333 217 -9 6 -60 35 -112 65 -140 81 -508 270 -526 270 -3 0 -33 13 -67 28 -34 16 -100 44 -147 62 -47 18 -93 36 -102 41 -9 5 -45 18 -80 29 -35 11 -72 25 -83 30 -30 14 -223 73 -277 85 -16 3 -28 12 -28 20 0 11 -13 15 -50 15 -37 0 -50 -4 -50 -14z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: var(--arafa-brown2);
  transition: all 500ms ease;
}

.team-two__card:hover .team-two__card__shape {
  top: -20px;
}

.team-two__card__info {
  width: calc(100% - 96px);
  padding: 25px 30px 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  text-align: center;
  border-radius: 1000px 1000px 0px 0px;
  background-color: var(--arafa-gray4);
  transition-timing-function: ease-in-out;
  transition-duration: 400ms;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(1) translateX(-50%);
  z-index: 2;
}

@media (max-width: 1799px) {
  .team-two__card__info {
    width: calc(100% - 80px);
  }
}

@media (max-width: 1399px) {
  .team-two__card__info {
    width: calc(100% - 60px);
  }
}

@media (max-width: 390px) {
  .team-two__card__info {
    width: calc(100% - 10px);
  }
}

.team-two__card:hover .team-two__card__info {
  transform: scaleY(1) translateX(-50%);
}

.team-two__card__social {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.team-two__card__social a {
  font-size: 14px;
  color: var(--arafa-text, #757277);
}

.team-two__card__social a:hover {
  color: var(--arafa-brown2);
}

.team-two__card__name {
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 1.46;
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .team-two__card__name {
    font-size: 22px;
  }
}

.team-two__card__designation {
  font-size: 16px;
  font-weight: 500;
  color: var(--arafa-brown2);
  line-height: 16px;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Help People
--------------------------------------------------------------*/
.help-people {
  padding-top: 141px;
  padding-bottom: 142px;
  position: relative;
  background-color: var(--arafa-base, #351C42);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 1199px) {
  .help-people {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

@media (max-width: 767px) {
  .help-people {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

@media (max-width: 575px) {
  .help-people {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 1199px) {
  .help-people .row {
    --bs-gutter-y: 60px;
  }
}

.help-people__images {
  position: relative;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 50%;
  height: calc(100% - 260px);
  z-index: 1;
}

@media (max-width: 1199px) {
  .help-people__images {
    position: relative;
    transform: translateY(0);
    width: 100%;
  }
}

.help-people__images__inner {
  padding: 16px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  background-color: var(--arafa-secondary, #F6D469);
  border-radius: 0px 1000px 1000px 0px;
}

@media (max-width: 1199px) {
  .help-people__images__inner {
    position: relative;
    transform: translateY(0);
    left: -150px;
    width: calc(100% + 150px);
  }
}

@media (max-width: 991px) {
  .help-people__images__inner {
    left: -150px;
    width: calc(100% + 150px);
  }
}

.help-people__images__inner img {
  flex-shrink: 0;
  width: 376px;
  height: 376px;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .help-people__images__inner img {
    width: 330px;
    height: 330px;
  }
}

@media (max-width: 767px) {
  .help-people__images__inner img {
    width: 270px;
    height: 270px;
  }
}

@media (max-width: 412px) {
  .help-people__images__inner img {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 360px) {
  .help-people__images__inner img {
    width: 230px;
    height: 230px;
  }
}

.help-people__content {
  position: relative;
  z-index: 11;
}

@media (min-width: 1200px) {
  .help-people__content {
    margin-left: auto;
  }
}

.help-people .sec-title {
  margin-bottom: 41px;
}

.help-people .sec-title__tagline {
  color: var(--arafa-white, #fff);
  margin-bottom: 24px;
}

.help-people .sec-title__tagline::before {
  background-color: var(--arafa-white, #fff);
}

.help-people .sec-title__tagline::after {
  border-color: var(--arafa-white, #fff);
}

.help-people .sec-title__title {
  color: var(--arafa-white, #fff);
}

.help-people__text {
  color: rgba(var(--arafa-white-rgb, 255, 255, 255), 0.6);
  font-weight: 500;
  margin-bottom: 41px;
}

.help-people__content__bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.help-people__shape__one {
  position: absolute;
  right: 38px;
  bottom: 0;
  z-index: 1;
  animation: zumpX 1500ms infinite alternate;
}


/*--------------------------------------------------------------
# Events Gallery
--------------------------------------------------------------*/
.events-gallery .container-fluid {
  padding: 0;
}

.events-gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10;
}

@media (max-width: 1399px) {
  .events-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .events-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .events-gallery__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.events-gallery__image {
  overflow: hidden;
  position: relative;
}

.events-gallery__image::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: #008d89a6;
  transition: all 700ms ease;
  transform: translateY(-110%);
  z-index: 1;
}

.events-gallery__image__img {
  display: block;
  width: 100%;
}

.events-gallery__item:hover .events-gallery__image::after {
  transform: translateY(0);
}

.events-gallery__link {
  width: calc(100% - 97px);
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 200%);
  padding: 14px;
  background-color: var(--arafa-white, #fff);
  border-radius: 100px;
  font-family: var(--arafa-heading-font, "Quicksand", sans-serif);
  font-size: 16px;
  color: var(--arafa-base, #351C42);
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  transition: all 600ms ease;
  opacity: 0;
  visibility: hidden;
  z-index: 11;
}

@media (max-width: 1799px) {
  .events-gallery__link {
    width: calc(100% - 50px);
  }
}

@media (max-width: 1599px) {
  .events-gallery__link {
    width: calc(100% - 40px);
  }
}

.events-gallery__link:hover {
  color: var(--arafa-purple, #965995);
}

.events-gallery__link img {
  width: 40px !important;
  height: 40px;
}

.events-gallery__link span {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  padding-bottom: 3px;
  margin-bottom: -2px;
}

.events-gallery__link span:hover {
  background-size: 100% 1px;
}

.events-gallery__item:hover .events-gallery__link {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
  width: 25%;
}


/*===== Responsive Header =====*/

.rspn-hdr {
  display: none;
  width: 100%;
  position: relative;
  z-index: 999;
}

.rspn-mdbr {
  background-color: #252a2c;
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.lg-mn {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  bottom: 40px;
}

.desktop-lg-mn {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  bottom: 38px;
}

.desktop-lg-mn .rspn-mnu-btn {
  background: transparent;
  color: #000000;
  cursor: pointer;
  font-size: 26px;
  height: 2.5rem;
  line-height: 2.5rem;
  position: absolute;
  left: 100%;
  text-align: center;
  top: 144%;
  width: 2.5rem;
  margin-top: 16px;
  margin-left: 26px;
}

.sticky-top.navbar .desktop-lg-mn .rspn-mnu-btn {
  color: #fff;
  margin-top: -77px;
}

.sticky-top.navbar .desktop-lg-mn {
  padding: 1.125rem 5rem 1.125rem .9375rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  bottom: 2px;
}

/* .rspn-cnt {display: inline-block;}
  .rspn-cnt > span {
	color: #777;
	display: inline-block;
	margin: 5px .5rem;
  } */
/* .rspn-cnt > span i {margin-right: .5rem;} */
.rspn-mnu-btn {
  color: #fff;
  cursor: pointer;
  font-size: 0.875rem;
  height: 2.5rem;
  line-height: 2.5rem;
  position: absolute;
  right: 27px;
  text-align: center;
  top: 50%;
  width: 2.5rem;
  margin-top: -7px;
}

.heart {
  font-size: 150px;
  color: #e00;
  animation: beat .9s infinite alternate;
  transform-origin: center;
}

@keyframes beat {
  to {
    transform: scale(1.4);
  }
}

/*=== Responsive Menu ===*/
.logo img {
  width: 100%;
}

.rsnp-mnu {
  background: linear-gradient(to right, #530222, #70022e);
  bottom: 0;
  opacity: 0;
  padding: 5.3125rem 2.5rem 3.125rem;
  position: fixed;
  right: -21.875rem;
  top: 0;
  visibility: hidden;
  z-index: 99999;
  max-width: 21.875rem;
  width: 100%;
}

.desktop-extramenu .rsnp-mnu {
  background: linear-gradient(to right, #97ffe8, #d0fdf1);
  bottom: 0;
  opacity: 0;
  padding: 1.3125rem 2.5rem 3.125rem;
  position: fixed;
  right: -21.875rem;
  top: 0;
  visibility: hidden;
  z-index: 99999;
  max-width: 21.875rem;
  width: 100%;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgb(0 141 137 / 52%) -6px -2px 16px;
  transition: 1s;
}

.rsnp-mnu.slidein {
  opacity: 1;
  right: 0;
  visibility: visible;
}

.rspn-mnu-cls {
  background-color: #008d89;
  color: #fff;
  cursor: pointer;
  font-size: 0.875rem;
  height: 2.5rem;
  line-height: 2.5rem;
  position: absolute;
  right: .75rem;
  text-align: center;
  top: .75rem;
  width: 2.5rem;
}

.rsnp-mnu>ul {
  display: inline-block;
  list-style: outside none none;
  margin-bottom: 0;
  padding-left: 0;
  overflow-y: auto !important;
  width: 100% !important;
}

.rsnp-mnu>ul>li {
  color: #000;
  position: relative;
  width: 100%;
}

.rsnp-mnu>ul>li a {
  color: inherit;
  display: block;
  font-weight: 400;
  font-size: 20px;
  text-transform: capitalize;
}

.menu-item-has-children ul li a {
  font-weight: 600;
  font-size: 16px;
  font-family: "Neuton", serif;
}

.rsnp-mnu.active-parent.sidenav.ps.slidein li li {
  display: flex;
  justify-content: space-between;
  padding: 4px 20px;
  margin: 0;
  border-bottom: 1px solid #ddd;
  text-align: left;
  position: relative;
  transition: all 0.2s ease-in-out;
  background-color: white;
  color: #000000;
}

.rsnp-mnu.active-parent.sidenav.ps.slidein li li:hover {
  color: #530222;

}


.rsnp-mnu>ul>li:not(:first-child) {
  margin-top: 1.25rem;
}

.rsnp-mnu>ul ul {
  display: none;
  margin-bottom: 0;
  padding-left: 6px;
  opacity: 1;
  position: static;
  visibility: visible;
}

.rsnp-mnu ul li.menu-item-has-children.active>a {
  margin-bottom: 15px;
}

.rsnp-mnu>ul li.menu-item-has-children>a::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 0;
  top: 0;
  color: inherit;
  font-weight: 900;
}

.rsnp-mnu>ul ul>li {
  color: #ffffff;
  font-size: 1rem;
  position: relative;
  text-transform: initial;
  width: 100%;
  font-weight: 400;
}

.rsnp-mnu>ul ul>li:not(:first-child) {
  margin-top: 2px;
}

.rspn-mnu-cls:hover {
  background-color: #fe908f;
}

.rspn-mnu-btn img {
  width: 80%;
}

ul.main-menu__list {
  position: relative;
  right: 10%;
}

.count {
  font-size: 30px !important;
}

.rbt-counterup {
  background: var(--color-white);
  box-shadow: rgb(105 9 48 / 52%) 0px 5px 15px;
  border-radius: 5px;
  text-align: center;
  padding: 30px 10px 50px;
  z-index: 1;
  overflow: hidden;
  position: relative;
}

.successRate h6 {
  font-style: normal;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.5;
}

.successRate h6 {
  font-size: 30px;
  color: black;
}

.content {
  position: relative;
  left: 4%;
}

span.subtitle {
  font-size: 17px !important;
  color: #000000 !important;
  font-weight: bold !important;
}

span.subtitle {
  font-family: 'Neuton';
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rbt-counterup {
    padding: 30px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rbt-counterup {
    padding: 30px 15px;
  }
}

@media only screen and (max-width: 767px) {
  .rbt-counterup {
    padding: 30px 15px;
  }
}

@media only screen and (max-width: 575px) {
  .rbt-counterup {
    padding: 25px 15px;
  }
}



/******************************************* background images ************************************/

.left_shape {
  top: 75px;
  left: 85px;
}

.shape img {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-30px);
  }
}

.shape_2 img {
  -webkit-animation: movers 1s infinite alternate;
  animation: movers 1s infinite alternate;
}

@-webkit-keyframes movers {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-30px);
  }
}

.right_shape {
  top: 34%;
  right: 0;
  opacity: .8;
}

.faq__area .right_shape {
  top: 58%;
  right: 44px;
  z-index: 1;
}

.faq-one--about .left_shape {
  top: 59px;
  left: 64%;
  opacity: .5;
}

.achievement__area .left_shape1 {
  /* top: 0; */
  left: 80px;
}



/******************************************** important links *********************************************/

.importance-link {
  display: flex;
  background: linear-gradient(left, #93cede 0%, #75bdd1 41%, #49a5bf 100%);
  justify-content: center;
  position: relative;
  z-index: 999;
}

.button {
  display: flex;
  background-color: rgba(8, 19, 38, 0.8);
  border-radius: 28px;
  position: fixed;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.button__expand {
  background: linear-gradient(181deg, #008D89 15%, #00eee7 158.5%);
  width: 56px;
  height: 56px;
  right: 5px;
  bottom: 5%;
}

.button-normal {
  color: white;
  will-change: auto;
  width: 48px;
  height: 48px;
  right: 9px;
  background-color: rgba(8, 19, 38, 0.8);
  border-radius: 28px;
  box-sizing: border-box;
  bottom: 5%;
  transition: bottom 200ms ease;
}

.active .button-1 {
  bottom: 90px;
}

.active .button-2 {
  bottom: 142px;
}

.active .button-3 {
  bottom: 194px;
}

.active .button-4 {
  bottom: 246px;
}

.button__text {
  display: none;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 10px;
  color: white;
}

.button__group {
  background: red;
}

.button-normal:hover {
  width: unset;
  padding-right: 13px;
  padding-left: 10px;
  animation-name: width;
  animation-timing-function: ease;
}

.button-normal:hover .button__text {
  display: unset;
}

@keyframes width {
  0% {
    width: 64px;
  }

  50% {
    width: 88px;
  }

  100% {
    width: unset;
  }
}

/* ************************************** share section *********************************** */
.social-icones {
  top: 86%;
  left: 8px;
  position: fixed;
  z-index: 999;
}

.fa-share:before {
  content: "\f1e0";
}

.tile,
.tile1 {
  position: relative;
}

.float {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 70px;
  background: linear-gradient(181deg, #008D89 15%, #00eee7 158.5%);
  color: #fff;
  cursor: pointer;
  border-radius: 50px;
  text-align: center;
  z-index: 1000;
  animation: bot-to-top 2s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.float.menu-share i {
  position: relative;
  bottom: 0;
  font-size: 20px;
}

.soc a {
  color: #fff;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 53px;
  padding: 0px;
  font-size: 20px;
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 2px;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.soc a:hover {
  box-shadow: 2px 2px 3px #999;
}

.soc.pad i {
  position: relative;
  bottom: 0;
}

a.facebook {
  background: linear-gradient(-225deg, #4e71a8 0%, #6d8cbc 48%, #4e71a8 100%);
  animation-delay: 0.5s;
  z-index: 1;
}

a.instagram {
  animation-delay: 0.7s;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  z-index: 1;
}

a.Youtube {
  animation-delay: 0.15s;
  background: linear-gradient(-225deg, #ad0202 0%, #d63535 48%, #ad0202 100%);
  z-index: 1;
}

a.Phone {
  background: linear-gradient(-225deg, #0302ad 0%, #2322c5 48%, #0302ad 100%);
}

a.Whatsapp {
  background: linear-gradient(-225deg, #008b34 0%, #25d366 48%, #008b34 100%);
}

.pad .facebook {
  left: 60px;
  z-index: 1;
}

.pad .instagram {
  left: 110px;
  z-index: 1;
}

.pad .Youtube {
  left: 160px;
  z-index: 1;
}

.pad .Phone {
  left: 210px;
  z-index: 1;
}

.pad .Whatsapp {
  left: 260px;
  z-index: 1;
}

.menu-share i {
  animation: rotate-in 0.5s;
}

@keyframes rotate-in {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}



/************************* inner banner **********************/


/* .innerpage_bnr.banner_cnt {
  position: relative;
  margin-top: 0px;
  padding: 0 13px 365px;
  background-image: url(../images/inner-banner.png);
  background-position: center;
  background-repeat: no-repeat;
} */
.innerpage_bnr.banner_cnt {
  position: relative;
  /* margin-top: 0px; */
  /* padding: 0 13px 365px; */
  background-image: url(../images/inner-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  height: 276px;
}

.innerpage_bnr.banner_cnt h6 {
  font-size: 40px;
  color: #000000;
  text-align: center;
  text-transform: capitalize;
  margin-top: 0;
  position: relative;
  top: 200px;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 1px;
  font-weight: bold;
  font-family: 'Antykwa Poltawskiego';
}


/********************************************* sections ****************************/

/* .news-events,#about,#rs-service,.faq-one,.achievement__area,.download-btn {
  background-color: #effaf7;
} */


/********************************************** Modal ********************************/

.custom-modal .modal-body {
  padding: 0;
}

.custom-modal .modal-header {
  padding: 0;
}

.custom-nav {
  z-index: 600;
}

.custom-modal .close {
  padding: 0;
  color: #fff;
  opacity: 1;
  background: linear-gradient(181deg, #008D89 15%, #00eee7 158.5%);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  line-height: 30px;
  position: absolute;
  right: 0;
  cursor: pointer;
  z-index: 10;
}

.custom-modal img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

button.close i {
  position: relative;
  top: 4px;
}

@media only screen and (max-width: 600px) {
  .custom-modal img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

.helpDsk {
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 1;
}

.helpDsk a {
  width: 45px;
  height: 45px;
  border-radius: 50px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.44, -1.39, 0, 1.78);
  background: #C72127;
  background: -moz-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: -webkit-linear-gradient(top, #C72127 1%, #A50C11 100%);
  background: linear-gradient(to bottom, #C72127 1%, #A50C11 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@primary-color', endColorstr='@secondary-color', GradientType=0);
}

.helpDsk a img {
  width: 100%;
  transition-duration: 0.3s;
}

.helpDsk a:hover {
  box-shadow: 0 0 0 10px rgba(199, 33, 39, 0.2);
  -webkit-box-shadow: 0 0 0 10px rgba(199, 33, 39, 0.2);
}

.helpDsk a:hover img {
  transform: rotateY(180deg);
}

@media (min-width: 768px) {
  .helpDsk {
    bottom: 100px;
    right: 40px;
  }

  .helpDsk a {
    width: 60px;
    height: 60px;
  }
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50% !important;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-dialog.modal-lg {
  position: relative;
  left: 20%;
}

@media (max-width: 768px) {
  .modal-dialog.modal-lg {
    position: relative;
    left: 0;
  }

  .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 88% !important;
  }
}

/*************************************************** Responsive Media Query **********************************************/

@media only screen and (max-width: 600px) {
  .rs-service-3__item {
    height: auto;
  }

  .frame-container iframe {
    width: 100%;
    height: 35.5vh;
  }

  header.main-header.main-header-four.main-header-five.sticky-header.sticky-header--five.sticky-header--normal.sticky-header--cloned.active .logo {
    position: absolute;
    width: 82%;
    right: 59px;
    bottom: -10px;
  }

  .main-header__logo img {
    max-width: 100%;
    width: 68%;
    position: absolute;
    height: auto;
    bottom: -6px;
    right: 82px;
  }

  ul.main-menu__list {
    position: relative;
    right: 0%;
  }

  .main-banner {
    position: relative;
    max-height: 100%;
    overflow: hidden;
    margin-bottom: -12px;
    margin-top: 76px;
  }

  .sticky-header--cloned {
    top: 16px;
  }

  .btn-download a {
    left: 14%;
  }

  .contact-box h4 {
    font-size: 16px;
    text-align: center;
  }

  .contact-box {
    max-width: 292px;
  }

  .services-three {
    padding: 90px 0 20px;
  }

  .faq-one {
    padding: 0px 0 30px;
    position: relative;
    z-index: 0;
  }

  .faq-one .sec-title {
    margin-bottom: 4px;
  }

  .faq-one__image img {
    position: relative;
  }

  .achievement__area {
    padding: 12px 0;
  }

  .achievement__img img {
    position: relative;
    width: 180%;
    left: 8px;
    top: 13px;
  }

  section.events-gallery {
    margin-top: 190px;
  }

  .gallery-bg {
    background-color: #ffffff00;
    padding: 0;
    width: 100%;
    position: absolute;
    border-radius: 18px;
    left: 0;
    z-index: 99;
    text-align: center;
    margin-top: -366px;
  }

  .sec-title__tagline {
    margin-bottom: 18px;
  }

  .footer-logo img {
    width: 142%;
    position: relative;
    right: 25%;
  }

  .footer-ulpadding {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0;
  }

  .footer-nav ul li {
    list-style-type: none;
    margin: 0px 40px 0px;
  }

  .footer-nav ul li a {
    font-family: 'cardo';
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: black;
  }

  .footer-nav {
    background-color: white;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    padding: 10px 0;
  }

  .footer-address p {
    font-family: "Neuton", serif;
    font-weight: 800;
    font-size: 17px;
    color: #2b2b2b;
    text-align: left;
    padding: 0 38px 0 0;
    line-height: 1.5;
  }

  .events-inner {
    padding: 0px 9px;
  }

  .rs-service-3 {
    padding-top: 0 !important;
  }

  .section-space {
    padding-top: 80px;
    padding-bottom: 38px;
  }

  .download-container {
    display: flex;
    background-color: #d5fdf2;
    padding: 0px 22% 52px;
    border-radius: 100px;
    margin-bottom: 58px;
    position: relative;
    z-index: 5;
    flex-direction: column;
  }

  .faq__area {
    padding: 10px 0 0;
  }

  button.Documents-btn {
    transform: rotate(270deg);
    position: fixed;
    top: 48%;
    right: -47%;
    z-index: 1;
    padding: 3px 13px;
    border: solid 1px #4f0600;
    color: white;
    line-height: 1.5;
    letter-spacing: 1.68px;
    border-radius: 12px 12px 0px 0px;
    z-index: 99;
  }
}

@media only screen and (max-width: 992px) and (min-width: 601px) {
  .video-overlay {
    position: absolute;
    background: linear-gradient(180deg, rgb(1 127 141 / 30%) 11.8%, rgb(126 156 166 / 0%) 103.8%);
    top: 86px;
    left: 0;
    bottom: 7px;
    width: 100%;
  }

  .services-three__img.highlight1 {
    border-radius: 0 80px 0 80px;
  }

  .download-container {
    display: flex;
    background-color: #d5fdf2;
    padding: 0px 12% 10px;
    border-radius: 100px;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
    justify-content: center;
  }

  section.download-btn .sec-title__title {
    position: relative;
    top: 14px;
    right: 8%;
    font-size: 30px;
  }

  .btn-download a {
    background: linear-gradient(to right, #FCBB8B, #FF7E90);
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    left: 17%;
    bottom: 12px;
    color: white;
    top: 22px;
    font-family: 'Roboto Serif';
    font-weight: 600;
  }

  .faq__area {
    padding: 10px 0 0;
  }

  .services-three__title a {
    color: black;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: Barlow Semi Condensed;
    font-size: 40px;
    letter-spacing: 2px;
    position: relative;
    right: 16%;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
  }

  .frame-container iframe {
    width: 100%;
    height: 86.5vh;
    margin-top: 86px;
  }

  ul.main-menu__list {
    position: relative;
    right: 2%;
  }

  .about-four .sec-title__tagline {
    font-size: 19px;
    margin-bottom: -18px;
    font-family: "Neuton", serif;
    font-weight: 600;
    margin-left: 24px;
    position: relative;
    bottom: 30px;
  }

  .sec-title__title {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: Katibeh;
    font-size: 28px;
    color: #000000;
    font-weight: bold;
    line-height: 1.2;
    bottom: 0px;
  }

  .about-four .sec-title {
    margin-bottom: 0px;
  }

  .about-four__text {
    text-transform: capitalize;
    margin-top: -9px;
    margin-bottom: 22px;
  }

  p {
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    color: var(--arafa-text, #757277);
    font-weight: 400;
    line-height: 1.5;
  }

  .rs-service-3__item .icon img {
    width: 120%;
  }

  .rs-service-3__item .title a {
    color: #000000;
    font-size: 15px;
    line-height: 1.5;
    transition: none;
  }

  .rs-service-3__item .icon {
    width: 60px;
    margin-bottom: 2px;
  }

  .rs-service-3__item p {
    color: #6f6f6f;
    margin-top: 12px;
    margin-bottom: 20px;
    font-size: 12px;
  }

  .rs-service-3__item .rs-number-box span {
    font-size: 22px;
    color: #010047;
    font-weight: 700;
  }

  .rs-service-3__item .rs-number-box {
    position: absolute;
    right: 0;
    top: 35px;
    background: white;
    width: 42px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px 0 0 30px;
  }

  .services-three {
    position: relative;
    display: block;
    padding: 38px 0 60px;
    z-index: 1;
    background: linear-gradient(179.4deg, #d0fef1 -16.9%, #f1fffb17 119.9%);
    border-top: 1px solid black;
    margin-top: -26px;
  }

  .faq__left .contact-box {
    position: absolute;
    bottom: -72px;
    right: 6%;
    z-index: 1;
    width: 98%;
    box-shadow: rgb(0 0 0 / 48%) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
  }

  .faq-one {
    position: relative;
    overflow: hidden;
    padding: 10px 0 30px;
  }

  .faq-one .sec-title__tagline {
    margin-bottom: -1px;
  }

  .faq-one .sec-title {
    margin-bottom: 0px;
  }

  .faq-one__text {
    text-transform: capitalize;
    margin-bottom: 2px;
  }

  .achievement__area {
    background: linear-gradient(179.4deg, rgb(241 255 251 / 9%) -16.9%, rgb(208 254 241) 119.9%);
    padding: 0px 0;
  }

  .sec-title__tagline {
    margin-bottom: 0px;
  }

  .gallery-bg {
    background-color: #ffffff;
    padding: 25px 14px;
    width: 27%;
    position: absolute;
    border-radius: 18px;
    left: 36%;
    z-index: 99;
    text-align: center;
    margin-top: -160px;
  }

  .footer-logo img {
    width: 50%;
    position: relative;
    right: 0;
  }

  .footer-nav ul li {
    list-style-type: none;
    margin: 0px 14px 10px;
  }

  .footer-nav ul li a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: black;
  }

  .footer-address p {
    font-family: 'Neuton';
    font-weight: 600;
    font-size: 20px;
    color: #2b2b2b;
    text-align: left;
    padding: 0 38px 0 0;
    line-height: 1.5;
  }

  .about-four__experience__year {
    font-size: 30px;
  }

  .about-four__experience__text {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .main-header__inner {
    padding-top: 25px;
    padding-bottom: 24px;
  }

  .frame-container iframe {
    width: 100%;
    height: 111.5vh;
    margin-top: 86px;
  }

  .about-four__inner-bg {
    width: 20%;
    height: 110%;
  }

  .about-four__image img {
    width: 100%;
    display: block;
    clip-path: polygon(20% 0%, 80% 0%, 100% 15%, 100% 80%, 100% 100%, 16% 100%, 0 86%, 0 0);
    margin-top: -36px;
  }

  .faq__left {
    position: relative;
    margin-right: 40px;
    margin-bottom: 111px;
  }

  .faq-one {
    position: relative;
    overflow: hidden;
    padding: 10px 0 119px;
  }

  .faq-one__content {
    margin-top: 26px;
  }

  span.subtitle {
    font-size: 11px;
    color: #000000;
    font-weight: bold;
  }

  section.events-gallery {
    margin: 46px 0;
  }

  .gallery-bg {
    background-color: #ffffff;
    padding: 45px 18px;
    width: 28%;
    position: absolute;
    border-radius: 18px;
    left: 36%;
    z-index: 99;
    text-align: center;
    margin-top: -205px;
  }

  .footer-nav ul li {
    list-style-type: none;
    margin: 0px 32px 10px;
  }

  .footer-address p {
    font-family: "Neuton", serif;
    font-weight: 800;
    font-size: 16px;
    color: #2b2b2b;
    text-align: left;
    padding: 0 38px 0 0;
    line-height: 1.5;
  }

  .events-gallery__item:hover .events-gallery__link {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
    width: 33%;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 1024px) {
  .main-banner {
    position: relative;
    max-height: 100%;
    overflow: hidden;
    margin-bottom: -11px;
    bottom: 2px;
    margin-top: -84px;
  }

  .frame-container iframe {
    width: 100%;
    height: 114.5vh;
    margin-top: 86px;
  }

  .main-header__inner {
    padding-top: 37px;
    padding-bottom: 39px;
  }

  ul.main-menu__list {
    position: relative;
    right: 2%;
  }

  .sec-title__tagline {
    margin-bottom: 0px;
  }

  .about-four .sec-title {
    margin-bottom: 30px;
    margin-top: -60px;
  }

  .about-four__content.pt-4 {
    margin-top: -58px;
  }

  .about-four__content.pt-4 {
    margin-top: -58px;
    width: 104%;
    margin: -58px -26px;
    text-align: justify;
  }

  p {
    line-height: 1.5;
  }

  .about-four__text {
    text-transform: capitalize;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .section-space {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .services-three {
    margin-top: 0;
  }

  .content {
    position: relative;
    left: 0%;
  }

  span.subtitle {
    font-size: 14px !important;
    color: #000000;
  }

  .btn-download a {
    top: 18px;
  }

  .faq__area {
    padding: 10px 0 0;
  }

  .rs-service-3__item {
    height: auto;
  }

  .faq__left .contact-box {
    right: 0%;
  }

  .faq-one .sec-title {
    margin-bottom: -8px;
  }

  .faq-one .sec-title__tagline {
    margin-bottom: -5px;
  }

  .faq-one__text {
    margin-bottom: 2px;
    font-size: 14px;
    margin-top: 14px;
  }

  .faq-one__content {
    margin-top: 34px;
  }

  .faq-one {
    padding: 10px 0 90px;
  }

  .gallery-bg {
    margin-top: -130px;
    padding: 18px 18px;
    width: 18%;
    left: 41%;
  }

  .main-header__logo img {
    max-width: 100%;
    width: 30%;
    position: absolute;
    height: auto;
    bottom: -6px;
  }

  .sec-title__title {
    font-size: 24px !important;
    bottom: -1px;
  }

  .footer-nav ul li {
    list-style-type: none;
    margin: 0px 26px 10px;
  }

  .footer-nav ul li a {
    font-size: 16px;
  }

}

@media only screen and (max-width: 1669px) and (min-width: 1600px) {
  .main-header__logo img {
    max-width: 100%;
    width: 26%;
  }

  header.main-header.main-header-four.main-header-five.sticky-header.sticky-header--five.sticky-header--normal.sticky-header--cloned.active .logo {
    position: absolute;
    width: 20%;
    bottom: 3px;
  }

  .frame-container iframe {
    width: 100%;
    height: 147.5vh;
  }

  .main-menu .main-menu__list>li>a,
  .main-menu-two .main-menu__list>li>a {
    font-size: 20px;
  }

  span.subtitle {
    font-size: 18px !important;
    color: #000000 !important;
    font-weight: bold !important;
  }

  .gallery-bg {
    background-color: #ffffff;
    padding: 28px 24px;
    width: 18%;
    position: absolute;
    border-radius: 18px;
    left: 41%;
    z-index: 99;
    text-align: center;
    margin-top: -198px;
  }
}

@media only screen and (min-width: 1670px) {
  .main-header__logo img {
    max-width: 100%;
    width: 23%;
    position: absolute;
    height: auto;
    bottom: -15px;
  }

  header.main-header.main-header-four.main-header-five.sticky-header.sticky-header--five.sticky-header--normal.sticky-header--cloned.active .logo {
    position: absolute;
    width: 18%;
    bottom: -19px;
  }

  .frame-container iframe {
    width: 100%;
    height: 139.5vh;
  }

  span.subtitle {
    font-size: 18px !important;
    color: #000000 !important;
    font-weight: bold !important;
  }

  .gallery-bg {
    background-color: #ffffff;
    padding: 50px 24px;
    width: 18%;
    position: absolute;
    border-radius: 18px;
    left: 41%;
    z-index: 99;
    text-align: center;
    margin-top: -245px;
  }

  .scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 160px;
  }
}

.Documents-btn {
    display: flex;
    border: solid 1px #cbf4e9;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    height: 38px;
    border-radius: 20px 0px 0px 20px;
    padding: 0px 15px;
    background-color: rgb(0 141 137);
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    position: fixed;
    z-index: 99;
    top: 20%;
    right: 0;
}

.folderContainer {
  width: 40px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.fileBack {
  z-index: 1;
  width: 80%;
  height: auto;
}

.filePage {
  width: 50%;
  height: auto;
  position: absolute;
  z-index: 2;
  transition: all 0.3s ease-out;
}

.fileFront {
  width: 85%;
  height: auto;
  position: absolute;
  z-index: 3;
  opacity: 0.95;
  transform-origin: bottom;
  transition: all 0.3s ease-out;
}

.text {
  color: white;
  font-size: 16px;
  font-weight: 600;
  /* letter-spacing: 0.5px; */
  position: relative;
  top: 9px;
}

.Documents-btn:hover .filePage {
  transform: translateY(-5px);
}

.Documents-btn:hover {
    background-color: rgb(253 165 141);
}

.Documents-btn:active {
  transform: scale(0.95);
}

.Documents-btn:hover .fileFront {
  transform: rotateX(30deg);
}