:root {
  --lightblue: #a8d0e6;
  --darkblue: #24305e;
  --orange: #f76c6c;
}

* {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

body {
  margin: 0px;
}

a {
  color: #0277bd;
}

a:hover {
  color: #24305e;
}

a:hover.white-text {
  color: #fff;
}

a:focus {
  color: inherit;
}

a.underline-links {
  font-size: 18px !important;
  font-size: inherit;
  text-decoration: underline;
  color: #0277bd;
}

a.underline-links:hover {
  color: #24305e;
}

button {
  background-color: transparent;
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.2rem;
  font-family: inherit;
  line-height: 1.3;
  color: inherit;
}

h1 {
  font-size: 1.75rem;
}

h2 {
  font-size: 18px;
}

h3 {
  font-weight: normal;
}

p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

label {
  margin: 0px;
}

.errorMessageBox {
  background: #ffecec url("/img/error.svg") no-repeat 10px 50%;
  border: 1px solid #f5aca6;
  border-radius: 10px;
  padding: 10px 10px 10px 36px;
  margin: 10px 0px;
  width: 100%;
}

.box-shadow {
  box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07);
}

.box-shadow-2 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}

.stripe {
  height: 70px;
  margin: -1px;
}

.homepage-stripe {
  height: 150px;
  margin: -1px;
}

.greyDesc {
  color: #697386;
}

.darkGreyDesc {
  color: #4f566b;
}

/* this will show on mobile */
.desktopPadding {
  padding: 0px;
}

/* this will show on normal */
@media (min-width: 768px) {
  .desktopPadding {
    padding: 15px;
  }
}

footer {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
  padding: 50px;
  background-color: var(--lightblue);
}

.footer > * {
  flex: 1 100%;
}

.footer-left > * {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer ul {
  list-style: none;
  padding-left: 0px;
}

.footer li {
  line-height: 1.4em;
}

.footer a {
  text-decoration: none;
}

.footer-right {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
}

.footer-right > * {
  flex: 1 50%;
  margin-right: 1.25em;
}

.box a {
  color: var(--darkblue);
}

.footer-bottom {
  text-align: center;
  color: #999;
  padding-top: 50px;
}

.footer-left p {
  padding-right: 20%;
  color: #999;
}

/*
.socials a{
  background:  var(--darkblue);
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 10px;
}

.socials a i{
  background:  var(--darkblue);
  padding: 10px 12px;
  font-size: 20px;
}
*/

@media screen and (min-width: 700px) {
  .footer-right > * {
    flex: 1;
  }

  .footer-left {
    flex: 1 0px;
  }

  .footer-right {
    flex: 2 0px;
  }
}

@media screen and (max-width: 700px) {
  .footer {
    padding: 15px;
  }
}

.is-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* this will show on mobile */
.twoColumnSqeeze-leftColumn {
  justify-content: center;
}

.twoColumnSqeeze-rightColumn {
  justify-content: center;
}

/* this will show on normal */
@media (min-width: 768px) {
  .twoColumnSqeeze-leftColumn {
    justify-content: end;
  }
  .twoColumnSqeeze-rightColumn {
    justify-content: start;
  }
}

/* on medium screens and up, show hover*/
@media (min-width: 576px) {
  .videoPlayPauseButton:hover {
    opacity: 1;
    cursor: pointer;
    transition: transform 0.2s;
    transform: scale(1.05);
  }
}

.scalePulse {
  animation: keyframes-scalePulse 1.5s ease-in-out 0.5s infinite;
}

@keyframes keyframes-scalePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
