/**
 * @file
 * Photo Text 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-text-callout {
  display: flex;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 73.0625rem) {
  .photo-text-callout {
    flex-direction: column;
  }
}
.photo-text-callout picture {
  width: 58%;
  text-align: right;
  position: relative;
}
@media screen and (max-width: 73.0625rem) {
  .photo-text-callout picture {
    width: 100%;
  }
}
.photo-text-callout picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 65%;
  height: 100%;
}
@media screen and (max-width: 73.0625rem) {
  .photo-text-callout picture img {
    width: 100%;
  }
}
.photo-text-callout picture:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 73.0625rem) {
  .photo-text-callout picture:after {
    display: none;
  }
}

.photo-text-callout__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 42%;
  padding: 2rem 3.5% 3rem 5.5%;
  background-color: #005028;
  color: #ffffff;
}
@media screen and (max-width: 73.0625rem) {
  .photo-text-callout__content {
    width: 100%;
    padding: 2rem 0;
    background-color: transparent;
    color: #003366;
  }
}
.photo-text-callout__content .photo-text-callout__title {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 52%;
  z-index: 1;
  text-align: left;
  margin-bottom: 1.375rem;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 73.0625rem) {
  .photo-text-callout__content .photo-text-callout__title {
    position: static;
    width: 100%;
  }
}
.photo-text-callout__content .photo-text-callout__subheadline {
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0 0 1rem;
}
@media screen and (max-width: 73.0625rem) {
  .photo-text-callout__content .photo-text-callout__subheadline {
    font-size: 1.0625rem;
  }
}
.photo-text-callout__content .photo-text-callout__description p {
  font-size: 0.9375rem;
  line-height: 1.9;
  margin: 0 0 1.5rem;
}
@media screen and (max-width: 73.0625rem) {
  .photo-text-callout__content .photo-text-callout__description p {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}
.photo-text-callout__content .photo-text-callout__description a {
  color: #ffffff;
}
.photo-text-callout__content .photo-text-callout__description a:hover {
  text-decoration: none;
}
.photo-text-callout__content .green-button {
  border-color: #ffffff;
  border-width: 1px;
}
@media screen and (max-width: 73.0625rem) {
  .photo-text-callout__content .green-button {
    border-color: #005028;
  }
}

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