.btn {
  padding: 20px 32px;
  font-family: "VeuveClicquotLight", "arial", "sans-serif";
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  border: 1px solid transparent;
  text-decoration: none;
  background-color: #fff;
  color: #393939;
  border-radius: 96px;
  min-height: 64px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block; }
  @media (min-width: 769px) {
    .btn {
      padding: 20px 40px; }
      .btn:hover {
        text-decoration: none;
        background-color: #f0f0f0; } }
  .btn[disabled], .btn.disabled {
    background-color: #ffa300;
    color: #f0f0f0;
    pointer-events: none;
    cursor: auto; }

.btn-primary {
  background-color: #ffa300;
  color: #fff;
  text-shadow: 1px 1px 1px #000; }
  .btn-primary:hover {
    background-color: #e09d01;
    color: #fff; }
  .btn-primary[disabled], .btn-primary.disabled {
    background-color: #ffa300;
    opacity: 0.4;
    color: #fff; }
  .btn-primary.m-alpha {
    background-color: #fff3dc;
    color: #393939; }
    .btn-primary.m-alpha:hover {
      background-color: #f0e5cd; }
    .btn-primary.m-alpha[disabled], .btn-primary.m-alpha.disabled {
      opacity: 0.4;
      color: #53565a; }
  .btn-primary.m-beta {
    background-color: #f8c1b8;
    color: #393939; }
    .btn-primary.m-beta:hover {
      background-color: #ffeae7; }
    .btn-primary.m-beta[disabled], .btn-primary.m-beta.disabled {
      opacity: 0.4;
      color: #53565a; }
  .btn-primary:focus {
    text-decoration: none; }

.btn-secondary {
  background-color: transparent;
  color: #393939;
  border-color: #f0e5cd; }
  @media (min-width: 769px) {
    .btn-secondary:hover {
      background-color: #fff3dc;
      color: #393939;
      border-color: #f0e5cd; } }

.btn-wide {
  display: block;
  width: 100%; }

.link-light, .image-text-container .image-heading-container a, .image-text-container .link {
  font-family: "VeuveClicquotRegular", "arial", "sans-serif";
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #53565a;
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer; }
  .link-light::after, .image-text-container .image-heading-container a::after, .image-text-container .link::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 1rem;
    background: #ffa300;
    border-radius: 50%;
    transition: box-shadow ease-in-out 0.5s;
    box-shadow: 0 0 12px 4px rgba(255, 178, 1, 0.5); }
  .link-light:hover, .image-text-container .image-heading-container a:hover, .image-text-container .link:hover {
    color: #393939;
    text-decoration: none; }
    .link-light:hover::after, .image-text-container .image-heading-container a:hover::after, .image-text-container .link:hover::after {
      box-shadow: 0 0 12px 8px rgba(255, 178, 1, 0.5); }

.link-underlined {
  border-bottom: 1px solid #ffa300;
  color: #53565a; }
  .link-underlined:hover {
    color: #393939;
    text-decoration: none;
    border-color: transparent; }
  .link-underlined.m-darken {
    border-color: #53565a; }
    .link-underlined.m-darken:hover {
      border-color: transparent; }

.btn-circle {
  display: inline-block;
  border: 1px solid #fff;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background-color: #fff;
  background-clip: padding-box;
  color: #393939;
  text-align: center;
  padding: 5px;
  font-size: 14px;
  line-height: 24px;
  transition: border-width 0.2s ease-in-out;
  cursor: pointer; }
  .btn-circle:focus {
    border: 10px solid transparent; }
  @media (min-width: 769px) {
    .btn-circle {
      width: 120px;
      height: 120px; } }

.tag {
  display: inline-block;
  font-size: 12px;
  line-height: 24px;
  color: #393939;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid #f0e5cd; }
  @media (min-width: 769px) {
    .tag {
      font-size: 14px; } }
  .tag--blurred {
    border-color: transparent;
    background-color: rgba(255, 255, 255, 0.24);
    color: #fff; }

.image-text-container .image-component {
  margin: 0;
  max-width: 100%;
  position: relative; }
  .image-text-container .image-component[data-alignments=center] {
    text-align: center; }
  .image-text-container .image-component[data-alignments=right] {
    text-align: right; }

.image-text-container .common-image-component {
  max-width: 100%;
  object-fit: cover;
  object-position: var(--focal-point-x) var(--focal-point-y); }

.image-text-container .common-image-filter {
  filter: brightness(40%); }

.image-text-container .image-heading-container {
  width: 100%;
  position: absolute; }
  .image-text-container .image-heading-container[data-alignments=center] {
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .image-text-container .image-heading-container[data-alignments=right] {
    top: 0;
    text-align: right; }
  .image-text-container .image-heading-container[data-alignments=top] {
    top: 0;
    left: 0; }
  .image-text-container .image-heading-container[data-alignments=bottom] {
    bottom: 0;
    left: 0; }
  .image-text-container .image-heading-container * {
    color: inherit; }
  .image-text-container .image-heading-container b,
  .image-text-container .image-heading-container strong {
    font-family: "VeuveClicquotRegular", "arial", "sans-serif"; }
  .image-text-container .image-heading-container a {
    color: inherit; }

.image-text-container .image-text-underneath {
  text-align: left;
  padding-top: 24px; }
  .image-text-container .image-text-underneath[data-alignments=center] {
    text-align: center; }
  .image-text-container .image-text-underneath[data-alignments=right] {
    text-align: right; }
  .image-text-container .image-text-underneath * {
    color: inherit; }
  .image-text-container .image-text-underneath b,
  .image-text-container .image-text-underneath strong {
    font-family: "VeuveClicquotRegular", "arial", "sans-serif"; }
  .image-text-container .image-text-underneath h1,
  .image-text-container .image-text-underneath h2,
  .image-text-container .image-text-underneath h3,
  .image-text-container .image-text-underneath h4 {
    font-family: "PPeikoLight", "arial", "sans-serif";
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 16px; }
    @media (min-width: 1200px) {
      .image-text-container .image-text-underneath h1,
      .image-text-container .image-text-underneath h2,
      .image-text-container .image-text-underneath h3,
      .image-text-container .image-text-underneath h4 {
        font-size: 16px;
        line-height: 24px;
        font-family: "VeuveClicquotRegular", "arial", "sans-serif"; } }

.image-text-container .link {
  color: inherit; }


/*# sourceMappingURL=imageAndTextCommon.css.map*/