@charset "UTF-8";
/* DEFAULT */
@media only screen {
  h1, .h1 {
    color: #FFFFFF;
    font-size: 3rem;
    line-height: 1.4em;
  }
  .float {
    float: right;
    height: 15vw;
    margin: 60px 60px 10px 5vw;
    width: 15vw;
  }
  .float2 {
    float: right;
    height: 10vw;
    margin: 20px 20px 10px 5vw;
    width: 10vw;
  }
  .grid1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 0px;
  }
  .grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 40px;
  }
  .headshot {
    height: auto;
    max-width: 306px;
    width: 15vw;
  }
  .headshot2 {
    height: auto;
    max-width: 306px;
    width: 10vw;
  }
  .teal {
    border: 3px solid #318185;
    border-radius: 10px;
    padding: 0 20px;
  }
  #consulting {
    background: url("../images/lattice.webp") repeat;
  }
  #crew {
    border: 1px solid #318185;
    height: auto;
    max-width: 900px;
    width: 40vw;
  }
  #sms-span, #sms-span a {
    font-size: 17px;
    line-height: 1.2em;
  }
  #terry {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #info {
    width: calc(100% - 440px);
  }
  #tagline {
    color: #318185;
    font-size: 1.2em;
    font-weight: bold;
    margin: 50px 0;
  }
}
/* MEGAPIXEL */
@media only screen and (min-width: 2001px) {}
/* DESKTOP */
@media only screen and (max-width: 2000px) {}
/* LAPTOP */
@media only screen and (max-width: 1024px) {
  #info, #form {
    width: 100%;
  }
  #terry {
    flex-direction: column;
  }
}
/* MOBILE */
@media only screen and (max-width: 768px) {
  #crew {
    width: 80vw;
  }
  .float2 {
    height: 20vw;
    width: 20vw;
  }
  .headshot {
    width: 25vw;
  }
  .headshot2 {
    width: 20vw;
  }
  .grid1 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
  .grid2 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
}