.testimonial__item {
  padding: 5rem;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}
.testimonial__body {
  margin: 3rem 0;
}
.testimonial__body p {
  color: #141414;
  font-size: 1.8rem;
  font-weight: 500;
}
.testimonial__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.testimonial__thumbnail {
  margin-bottom: 0;
}
.testimonial__thumbnail img {
  max-width: 5rem !important;
  margin-right: 1rem;
  border-radius: 50% !important;
}
.testimonial__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.testimonial__person h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  color: #141414;
}
.testimonial__person span {
  font-size: 1.4rem;
  color: #707070;
}

.causes .owl-stage-outer,
.testimonials .owl-stage-outer {
  overflow: visible;
}
.causes .owl-item,
.testimonials .owl-item {
  opacity: 0;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
}
.causes .owl-item.active,
.testimonials .owl-item.active {
  opacity: 1;
}

.cause {
  border-radius: 1rem;
  -webkit-box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid #eaeaea;
  overflow: hidden;
  background: #fff;
}
.cause__img {
  position: relative;
  margin-bottom: 0;
}
.cause__img img {
  border-radius: 1rem;
  max-width: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cause:hover .cause__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.cause__categories {
  position: absolute;
  width: 100%;
  top: 2rem;
  left: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cause__categories figcaption {
  margin-right: 1rem;
  background: #1fbe9e;
  color: #fff;
  padding: 0.2rem 1rem;
  border-radius: 1rem;
}
.cause__content {
  padding: 3rem 2rem 3.5rem;
}
.cause__body {
  margin-bottom: 2rem;
}
.cause__body h3 {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 500;
}
.cause__body h3 a {
  color: #141414;
  text-decoration: none;
}
.cause__body h3 a:hover {
  color: #1fbe9e;
}
.cause__body p {
  font-size: 1.6rem;
  color: #707070;
}
.cause__progress {
  display: block;
  width: 100%;
  background: #ddd;
  height: 6px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.cause__progress-bar {
  border-radius: 20px;
  width: 80%;
  background: #1FBE9E;
  display: block;
  position: absolute;
  height: 100%;
}
.cause__goal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #707070;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.cause__footer .btn-cause {
  background: #1fbe9e;
  color: #fff;
  padding: 0.7rem 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  border-radius: 0.5rem;
}
.cause__footer .btn-cause:hover {
  color: #fff;
  background: #f9ad00;
}

.team {
  -webkit-box-shadow: 0 5px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 60px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
}
.team__thumbnail {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  text-align: center;
}
.team__thumbnail img {
  max-width: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.team:hover .team__thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.team__overley {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.team__caption {
  background: #ffffff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 9;
  padding: 2rem;
}
.team__caption h3 {
  font-size: 2.2rem;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 1.8rem;
}
.team__caption span {
  font-size: 1.4rem;
  line-height: 1.6;
  display: block;
  color: #707070;
}
.team__caption a {
  text-decoration: none;
}
.team__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.team__social a {
  line-height: 1;
}
.team__social a i {
  color: #707070;
  margin-right: 1rem;
  font-size: 1.4rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.team__social a:hover i {
  color: #000000;
}
.team:hover .team__overley {
  background: rgba(0, 0, 0, 0.35);
}

.events-grid {
  display: -ms-grid;
  display: grid;
  gap: 3rem;
}

.events-col-2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 576px) {
  .events-col-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.events-col-3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .events-col-3 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .events-col-3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.events-col-4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .events-col-4 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .events-col-4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.event {
  padding: 3.5rem;
  -webkit-box-shadow: 0 5px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 60px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}
.event.style1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .event.style1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.event.style1 .event__thumbnail img {
  max-width: 6rem;
  border-radius: 5px;
}
.event.style1 .event__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
.event.style1 .event__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: #1FBE9E;
}
.event.style1 .event__meta i {
  margin-right: 0.5rem;
  color: #1FBE9E;
}
.event.style1 .event__meta time {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 500;
}
.event.style1 .event__title {
  font-size: 2.4rem;
  line-height: 1.3;
}
.event.style1 .event__title a {
  color: #141414;
  text-decoration: none;
}
.event.style1 .event__body p {
  color: #707070;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.event.style2 header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}
.event.style2 .event__day {
  font-size: 5rem;
  line-height: 1;
  font-weight: 600;
  color: var(--thm-color-primary);
  margin-right: 1.5rem;
}
.event.style2 .event__timeinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.event.style2 .event__timeinfo span {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
}
.event.style2 .event__content h3 {
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 2rem;
}
.event.style2 .event__content h3 a {
  color: var(--thm-color-text-heading);
}
.event.style2 .event__content h3 a:hover {
  color: var(--thm-color-primary);
}
.event.style2 .event__organizer p {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.event.style2 .event__organizer span {
  color: var(--thm-color-secondary);
}
.event.style2 footer {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
}
.event.style2 footer i {
  font-size: 1.4rem;
}

.news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3rem 1fr 3rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .news-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .news-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.news {
  -webkit-box-shadow: 0 5px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 60px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
}
.news__img {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.news__img img {
  max-width: 100%;
  border-radius: 1rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.news:hover .news__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.news__content {
  padding: 2.5rem;
}
.news__meta {
  margin-bottom: 1.5rem;
}
.news__meta span {
  margin-right: 1rem;
}
.news__meta span i {
  color: #1FBE9E;
  font-size: 1.4rem;
  margin-right: 0.5rem;
}
.news__meta span span {
  color: #707070;
  font-size: 1.6rem;
  line-height: 1.2;
}
.news__body h3 {
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.news__body h3 a {
  text-decoration: none;
  color: #141414;
}
.news__body p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #707070;
  margin-bottom: 2.5rem;
}
.news footer .btn__news {
  color: #ffffff;
  background: #1FBE9E;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 5px;
}

.itl-menu-list .menu_class {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .itl-menu-list .menu_class {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.itl-menu-list .menu_class li {
  list-style: none;
}
.itl-menu-list .menu_class li a {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.fixed-header {
  width: 100%;
  left: 0;
  z-index: 9;
  background: rgba(255, 255, 255, 0.25);
}
.fixed-header:not(.elementor-element-edit-mode).elementor-section {
  position: absolute;
}
@media (max-width: 1024px) {
  .fixed-header {
    background: #fff;
    top: 0;
  }
}

.mc4wp-form .subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mc4wp-form .subscribe .sub-email {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 100px;
      flex-basis: 100px;
}
.mc4wp-form .subscribe input[type=email] {
  padding: 1.5rem;
  border: 0;
  border-radius: 0.5rem 0 0 0.5rem;
  font-size: 1.6rem;
  line-height: 1;
  width: 100%;
}
.mc4wp-form .subscribe input[type=email]:focus {
  outline: none;
}
.mc4wp-form .subscribe input[type=submit] {
  font-size: 1.6rem;
  padding: 2rem;
  background-color: #1FBE9E;
  color: #fff;
  border: 0;
  border-radius: 0 0.5rem 0.5rem 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.mc4wp-form .subscribe input[type=submit]:hover {
  background-color: #F9AD00;
}

.sponsore-addon img {
  margin: 0 auto;
  max-width: 100%;
}

.owl-carousel .owl-item img {
  width: auto;
}

.owl-theme .owl-dots .owl-dot span {
  background-color: #fda82b;
  opacity: 1;
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: #1FBE9E;
  opacity: 1;
}
/*# sourceMappingURL=mercify-core.css.map */