/* Image alignment */
.image-align-left {
  float: left;
  margin: 20px 20px 20px 0; 
}

.image-align-right {
  float: right;
  margin: 20px 0 20px 20px;
}

/* Buttons */
a.cta-button {
  display: inline-block;
  padding: 14px 32px;
  line-height: 1.25;
  margin: 0;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "VAG Rounded", sans-serif;
  text-decoration: none;
  background-color: transparent;
  border-radius: 500px;
  border: 2px solid #EA70A6;
  color: #892450;
  transition: all 0.3s ease;
  &:hover {
    background-color: #892450;
    border-color: #892450;
    color: #EA70A6;
  }
  &:focus {
    border-color: #1100FF !important;
  }
}

a.cta-button.pink {
  background-color: #EA70A6;
  border-color: #EA70A6;
  color: #892450;
  &:hover {
    background-color: #892450;
    border-color: #892450;
    color: #EA70A6;
  }
}

a.cta-button.gold {
  background-color: #FBBA00;
  border-color: #FBBA00;
  color: #684D00;
  &:hover {
    background-color: #684D00;
    border-color: #684D00;
    color: #FBBA00;
  }
}

a.cta-button.gold-ghost {
  background-color: transparent;
  border-color: #FBBA00;
  color: #684D00;
  &:hover {
    background-color: #684D00;
    border-color: #684D00;
    color: #FBBA00;
  }
}

/* Typography */
.text-condensed {
  font-family: "Proxima Nova Extra Condensed", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-heading {
  font-family: 'VAG Rounded', sans-serif;
  font-weight: 700;
}

.text-small {
  font-size: 0.875rem;
}

.text-large {
  font-size: 1.25rem;
}

.text-lead {
  font-size: 1.5625rem;
  @media screen and (max-width: 767px) {
  	font-size: 1.25rem;
  }
}

.text-background-green, .text-background-pink, .text-background-blue, .text-background-gold {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: white;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  &:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 100%;
    height: calc(100% + 1rem);
    transform: translate(-50%, -50%);
    border-radius: 4px;
  }
}

.text-background-green {
  background: #74B959;
  &:before {
    background: #74B959;
  }
}

.text-background-pink {
  background: #EA70A6;
  &:before {
    background: #EA70A6;
  }
}

.text-background-blue {
  background: #009DE0;
  &:before {
    background: #009DE0;
  }
}

.text-background-gold {
  background: #FBBA00;
  &:before {
    background: #FBBA00;
  }
}

/* Miscs */
.icon-phone {
  display: inline-block;
  &:before {
    content: "\f095";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 1rem;
  }
}

.icon-email {
  display: inline-block;
  &:before {
    content: "\f0e0";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 1rem;
  }
}
