@charset "UTF-8";
/* DEFAULT */
@media only screen {
  #index {
    flex-direction: row;
  }
  #index-left {
    padding: 0 2em 0 0;
    width: 75%;
  }
  #index-right {
    border-left: 1px solid #103155;
    padding: .5em 0 0 0;
    width: 25%;
  }
  #nolink {
    align-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: .8em auto 1.5em auto;
  }
  #section1 {
    margin-bottom: 30px;
  }
  #services {
    justify-content: space-evenly;
  }
  #services-left, #services-right {
    padding: 1px 2vw;
    width: 50%;
  }
}
/* MEGAPIXEL */
@media only screen and (min-width: 2101px) {}
/* DESKTOP */
@media only screen and (max-width: 2100px) {}
/* TABLET */
@media only screen and (max-width: 1200px) {}
/* MOBILE */
@media only screen and (max-width: 700px) {
  #index {
    flex-direction: column;
  }
  #left-m {
    margin-left: 15%;
  }
  #index-left {
    width: 94%;
  }
  #index-right {
    margin: 1em 0 0 0;
    width: 92%;
  }
}