html {
  background: rgb(225, 225, 225);
}

a[href^=tel] {
text-decoration:inherit;
color: inherit;
}

a:hover,a:active {
  outline: none;
}

body {
  margin: 0px;
  background: rgb(225, 225, 225);
  font-family: "Fira Sans", sans-serif !important;
  text-align: center;
  height: 100vh;
  overflow-y: scroll;
  width: 100%;
  max-width: 100%;
}

.banner > img {
  width: 100%;
  height: 200px;
  filter: grayscale(100%);
  object-fit: cover;
}

.banner > .text {
  position: absolute;
  top: 0;
  text-align: center;
  width: 100%;
  color: #000000cc;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.banner > .text > .title {
  font-size: 55px;
  font-weight: bold;
  padding-left:12px;
  padding-right:12px;
}

.banner > .text > .subtitle {
  font-size: 20px;
  padding-left:12px;
  padding-right:12px;
}

.main {
  padding: 12px;
}

.home-text {
  text-align: left;
  font-size: 13px;
  line-height: 24px;
  max-width: 750px;
  margin: auto;
  padding: 12px;
  background: white;
  border-radius: 6px;
  margin-bottom: 12px;
}

.home-text > div {
  margin-bottom: 12px;
}

.main .actions {
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.actions .button {
  background: #3F51B5;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin: 3px;
}

.actions .button.green {
  background: #3f86b5;
}

@media(max-width: 625px){
  .banner > .text > .title {
    font-size: 40px;
  }
  .banner > .text > .subtitle {
    font-size: 18px;
  }
}

@media(max-width: 460px){
  .banner > .text > .title {
    font-size: 30px;
  }
  .banner > .text > .subtitle {
    font-size: 17px;
  }
  .banner > img, .banner > .text {
    height: 150px;
  }
}

@media(max-width: 375px){
  .banner > .text > .title {
    font-size: 24px;
  }
  .banner > .text > .subtitle {
    font-size: 13px;
  }
}

@media(max-width: 300px){
  .banner > .text > .title {
    font-size: 22px;
  }
  .banner > .text > .subtitle {
    font-size: 12px;
  }


}