﻿.local-container {
  min-height: calc(100vh - 80px);
  width: calc(100vw - 40px);
  max-height: 100%;
  margin: 60px 20px 20px 20px;
}

@media screen and (min-width: 768px) {
  .local-container {
    min-height: calc(100vh - 120px);
    width: calc(100vw - 80px);
    margin: 80px 40px 40px 40px;
  }
}


.team-container {
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  display: table;
}


.hero {
  display: table-cell;
  vertical-align: middle;
}

.hero h1 {
  margin: 0 0 20px 0;
}

.hero p {
  font-size: 1.8rem;
  line-height: 2.7rem;
  margin: 0 0 30px 0;

}

@media screen and (max-width: 1024px) {


  .hero h1 {
    font-size: 4.0rem;
    line-height: 4.6rem;
    margin: 0 0 20px 0;
  }

  .hero p {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }

}


@media screen and (max-width: 480px) {



  .hero h1 {
    font-size: 2.6rem;
    line-height: 3.2rem;
    margin: 0 0 15px 0;
    padding: 0 20px;
  }

  .hero p {
    font-size: 1.6rem;
    line-height: 2.1rem;
    padding: 0 20px;
  }

}