/* 
-----
  Steph's Coven 
  Designer/Developer: Seventhfury Studios
-----
*/
/* ----- SCSS STYLES ----- */
/* Fonts */
/* Colors */
/* Testing Border Quick Mixins */
/*@mixin rb 	{ border: none; }
@mixin gb 	{ border: none; }
@mixin bb 	{ border: none; }*/
/* Alpha Fade Mixins */
/*	@include border-radius(10px); */
/* 	@include box-shadow(0px 0px 8px $color_dark); */
/* @include text-shadow(0, 3px, 3px, #333); */
/*  @include animate  */
/*  Bounce Animation */
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-10px);
  }
  60% {
    -moz-transform: translateY(-5px);
  }
}
@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(-10px);
  }
  60% {
    -o-transform: translateY(-5px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* Media Size Mixins */
/* Uses Bootstrap 4 breakpoints */
/*  @include max* || then use {} around content  */
/* Flex */
/* @include flexbox; */
/* center vertically and horizontally */
/* center vertically and horizontally */
/*  @include flex(1); */
/*  @include flex-order(1); */
/* @include flex-direction(row); */
/* Avoid Highlights */
/* Add CSS3 animations to elements below */
a, a:active, a:link, a:visited, a:hover, input {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*  Chrome Font Issue Reset  */
body {
  -webkit-animation-delay: 0.1s;
  -webkit-animation-name: fontfix;
  -webkit-animation-duration: 0.1s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes fontfix {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
/* ----- CSS STYLES ----- */
/* Bootstrap Reboot Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.fal, .far, .fas, i {
  /* Avoid Highlights */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
/* End Bootstrap Reboot Reset */
body, html {
  font-family: "Patrick Hand", cursive !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  color: #025A62;
  background: #6CE5E8;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
} /* body */
.test {
  border: 1px solid red;
}

.testitem {
  background: tomato;
  margin: 10px;
  /*width: 250px;*/
  width: 100%;
  height: 70px;
  display: inline-block;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

h2 {
  font-size: 3.6em;
  line-height: 1.1;
  margin-top: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.7em;
  }
}

h3 {
  margin-top: 0;
}

p {
  font-size: 2.5em;
  line-height: 1.2;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0;
  margin-bottom: 0;
  margin-top: 0;
}
@media (max-width: 768px) {
  p {
    font-size: 2em;
    margin-bottom: 0;
    margin-top: 30px;
  }
}

hr.hr-light {
  border-left: none;
  border-right: none;
  border-bottom: none;
  flex: 1 0 auto;
  margin: 19px 0 17px 0;
}

.hide {
  display: none !important;
}

.spacer {
  height: 20px;
  width: 100%;
}

.flexcenter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button {
  background: #ffffff;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  display: block;
  margin: 30px auto;
  padding: 25px;
  max-width: 440px;
  min-height: 150px;
  -moz-box-shadow: 0px 4px 18px rgba(47, 189, 193, 0.5);
  -webkit-box-shadow: 0px 4px 18px rgba(47, 189, 193, 0.5);
  box-shadow: 0px 4px 18px rgba(47, 189, 193, 0.5);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .button:hover {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
  }
}
.button img {
  width: 100%;
  max-width: 340px;
  margin: auto;
}

header {
  background: #ffffff;
  text-align: center;
  padding: 25px 20px 40px 20px;
}
header img {
  margin: auto;
  width: 100%;
  max-width: 415px;
}

.lead-title-wrap {
  background: #2FBDC1;
  margin-top: -30px;
  margin-bottom: -30px;
  --mask:
    radial-gradient(35.85px at 50% 49.4px,#000 99%,#0000 101%) calc(50% - 38px) 0/76px 51% repeat-x,
    radial-gradient(35.85px at 50% -30.4px,#0000 99%,#000 101%) 50% 19px/76px calc(51% - 19px) repeat-x,
    radial-gradient(35.85px at 50% calc(100% - 49.4px),#000 99%,#0000 101%) calc(50% - 38px) 100%/76px 51% repeat-x,
    radial-gradient(35.85px at 50% calc(100% + 30.4px),#0000 99%,#000 101%) 50% calc(100% - 19px)/76px calc(51% - 19px) repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}
.lead-title-wrap h2 {
  color: #ffffff;
  padding: 60px 20px 65px 20px;
  text-align: center;
}

.content {
  background: #6CE5E8;
  padding: 0px 20px 100px 20px;
  /*@include box-shadow (0px 10px 18px $teal_dark);*/
}
@media (max-width: 768px) {
  .content {
    padding-top: 1px;
    padding-bottom: 50px;
  }
}

footer {
  text-align: center;
  padding-bottom: 40px;
}
