/*
@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/facts-figures/scholars-bg.jpg");
  background-position: center -7rem; }
  @media only screen and (min-width: 768px) {
    .main-container {
      background-position: center -16rem; } }
  @media only screen and (min-width: 1920px) {
    .main-container {
      background-position: center -25rem; } }

.section-two {
  background-image: url("../images/facts-figures/scholars-section-bg.jpg");
  background-position: center; }

.section-two .row {
  margin: 2rem 0; }

.section-two .counter .counter-icon {
  margin: 1rem; }

.section-two p {
  text-align: left;
  margin: 5px 0 0 0; }

/*# sourceMappingURL=fnf-scholars.css.map */
