/* Import stuff */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  src: url('../font/montserrat-v14-latin_latin-ext-200.eot'); /* IE9 Compat Modes */
  src: local('Montserrat ExtraLight'), local('Montserrat-ExtraLight'),
       url('../font/montserrat-v14-latin_latin-ext-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../font/montserrat-v14-latin_latin-ext-200.woff2') format('woff2'), /* Super Modern Browsers */
       url('../font/montserrat-v14-latin_latin-ext-200.woff') format('woff'), /* Modern Browsers */
       url('../font/montserrat-v14-latin_latin-ext-200.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../font/montserrat-v14-latin_latin-ext-200.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/* montserrat-regular - latin_latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../font/montserrat-v14-latin_latin-ext-regular.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Regular'), local('Montserrat-Regular'),
       url('../font/montserrat-v14-latin_latin-ext-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../font/montserrat-v14-latin_latin-ext-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../font/montserrat-v14-latin_latin-ext-regular.woff') format('woff'), /* Modern Browsers */
       url('../font/montserrat-v14-latin_latin-ext-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../font/montserrat-v14-latin_latin-ext-regular.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/* montserrat-500 - latin_latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../font/montserrat-v14-latin_latin-ext-500.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Medium'), local('Montserrat-Medium'),
       url('../font/montserrat-v14-latin_latin-ext-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../font/montserrat-v14-latin_latin-ext-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../font/montserrat-v14-latin_latin-ext-500.woff') format('woff'), /* Modern Browsers */
       url('../font/montserrat-v14-latin_latin-ext-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../font/montserrat-v14-latin_latin-ext-500.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/* montserrat-700 - latin_latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../font/montserrat-v14-latin_latin-ext-700.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Bold'), local('Montserrat-Bold'),
       url('../font/montserrat-v14-latin_latin-ext-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../font/montserrat-v14-latin_latin-ext-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../font/montserrat-v14-latin_latin-ext-700.woff') format('woff'), /* Modern Browsers */
       url('../font/montserrat-v14-latin_latin-ext-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../font/montserrat-v14-latin_latin-ext-700.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/**
 * Fix fonts that render as bold in Firefox
 *
 * Put this near the top of your style.css
 * Before any overriding styles
 */

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
}

/**
 * Firefox specific rule
 */

@-moz-document url-prefix() {
  body,input {
    font-weight: 500 !important;
  }
}
/* HTML DEFAULT CLASSES */
* {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: all cubic-bezier(.17,.84,.44,1) 0.4s;
  /* cursor: default; */
  box-sizing: border-box;
}

:root {
  /* COLORS BEGIN */
  --white: white;
  --darkBlue: #152d63;
  --lightBlue: #4873ff;
  --lighterBlue: #aad2ff;
  --darkGray: #222222;
  --semiDarkGray: #4e4e4e;
  --semiLightGray: #a0a0a0;
  --lightGray: #eeeeee;
  --redBright: #ff0000;
  --redLight: #ff7373;
  --transparent: #ffffff00;
  /* COLORS END */

  /* MARGINS BEGIN */
  --hugeMargin: 2em;
  --bigMargin: 1em;
  --smallMargin: 0.5em;
  --smallerMargin: 0.1em;
  /* MARGINS END */

  /* PADDINGS BEGIN */
  --giantPadding: 3em;
  --hugePadding: 2em;
  --bigPadding: 1em;
  --smallPadding: 0.5em;
  --smallerPadding: 0.1em;
  /* PADDINGS END */

  /* FONT SIZES BEGIN */
  --fontHeaderOne: 32px;
  --fontHeaderTwo: 28px;
  --fontHeaderThree: 22px;
  --fontHeaderFour: 18px;
  --fontParagraph: 15px;
  --fontLink: 14px;
  --fontLabel: 12px;
  --fontInput: 14px;
  /* FONT SIZES END */

  /* FONT WEIGHT BEGIN */
  --fontWeightLight: 200;
  --fontWeightRegular: 400;
  --fontWeightBold: 700;
  /* FONT WEIGHT END */

  /* LINE HEIGHT BEGIN */
  --bigLineHeight: 2.5;
  --smallLineHeight: 1.5;
  /* LINE HEIGHT END */

  /* BORDERS BEGIN */
  --borderRadiusSmall: 5px;
  --borderRadiusBig: 100px;
  /* BORDERS END */

  /* SHADOWS BEGIN */
  --shadowBig: 0px 11px 14px 0px #74747459;
  --shadowSmall: 0px 6px 20px 0px #58585852;;
  /* SHADOWS END */
}


body {
background-color: var(--white);
width: auto;
max-width: 1650px;
margin: 0 auto;
}

input, select, textarea {
display: inline-block;
padding: var(--smallPadding);
border-radius: var(--borderRadiusSmall);
border: 1px solid var(--darkGray);
}

textarea {
resize: none;
}

input:hover, select:hover,
textarea:hover {
cursor: pointer;
}

input:focus:hover, textarea:focus:hover {
cursor: text;
}

input:focus, select:focus,
textarea:focus {
border: 1px var(--lightBlue) solid;
box-shadow: var(--shadowSmall);
}

i {
margin-left: var(--smallMargin);
color: var(--semiDarkGray);
}

label {
display: block;
color: var(--semiDarkGray);
margin-bottom: var(--smallMargin);
margin-left: var(--smallMargin);
font-size: var(--fontInput);
}

[type="button"] {
background-color: var(--white);
padding: var(--bigPadding);
border-radius: var(--borderRadiusBig);
font-weight: var(--fontWeightBold);
color: var(--lightBlue);
border: 1px solid var(--lighterBlue);
}

[type="checkbox"]:hover {
cursor: pointer;
}
[type="text"],[type="password"]
{
  width:250px;
}
hr {
margin-bottom: 1em;
border: none;
border-style: solid;
border-color: var(--lightGray);
border-width: 1px;
}

h1, h2, h3, h4, .headerMain {
color: var(--darkBlue);
/* line-height: var(--bigLineHeight); */
font-weight: var(--fontWeightBold);
}

h1, .headerMain {
font-size: var(--fontHeaderOne);
}

h2 {
font-size: var(--fontHeaderTwo);
}

h3 {
font-size: var(--fontHeaderThree);
}

h4 {
font-size: var(--fontHeaderFour);
}

p {
font-size: var(--fontParagraph);
line-height: var(--smallLineHeight);
}

a {
font-size: var(--fontLink);
cursor: pointer;
}

a:hover {
cursor: pointer;
color: var(--lightBlue);
}

/* Mini classes */
.smallText {  font-size: var(--fontLabel);}
.heading {  margin-bottom: var(--smallMargin);}
.hidden { display: none;}
.vh {height: 90vh}
/* Flexbox */
.flex {  display: flex;}
.wrap {  flex-wrap: wrap;}
.left {  justify-content: left;}
.right {  justify-content: right;}
.centerJustify {  justify-content: center;}
.spaceBetweenJustify {  justify-content: space-between;}
.spaceAroundJustify {  justify-content: space-around;}
.centerAlign {  align-content: center;}
.centerAlignItems { align-items: center;}
.bottomAlignItems { align-items: baseline;}
.columnDirection { flex-direction: column;}
/* Grid */
.grid { display: grid;}

/* Buttons */
.primaryButton {
    background: var(--lightBlue);
    color: white;
    border: none;
    box-shadow: var(--shadowSmall);
}

.secondaryButton {
    box-shadow: var(--shadowSmall);
}

/* nav */
nav {
    margin: var(--bigMargin) auto 0;
    padding: 0 var(--bigPadding);
    width: auto;
}

nav img {
    height: 50px;
}

/* hero section */
.container {
grid-template-columns: 50% 50%;
grid-template-rows: 90vh calc(5vh - 50px);
/* grid-gap: var(--hugeMargin); */
margin: 0 auto;
width: auto;
}

.heroFirst h1 {
    padding-bottom: var(--smallPadding);
}

.heroFirst h3 {
    padding-bottom: var(--smallPadding);
}

.heroFirst p {
    padding-bottom: var(--hugePadding);
}

.heroSecond, .heroFirst, .bottomLogo {
    align-self: center;
    padding:0 2.5%;
}

.heroSecond .slide {
    width: 100%;
}

.heroBottom {
    grid-column: 1 / 3;
}

.email, .password {
    margin-bottom: var(--bigMargin);
}

.svg {
    position: absolute;
}

.first {
    top: 20%;
    left: 20%;
}

.second {
    top: 20%;
    left: 20%;
}

.third {
    top: 20%;
    left: 20%;
}
.textCenter
{
  text-align:center;
}
.containerWide
{
  height: 30vh;
  /* grid-gap: var(--hugeMargin); */
  margin: 0 auto;
  width: auto;
}
/* footer */
.bottomContainer
{
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: 25vh calc(5vh - 50px);
  /* grid-gap: var(--hugeMargin); */
  margin: 0 auto;
  width: auto;
}
.bottomContainer h4
{
  padding-bottom: var(--smallPadding);
}
.bottomContainer a
{
  text-decoration: none;
  color: var(--lightBlue);
}
.bottomContainer p
{
  padding-bottom: var(--bigPadding);
}
.bottomContainer img
{
  width:45%;
}
.footerContainer
{
  margin:var(--hugeMargin);
}
footer
{
  width: auto;
  margin: 0 auto;
  color: var(--semiDarkGray);
  text-align: center;
}
footer p
{
  margin: var(--hugeMargin);
}
/* password text and strength */
.blurb-wrapper
{
  flex-direction:column;
  width:75%;
  display:none;
  text-align:center;
  margin:0 auto;
}
.blurb-img
{
  height: 150px;
  width: 150px;
  background-image: url(../pix/ok.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}
.blurb-text-wrapper
{
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 50%;
}
.blurb-label
{
  font-size:18px;
}
.blurb-description
{
  font-size:14px;
}
.blurb-end
{
  font-size:14px;
  font-weight:bold;
}
.input-wrapper
{
  width:250px;
  height:40px;
}
.password-eye
{
  float: right;
  bottom: 31px;
  right: 4px;
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 2;
  background: url(../pix/eye.png);
  cursor:pointer;
}
.password-strength
{
  width:250px;
  padding-top: var(--smallPadding);
}
.password-bar, .password-bar-fill
{
  border-radius:10px;
  background-color:#444;
  height:5px;
  margin:3px 0;
}
.password-bar-fill
{
  background-color:#4caf50;
  width:0%;
  max-width: 100%;
}
.password-strength-text, .password-length
{
  font-size:10px
}
.password-length
{
  color:#740505;
}
#logo
{
  cursor:pointer;
}
@media screen and (max-width:1200px)
{
  .bottomContainer
  {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
  .container
  {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    padding:var(--hugePadding) var(--bigPadding);
  }
  .heroFirst, .heroSecond, .bottomLogo
  {
    padding-top:var(--giantPadding);
  }
  .heroFirst
  {
    grid-row: 1;
    display:flex;
    flex-direction: column;
  }
  .heroSecond
  {
    grid-row: 2;
    grid-column: 1;
  }
  .containerWide
  {
    height:auto;
    text-align: left;
    padding:var(--bigPadding);
  }
  [type="text"],[type="password"],.input-wrapper,.password-strength
  {
    width:100%;
  }
  .primaryButton
  {
    width:150px;
    margin: 0;
    align-self: center;
  }
  .secondaryButton
  {
    border:0;
    box-shadow: none;
  }
  h1
  {
    font-size:var(--fontHeaderThree);
  }
  nav > img
  {
    height:50px;
  }
  nav > *
  {
    padding:0 var(--smallPadding);
  }
}
@media screen and (max-width:1200px) and (min-width:480px)
{
  .heroFirst
  {
    display: flex;
  }
  [type="text"], [type="password"],.password-strength,.input-wrapper
  {
    width:250px;
  }

}
@media screen and (max-width:850px) and (min-width:480px)
{
  nav > img
  {
    height:40px;
  }
}
@media screen and (max-width:480px)
{
  nav > img
  {
    height:35px;
  }
}
/** pricing table **/
.wrapper
{
  grid-template-columns:repeat(3,calc(80vw/3));
  grid-template-rows:200px calc(60vh - 350px);
  margin:10vh 0;
  grid-column-gap:2em;
}
.wrapper img
{
  height:50px;
}
.header
{
  width: 90vw;
  margin: 0 auto;
  margin-top:5vh
}
.subHeader
{
  width: 90vw;
  margin: 0 auto;
}
.pricingTable,.prices
{
  justify-items: center;
  grid-gap: 0;
  grid-template-columns: repeat(3,calc(90vw/3));
  grid-template-rows: repeat(4,calc(60vh/4));
  margin: 0;
}
.prices
{
  grid-template-rows: 35px;
  border-top: 1px solid gray;
  align-items: center;
}
.loader-background{
  position:fixed;
  width:100vw;
  height:100vh;
  top:0;
  left:0;
  background-color:rgba(210, 213, 214, 0.397);
  z-index:100;
  display:flex;
  align-items: center;
  justify-content: center;
}
.rotator
{
  width: 120px;
  height: 120px;
  background-image: url(/pix/rotator2.gif);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  align-self: center;
}
