/* Theme base styles */

@import url(https://use.typekit.net/mwm5qhe.css);

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/


*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  background:#ffffff;
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin & padding in all browsers.
 */

/*body {
  margin: 0;
}*/
body,
html {
  padding: 0;
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
select, textarea {
  width:100% !important;
  padding:.75rem .5rem;
  border: 0;
}
select {
  height:48px; 
  background-color: #ffffff;
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  
  padding:0 !important;
  max-width: none !important;
  margin: 0 auto !important;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}


/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/


/* CSS variables */

:root {
  --column-gap: 2.13%;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}


/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/


* {
  font-family: "Soleil","Open Sans",sans-serif;
}
body {
  line-height: 1.4;
  overflow-wrap: break-word;
  
  color:#808080;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
  color: #808080;
}

/* Anchors */

a {
  cursor: pointer;
}
main a {
  color: #0675CD;
}
main a:hover {
  color: #135193;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
li::marker {
  color:#808080;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
input[type=submit] {
  background: #78B64F;
  color: #ffffff;
  border: 2px solid transparent;
  padding: 1rem 2rem;
  margin: auto;
  width: 60%;
  max-width: 290px;
  cursor: pointer;
  font-weight:bold;
  display:block;
  text-transform: uppercase;
}
input[type=submit]:hover {
  background: #ffffff;
  color: #78B64F;
  border: 2px solid #78B64F;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
form {
  color: #4C4C4C;
}
.input textarea,
.input input[type=text], 
.input input[type=password], 
.input input[type=datetime], 
.input input[type=datetime-local], 
.input input[type=date], 
.input input[type=month], 
.input input[type=time], 
.input input[type=week], 
.input input[type=number], 
.input input[type=email], 
.input input[type=url], 
.input input[type=search], 
.input input[type=tel], 
.input input[type=color] {
  background: white;
  border: none;
  
  height: 48px;
  
  padding:.75rem .5rem;
  width: 100% !important;
}
.input textarea {
  height:auto;
}
.input textarea:focus-visible,
.input input[type=text]:focus-visible, 
.input input[type=password]:focus-visible, 
.input input[type=datetime]:focus-visible, 
.input input[type=datetime-local]:focus-visible, 
.input input[type=date]:focus-visible, 
.input input[type=month]:focus-visible, 
.input input[type=time]:focus-visible, 
.input input[type=week]:focus-visible, 
.input input[type=number]:focus-visible, 
.input input[type=email]:focus-visible, 
.input input[type=url]:focus-visible, 
.input input[type=search]:focus-visible, 
.input input[type=tel]:focus-visible, 
.input input[type=color]:focus-visible {
  outline: #78B64F solid 1px;
}
.input input[type=checkbox] {
  cursor: pointer;
  position:relative;
  appearance: none;
}
.input input[type=checkbox]:before {
  content:'';
  height:16px;
  width: 16px;
  display: block;
  background: #ffffff;
  border: 1px solid #135193;
}
.input input[type=checkbox]:checked:after {
  content:'';
  height:12px;
  width: 12px;
  display: block;
  background: #0675CD;
  position:absolute;
  top:2px;
  left:2px;

}

form label {
  margin-bottom: 10px;
  display: block;
  text-transform:uppercase;
  padding-top:.5rem;
}
form .legal-consent-container * {
  font-size:.75rem;
  color:#808080;
}
form .legal-consent-container a {
  color: #0675CD;
}
form .legal-consent-container a:hover {
  color: #135193;
}

.inputs-list {
  margin:0;
  padding:0;
  list-style:none;
}
form .legal-consent-container label {
  display: flex;
  
  align-items: flex-start;
  text-transform:initial;
  padding-top: 0;
}
.input input[type=checkbox] + span {
    margin-left: 10px;
}

form .legal-consent-container .field.hs-form-field {
    margin-top: 20px;
}
form ul[role=checkbox] {
  padding: 0;
}
form li[role=radio]::marker {
  content:none
}
form li[role=radio] input {
  margin-right: .5rem;
}
form .hs-error-msg {
  color: red;
  font-size: .8rem;
  text-transform: none;
}
form .hs-error-msg:before {
    content: '';
    height: 24px;
    width:2px;
    background:red;
    display: inline-block;
    margin-right: .75rem;
}
form legend {
  padding-bottom: .75rem;
  margin-top: -.5rem;
}
.hs-dependent-field + .hs-submit {
    padding-top: 3rem;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
footer {
  position: relative;
  width: 100%;
  background-color: #0675cd;
  z-index: 9;
}
.container--footer {
  margin: auto;
  padding: 1em 1em 1em 100px;
  color:#ffffff;
}
.container--footer svg {
  fill:#ffffff !important;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
header {
  width: 100%;
  height: 100px;
  position:relative;
  z-index:2;
}
.header-margin {
  flex: 1 0 40%;
}
.header-left {
  background: #0675cd;
  flex:auto;
}
.header-spacer {
  width: 100%;
  max-width: 580px;
  flex:auto;
}

.logo-container {
  display: flex;
  /*flex: 1 0 60%;*/
  flex:1;
  /*justify-content: flex-end;*/
  justify-content: flex-start;
  width: 100%;
  max-width: none;
}
.logo {
  background-color: #0675cd;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  flex: auto;
  /*justify-content: flex-end;*/
  justify-content: flex-start;
}

.logo img {
  max-width: 154px;
}
.container--header {
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: stretch;
  margin: auto;
  width: 100%;
  /*z-index: 2;*/
}


/* Utilities
Helper classes with ability to override anything that comes before it
*/

