.itl-menu-list .menu_class {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.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;
  transition: all 0.4s;
}

.sponsore {
  text-align: center;
}
.sponsore img {
  margin: 0 auto;
}

.ac {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.ac .ac__inner-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ac .ac__inner-wrap .ac__img {
  margin-right: 2rem;
}
.ac .ac__inner-wrap .ac__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.ac .ac__inner-wrap .ac__content .ac__count {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.ac .ac__inner-wrap .ac__content .ac__count span.timer {
  font-size: 6rem;
  line-height: 1;
  font-weight: 600;
  color: #141414;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
}
.ac .ac__inner-wrap .ac__content .ac__count span.suffix {
  font-size: 6rem;
  line-height: 1;
  font-weight: 600;
  color: #141414;
}
.ac .ac__inner-wrap .ac__content .ac__text {
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}

.team {
  border-radius: 10px;
}
.team .team__image {
  position: relative;
  z-index: 0;
}
.team .team__image img {
  border-radius: 10px;
  max-width: 100%;
}
.team .team__image .team__social {
  position: absolute;
  top: 2rem;
  left: 2rem;
}
.team .team__image .team__social > a i {
  background: #f12a45;
  padding: 0.5rem;
  color: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 9;
}
.team .team__image .team__social ul {
  padding: 2rem 0 0 0;
  background: #fff;
  text-align: center;
  margin-top: -2rem;
  margin-left: 0;
  border-radius: 15px;
  opacity: 0;
  transform: translateY(-1rem);
  z-index: 1;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.team .team__image .team__social ul li {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}
.team .team__image .team__social ul li a {
  color: #f12a45;
  transition: all 0.4s;
}
.team .team__image .team__social ul li a:hover {
  color: #141414;
}
.team .team__image .team__social:hover ul {
  opacity: 1;
  transform: translateY(0);
}
.team .team__content {
  background: #fff;
  display: block;
  z-index: 9;
  position: relative;
}
.team .team__content h4 a {
  color: #141414;
  text-decoration: none;
  transition: all 0.4s;
}
.team .team__content h4 a:hover {
  color: #f12a45;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
}
.news .news__image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.news .news__image .news__date-meta {
  position: absolute;
  background: #F12A45;
  left: 0;
  bottom: 0;
  border-radius: 0 10px 0 0;
  text-align: center;
  padding: 1.5rem 1rem;
  color: #fff;
}
.news .news__image .news__date-meta h4 {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 500;
}
.news .news__image .news__date-meta p {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  margin: 0;
}
.news .news__content {
  padding: 30px;
}
.news .news__content .news__meta {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.news .news__content .news__meta .news__author {
  margin-right: 2rem;
}
.news .news__content .news__meta .news__author i {
  margin-right: 0.8rem;
}
.news .news__content .news__title a {
  text-decoration: none;
  color: #141414;
  transition: all 0.4s;
}
.news .news__content .news__title a:hover {
  color: #F12A45;
}

.causes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 992px) {
  .causes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .causes-grid {
    grid-template-columns: 1fr;
  }
}

.cause {
  border-radius: 10px;
  overflow: hidden;
}
.cause .cause__image {
  position: relative;
}
.cause .cause__image .cause__category {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.cause .cause__image .cause__category span {
  padding: 5px 20px;
  background: #fff;
  color: #f12a45;
  border-radius: 5px 5px 0 0;
  line-height: 1;
  position: relative;
  font-weight: 500;
}
.cause .cause__content {
  padding: 30px;
}
.cause .cause__content a {
  text-decoration: none;
  color: #141414;
  transition: all 0.4s;
}
.cause .cause__content a:hover {
  color: #f1bc43;
}
.cause .cause__content .cause__excerpt {
  color: #7a7a7a;
}
.cause .cause__meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #141414;
}
.cause .cause__meta .cause__goal {
  margin-right: 1.5rem;
}
.cause .cause__meta .cause__goal span {
  color: #f12a45;
  font-weight: 500;
}
.cause .cause__meta .cause__meta-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.cause .cause__meta .cause__meta-right a {
  color: #f12a45;
}
.cause .cause__meta .cause__meta-right a i {
  margin-right: 0.5rem;
}
.cause .cause__meta .cause__meta-right a span {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
}

.cause__progress {
  display: block;
  width: 100%;
  background: #ddd;
  position: relative;
  overflow: visible;
  margin: 3rem 0;
  z-index: 5;
}
.cause__progress .progress-bar {
  background: #f12a45;
  display: block;
  position: relative;
  z-index: 10;
  overflow: visible;
}
.cause__progress .progress-bar span {
  background: #F12A45;
  position: absolute;
  bottom: 100%;
  left: 100%;
  margin-bottom: 5px;
  margin-left: -30px;
  z-index: 15;
  padding: 0.5rem;
  font-size: 1.2rem;
  line-height: 1;
}
.cause__progress .progress-bar span:after {
  content: "";
  border: 6px solid transparent;
  border-top-color: #F12A45;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
  transform: rotate(90deg);
  margin-top: -6px;
}

.testimonial .testimonial__item.style-1 {
  margin-top: 3rem;
  background: #FCFAF5;
}
.testimonial .testimonial__item.style-1 .testimonial__content {
  position: relative;
  margin-top: 2rem;
}
.testimonial .testimonial__item.style-1 .testimonial__content:before {
  content: "";
  background: url("../img/quote-img.png") no-repeat;
  display: block;
  width: 86px;
  height: 61px;
  position: absolute;
  top: -8rem;
}
.testimonial .testimonial__item.style-1 .testimonial__meta {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.testimonial .testimonial__item.style-1 .testimonial__meta .testimonial__thumb {
  margin-right: 1.5rem;
}
.testimonial .testimonial__item.style-1 .testimonial__meta .testimonial__thumb img {
  max-width: 5rem;
  border-radius: 100%;
}
.testimonial .testimonial__item.style-2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 6rem;
}
@media (max-width: 768px) {
  .testimonial .testimonial__item.style-2 {
    flex-direction: column;
    padding: 1.5rem;
  }
}
.testimonial .testimonial__item.style-2 .testimonial__image {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
}
@media (max-width: 768px) {
  .testimonial .testimonial__item.style-2 .testimonial__image {
    margin-bottom: 2rem;
  }
}
.testimonial .testimonial__item.style-2 .testimonial__image img {
  max-width: 340px;
  max-height: 250px;
  border-radius: 10px;
}
.testimonial .testimonial__item.style-2 .testimonial__content {
  background: #fff;
  border-radius: 10px;
  padding: 6rem;
  box-shadow: 0 5px 60px rgba(0, 0, 0, 0.15);
  margin-left: -4rem;
}
.testimonial .testimonial__item.style-2 .testimonial__content .testimonial__quote-img {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .testimonial .testimonial__item.style-2 .testimonial__content {
    margin-left: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  }
}
.testimonial .testimonial__item.style-2 .testimonial__content .testimonial__quote-img img {
  width: auto !important;
}

.owl-sadaka .nav-controls {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  cursor: pointer;
}
.owl-sadaka .nav-controls i {
  font-size: 4rem;
  line-height: 1;
  color: #7a7a7a;
  transition: all 0.4s;
}
.owl-sadaka .nav-controls i:hover {
  color: #F12A45;
}
.owl-sadaka .next {
  right: -50px;
}
.owl-sadaka .prev {
  left: -50px;
}
.owl-sadaka .owl-dots {
  margin-top: 2rem;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-sadaka .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-sadaka .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  display: block;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
  border: 1px solid #F12A45;
}
.owl-sadaka .owl-dots .owl-dot.active span, .owl-sadaka .owl-dots .owl-dot:hover span {
  background: #F12A45;
}

.sadaka-mc-form {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
@media (max-width: 576px) {
  .sadaka-mc-form {
    flex-direction: column;
  }
}
.sadaka-mc-form input[type=email] {
  background: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 2px solid #fff;
  margin-right: 1rem;
  width: 100%;
  padding: 1.5rem 1.5rem 1.5rem 0;
}
@media (max-width: 576px) {
  .sadaka-mc-form input[type=email] {
    margin-bottom: 2rem;
  }
}
.sadaka-mc-form input[type=email]::placeholder {
  color: #fff;
}
.sadaka-mc-form button {
  padding: 1.5rem 5rem;
  background: #F1BC43;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
}

.sadaka-recent-posts ul {
  margin: 0;
  padding: 0;
}
.sadaka-recent-posts ul li {
  list-style: none;
}
.sadaka-recent-posts ul li:not(:last-child) {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #eeefef;
}
.sadaka-recent-posts ul li a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.sadaka-recent-posts ul li a .thumb {
  margin-right: 10px;
}
.sadaka-recent-posts ul li a .thumb img {
  max-width: 60px;
  border-radius: 5px;
}
.sadaka-recent-posts ul li a .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1.5rem;
  line-height: 1.2;
  text-transform: none;
}
.sadaka-recent-posts ul li a .content span {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--thm-color-text-main);
}

.navbar-addon ul li,
.navbar-addon ol li {
  margin: 0;
}

.owl-carousel .owl-item img {
  width: auto !important;
}
/*# sourceMappingURL=sadaka-core.css.map */