@charset "utf-8";
/* CSS Document */



.donor-title {
  text-align: center;
  padding-bottom: 30px;
}

.donor-title h3 {
  color: var(--color-default);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

@media (max-width: 991px){.donor-title h3 {font-size: 24px;}}
@media (max-width: 575px){.donor-title h3 {font-size: 21px;}}

.donor-title h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  bottom: 0;
  left: calc(50% - 25px);
}


.donor .wrap-icon {
  margin: 0 auto;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b01c0e;
}

.donor .wrap-icon img {
  transition: all 0.3s ease-in-out;
}
.donor .wrap-icon:hover img {
  transform: scale(1.1);
}

.donor h3 {
  font-size: 18px;
}
.donor p {
  font-size: 16px;
  color: #666;
}




/*--------------------------------------------------------------
# Corporate
--------------------------------------------------------------*/

.donor .wrap-logo {
  margin: 0 auto;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
}

.donor .wrap-logo img {
  max-height: 70px;
  width: auto;
  filter: none;
  transition: all 0.3s ease-in-out;
}
.donor .wrap-logo:hover img {
  transform: scale(1.1);
  filter: none;
}

.donor h3 {
  font-size: 18px;
}
.donor p {
  font-size: 16px;
  color: #666;
}

#corporate {
	margin-top: -50px;
	margin-bottom: 20px;
}

@media(max-width: 575px){
	#corporate {
		margin-bottom: 0;
	}
}