.header {
  width: 100%;
  border-right: #000 1px solid;
  border-left: #000 1px solid;
}
#page-title {
  font-size: 20px;
  color: #3fb41c;
  font-weight: 600;
  margin: 10px;
  margin-bottom: 20px;
}

.column-container {
  display: flex;
}

.left-column {
  width: 50%;
}
.right-column {
  width: 50%;
  margin: 10px;
  align-self: center;
}

#video-1 {
  width: 100%;
}

#video-1 video {
  width: 100%;
  cursor: pointer;
}

#closeVideo {
  z-index: 8;
  display: none;
  position: fixed;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  background-color: #fff;
  border: #000 2px solid;
  border-radius: 5px;
  padding: 3px;
  cursor: pointer;
}

#caveman {
  cursor: pointer;
}

.middle-div {
  margin: 10px;
  margin-right: 20px;
}
.mission-div {
  display: flex;
  justify-content: center;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.horizontal-line {
  border-bottom: #000 1px solid;
}
#image-container {
  display: flex;
  justify-content: space-around;
}
#next-step {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color-dark);
  margin: 20px;
}
#service-ul li {
  margin-bottom: 10px;
}
#contact-frame {
  display: flex;
  justify-content: center;
}
.location {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* .centered-address {
  color: var(--secondary-color-dark);
} */

#helpful-links-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#helpful-links-section a {
  padding: 5px;
  text-align: center;
}
.centered-title {
  color: var(--secondary-color-dark);
  font-size: 25px;
  font-weight: 600;
  margin: auto;
  margin-top: 10px;
}

.centered-link-titles {
  font-size: 20px;
  font-weight: 600;
  margin: auto;
  margin-top: 20px;
}






@media (max-width: 720px) {
  .column-container {
    display: block;
  }
  .left-column {
    width: 100%;
    padding-right: 20px;
  }
  .right-column {
    width: 100%;
    margin: 0px;
    margin-right: 20px;
  }
}