.title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 8px;
  background-color: #3c8481;
}

.button-primary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 45px;
  padding: 8px;
  background-color: #3c8481;
  font-size: 14px;
  color: #e8e8e8;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.086);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.button-primary:hover {
  background-color: #ea7227;
  color: #e8e8e8;
}

.button-secondary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 113px;
  min-height: 27px;
  padding: 3.2px;
  background-color: #e8e8e8;
  font-size: 14px;
  color: #3c8481;
  text-transform: uppercase;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.086);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.button-secondary:hover {
  background-color: #ea7227;
  color: #e8e8e8;
}

.tooltip {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: #e8e8e8;
  float: right;
  background-color: #3c8481;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 1;
}

.tooltip__text {
  visibility: hidden;
  width: 120px;
  background-color: #3c8481;
  font-size: inherit;
  color: inherit;
  text-align: center;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 3.2px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.tooltip__text:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #3c8481 transparent transparent transparent;
}

.tooltip:hover .tooltip__text {
  visibility: visible;
  opacity: 1;
}

.page-title__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 252px;
  background-size: cover;
  background-position: center;
}

.page-title__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #3c8481e3;
  opacity: 0.89;
}

@media (min-width: 992px) {
  .page-title__content {
    height: 352px;
  }
}

.page-title__name {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.page-title__name::after {
  content: "";
  display: block;
  width: 82px;
  height: 3px;
  margin: 16px auto 0 auto;
  background-color: #ea7227;
}

@media (min-width: 992px) {
  .page-title__name {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
}

.contact-side__title {
  color: #33726f;
  margin-bottom: unset;
}

.contact-side__title::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background-color: #ea7227;
  margin: 16px 0;
}

.contact-side__text {
  font-size: 14px;
  color: #888;
}

.contact-side__item:nth-child(even) {
  margin: 8px 0;
}

.contact-side__link {
  display: grid;
  grid-template-columns: 21px auto;
  grid-template-rows: repeat(2, auto);
  gap: 5px;
  grid-template-areas: "icon title" "none text";
  color: #888;
}

.contact-side__link:hover {
  color: #3c8481;
}

.contact-side__link i {
  grid-area: icon;
  align-self: center;
  justify-self: center;
  font-size: 21px;
  color: #3c8481 !important;
}

.contact-side__link--title {
  grid-area: title;
  font-size: 14px;
  font-weight: 700;
  color: #ea7227 !important;
}

.contact-side__link--text {
  grid-area: text;
  color: inherit;
}

.contact-side__link--social,
.contact-side__link--social:hover {
  text-decoration: none;
}

.contact__title {
  color: #33726f;
  margin-bottom: unset;
}

.contact__title::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background-color: #ea7227;
  margin: 16px 0;
}

.contact__label {
  color: #393939;
}

.contact__field {
  border: 1px solid #7d7d7d;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.contact__field--select {
  color: #333;
}

.contact__invalid {
  border-color: #dc3545;
}

.embed-responsive {
  max-height: 335px;
}

