.resource-button {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: fit-content;
}

.resource-button-text {
  color: #0065A4;
  font-size: 20px;
  line-height: 25px;
  transition: color 300ms ease;
  font-weight: 600;
}

.download-icon-outer {
  width: 19px;
  height: 19px;
  border: 2px solid #0065A4;
  transition: border 300ms ease;
  position: relative;
  display: flex;
  justify-content: center;
}

.st0 {
  fill:#0065A4;
  transition: fill 300ms ease;
}

.resource-button:hover .resource-button-text {
  color: #011E31;
}

.resource-button:hover .download-icon-outer {
  border: 2px solid #011E31;
}

.resource-button:hover .st0 {
  fill: #011E31;
}

.resources-arrow {
  position: absolute;
  top: -10px;
  width: 75%;
  height: 87%;
  background-color: white;
  transition: top 300ms ease;
}

.resource-button:hover .resources-arrow {
  top: -7px;
}



