html {
  font-size: 12px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

h1 {
  font-weight: 800;
}

h2 {
  font-weight: 400;
}

.border-solid {
  border: 1px solid black;
}

.space-between {
  display: flex;
  justify-content: space-between;
}

.tel {
  text-decoration: none;
  font-weight: 800;
  font-size: 40px;
  color: darkgreen;
}

.w325 {
  width: 325px;
}

.flex-display {
  display: flex;
  flex-direction: row;
}

@media (max-width: 767px) {
    .flex-display {
        display: flex;
        flex-direction: column;
    }
}