body {
  margin: 0;
  color: var(--black);
  line-height: 1.5;
  scroll-behavior: smooth;
  font-size: 15px;
  font-weight: 500;
}

.header-contents {
  padding: 1rem 3rem;
  max-width: unset;
  width: unset;
}

.header-contents .header-btn-area {
  width: unset;
  gap: 1rem;
}

.header-btn-area a {
  padding: 0.8rem 1rem;
}

.header-btn-area a:last-child {
  width: unset;
}

.header-btn-area a:first-child {
  width: unset;
}

.resources_box {
  padding: 11rem 3rem 7.5rem;
  text-align: unset;
  max-width: 1440px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .resources_box {
    padding: 7.5rem 1.5rem;
  }
}

.resources_box h1 {
  font-size: 32px;
}

.resources_box p.intro {
  width: 45rem;
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .resources_box p.intro {
    width: 100%;
  }
}

#resources {
  display: grid;
  gap: 3rem 1.5rem;
  margin-top: 3rem;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 768px) {
  #resources {
    flex-direction: column;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 480px) {
  #resources {
    grid-template-columns: 1fr;
  }
}

#resources {
  width: 100%;
}

#resources p {
  margin-top: 0.5rem;
}

#resources a{
  display: block;
  height: 100%;
  box-shadow: var(--object-box-shadow);
  border-radius: 5px;
  transition: 0.3s;
}
#resources a:hover{
  box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
  transform: translate(2px, 2px);
  transition: 0.3s;
}

h3 {
  font-size: 18px;
  color: var(--orange);
  padding: 1.5rem 1rem 1rem;
}


h4{
  color: var(--black);
  font-size: 16px;
  margin: .5rem 1rem 1rem;
}

#resources ul {
  margin: 0 1rem 1.5rem;
}

#resources ul li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

#resources ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 100px;
  position: absolute;
  left: 2px;
  top: 9px;
}

footer {
  background: var(--white);
}
