/* We use this media query to add styles to any device that supports media queries */
@media only screen {
  .contact-left-div {
    padding-top: 0.5em;
  }

  .borderBottomLeftRad {
    -moz-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .borderTopLeftRad {
    -moz-border-top-left-radius: 0;
    border-top-left-radius: 0;
  }

  .borderTopRightRad {
    -moz-border-top-right-radius: 0;
    border-top-right-radius: 0;
  }

  .borderBottomRightRad {
    -moz-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .borderRad {
    -moz-border-radius: 0;
    border-radius: 0;
  }
}
/* Used to alter styles for screens at least 450px wide. This is where the grid changes. */
/* Used to alter styles for screens at least 525px wide. This is where the grid changes. */
/* Used to alter styles for screens at least 641px wide. This is where the grid changes. */
@media only screen and (min-width: 641px) {
  .contact-left-div {
    padding-top: 2em;
  }

  .borderBottomLeftRad {
    -moz-border-bottom-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }

  .borderTopLeftRad {
    -moz-border-top-left-radius: 15px;
    border-top-left-radius: 15px;
  }

  .borderTopRightRad {
    -moz-border-top-right-radius: 15px;
    border-top-right-radius: 15px;
  }

  .borderBottomRightRad {
    -moz-border-bottom-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .borderRad {
    -moz-border-radius: 15px;
    border-radius: 15px;
  }
}
/* Used to alter styles for screens at least 768px wide. This is where the grid changes. */
/* Used to alter styles for screens at least 960px wide. */
/* Used to alter styles for screens at least 1000px wide. */
/* Used to alter styles for screens at least 1280px wide. */
/* Used to alter styles for screens at least 1440px wide. */
/* Apply styles to screens in landscape orientation */
/* Apply styles to screens in portrait orientation */
