/**
 * @file
 * Photo Links Callout styles.
 */
/**
 * @file
 * Dependencies.
 *
 * The necessary dependencies for compiling styles.
 * Nothing here should compile into CSS, helpers only.
 */
/**
 * @file
 * Color variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Typography declarations.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Functions.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/* Remove the unit of a length.
 * @param {Number} $number - Number to remove unit from
 * @return {Number} - Unitless number
 *
 * Reference: https://css-tricks.com/snippets/sass/strip-unit-function/
*/
/* Convert a value (raw number or pixel size) into rems. */
/**
 * @file
 * General variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Mixins.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * Breakpoint
 *
 * usage example:
 * @include breakpoint($feature: max-width, $value: 1509px) {
 *  display: none;
 * }
 */
/* Dynamic containment mixin. */
/**
 * @file
 * Z-Indices.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
.photo-links-callout {
  display: flex;
  margin: 6rem 0;
}
@media screen and (max-width: 73.0625rem) {
  .photo-links-callout {
    margin: 3rem 0;
  }
}
@media screen and (max-width: 47.9375rem) {
  .photo-links-callout {
    margin: 2rem 0;
    display: block;
  }
}
.two-column .photo-links-callout {
  display: block;
}
.photo-links-callout ul {
  width: 35.3%;
  margin: 0;
  padding: 0 0 0 4.4%;
  list-style: none;
}
@media screen and (max-width: 47.9375rem) {
  .photo-links-callout ul {
    width: 100%;
    padding: 0;
  }
}
.two-column .photo-links-callout ul {
  width: 100%;
  padding-left: 13%;
}
@media screen and (max-width: 47.9375rem) {
  .two-column .photo-links-callout ul {
    padding: 0;
  }
}
.photo-links-callout ul a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.375rem;
  font-weight: 700;
  color: #003366;
  text-decoration: none;
  border-bottom: 1px solid #D3D3D3;
  padding: 1.75rem 1.875rem;
}
@media screen and (max-width: 87.4375rem) {
  .photo-links-callout ul a {
    font-size: 1.125rem;
    padding: 1.5rem 1.875rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .photo-links-callout ul a {
    padding: 1.25rem 1rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .photo-links-callout ul a {
    font-size: 1rem;
  }
}
.photo-links-callout ul a svg {
  flex: 18px 0 0;
  margin-left: 1rem;
}
.photo-links-callout ul a svg path {
  fill: #003366;
}
.photo-links-callout ul a:hover {
  background-color: #005028;
  color: #ffffff;
}
.photo-links-callout ul a:hover svg path {
  fill: #ffffff;
}
.photo-links-callout ul li:first-child a {
  border-top: 1px solid #D3D3D3;
}
.two-column .photo-links-callout ul li:first-child a {
  border-top: none;
}
@media screen and (max-width: 47.9375rem) {
  .two-column .photo-links-callout ul li:first-child a {
    border-top: 1px solid #D3D3D3;
  }
}

.photo-links-callout__image {
  width: 64.7%;
  position: relative;
  text-align: right;
}
@media screen and (max-width: 47.9375rem) {
  .photo-links-callout__image {
    width: 100%;
    padding-bottom: 1.5rem;
  }
}
.two-column .photo-links-callout__image {
  width: 100%;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 87.4375rem) {
  .two-column .photo-links-callout__image {
    margin-bottom: 0;
  }
}
.photo-links-callout__image:after {
  content: "";
  position: absolute;
  width: 52%;
  height: 100%;
  top: 0;
  left: 13%;
  background: #ffffff;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 63%);
}
@media screen and (max-width: 73.0625rem) {
  .photo-links-callout__image:after {
    width: 87%;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 80%);
  }
}
@media screen and (max-width: 47.9375rem) {
  .photo-links-callout__image:after {
    display: none;
  }
}
.photo-links-callout__image img {
  width: 87%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 47.9375rem) {
  .photo-links-callout__image img {
    width: 100%;
  }
}
.photo-links-callout__image .photo-links-callout__title {
  position: absolute;
  top: 3rem;
  left: 0;
  width: 62%;
  z-index: 1;
  text-align: left;
  margin-bottom: 1.375rem;
  font-size: 4.5rem;
}
@media screen and (max-width: 94.3125rem) {
  .photo-links-callout__image .photo-links-callout__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .photo-links-callout__image .photo-links-callout__title {
    font-size: 3.375rem;
    top: 2rem;
    width: 75%;
  }
}
@media screen and (max-width: 47.9375rem) {
  .photo-links-callout__image .photo-links-callout__title {
    font-size: 2.5rem;
    position: static;
    width: 100%;
  }
}

/*# sourceMappingURL=photo-links-callout.css.map*/