body {
  background-color: #fff;
}

h1 {
  margin: 40px 0 50px;
}

small {
  margin-top: 7px;
}

#content {
  display: flex;
  margin-bottom: 50px;
  flex-direction: column;
  align-items: center;
}

#content .section {
  width: 980px;
  justify-content: center;
}

#GuideSectionOne {
  margin-top: 60px;
}

#GuideSectionTwo .guide .heading {
  background-color: #E5F3F6;
  color: #2FD0EA;
}

.guide {
  height: 340px;
  margin: 0 15px;
  border: 1px solid rgb(228,228,228);
  border-radius: 15px;
  padding: 0 40px 40px;
  background-color: white;
  flex: 1;
  position: relative;
  transition: box-shadow 0.25s;
  cursor: pointer;
}

.guide:hover {
  box-shadow: 5px 5px 18px rgba(0,0,0,0.2);
}

.guide .heading {
  margin: 0 -40px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 20px 40px;
  background-color: #20DA9C;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}

.guide h2 {
  font-size: 28px;
  margin-top: 20px;
}

.guide .learn-more {
  color: #1EAEDB;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration-line: underline;
  position: absolute;
  bottom: 40px;
  left: 40px;
}

#bottomImage img {
  margin-top: 35px;
  height: 100px;
}


@media (max-width: 960px) {
  #content .section {
    width: 100%;
    flex-direction: column;
    padding: 0 20px;
  }
}