@import url('https://fonts.googleapis.com/css?family=Ubuntu+Condensed&display=swap');
:root {
    --footer-text-size: 0.6em;
    --video-w: 95%;
    --font-size-p-cookie: 0.6em;
    --font-size-h2-cookie: 0.8em;
    --font-size-modal-title: 0.8em;
    --font-size-modal-body-h3: 0.7em;
    --font-size-modal-body-p: 0.6em;
    --padding-modal-content: 5px;
    --w-modal-content: 95%;
    --margin-left-modal-title: 40px;
    --logo-w: 50px;
    --font-size: 1em;
    --margin-left-form: -20px;
    --margin-right-form: 10px;
    --form-control-h: 34px;
    --font-size-h1: 1.7em;
    --font-size-panel: 1em;
    --margin-right-panel: 15px;
    --font-h1-header: 1.7em;
    --font-h2-header: 1.1em;
    --color-red: #e9321e;
    --color-blue: #2f4c8e;
    --color-black: #333;
}
.big-screen-only {
    display: none;
}
/*
@media screen and (min-width: 480px) and (min-height: 400px) {
    :root {
         
    }
}*/
@media screen and (max-width: 999px) {
    :root {
        --overlay-w: 0;
        --overlay-h: 0;
        --font-h1-header: 1.3em;
        --font-h2-header: 0.6em;
    }
    header {
        margin-top: 40px;
        margin-left: -15px;
    }
    .main-content, .footer {
        margin-left: -15px;
    }
    .wistia_responsive_padding, .faq-small-margin, .small-30 {
        margin-left: -30px;
    }
    .input-group-lg, .flash {
        margin-left: 30px;
    }
    .btn-lg {
        margin-left: 15px;
    }
}
@media screen and (min-width: 640px) and (min-height: 400px) {
    :root {
        --video-w: 80%;
        --font-size-p-cookie: 0.8em;
        --font-size-h2-cookie: 1.1em;
        --font-size-modal-title: 1.1em;
        --font-size-modal-body-h3: 1em;
        --font-size-modal-body-p: 0.8em;
        --padding-modal-content: 10px;
        --w-modal-content: 80%;
        --margin-left-modal-title: 10px;
        --logo-w: 80px;
        --font-size: 1.2em;
        --margin-left-form: -15px;
        --margin-right-form: -15px;
        --form-control-h: 46px;
        --font-size-h1: 1.9em;
        --font-size-panel: 1.2em;
        --margin-right-panel: 0px;
    }
}
@media screen and (min-width: 1000px) {
    :root {
        --overlay-w: 14%;
        --overlay-h: 39px;
        --overlay-bottom: 4px;
        --padding-modal-content: 20px;
        --font-size-modal-title: 1.3em;
        --font-size-modal-body-h3: 1.1em;
        --font-size-modal-body-p: 1em;
        --padding-modal-content: 10px;
        --w-modal-content: 80%;
        --margin-left-modal-title: 10px;
    }
}
@media screen and (min-width: 1080px) and (min-height: 400px) {
    :root {
        --video-w: 1080px;
        --video-h: 608px;
        --overlay-w: 12.5%;
        --overlay-bottom: 0;
    }
}

* {
    font-family: Ubuntu, sans-serif;
    box-sizing: border-box;
}
html, body {
	width: 100vw;
	height: 100vh;
	font-size: var(--font-size);
    overflow-x: hidden;
}
h1 {
    font-size: var(--font-size-h1);
}
.container {
    width: 100%;
    height: 100vh;
    max-width: 2000px;
    margin: 0 auto;
    display: grid;
    grid-template-areas:
        "header"
        "main"
        "footer";
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100vw;
    /*grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
}
.header,
.main-content,
.footer {
    width: 100vw;
    text-align: center;
}
.header {
    grid-area: header;
    z-index:999;
}
.header h1, .header h2 {
    text-transform: uppercase;
}
.header h1 {
    color: var(--color-blue);
    font-size: var(--font-h1-header);
}
.header h2 {
    font-size: var(--font-h2-header);
    color: var(--color-black);
}
.main-content {
    grid-area: main;
    margin-left: 0;
}
.wistia_responsive_padding {
    max-width:var(--video-w);
}
.wistia_responsive_wrapper {
    height:var(--video-h)!important;
}
.overlay {
    position:absolute;
    bottom:var(--overlay-bottom);
    right:0;
    background:transparent;
    width:var(--overlay-w);
    height:var(--overlay-h);
}
.flash {
    display: none;
    justify-content: center;
    color: #a94442;
    background-color: #f2dede;
    border: 1px solid;
    border-color: #ebccd1;
    padding:5px 10px;
}
/* form */
.form-horizontal .form-group {
    margin-left: var(--margin-left-form);
    margin-right: var(--margin-right-form);
}
.form-control {
  height: var(--form-control-h)!important;
}
.form-title {
    text-transform: uppercase;
    color: var(--color-blue);
}
.getmodal {
    cursor: pointer;
    text-decoration: underline;
    transition: all 0.3s;
}
.getmodal:hover {
    text-decoration: none;
}
.cookiediv {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid #666;
    box-shadow: 1px 1px 3px #666;
    padding: 1em;
}
.cookiediv h2 {
    font-size: var(--font-size-h2-cookie);
}
.cookiediv p {
    font-size: var(--font-size-p-cookie);
}
.cookiediv .buttons {
    display: block;
text-align: center;
}
.cookiediv button {
    margin: 0 10px 0 10px;
}
.cookiediv .close {
    z-index: 999;
    color: #000;
    position: absolute;
    top: 10px;
    right: 10px;
}
.footer {
    grid-area: footer;
    padding-bottom:1em;
    border-top: 1px solid #ccc;
}
.faq {
    margin: 0 auto;
    display: grid;
    justify-items: center;
    width: 80vw;
}
.faq-q, .faq-a {
    display: block;
    border-radius: 10px;
    padding: 0.4em;
    color: white;
    text-align: left;
    font-size: 0.8em;
    font-weight: bold;
}
.faq-q {
    background: #E8321E;
    
}
.faq-a {
    margin-left: 1em;
    margin-bottom: 0.5em;
    background: #2E4B8E;
}
.logo {
    z-index: 98;
    position: absolute;
    top: 5px;
    left: 5px;
    max-width: var(--logo-w);
    max-height: var(--logo-w);
}
.panel {
    margin-right: var(--margin-right-panel);
}
.panel-title, 
.panel-body {
    font-size: var(--font-size-panel);
}
.panel-primary {
  border-color: #2E4B8E!important;
}
.panel-heading {
    background-color: #2E4B8E!important;
}

 /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: var(--padding-modal-content) auto; /* 15% from the top and centered */
  padding: var(--padding-modal-content);
  border: 1px solid #888;
  width: var(--w-modal-content); /* Could be more or less, depending on screen size */
}
.modal-title {
    margin-left: var(--margin-left-modal-title);
    font-size: var(--font-size-modal-title);
}
.modal-body p, .modal-body ul {
    font-size: var(--font-size-modal-body-p);
}
.modal-body h3 {
    font-size: var(--font-size-modal-body-h3);
}
#startnow {
    /*background-color: #1dcc5c!important;*/
    font-size: calc(var(--font-size) + 0.1em);
    font-weight: bold;
    box-shadow: 2px 2px 3px #666;
}
#startnow:hover {
    /*background-color: #1dcc4c!important;*/
    box-shadow:1px 1px 3px #666;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} 

.btn-modal {
    border: none;
    background: none;
    color: #000;
    cursor: pointer;
    text-decoration: underline;
    font-size: var(--footer-text-size);
}
.btn-modal:hover {
    text-decoration: none;
}
.getprivacy {
    cursor: pointer;
    text-decoration: underline;
}
.getprivacy:hover {
    text-decoration: none;
}

summary {
  font-size: var(--font-size);
  font-weight: 600;
  color: #2f4c8e;
  padding: 0.2em 0.6em;
  outline: none;
  text-align: left;
  cursor: pointer;
  position: relative;
}
summary:hover {
    background-color: #eee;
}
details[open] summary ~ * {
  animation: sweep .5s ease-in-out;
}
@keyframes sweep {
  0%    {opacity: 0; margin-top: -10px}
  100%  {opacity: 1; margin-top: 0px}
}
details {
    border: 1px solid #2f4c8e;
    margin-bottom: 1em;
}
details > summary::after {
  position: absolute;
  content: "+";
  right: 20px;
}
details[open] > summary::after {
  position: absolute;
  content: "-";
  right: 20px;
}
details > summary::-webkit-details-marker {
  display: none;
}
.faq__content > p {
    font-size: calc(var(--font-size) - 0.2em);
    padding: 0 0.3em;
    margin-bottom: 0.2em;
}
.faq-info {
    position: relative;
    top: -1.7em;
}

.copyright, .checkspan, .disclaimer {
    font-size: var(--footer-text-size);
}
