.growth-icon-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 30px;
  max-width: 1440px;
  margin: auto;
}

.icon-image {
    height: 70px;
    margin: 0 auto;
    width: 70px;
    margin-bottom: 10px;
}

.icon-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

p.icon-heading {
    font-size: 24px;
    font-weight: bold;
    color: black;
	  text-align: center;
}

.icon-body-content {
    text-align: center;
	  color: black;
}

.icon-text-limit{
overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.icon-expand-button{
  margin-top: 20px;
  font-size: 16px;
  text-decoration: underline;
  color: #000000;
  cursor:pointer;
  text-align:center;
}

h2.growth-icon-heading {
    font-size: 36px;
    font-weight: 700;
    padding-bottom: 30px;
    text-align: center;
}

section.growth-icon {
    padding: 74px;
    background: #f5f6f9;
}

.icon-grid > a {
    display: block;
    margin: 0 auto;
    width: fit-content;
    padding: 10px;
    font-weight: bold;
    color: black;
    text-decoration: underline;
}

@media screen and (max-width: 1023px) {
	.growth-icon-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 30px;
}
	

@media screen and (max-width: 1023px) {
	.growth-icon-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 30px;
}
	
@media screen and (max-width: 767px) {
	.growth-icon-container {
			display: grid;
			grid-template-columns: repeat(1, minmax(0,1fr));
			gap: 30px;
	}
	
	section.growth-icon {
			padding: 74px 40px;
			background: #f5f6f9;
	}
}