
/*
  TODO:

  ============

  Breakpoints based on Bootstrap
  xs: 0 :: sm: 576px :: md: 768px
  lg: 990px :: xl: 1200px :: xxl: 1400px

  ============

  1. Variables
    1a. Colors
  2. Base
  3. Containers / Grid / DND areas
  4. Typography
  5. Buttons
  6. Forms
  7. Tables
  8. Elements
  9. Components
  10. Global
  10a. Header
  10b. Footer
  11. System pages

  */

  /*==============================*/
  /* 1. VARIABLES */
  /*==============================*/
  :root {
    --primary: #174AEE;
    --primaryLight: #176DFF;
    --primaryDark: #1F1CC9;
    --secondary: #1E5633A;
    --dark: #252643;
    --light: #E9EDF8;

    /* Gradients */
    --primaryGradient: linear-gradient(201.77deg, #174AEE 52.41%, #1F1CC9 100.23%);

    /* Typography */
    --primaryFont:'Open Sans', sans-serif;
    --secondaryFont: 'Nunito Sans', sans-serif;
  }

  /*==============================*/
  /* 2. BASE */
  /*==============================*/
  *, *:before, *:after { /* Reset */
    box-sizing: border-box;
  }
  
  html, body {
    overscroll-behavior-y: none;
  }

  html {
    font-family: var(--primaryFont); /* Open Sans */
    font-size: 20px;
  }

/*==============================*/
/* 3. CONTAINERS */
/*==============================*/
body {
  background: var(--primary);
  color: #fff;
  min-width: 350px;
}

.container {
  min-height: 100vh;

  display: flex;
  flex-flow: column;
  justify-content: stretch;

  position: relative;
}

.flex-spacer {
  flex: 1;
}

.content {
  padding-left: 0px;
  padding-right: 0px;
}

.page-center {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 3.75rem;
  }

  .content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 992px) {
  .content {
    padding-left: 20px;
    padding-right: 200px;
  }
}
@media screen and (min-width: 1400px) {
  .content {
    padding-left: 0px;
    padding-right: 200px;
  }
}
/*==============================*/
/* 4. TYPOGRAPHY */
/*==============================*/


h1, h2, h3, h4, h5, h6 {
  font-family: var(--secondaryFont); /* Nunito Sans */
  color: #fff;
}

/* Anchors */

a {
color: var(--primary);
text-align: center;
font-weight: 600;
font-size: 0.95rem;
transition: 300ms;
}

a:hover,
a:focus {
color: var(--primaryDark);
}

a:active {
color: var(--primaryDark);
}

p {
  line-height: 140%;
}

/* Headings */

h1 {
  font-size: 4rem;
  line-height: 100%
}

h2 {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 110%
}

h3 {
  font-size: 2rem;
  font-family: var(--primaryFont); /* Open Sans */
}

h4 {
  /* color: var(--primary); */
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
  margin-bottom: 30px;
  text-align: center;
}

h6 {
  font-size: 1rem;
  text-transform: uppercase;
}
@media screen and (min-width:600px) {
  h2 {
    font-weight: 400;
    font-size: 2.25rem;
    line-height: 110%
  }
}

@media screen and (max-width: 599px) {
  h2 {
    padding-right: 50px;
  }
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 2rem;
    line-height: 100%;
  }
  p {
    font-size: .8rem
  }
h1,  p {
  text-align: center;
}
.footer {
  text-align: center;
}
}


/* Blockquote */

blockquote {
  border-left-color: var(--dark);
  color: var(--dark);
}


/*==============================*/
/* 5. BUTTONS */
/*==============================*/
  button,
  .button {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    white-space: normal;
    transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    text-decoration: unset
  }

  button:disabled,
  .button:disabled {
    background-color: #D0D0D0;
    border-color: #D0D0D0;
    color: #E6E6E6;
  }

  button,
  .button {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: .5rem;
    color: #fff;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    transition: 300ms;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -ms-transition: 300ms;
    -o-transition: 300ms;
    padding: .75rem 4rem
  }

  button:hover,
  button:focus,
  .button:hover,
  .button:focus {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
  }

  button:active,
  .button:active {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
  }

/*==============================*/
/* No button */
/*==============================*/

  .no-button,
  .no-button:hover,
  .no-button:focus,
  .no-button:active {
    background: none;
    border: none;
    border-radius: 0;
    color: initial;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    margin-bottom: 0;
    padding: 0;
    text-align: left;
    text-decoration: none;
    transition: none;
  }

/*==============================*/
/* 4. FORMS */
/*==============================*/


/*==============================*/
/* 10. GLOBAL */
/*==============================*/
/**** 10a. HEADER ****/
.header {
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  margin-top: 2rem;
  width: 200px;
  display: block;
  margin: auto;
}
.logo-tagline {
  position: relative;
  margin: 1rem;
}
.logo-tagline h4 {
  background: var(--primary);
  color: #fff;
  padding: .5em;
  margin: 0;
  text-align: center;
}

.header .button {
  font-size: 0.7rem;
  background: rgb(229, 99, 57);
  padding: 0.5rem 1rem;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 10px;
  border-radius: 6px;
}

@media screen and (min-width:577px) {
  .header .button {
    font-size: 0.8rem;
    background: rgb(229, 99, 57);
    padding: 0.5rem 1.5rem;
    position: relative;
  }
}

.header .button:hover {
  transform: translateY(-2px);
  background: rgb(236, 101, 56);
  box-shadow: 0  4px 8px 6px rgba(0,0,0,.1);
  color: #fff;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

.header > div {
  flex: 1;
  display: flex;
  align-items: center;
  justify-self: flex-start;
  justify-content: space-between;
}

.header .logo-wrapper {
  transform: translateY(5px);
}

@media screen and (min-width:577px) {
  .header > div {
    display: flex;
    align-items: center;
    justify-self: flex-start;
    justify-content: space-between;
  }
  .logo-tagline {
    position: relative;
    margin: -1rem 0 0 1rem ;
  }
}
@media screen and (max-width: 576px){
  .logo-tagline h4 {
    text-align: center;
  }

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

  .header .button {
    display: inline-block;
  }
}
/* 10.B FOOTER */
.copyright-wrapper {
  font-size: .65rem;
  color: #fff;
  background: rgba(37, 38, 67, 1);
  border-top: 2px solid rgba(0, 0, 0, 0.2);
}

.logo-footer {
  max-width: 150px;
}

@media screen and (min-width:990px) {
  .copyright-wrapper > .page-center{
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-self: flex-start;
    text-align: center;
  }
  .copyright-content-details {
    display: flex;
    align-items: center;
    font-size: .75rem
  }

  .logo-footer {
    max-width: 150px;
    margin: 0 1.5rem -.25rem 0;
  }
}

@media screen and (max-width: 990px) {
  .copyright-wrapper span {
    text-align: center;
    display: block;
    margin: .5rem auto 0 auto;
    font-size: .6rem
  }
  .container {
    justify-content: flex-start;
  }
}


.form {
  background: #fff;
  color: var(--dark);
  padding: 2rem 1.5rem;
  border-radius: 10px;
  max-width: 50%;
  min-width: 300px;
  box-shadow: 0.1rem 0.5rem 1.25rem 0.25rem rgb(0 0 0 / 20%);
  margin-bottom: 2rem;
}

.form h2 {
  color: var(--dark);
  font-size: 1.5rem;
  margin-top: 0;
}

#mc_embed_signup form {
  padding: 0 !important;
  font-size: 16px;
}

@media screen and (max-width:1200px) {
  .form {
    min-width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .form {
    margin-left: 15px;
    margin-right: 15px;
    min-width: calc(100% - 30px);
  }

}
.accent-graphics {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.accent-graphics svg {
  position: absolute;
}
.accent-graphics .graphic-1 {
  width: 20vw;
  min-width: 120px;
  height: auto;
  right:  5vw;
  top:  60vh;
}

.accent-graphics .graphic-2 {
  width: 50vw;
  bottom: -20vw;
  left: -20vw;
  opacity: .5;
  z-index: -1;
  /* transition: 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-transition: 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition: 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955); */
}

@media screen and (max-width: 600px) {
  .accent-graphics .graphic-1 {
    top: 10vh;
    min-width: 40vw;
    right: 0;
    opacity: .5;
  }
  .accent-graphics .graphic-2 {
    width: 80vw;
  }
}
.accent-graphics .graphic-1:hover {
  animation-duration: 600ms;
  animation-name: wiggle;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

#mc_embed_signup input[type="submit"].button {
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  position: relative;
  height: unset;
  font-family: var(--primaryFont);
  font-weight: bold;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}

input[type="submit"]:hover {
  transform: translateY(-2px);
  background:  var(--primaryDark);
  box-shadow: 0  4px 8px 6px rgba(0,0,0,.1);
  color: #fff;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

#mc_embed_signup {
  font-family: var(--primaryFont) !important;
}
#mc_embed_signup .mc-field-group label {
  font-size: 16px
}

@keyframes wiggle {
  from {
    transform: scale(1)  ;
    -webkit-transform: scale(1)  ;
    -moz-transform: scale(1)  ;
    -ms-transform: scale(1)  ;
    -o-transform: scale(1)  ;
}

  to {
    transform: scale(1.1)  ;
    -webkit-transform: scale(1.1)  ;
    -moz-transform: scale(1.1)  ;
    -ms-transform: scale(1.1)  ;
    -o-transform: scale(1.1)  ;
  }
}

/* DALK CHANGES */

.footer > .page-center {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: rgba(255,255,255,0.5);
  font-size: .75rem
}

.footer-content svg {
  opacity: 0.5;
}


@media screen and (max-width: 600px){
  .footer > .page-center {
    padding-bottom: 0.5rem;
  }
  .form {
    padding: 1.5rem 1.25rem;
  }

  .form h2 {
    text-align: left;
    font-size: 1rem;
  }
  .form p {
    text-align: left;
  }
  .form .button {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
  }
}

.footer-submit-button-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 15px;
}