/* set variables */
:root {
  --heading: 'Bangers', Impact, system-ui;
  --text: 'Poppins', sans-serif;
  --icons: 'Font Awesome 6 Pro';
  --white: #ffffff;
  --black: #04192C;
  --yellow: #FFBE30;
  --orange: #F88F06;
  --blue: #00ADB8;
  --teal: #00CCCC;
  --green: #44BE8F;
  --pink: #D54487;
  --grey: #838383;
  --lightgrey: #F9F7F3;
  --transition-fast: all 100ms ease-out;
  --transition-normal: all 200ms ease-out;
  --transition-slow: all 400ms ease-out;
}

/* box sizing rules */
*,*::before,*::after {
  box-sizing: border-box;
}

/* set html core defaults */
html {
  min-height: 100%;
  overflow-y: scroll;
	scroll-behavior: smooth;
}

/* remove default margin */
body,h1,h2,h3,h4,p,ul,ol,li,figure,figcaption,blockquote,dl,dd {
  margin: 0;
}

/* set core body defaults */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
	height: 100%;
  margin: 0 auto;
  text-rendering: optimizeSpeed;
  background: var(--white);
  font-family: var(--text);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.6;
}

/* change focus outline */
:focus {
  outline: 3px solid var(--black);
  border-radius: 12px;
}

/* remove list styles, padding, and margins on ul, ol elements without a class attribute */
ul:not([class]),ol:not([class]) {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* remove list styles on ul, ol elements with a class attribute */
ul[class],ol[class] {
  list-style-type: none;
	padding: 0;
}

/* make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.main img {
  border-radius: 20px;
}

/* inherit fonts for inputs and buttons */
input,button,textarea,select {
  font: inherit;
}

/* remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* color of highlight */
::-moz-selection {
  background: var(--yellow);
  color: var(--black);
  text-shadow: none;
}
::selection {
  background: var(--yellow);
  color: var(--black);
  text-shadow: none;
}

/* default font styles */

.uppercase {
  text-transform: uppercase;
}
h1 {
  font-family: var(--heading);
	font-size: clamp(3.75rem, 2.5rem + 2.6042vw, 5.625rem);
  font-weight: 400;
  color: var(--black);
	line-height: 0.9;
  text-shadow: 4px 4px 0 var(--white);
  text-wrap: balance;
  margin: 0 0 25px;
}
  h1 span {
    color: var(--blue);
    text-shadow: 3px 3px 0 var(--black);
    letter-spacing: 3px;
  }
h2 {
  font-family: var(--heading);
  font-size: clamp(3.75rem, 3.3172rem + 1.194vw, 4.75rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1;
  letter-spacing: 1px;
  text-wrap: balance;
  margin: 0 0 30px;
}
  h2.small {
    font-size: clamp(2.75rem, 2.4254rem + 0.8955vw, 3.5rem);
  }
h3 {
  font-family: var(--text);
  font-size: clamp(1.75rem, 1.5336rem + 0.597vw, 2.25rem);
  font-weight: 800;
  color: var(--lightblue);
  line-height: 1.1;
  margin: 0 0 30px;
}
p a {
  font-weight: 700;
  text-decoration: 1px underline dotted;
}
@media screen and (max-width: 580px) {
  h1,h2,h3,h4,h5,h6 {
    word-break: break-word;
  }
}

/* default link styles */

a {
  color: var(--pink);
  text-decoration: none;
  text-decoration-skip-ink: auto;
	transition: var(--transition-normal);
}
.main a[target="_blank"]:after {
  position: relative;
  top: -2px;
  content: '\f08e';
  font-family: var(--icons);
  margin: 0 0 0 5px;
  font-size: 0.7rem;
}
a:hover,
a:focus {
  color: var(--sunset);
  text-decoration: none;
}
@media screen and (max-width: 400px) {
	a {
    word-break: break-word;
  }
}

/* default element styles */

.container {
  position: relative;
  width: auto;
  max-width: 1440px;
  padding: 0 40px;
  margin: 0 auto;
}
.main:after {
  content: '';
  clear: both;
  display: table;
}
.main ul {
  list-style: outside disc;
  margin: 0 0 40px 20px;
}
  .main ul ul {
    list-style: outside circle;
  }
.main ol {
  list-style: outside decimal;
  margin: 0 0 40px 20px;
}
hr {
  width: 100%;
  height: 1px;
  color: #D7D7D7;
  background: #D7D7D7;
  border: 0;
  padding: 0;
  margin: 50px 0;
}
.blue-bg hr {
  color: var(--white);
  background: var(--white);
  opacity: 0.3;
}
  hr::after {
    content: '';
    clear: both;
    display: table;
  }
.alignleft {
  float: left;
  margin: 0 40px 40px 0;
}
.aligncenter {
  float: none;
  margin: 0 auto 40px;
}
  .aligncenter > img {
    margin: 0 auto;
  }
.alignright {
  float: right;
  margin: 0 0 6vh 4vw;
}
.wp-block-image figcaption {
  font-size: 14px;
  font-style: italic;
}
.centered {
  grid-column: 1 / -1;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin: 0 0 40px;
}
.alignleft,
.aligncenter,
.alignright,
embed,
iframe,
object {
  max-width: 100%;
}
embed,
iframe,
object {
  display: block;
  margin: 0 auto;
}
.to-top-btn {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  font-size: 22px;
  color: var(--white);
  text-align: center;
  background: var(--blue);
  border-radius: 50%;
  border: 3px solid var(--white);
  transition: var(--transition-fast);
}
#topcontrol {
  z-index: 10;
}
	.to-top-btn:hover,
  .to-top-btn:focus {
    background: var(--pink);
	}
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  min-height: 56px;
  font-family: var(--text);
  font-size: clamp(0.9375rem, 0.8125rem + 0.2604vw, 1.125rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  background: var(--yellow);
  border-radius: 12px;
  border: 3px solid var(--yellow);
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
}
.button.pink {
  color: var(--white);
  background: var(--pink);
  border: 3px solid var(--pink);
}
  .button:hover,
  .button:focus {
    color: var(--black);
    background: var(--black);
    border: 3px solid var(--black);
  }
  .button.pink:hover,
  .button.pink:focus {
    color: var(--white);
    background: var(--black);
    border: 3px solid var(--black);
  }
  .button:after {
    position: relative;
    top: 1px;
    content: '\f178';
    font-family: var(--icons);
    margin-left: 6px;
  }
@media screen and (max-width: 1200px) {
	img {
	  width: 100%;
	  height: auto;
	}
	.attachment-post-thumbnail {
	  max-width: 100%;
	  height: auto;
	}
}
@media screen and (max-width: 1024px) {
	.alignleft,
  .aligncenter,
  .alignright {
    float: none;
    display: block;
    width: 100%;
    margin: 0 auto 60px;
  }
  picture.alignleft img,
  picture.aligncenter img,
  picture.alignright img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
@media screen and (min-width: 1025px) {
	.slide-up {
    position: relative;
	  top: 90px;
	  opacity: 0;
	}
	.slide-up.in-view {
	  animation: slideUp 1s 1 ease-out forwards;
	}
    .slide-up.delayed.in-view {
      animation-delay: 200ms !important;
    }
    .slide-up.delayed-02.in-view {
      animation-delay: 400ms !important;
    }
    .slide-up.delayed-03.in-view {
      animation-delay: 600ms !important;
    }
    .slide-up.delayed-04.in-view {
      animation-delay: 800ms !important;
    }
  .blur-in {
	  opacity: 0;
	}
	.blur-in.in-view {
	  animation: blurIn 750ms 1 ease-out forwards;
	}
  .slide-up.blur-in.in-view {
	  animation: blurIn 750ms 1 ease-out forwards, slideUp 1s 1 ease-out forwards;
	}
  .fade-in {
    filter: blur(4px);
	  opacity: 0;
	}
	.fade-in.in-view {
	  animation: fadeIn 1s 1 ease-out forwards;
	}
  .fade-in.delayed.in-view {
    animation-delay: 200ms;
	}
  .fade-in.delayed.in-view.more {
    animation-delay: 400ms;
	}
  .fade-in.delayed.in-view.most {
    animation-delay: 600ms;
	}
	@keyframes slideUp {
		0% {
      filter: blur(5px);
		  top: 90px;
		  opacity: 0;
		}
    40% {
		  top: 70px;
		  opacity: 0;
		}
		100% {
      filter: blur(0px);
		  top: 0;
		  opacity: 1;
		}
	}
  @keyframes fadeIn {
		0% {
      filter: blur(4px);
		  opacity: 0;
		}
		100% {
      filter: blur(0);
		  opacity: 1;
		}
	}
  @keyframes blurIn {
		0% {
		  filter: blur(6px);
      opacity: 0;
		}
		100% {
		  filter: blur(0px);
      opacity: 1;
		}
	}
}
@media screen and (max-width: 580px) {
  .to-top-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .container {
    padding: 0 20px;
  }
}

/* main content styles */

.main {
  position: relative;
  z-index: 9;
  padding: 80px 0;
}
.main.bordered {
  border-top: 5px solid var(--black);
  border-bottom: 5px solid var(--black);
}
.main.comic-bg:before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: url('../images/comic-dots-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.yellow-bg {
  background-color: var(--yellow);
}
.blue-bg {
  background-color: var(--blue);
}
.white-text {
  color: var(--white);
}
.main p,
.main ul,
.main ol {
  margin-bottom: 30px;
}
.centered-text {
  text-align: center;
}
@media screen and (min-width: 1201px) {
  .main {
    padding: 80px 0;
  }
}

/* landing page styles */

#landing-hero {
  position: relative;
  padding: 20px 0 0;
}
#landing-hero .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "text ."
  "form form";
}
#landing-hero .custom-logo-link {
  display: block;
  width: 315px;
  height: 73px;
  margin-bottom: 70px;
}
#landing-hero .hero-text {
  grid-area: text;
  position: relative;
  z-index: 9;
  max-width: 38vw;
  padding-bottom: 40px;
}
#landing-hero .hero-text h2 {
  font-family: var(--text);
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
}
  #landing-hero .hero-text h2 strong {
    font-weight: 600;
  }
#landing-hero .hero-image {
  position: absolute;
  z-index: 0;
  bottom: 23%;
  right: 0;
  display: block;
  width: 830px;
  height: 625px;
}
#landing-hero + .main {
  position: relative;
  top: -60px;
  padding-top: 130px;
  margin-bottom: -60px;
}
@media screen and (max-width: 1024px) {
  #landing-hero .hero-image {
    width: 610px;
    height: 465px;
    bottom: 28%;
  }
  #landing-hero .hero-text {
    max-width: none;
    padding-bottom: 40px;
  }
  #hero-form .gfield--type-email {
    width: 220px !important;
  }
}
@media screen and (max-width: 1023px) {
  #landing-hero .container {
    grid-template-columns: 1fr;
    grid-template-areas: "text"
    "form";
    text-align: center;
  }
  #landing-hero .hero-image {
    width: auto;
    height: auto;
    bottom: auto;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
  }
  #landing-hero .hero-text {
   min-height: 46vh;
   align-items: center;
  }
  #landing-hero .hero-text h1,
  #landing-hero .hero-text h2 {
   background: var(--white);
   padding: 10px 15px;
   transform: rotate(356deg) skew(-2deg);
  }
  #landing-hero .hero-text h1 {
   margin-top: 180px;
  }
  #hero-form .gform-theme--foundation .gform_fields {
    flex-wrap: wrap;
    text-align: left;
  }
  #hero-form .gfield--type-email {
    width: 100% !important;
  }
  #hero-form #field_2_3,
  #hero-form #field_2_4 {
    width: calc(50% - 5px);
  }
  #hero-form #input_2_3,
  #hero-form #input_2_4 {
    max-width: 100%;
  }
}
@media screen and (max-width: 580px) {
  #landing-hero .custom-logo-link {
    width: 185px;
    height: 43px;
    margin-bottom: 0;
  }
  #landing-hero .hero-text h1 {
    margin-top: 220px;
    margin-bottom: 0;
    padding-top: 30px;
  }
  #landing-hero .hero-text h2 {
    margin-bottom: 0;
    transform: none;
  }
}

/* hero form styles */

#hero-form {
  grid-area: form;
  position: relative;
  z-index: 10;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  padding: 30px 20px;
  background: var(--pink);
  border: 5px solid var(--black);
  border-radius: 20px;
}
  #hero-form > h2 {
    font-family: var(--text);
    font-size: 32px;
    font-weight: 500;
    color: var(--yellow);
    letter-spacing: 0;
    text-align: center;
    margin: 0 0 10px;
  }
  #hero-form > h2 strong {
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
  }
  #hero-form > p {
    font-size: 14px;
    color: #FEA2CD;
    text-align: center;
    margin: 0 0 20px;
  }
#hero-form .gform-theme--foundation .gform_fields {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#hero-form .gfield--type-email {
	width: 360px;
}
#hero-form .gfield--type-select {
	grid-column: span 2;
}

/* homepage privacy policy link */
p#privacy-notice {
    margin: 20px 0 0 0;
}

p#privacy-notice a {
    color: #dadada;
    font-weight: 400;
}

/* numbered cards */

.numbered-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 20px 0 0;
}
  .numbered-cards .card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .numbered-cards .card:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 20px;
    left: 69%;
    width: 300px;
    height: 82px;
    background: url(../images/dotted-arrow.png) no-repeat center center;
    background-size: contain;
  }
  .numbered-cards .card:nth-child(odd):after {
    transform: scaleY(-1) rotate(-7deg);
  }
  .numbered-cards .card:nth-child(even):after {
    transform: rotate(-7deg);
  }
  .numbered-cards .card:last-child:after {
    display: none;
  }
  .numbered-cards .card div {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .numbered-cards .number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    padding-right: 5px;
    background: var(--blue);
    border: 5px solid var(--white);
    border-radius: 50%;
    font-family: var(--heading);
    font-size: 80px;
    color: var(--white);
    line-height: 120px;
    text-align: center;
  }
  .numbered-cards h3,
  .numbered-cards p {
    margin-bottom: 0;
  }
@media screen and (max-width: 1023px) {
  .numbered-cards .card:after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .numbered-cards {
    grid-template-columns: 1fr;
  }
}

/* image cards */

.image-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: baseline;
  padding: 30px 0 0;
}
.image-cards.comic-style {
  margin-bottom: 60px;
}
  .image-cards .card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
    .image-cards .card .image {
      position: relative;
      display: flex;
      border: 4px solid var(--black);
      border-radius: 20px;
      margin-bottom: 10px;
      overflow: hidden;
    }
      .image-cards.comic-style .card .image {
        width: 100%;
        height: 274px;
        border: 0;
        border-radius: 0;
      }
    .image-cards .card .image:after {
      content: '';
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: url(../images/comic-dots-small.png) no-repeat center center;
      background-size: cover;
      opacity: 0.15;
    }
      .image-cards:not(.comic-style) .card .image:after {
        mix-blend-mode: overlay;
      }
      .image-cards.comic-style .card .image:after {
        background: url(../images/comic-bubble-outline.png) no-repeat center center;
        background-size: cover;
        opacity: 1;
      }
    .image-cards:not(.comic-style) .card .image img {
      border-radius: 0;
      filter:
      saturate(1.6)
      contrast(1.1)
      sepia(0.3);
    }
      .image-cards.comic-style .card .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
  .image-cards .card * {
    margin: 0;
  }
  .image-cards.comic-style h3 {
    font-size: clamp(1.5rem, 1.3377rem + 0.4478vw, 1.875rem);
  }
@media screen and (max-width: 1200px) {
  .image-cards.comic-style {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-cards.comic-style .card .image {
    height: 360px;
  }
  .image-cards.comic-style .card .image:after {
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 768px) {
  .image-cards,
  .image-cards.comic-style {
    grid-template-columns: 1fr;
  }
  .image-cards.comic-style {
    padding: 0;
  }
  .image-cards.comic-style .card .image {
    width: 100%;
    max-width: 500px;
  }
  .image-cards .card .image img {
    max-height: 300px;
    object-fit: cover;
  }
}

/* cloud divider */

.cloud-bg {
  padding-bottom: 400px;
}
  .cloud-bg + .main {
    padding-top: 30px;
  }
.cloud-bg:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 400px;
  background: url(../images/cloud-bg-01.png) no-repeat top left;
  background-size: cover;
}

/* faqs */

.faqs {
  text-align: left;
  padding: 10px 0 0;
  column-count: 2;
  column-gap: 80px;
}
  .faqs .q-and-a {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .faqs h3 {
    font-size: clamp(1.25rem, 1.1418rem + 0.2985vw, 1.5rem);
    margin: 0 0 10px;
  }
  .faqs p {
    font-size: clamp(1rem, 0.9459rem + 0.1493vw, 1.125rem);
    margin: 0;
  }
@media screen and (max-width: 768px) {
  .faqs {
    column-count: 1;
    column-gap: 30px;
  }
}

/* landing footer */

#landing-footer {
  padding-top: 50px;
  padding-bottom: 50px;
}
  #landing-footer h3 {
    margin: 0 0 5px;
  }
  #landing-footer p:not(.copyright) {
    font-size: clamp(1.25rem, 1.1418rem + 0.2985vw, 1.5rem);
    margin-bottom: 30px;
  }
  #landing-footer hr {
    margin: 40px 0 30px;
  }
  #landing-footer p.copyright {
    font-size: 15px;
    color: var(--grey);
    margin-bottom: 0;
  }