@charset "UTF-8";
/* DEFAULT */
@media only screen {
  main {
    padding-bottom: 30px;
  }
  #contact {
    border-top: 10px solid #386AB2;
    padding-bottom: 40px;
  }
  #contact * {
    color: #1C3157;
  }
  #contact a:hover {
    color: #FF0000;
  }
  #fourteen {
    background: url("../images/fourteen-yard.webp") no-repeat 50% 50%;
    background-size: cover;
    height: 41.5vw;
  }
  #left {
    background-color: #386AB2;
  }
  #left, #right {
    width: 40vw;
  }
  #on {
    display: none;
  }
  #off {
    display: block;
  }
  #text * {
    color: #000000;
  }
}
/* MEGAPIXEL */
@media only screen and (min-width: 2001px) {}
/* DESKTOP */
@media only screen and (max-width: 2000px) {}
/* MOBILE */
@media only screen and (max-width: 700px) {
  #left, #right {
    width: 90vw;
  }
  #on {
    display: block;
  }
  #off {
    display: none;
  }
}