.smallBtn {
	margin: 0;
}

.support-item-image, .how-to-support-item,  .how-to-shop-item, .about-highlights-logo {
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/*Market*/
/*----------------------------------*/
.market-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
/*	margin-bottom: 75px;*/
}
.market-section h2{
	font-weight: bold;
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
}
.how-to-shop {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
	width:100%
}
.how-to-shop-circle {
	background-color: rgba(175,210,65,.15);
	border-radius: 50%;
	position: absolute;
	height: 115px;
	width: 115px;
}
.how-to-shop-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	height: 150px;
	width: 250px;
	text-align: center;
}
.how-to-shop-item-header {
	font-weight: bold;
	font-size: 1.25rem;
	font-family: filson-soft, sans-serif;
	font-style: normal;
}


/*Healthy Kids*/
/*----------------------------------*/
.healthy-kids-section {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 75px;
}
.healthy-kids-section h2{
	font-weight: bold;
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
}
.how-to-support {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
}
.how-to-support-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	height: 350px;
	width: 350px;
	text-align: center;
}
.how-to-support-item-header {
	font-weight: bold;
	font-size: 1.25rem;
	font-family: filson-soft, sans-serif;
	font-style: normal;
}
.support-item-image {
	object-fit: cover;
	height: 200px;
	width: 350px;
	margin-bottom: 15px;
}

/*Who we are*/
/*----------------------------------*/
.about-section {
	display: flex;
	width: 90%;
	margin: auto;
	justify-content: space-evenly;
	gap: 20px;
}
.about-highlights {
	width: 300px;
	text-align: center;
}
.about-highlights-title {
	font-weight: bold;
	font-size: 1.25rem;
	font-family: filson-soft, sans-serif;
	font-style: normal;
}
.about-highlights-top {
	margin-bottom: 3rem;
}

/*Financial Donations*/
/*----------------------------------*/

.donations-container {
	margin: 0 auto 0 auto;
	overflow: hidden;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	display:flex;
	justify-content:center;
	margin-bottom: 75px;
}
.donation-box {
	display:flex;
	flex-direction:column;
	justify-content: space-between;
}
.donation-image {
	object-fit:contain;
	overflow:hidden;
	border-radius: 50%;
}
.donation-image:hover, .donation-image:focus {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
.donations-text {
	text-align: start;
}
.donation-box img {
	height:200px;
	width:200px;
}



/*Responsiveness*/
/*----------------------------------*/

@media only screen and (max-width: 1200px) {
/*Market*/
/*----------------------------------*/
	.how-to-shop {
		gap: 2rem;
	}
/*Healthy Kids*/
/*----------------------------------*/
	.how-to-support {
		gap: 20px;
	}
	.healthy-kids-section h2{
		text-align: center;
	}
}
@media only screen and (max-width: 749px) {
/*Market*/
/*----------------------------------*/
	.market-section h2{
		text-align: center;
	}
/*Who we are*/
/*----------------------------------*/
	.about-section {
		flex-direction: column;
		align-items: center;
	}
/*Financial Donations*/
/*----------------------------------*/
	.donations-container {
		align-items: center;
		flex-direction: column;
		width:100%;
		gap: 50px;
	}
	.donations-text {
		text-align: center;
	}
}



/*animation*/
/*----------------------------------*/
@keyframes tossing {
  0% {
    transform: rotate(0);
  }
  25% {
  	transform: rotate(4deg);
  }
  50% {
    transform: rotate(-4deg);
  }
  100% {
    transform: rotate(0);
  }
}

@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(0);
  }
  25% {
  	-webkit-transform: rotate(4deg);
  }
  50% {
    -webkit-transform: rotate(-4deg);
  }
  100% {
    -webkit-transform: rotate(0);
  }
}