.company {
	padding-block: 90px 120px;
}

.company__box {
	margin-top: 50px;
}

.company__title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
}

.company__link {
	color: #0093D7;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.875;
}

.companyList {
  display: grid;
  gap: 20px 30px;
  grid-template-columns: repeat(3,1fr);
	margin-top: 40px;
}

.companyList__item {
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--colorlightGray);
  border-radius: 10px;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
  display: flex;
  height: 100px;
  justify-content: center;
  max-width: 340px;
  transition: box-shadow 0.3s;
  width: 100%;
}

.companyList__item:hover {
	box-shadow: 0 0 0 3px #2BAC4D;
	border: 1px solid transparent;
}

.companyList__item a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.companyList__img.acure img {
  max-width: 160px;
}

@media screen and (max-width:767px) {
	.company__title {
		font-size: 22px;
	}
	
	.company__link {
		font-size: 18px;
	}
}

@media screen and (max-width:1024px) {
  .companyList {
    gap: 10px 15px;
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }
}

@media screen and (max-width:500px) {
  .companyList {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .companyList__item {
    max-width: 300px;
  }
}