.img-pink {
  background-position: top center;
  background-size: cover;
  filter: sepia(100%) hue-rotate(-70deg) brightness(1.3);
  transition: filter 0.3s;
}

.img-pink:hover {
  filter: none;
}

h1, h2 {
  color: var(--primary);
  position: relative;
  padding-bottom: 0.5rem;
}

h1:after, h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 90px;
  background: var(--warning);
}

.img-bordered {
  position: relative;
  padding-top: 90.598290598%;
  width: 100%;
}

.img-bordered-image {
  position: absolute;
  background-clip: padding-box;
  background-position: center center;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.img-bordered-frame {
  position: absolute;
  background-image: url("/content/image/Photos/frame.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.spaced-h2 h2 {
  margin-bottom: 1.25rem;
}

.no-form-hint .form-required-hint {
  display: none;
}

.form-required {
  color: var(--primary) !important;
}