#grid {
  background-color: #EDEDED;
  padding-bottom: 90px;
}
#grid #grid-exams,
#grid #grid-schools {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#grid #grid-exams .header,
#grid #grid-schools .header {
  text-align: center;
  margin: 55px 96px;
}
@media (max-width: 900px) {
  #grid #grid-exams .header,
#grid #grid-schools .header {
    margin: auto 20px;
  }
}
#grid #grid-exams .header .headline-2,
#grid #grid-schools .header .headline-2 {
  text-align: center;
  color: #19462C;
  margin-bottom: 15px;
  margin-top: 0;
}
#grid #grid-exams .header .subtitle-2,
#grid #grid-schools .header .subtitle-2 {
  text-align: center;
  color: #64748B;
}
#grid #grid-exams .content,
#grid #grid-schools .content {
  position: relative;
  bottom: -2px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1365px) {
  #grid #grid-exams .content,
#grid #grid-schools .content {
    display: flex;
    flex-direction: column;
  }
}
#grid #grid-exams .content .card,
#grid #grid-schools .content .card {
  min-height: 211px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 35px;
  transition: all 0.2s;
  background-color: #19462c21;
}
@media (min-width: 1365px) {
  #grid #grid-exams .content .card,
#grid #grid-schools .content .card {
    min-height: 351px;
  }
}
#grid #grid-exams .content .card h3,
#grid #grid-schools .content .card h3 {
  margin-top: 0;
}
#grid #grid-exams .content .card a,
#grid #grid-schools .content .card a {
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#grid #grid-exams .content .card:hover,
#grid #grid-schools .content .card:hover {
  background-color: #19462C;
  color: #FFFFFF;
}
#grid #grid-exams .content .card:hover a button,
#grid #grid-schools .content .card:hover a button {
  color: #FFFFFF;
  background-color: transparent;
  border-color: #FFFFFF;
}
#grid #grid-exams .content .card:hover a button:hover,
#grid #grid-schools .content .card:hover a button:hover {
  color: #282E38;
  background-color: #FFFFFF;
}
#grid #grid-exams .content .card:hover a button:active,
#grid #grid-schools .content .card:hover a button:active {
  background-color: #E0E3E8;
}
#grid #grid-exams .content .border-full,
#grid #grid-schools .content .border-full {
  border-bottom: 1px solid #A3B5AB;
  border-right: 1px solid #A3B5AB;
}
@media (max-width: 1365px) {
  #grid #grid-exams .content .border-full,
#grid #grid-schools .content .border-full {
    border-right: 0;
  }
}
#grid #grid-exams .content .border-half,
#grid #grid-schools .content .border-half {
  border-bottom: 1px solid #A3B5AB;
}
