/* Mixins */
/**
 * Returns value from colors map
 */
/**
 * Turns pixels to rems
 * We typically set out HTML font size to 62.5% which helps us have a base-10 value to work with.
 * So the following mixin accepts a pixel value that is then turned into a corresponding rem value.
 */
/**
 * Function for converting a px based font-size to rem.
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {to-rem(12);}
 *
 */
@media only screen and (max-width: 959px) {
  .block-mobile-apps {
    margin-top: 1.5rem;
  }
}
.block-mobile-apps .block-title {
  font-family: "Roboto-Medium", sans-serif !important;
  font-size: 2rem;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, 0.65);
}
@media only screen and (max-width: 959px) {
  .block-mobile-apps .block-content {
    margin-top: 2.5rem;
  }
}
@media only screen and (min-width: 960px) {
  .block-mobile-apps .block-content {
    margin-top: 2.8rem;
  }
}
@media only screen and (max-width: 959px) {
  .block-mobile-apps .uk-grid {
    margin-left: -1rem;
  }
}
@media only screen and (max-width: 959px) {
  .block-mobile-apps .uk-grid > * {
    padding-left: 1rem;
  }
}
.block-mobile-apps .icon {
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media only screen and (max-width: 959px) {
  .block-mobile-apps .icon {
    height: 4.5rem;
    width: 13.756rem;
  }
}
@media only screen and (min-width: 960px) {
  .block-mobile-apps .icon {
    height: 5rem;
    width: 15.285rem;
  }
}
.block-mobile-apps .icon:hover {
  opacity: 0.85;
}
.block-mobile-apps .icon--google-play {
  background-image: url("../images/components/block-mobile-apps/google-play.svg");
}
.block-mobile-apps .icon--app-store {
  background-image: url("../images/components/block-mobile-apps/app-store.svg");
}