/*
@mixin mobile {
    @media only screen and (max-width: $S) { @content; }
}

@mixin tablet {
    @media only screen and (min-width: $M) and (max-width: 1023px) { @content; }
}

@mixin all_mobile {
    @media only screen and (max-width: 425px) { @content; }
}

// super light grid - it works with the .cd-container class inside style.scss

@mixin column($percentage, $float-direction:left) {
width: 100% * $percentage;
float: $float-direction;
}*/
.main-container {
  background-image: url("../images/degree-programs/ccs-bg.jpg");
  background-position: center -3rem; }
  @media only screen and (min-width: 568px) {
    .main-container {
      background-position: center -6rem; } }
  @media only screen and (min-width: 768px) {
    .main-container {
      background-position: center -17rem; } }
  @media only screen and (min-width: 1366px) {
    .main-container {
      background-position: center -20rem; } }
  @media only screen and (min-width: 1920px) {
    .main-container {
      background-position: center -37rem; } }

.section-two {
  background-image: url("../images/degree-programs/ccs-section-bg.jpg"); }
  @media only screen and (min-width: 1366px) {
    .section-two {
      background-position: 0 2rem; } }
  @media only screen and (min-width: 1440px) {
    .section-two {
      background-position: 0 5rem; } }
  @media only screen and (min-width: 1920px) {
    .section-two {
      background-position: 0 17rem; } }

/*# sourceMappingURL=college-computer-studies.css.map */
