@charset "utf-8";

.title {
  height: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000000;
}

.title h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: bold;
}

.feature {
  display: flex;
  justify-content: space-between;
  width: 930px;
  max-width: 90%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
}

.feature-text h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin: 30px 0 8px;
}

.feature-text hr {
  margin-bottom: 15px;
}

.feature-text p {
  font-size: 15px;
  line-height: 20px;
  margin: 5px 0 5px;
}

.feature-list ol {
  font-size: 15px;
  line-height: 20px;
  margin: 5px 35px 5px;
  list-style-type: decimal;
}

.tocontact {
  text-decoration: underline;
}

.footer {
  margin-top: 100px;
}

@media (max-width: 800px) {
  .feature {
    display: block;
    width: 500px;
    margin-top: 45px;
  }
  
}