#thanks {
  margin-top: 12rem;
}
@media (max-width: 520px) {
  #thanks {
    margin-top: 9rem;
  }
}

h2 {
  margin-bottom: 4rem;
}

p {
  margin-bottom: 4rem;
}

.intro {
  margin-bottom: 8rem;
}

.linkBtn_thanks a {
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  width: 100%;
  max-width: 460px;
  transition: 0.3s;
  box-sizing: border-box;
  border: var(--primary) 2px solid;
  background-color: #fff;
  color: var(--primary);
  border-radius: 3px;
}
.linkBtn_thanks a:hover {
  color: #fff;
  background-color: var(--primary);
}

.suppliesList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
}
.suppliesList li {
  width: calc(50% - 2.5rem);
}
@media (max-width: 920px) {
  .suppliesList li {
    width: 100%;
  }
}
.suppliesList li a {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #F9F9F9;
  transition: 0.3s;
  position: relative;
}
.suppliesList li a::after {
  display: inline-block;
  content: "";
  rotate: 45deg;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
}
.suppliesList li a:hover {
  opacity: 0.5;
}
.suppliesList li a figure {
  width: 40%;
  height: 100%;
  position: relative;
}
.suppliesList li a figure img {
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.suppliesList li a figure figcaption {
  font-weight: bold;
  font-size: 1.5rem;
  white-space: nowrap;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: solid 4px var(--primary);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 2rem;
  padding: 1.5rem 1rem;
  color: #3C73A9;
  line-height: 1.2;
  letter-spacing: 1px;
}
.suppliesList li a figure figcaption em {
  font-size: 1.7em;
  color: #3C73A9;
  letter-spacing: 1px;
}
.suppliesList li a .suppliestxt {
  width: 60%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 300px;
}
@media (max-width: 920px) {
  .suppliesList li a .suppliestxt {
    height: unset;
  }
}
.suppliesList li a .suppliestxt span {
  display: block;
  font-size: 1.5rem;
  color: #707070;
}
.suppliesList li a .suppliestxt p {
  margin: 0;
}
.suppliesList li a .suppliestxt p:last-of-type {
  margin-bottom: 2rem;
}
@media (max-width: 520px) {
  .suppliesList li a .suppliestxt p {
    font-size: 1.27rem;
  }
}/*# sourceMappingURL=style.css.map */