/**
 * This file is for the Photo CTA component.
*/
.paragraph--type--photo-cta-row.animate .field__item:nth-child(1) .paragraph--type--photo-cta {
  animation: slideUp 0.3s forwards;
}
.paragraph--type--photo-cta-row.animate .field__item:nth-child(2) .paragraph--type--photo-cta {
  animation: slideUp 0.3s 0.15s forwards;
}
.paragraph--type--photo-cta-row.animate .field__item:nth-child(3) .paragraph--type--photo-cta {
  animation: slideUp 0.3s 0.3s forwards;
}
.paragraph--type--photo-cta-row.animate .field__item:nth-child(4) .paragraph--type--photo-cta {
  animation: slideUp 0.3s 0.45s forwards;
}
.paragraph--type--photo-cta-row.animate .field__item:nth-child(5) .paragraph--type--photo-cta {
  animation: slideUp 0.3s 0.6s forwards;
}

.paragraph--type--photo-cta-row .photo-cta-row-title {
  display: flex;
  align-items: baseline;
}
@media (min-width: 64em) {
  .paragraph--type--photo-cta-row .photo-cta-row-title {
    overflow: hidden;
  }
  .paragraph--type--photo-cta-row .photo-cta-row-title::after {
    content: "";
    width: 100%;
    display: inline-block;
    height: 2px;
    border-bottom: 2px solid #feb80a;
    margin-left: 1.5rem;
    margin-right: -100%;
  }
}
.paragraph--type--photo-cta-row .field--name-field-photo-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  justify-content: space-evenly;
  align-items: center;
}
.paragraph--type--photo-cta-row .field--name-field-photo-ctas img {
  display: block;
}

.paragraph--type--photo-cta {
  opacity: 0;
  max-width: 9.375rem;
}
@media (min-width: 48em) {
  .paragraph--type--photo-cta {
    max-width: 14.875rem;
  }
}
.paragraph--type--photo-cta a.link-wrapper:not(.btn) {
  display: block;
  text-decoration: none;
}
.paragraph--type--photo-cta a.link-wrapper:not(.btn):hover {
  background-color: unset;
}
.paragraph--type--photo-cta .image-wrapper {
  position: relative;
}
.paragraph--type--photo-cta .field--name-field-photo-cta-image {
  transition: all 0.6s ease 0s;
  max-width: inherit;
  outline: 5px solid #e6e9ed;
  border-radius: 50%;
  overflow: hidden;
}
.paragraph--type--photo-cta .field--name-field-photo-cta-image img {
  transition: all 0.6s ease 0s;
  display: block;
  width: 9.375rem;
  height: 9.375rem;
  max-width: unset;
}
@media (min-width: 48em) {
  .paragraph--type--photo-cta .field--name-field-photo-cta-image img {
    width: 14.875rem;
    height: 14.875rem;
  }
}
.paragraph--type--photo-cta .link-arrow {
  transition: all 0.6s ease 0s;
  background-color: #14828c;
  position: absolute;
  right: 0.625rem;
  bottom: 0.375rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  padding: 0.5rem 0.625rem 0.5rem 0.75rem;
  font-size: 0;
}
.paragraph--type--photo-cta .link-arrow::before {
  content: "";
  display: block;
  background-image: url("../../icon/svg/chevron-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
@media (min-width: 48em) {
  .paragraph--type--photo-cta .link-arrow {
    right: 1.0625rem;
    bottom: 0.6rem;
    width: 2.85rem;
    height: 2.85rem;
    padding: 0.6875rem 0.65rem 0.6875rem 1.125rem;
  }
}
.paragraph--type--photo-cta .field--name-field-title h3 {
  transition: all 0.6s ease 0s;
  text-align: center;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 1.25rem;
}
.paragraph--type--photo-cta:hover .field--name-field-photo-cta-image {
  outline-color: #16a0ac;
}
.paragraph--type--photo-cta:hover .field--name-field-photo-cta-image img {
  transform: scale(1.125);
}
.paragraph--type--photo-cta:hover .link-arrow {
  background-color: #16a0ac;
  right: 0.15rem;
}
@media (min-width: 48em) {
  .paragraph--type--photo-cta:hover .link-arrow {
    right: 0.25rem;
  }
}
.paragraph--type--photo-cta:hover .field--name-field-title h3 {
  color: #14828c;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(25%);
  }
  to {
    opacity: 100%;
    transform: translateY(0);
  }
}
/*# sourceMappingURL=photo-cta.css.map */
