.community-involvement {
  width: 100%;
  padding: 80px 0;
  background-color: var(--primaryColor);
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.community-involvement__container {
  width: calc(100% - 40px);
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 80px;
}
.community-involvement__image {
  min-width: 280px;
  min-height: 450px;
  flex: 1 0 calc(50% - 40px);
  display: flex;
}
.community-involvement__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.community-involvement__content {
  min-width: 280px;
  flex: 1 0 calc(50% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  text-align: center;
}
.community-involvement__title {
  margin-bottom: 0;
  color: #fff;
  font-family: var(--oswald);
  font-weight: 300;
  font-size: 45px;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}
.community-involvement__text p,
.community-involvement__text span,
.community-involvement__text li,
.community-involvement__text strong {
  color: #fff;
  line-height: 2;
}

.community-carousel {
  max-width: 100%;
  position: relative;
}
.community-carousel__container {
  width: calc(100% - 100px);
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 80px;
}
.community-carousel__slides {
  width: 100%;
  z-index: 1;
}
.community-carousel__slides .slick-list {
  margin: 0 -10px;
}
.community-carousel__slide {
  margin: 0 10px;
}
.community-carousel__slide .charity-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.community-carousel__slide .charity-card__image {
  width: 100%;
  height: 170px;
  background-color: #fff;
  padding: 36px 70px;
  display: block;
}
.community-carousel__slide .charity-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.community-carousel__slide .charity-card__title {
  color: #fff;
  font-family: var(--lato);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}
.community-carousel__arrows {
  max-width: 1350px;
  width: calc(100% - 40px);
  margin: 0 auto;
  position: absolute;
  top: 61.5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.community-carousel__arrows .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}
.community-carousel__arrows .arrow.prev-arrow {
  transform: rotate(180deg);
}
.community-carousel__arrows .arrow svg path {
  fill: var(--secondaryColor);
  transition: 0.2s ease-in-out;
}
.community-carousel__arrows .arrow:hover {
  cursor: pointer;
}
.community-carousel__arrows .arrow:hover svg path {
  fill: var(--tertiaryColor);
}
