/******************************************************************

Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file. 

******************************************************************/

.hide-for-small {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .hide-for-large {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .show-for-large {
    display: initial !important;
  }
}


.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

