/*********************************************************************
for styling only

*********************************************************************/

@import url('https://fonts.googleapis.com/css?family=Lato:300,400,900');



/*----------------------- Color Variables ------------------------------ */

:root {
  --default-base: #262626;
  --default-light: #666666;
  --default-ultralight: #EEEEEE;
  --default-dark: #000;
  --hard-base: #E33030;
  --hard-light: #f76d6d;
  --hard-dark: #802a2a;
  --soft-base: #278f94;
  --soft-light: #8bc7cc;
  --soft-dark: #1a5b61;
}

/* rename colors to: default = grey, hard = red, soft for green


/*----------------------- General ------------------------------ */

body, input {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-weight: 300;
  color: #262626;
}

p {
  line-height: 1.5em;
}

/*should go to main-position.css*/

p + p, ul + p {
  margin-top: 1em;
}
/*p + ul {
  margin-bottom: 0 !important;
}*/

a, a:visited {
  color: #278f94;
  font-weight: 300;
  text-decoration: none;
  border-bottom: 1px solid #278f94;
}
a:hover {
  color: #8bc7cc;
  border-bottom: 1px solid #8bc7cc;
}

.block__content a.link-box, .block__content a.link-box:visited, .block__content a.link-box:hover {
  border: none;
}

b, optgroup, strong {
  font-weight: 900;
}

h1 {
  font-size: 2em;
  font-weight: 900;
  letter-spacing: 0.04em;
}

h2 {
  font-size: 2em;
  font-weight: 300;
  letter-spacing: 0.04em;
}

h3 {
  font-size: 1.25em;
  font-weight: 900;
  letter-spacing: 0.04em;
}

h4 {
  font-size: 1.25em;
  font-weight: 300;
  letter-spacing: 0.04em;
}

h5 {
  font-size: 1em;
  font-weight: 900;
  letter-spacing: 0.04em;
}

h6 {
  font-size: 1em;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/*ul, ol {
  margin-left: 1.25em;
}*/



/*----------------------- Navigation ------------------------------ */

#navigation .nav__links li {
  list-style: none;
  list-style-type: none;
}

#navigation .nav__links a {
  text-decoration: none;
  border: none;
  font-weight: 300;
  color: #278f94;
  /*line-height: 1.8em;*/
}

#navigation .nav__links a:hover {
  color: #8bc7cc;
  border: none;
}

#navigation .nav__title-text {
  color: #E33030;
}

#navigation .nav__toggle {
  color: #278f94;
}

#navigation .nav__toggle:hover {
  color: #8bc7cc;
}

#navigation a.active {
  font-weight: 900;
}



/*----------------------- Content ------------------------------ */

[class*="col"] .border {
  padding: 0.5em;
  height: 100%;
  border: 2px solid #E33030;
}
#content h1, #content h2, #content h3 {
  margin: 0 0 0.5em 0;
}
#content h4, #content h5, #content h6 {
  margin: 0 0 0.5em 0;
}
#content p {
  margin-bottom: 1em;
}

.banner {
  text-align: center;
  padding: 1.5em;
}

/* list styling */

#content ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  line-height: 1.5em;
}
#content li {
  padding-left: 1em;
  text-indent: -1em;
}

#content li:before {
  content: "▹";
  font-size: 1em;
  padding-right: 0.5em;
  vertical-align: +10%;
  color: #E33030;
}

/* knowledge base styles */
.kb__title {}

.kb__list li a {
  border: none;
}


/*----------------------- Secondary Elements ------------------------------ */
code {
  color: #262626;
}

pre {
  overflow: auto;
  margin: 1em 0;
  padding: 1em 1em;
  background-color: #EEEEEE;
}

p code {
  padding: 0.2em 0.4em;
  white-space: nowrap;
  font-size: 90%;
  background-color: #EEEEEE;
}

hr {
  box-sizing: content-box;
  width: 100%;
  margin: 3em 0 3em 0;
  border: 1px solid #f3f3f3;
}



/*----------------------- Color Boxes ------------------------------ */

.block--color-hard {
  color: white;
  background-color: #E33030;
}
.block--color-soft {
  color: white;
  background-color: #278f94;
}


.text-hard {
  color: #E33030;
}

.text-soft {
  color: #278f94;
}


.box-blend {
  background-blend-mode: soft-light;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


/*----------------------- Buttons ------------------------------ */

.button {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-weight: 300;
  padding: 0.5em;
  display: inline-block;
  border: none;
  border-radius: 0px;
}


.button.button-large {
  padding: 0.5em;
  font-size: 1.25em;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.button:hover {
  -webkit-box-shadow: 2px 2px 0px 0px #802a2a;
  -moz-box-shadow: 2px 2px 0px 0px #802a2a;
  box-shadow: 2px 2px 0px 0px #802a2a;
}

a.button--link {
  text-decoration: none;
  border: none;
  color: inherit;
}




/*----------------------- Form ------------------------------ */

.text-field {
  margin: 0.5em 0;
  padding: 0.5em;
  border: 1px solid #262626;
  max-width: 100%;
  width: 100%;
}

/* form {
  margin-top: 2em;
} */

form .form-field {
  padding-bottom: 1em;
}

form .form-field .form-label {
  padding-bottom: 0.25em;
}

form .form-field input[type=text] {
  margin: 0.5em 0;
  padding: 0.5em;
  border: 1px solid #262626;
  max-width: 100%;
  width: 100%;
}

form .form-field input[type=email] {
  margin: 0.5em 0;
  padding: 0.5em;
  border: 1px solid #262626;
  max-width: 100%;
  width: 100%;
}

/* form .form-input-wrapper input {
  padding: 0.5em;
  border: 1px solid #262626;
} */
