/* 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);}
 *
 */
.block-social-links .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-social-links .block-content {
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 960px) {
  .block-social-links .block-content {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 959px) {
  .block-social-links .uk-grid {
    margin-left: -1rem;
  }
}
@media only screen and (max-width: 959px) {
  .block-social-links .uk-grid > * {
    padding-left: 1rem;
  }
}
.block-social-links .uk-icon-button {
  color: white;
  border: 0.1rem solid rgba(255, 255, 255, 0.5);
  height: 5rem;
  width: 5rem;
}
.block-social-links .uk-icon-button:hover, .block-social-links .uk-icon-button:focus, .block-social-links .uk-icon-button:active {
  border-color: white;
}
.block-social-links .uk-active > .uk-icon-button {
  border-color: white;
}