.section-trademark {
  background: linear-gradient(180deg, #fff 0%, #e8efeb 15%), #fff;
  margin-top: 3.75rem;
  padding-bottom: 4.22rem;
}

.trademarks-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0.94rem;
}

.trademark-container-one-item {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.trademark-item-link {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.trademark-item-link:hover {
  text-decoration-color: var(--green-dark);
}
.trademark-item-link svg {
  width: 0.3125rem;
  height: 0.5625rem;
  margin-left: 0.31rem;
}

.trademark-images-container {
  padding: 0.47rem 0.47rem 0.22rem 0.47rem;
  border-radius: 0.23381rem;
  background-color: #fff;
}

.trademark-images-container-scroll {
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  max-height: 35.25rem;
  height: fit-content;
  padding-right: 0.47rem;
}

.trademark-images-container-scroll::-webkit-scrollbar {
  width: 0.5rem;
}

.trademark-images-container-scroll::-webkit-scrollbar-track {
  background-color: #eaeaea;
  width: 0.5rem;
  border-radius: 9999px;
}

.trademark-images-container-scroll::-webkit-scrollbar-thumb {
  background-color: var(--grey-200);
  border-radius: 9999px;
  max-width: 0.12rem;
  margin: auto;
}

.trademark-images-container-scroll > * + * {
  margin-bottom: 0.375rem;
}

.trademark-images-container img {
  height: 8.5rem;
  object-fit: cover;
  padding-right:0.4rem;
}

.trademark-container-one-item img {
  height: 11.5rem;
	padding-right:0.5rem;
}

.trademark-container-one-item .trademark-img-link {
  height: 11.5rem;
	padding-right:0.5rem;
}

.trademark-container-one-item .trademark-img-link img{
  width:100%;
	height:100%;
	object-fit:cover;
}

@media (max-width: 768px) {
  .trademarks-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 2rem;
  }
  .trademark-images-container {
    padding: 0;
  }
}