/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */











































/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! 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 */
}

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

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

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * 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
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 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
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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%;
}

sup {
    font-size: 100%;
}
/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* 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 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: hidden;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

.dnd-section {
  padding: 80px 20px;
}
.content-wrapper,
.dnd-section > .row-fluid ,
.page-center,
.content-wrapper{
  margin-left:auto;
  margin-right:auto;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  src: url(https://6887309.fs1.hubspotusercontent-na1.net/hubfs/6887309/raw_assets/public/Moomin_Language_School_November2020/fonts/fa-brands-400.woff) format("woff"), 
    url(https://6887309.fs1.hubspotusercontent-na1.net/hubfs/6887309/raw_assets/public/Moomin_Language_School_November2020/fonts/fa-brands-400.ttf) format("truetype"), 
    url('https://6887309.fs1.hubspotusercontent-na1.net/hubfs/6887309/Moomin_Language_School_November2020/fonts/fa-brands-400.ttf');
}


@font-face {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  src: url(https://6887309.fs1.hubspotusercontent-na1.net/hubfs/6887309/raw_assets/public/Moomin_Language_School_November2020/fonts/fontello.woff) format("woff"), 
    url(https://6887309.fs1.hubspotusercontent-na1.net/hubfs/6887309/raw_assets/public/Moomin_Language_School_November2020/fonts/fontello.ttf) format("truetype"), 
    url('https://6887309.fs1.hubspotusercontent-na1.net/hubfs/6887309/Moomin_Language_School_November2020/fonts/fontello.eot');
}

@font-face {
  font-family: "flexslider-icon";
  font-style: normal;
  font-weight: normal;
  src: url(https://6887309.fs1.hubspotusercontent-na1.net/hubfs/6887309/raw_assets/public/Moomin_Language_School_November2020/fonts/flexslider-icon.woff) format("woff"), 
    url(https://6887309.fs1.hubspotusercontent-na1.net/hubfs/6887309/raw_assets/public/Moomin_Language_School_November2020/fonts/flexslider-icon.ttf) format("truetype"), 
    url('https://6887309.fs1.hubspotusercontent-na1.net/hubfs/6887309/Moomin_Language_School_November2020/fonts/flexslider-icon.eot');
}

@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  src: url(https://6887309.fs1.hubspotusercontent-na1.net/hubfs/6887309/raw_assets/public/Moomin_Language_School_November2020/fonts/fa-solid-900.woff) format("woff"), 
    url(https://6887309.fs1.hubspotusercontent-na1.net/hubfs/6887309/raw_assets/public/Moomin_Language_School_November2020/fonts/fa-solid-900.ttf) format("truetype"), 
    url('https://6887309.fs1.hubspotusercontent-na1.net/hubfs/6887309/Moomin_Language_School_November2020/fonts/fa-solid-900.eot');
}

@font-face {
  font-family: "MoominFont";
  src: url(https://6887309.fs1.hubspotusercontent-na1.net/hubfs/6887309/raw_assets/public/Moomin_Language_School_November2020/fonts/MoominFont.otf) format("otf"); 
  font-weight: normal;
  font-style: normal;
}

html {
  font-size: 62.5%;
}

body {
  font-family: Roboto ,sans-serif;
  font-size: 14px;
  color: #111;
  line-height: 18px;
  -webkit-font-smoothing: antialiased;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
@media (max-width: 1167px) and (min-width: 480px){
  body{
    line-height: 19px;
  }
}

@media (max-width: 479px){
  body{
    line-height: 1.5;
  }
}
p {
  padding: 0 0 30px 0;
  margin: 0;
}

@media (max-width: 799px){
  p{
    line-height:18px;
  }
}
/* Anchor Links */
a {
  color: #888888;
  text-decoration: none;
}


/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin:0;
  line-height: 1.2;
  font-weight: "MoominFont", 700;
  font-family: arial black, sans-serif;
  color: #5bc6cb;
}

h1 {
  font-size: 36px;
  line-height: 1;
  padding: 0 0 30px 0;
}

h2 {
  font-size: 32px;
  line-height: 1.125;
  padding: 0 0 40px 0;
}

h3 {
  font-size: 24px;
  line-height: 1.666667;
  font-weight:900;
  padding: 0 0 35px 0;
}

h4 {
  font-size: 18.6667px;
  line-height: 2.035;
  font-weight:700;
  padding: 0 0 30px 0;
}

h5 {
  font-size: 18.6667px;
  line-height: 1;
  font-weight:400;
  padding: 0 0 30px 0;
}

h6 {
  font-size: 18.6667px;
  line-height: 1.285;
  font-weight:400;
  padding: 0 0 30px 0;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}


ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;
}


/* TODO */
small {

}

/* TODO */
mark {

}



.disable-focus-styles :focus {
  outline: none;
}

::selection {
  background: #e02f86;
  color: #fff;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */
.hs_cos_wrapper_type_form, 
.hs_cos_wrapper_type_google_search,
.hs_cos_wrapper_type_blog_subscribe,
.form-container,
#email-prefs-form,
.hs_cos_wrapper_type_password_prompt {
  max-width: 100%;
  font-family: Lato, sans-serif;
  display: block;
  background-color: #5bc6cb;
  padding: 20px;
  max-width:500px;
  margin-bottom:20px;
}

form#email-prefs-form h3 {
  color: #fff;
}
a.hs-register-widget-show-password {
  display: block;
}

form#email-prefs-form h1,
form#email-prefs-form h2 {
  color: #fff;
}

form {

}

a.hs-login-widget-show-password {
  display: block;
}

.form-container a {
  color: #fff;
}

.hs-button, .button--primary{
  margin: 15px 0;
  display: inline-block;
  cursor:pointer;
  border-color: rgba(39,43,43,1.0);
  border-radius: 3px;
  border-bottom-width: 1px;
  color: rgba(255,255,255,1.0);
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: rgba(39,43,43,1.0);
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  font-family: arial, helvetica, sans-serif;
}


.hs-form label {
  font-weight: 500;
  text-align: left;
  line-height: 20px;
  font-family: arial, helvetica, sans-serif;
  font-size: 13px;
  color: #33475b;
}

.hs-form label {
  margin-bottom: 4px;
  display: block;
}

.hs-error-msgs label {
  margin-top: .5rem;
  color: #f2545b;
}

.hs-input,
input#hs-pwd-widget-password{
  display: block;
  width: 100%;
  height: 40px;
  padding: 9px 10px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: #33475b;
  border: 1px solid #cbd6e2;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}



.hs-input input,
.hs-input textarea {

}
.hs-input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
}

textarea.hs-input {
  height: auto;
}
.hs-input.invalid.error{
  border-color: #c87872;
}

select[multiple].hs-input {
  height: inherit;
}
.hs-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.fn-date-picker .pika-table thead th {
  background: transparent !important;
  border: none;
  color: #000 !important;
}

.fn-date-picker td.is-selected .pika-button {
  background: transparent;
  box-shadow: none;
}
/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
}
.hs-error-msgs label {
  font-size: 12px;
  color: #ff0000 !important;
  line-height: 18px;
  font-family: Arial;
}
.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}
.hs-form-field,
.field {
  margin-bottom: 18px;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 14px;
  color: #111;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: Roboto ,sans-serif;
}

.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  overflow-x: auto;
  overflow-y:hidden;
}


@media(max-width:767px){
  form {
    width: 100% !important;
  }

  form fieldset {
    max-width: 100% !important;
    width: 100%;
  }

  form .hs-form-field {
    width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .hs_cos_wrapper_type_form, .hs_cos_wrapper_type_google_search,.hs_cos_wrapper_type_blog_subscribe {
    max-width: 100% !important;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

.hs-menu-wrapper ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  border-spacing: 0;
  box-sizing: content-box;
}

table td, table th {
  border: 1px solid #dddddd;
  padding: 4px;
  box-sizing: content-box;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* Default */
.mfp-wrap {
  margin-top: 30px;
}
.mfp-bottom-bar {
  margin-top: -70px !important;
  background-color: rgba(0,0,0,0.5);
  padding: 6px 0;
  min-height: 18px;
  box-sizing: content-box;
}
.hs_flex {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hs_custom_row {
  margin-left: -7.5px;
  margin-right: -7.5px;
  width: auto;
}

.hs_custom_column{
  min-height:1px;
}

.hs_custom_column.span2 {
  width: 16.66666667%;
  float: left;
  margin: 0;  
}
.hs_custom_column.span3 {
  width: 25%;
  float: left;
  margin: 0;  
}
.hs_custom_column.span4 {
  float: left;
  margin: 0;  
  width: 33.33333333%;
}
.hs_custom_column.span6 {
  width: 50%;
  float: left;
  margin: 0;  
}

.hs_custom_column.span8 {
  width: 66.66666667%;
  float: left;
  margin: 0;  
}
.hs_custom_column.span9 {
  width: 75%;
  float: left;
  margin: 0;  
}
.hs_custom_column.span10 {
  width: 83.33333333%;
  float: left;
  margin: 0
}
.hs_custom_column.span12{
  width: 100%;
}

.hs_custom_column .hs_custom_column_inner {
  box-sizing: border-box;
  padding-left: 7.5px;
  padding-right: 7.5px;
  width: 100%;
}

.hs-custom-layout .container-fluid p {
  margin: 0;
  padding: 0;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.hs-custom-layout h4 {
  font-size: 36px;
  font-weight: 900;
  line-height: 38px;
  font-family: 'Exo',sans-serif;
}

.hs-custom-layout h6 {
  letter-spacing: 1.5px;
  line-height: 1em!important;
  font-family: 'Roboto', sans-serif;
}

.hs-custom-layout h6 {
  font-size: 14px;
  font-weight: 400;
}


.hs-custom-layout h1,
.hs-custom-layout .h1 {
  font-family: 'Roboto',sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 36px
}

.hs-custom-layout h5, 
.hs-custom-layout .h5 {
  font-family: 'Roboto',sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
/* Term and Condition Page */

.hs-term-page .container-fluid.banner-area h1 {
  font-family: 'Roboto',sans-serif;
  font-weight: 800;
}
.hs-term-page .container-fluid.body-container.body-container__website table td, 
.hs-term-page .container-fluid.body-container.body-container__website table th{
  border:0;
}
/* End Term and Condition Page */


/* Product Page */
.hs-custom-layout {
  overflow: hidden;
}

.hs-custom-layout .main-content-wrapper {
  overflow: hidden;
}

.hs_custom_row.clearfix.hs_flex .page-center {
  padding: 0;
}

.hs-product-page h2 {
  font-family: 'Roboto',sans-serif;
}

.hs-product-page.hs-custom-layout .row-fluid [class*="span"] {
  min-height: 1px;
}

.hs-product-page.hs-custom-layout .main-content-wrapper p,
.hs-media-page.hs-custom-layout .main-content-wrapper p{
  line-height: 1.35em!important;
  letter-spacing:0;
}

*[data-type='space'] {
  height: 0;
}

.hs_row.whiteColor * {
  color: #fff;
}

.hs_row.learning_application.download_app img,
.hs_row.lesson_plans img,
.container-fluid.hs-media-page-row1 img{
  clear: both;
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width:100%;
}

.hs_row.learning_application.download_app .widget-span.dnd-column ,
.hs_row.lesson_plans .widget-span.dnd-column,
.hs_row.how_it_works .widget-span.dnd-column{
  padding-top: 35px;
}

.hs_row.learning_application img {
  max-width: 100%;
}

.hs_row.proven_results {
  padding-top: 33px;
}
/* End Product Page */


/* Media Bank Page */
.hs-media-page.hs-custom-layout .page-center {
  padding: 0;
}
.hs-media-page.hs-custom-layout .hs_row table,
.hs-media-page.hs-custom-layout .hs_row table * {
  border: 0;
}

.hs-media-page.hs-custom-layout .hs_row .left-title {
  padding-left: 80px;
}
.hs_row.bank_title.media_logos {
  margin-top: 1px;
}

.hs_row.bank_title.media_logos.has-popup-table {
  padding-bottom: 50px;
}
/* End Media Bank Page */

/* Material Bank */
.container-fluid.hs-material-page-row2 .row-fluid [class*="span"],
.container-fluid.hs-material-page-row3 .row-fluid [class*="span"]{
  min-height: 1px;
}
.container-fluid.hs-material-page-row1.row_spacer_top h1 {
  color: #fff;
}
.hs_row.media_bank_top .page-center {
  padding: 0;
}
a.fasc-button {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  margin: 3px 0;
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  box-sizing: border-box;
  background-color: #5ec6ca;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-weight: bold;
  line-height: 24px;
  font-size: 18px;
  padding: 8px 10px;
}

a.fasc-button:hover {
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.hs-material-page.hs-custom-layout .hs_custom_column.span10 .hs_custom_column {
  padding: 5px;
}

.hs-material-page.hs-custom-layout .span10 .hs_custom_row {
  margin-left: -12.5px;
  margin-right: -12.5px;
}

.hs_custom_row.eng_diplomas {
  margin-top: 40px;
}
/* End Material Bank */


/* FAQ Page */
.container-fluid.hs-faq-page-row1 * {
  color: #fff;
}

.container-fluid.hs-faq-page-row1 ul {
  margin: 0;
  list-style: none;
  padding: 0;
  padding-left: 40px;
}

.container-fluid.hs-faq-page-row1 ul li:nth-last-child(-n+3) {
  padding-left: 40px;
}

.container-fluid.hs-faq-page-row1 ul * {
  color: #000;
}

.container-fluid.hs-faq-page-row1 .widget-span .dnd-column {
  padding-top: 35px;
}

.container-fluid.hs-faq-page-row1 .widget-span img {
  margin-left: -10px;
}

.container-fluid.hs-faq-page-row1 .widget-span img {
  max-width: 100%;
}

.hs-faq-page.hs-custom-layout .main-content-wrapper p {
  line-height: 1.35em!important;
}

.hs_row.system_requirement {
  padding-top: 35px;
}

.container-fluid.hs-faq-page-row2 h6:last-child {
  padding-left: 80px;
}

.container-fluid.hs-faq-page-row2 table {
  border-collapse: collapse;
  width: 100%;
  height: 92px;
  margin-left: 40px;
  margin-bottom: 30px;
  border: 0;
}

.container-fluid.hs-faq-page-row2 table tbody {
  padding-left: 40px;
}

.container-fluid.hs-faq-page-row2 table tbody tr {
  height: 23px;
  padding-left: 40px;
}

.container-fluid.hs-faq-page-row2 table tbody tr td {
  width: 50%;
  height: 23px;
  padding-left: 40px;
  border: 0;
}

.container-fluid.hs-faq-page-row2 h6:not(:last-child) {
  padding-left: 80px;
}

.faq-accordion .accordion-heading ~ h5 {
  padding-left: 40px;
}
/*  End FAQ Page */


/* Contact Page */
.row_who_we_are .hs_custom_row {
  margin-left: -25px;
  margin-right: -25px;
}

.row_who_we_are .hs_custom_row .hs_custom_column {
  padding: 17.5px;
}

.row_who_we_are .hs_custom_row .hs_custom_column .hs_custom_column_inner {
  padding-top: 35px;
}
.row_who_we_are .page-center {
  padding: 0;
}

.row_where_to_find {
  background-color: #5bc6cb;
}

.row_where_to_find img {
  clear: both;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.row_where_to_find * {
  color: #fff;
}

.row_where_to_find .page-center,
.row_locations .page-center,
.row_map .page-center{
  padding: 0;
}

.row_where_to_find .hs_custom_column .hs_custom_column_inner {
  padding-top: 35px;
}

.row_locations .hs_cos_wrapper_type_rich_text {
  text-align: center;
  padding-top: 35px;
  display: block;
}

.row_locations {
  margin-bottom: 40px;
}

.row_map {
  text-align: center;
}

.row_map img {
  clear: both;
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width:100%;
}

.row_contact_form {
  background-color: #5bc6cb;
}

.row_contact_form {
  color: #fff;
}

.row_contact_form .hs_custom_row:first-child {
  margin-left: -17.5px;
  margin-right: -17.5px;
}

.row_contact_form .hs_custom_row:first-child .hs_custom_column {
  padding: 10px;
}

.row_contact_form .hs_custom_row:first-child img {
  clear: both;
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width:100%;
}

.row_contact_form .hs_custom_row .hs_cos_wrapper_type_form, 
.row_contact_form .hs_custom_row .hs_cos_wrapper_type_form form,
.row_contact_form .hs_custom_row .hs_cos_wrapper_type_form form fieldset {
  padding: 0;
  background: transparent;
  margin: 0;
  max-width: 100%;
}

.row_contact_form .hs_custom_row .hs_cos_wrapper_type_form form h2 {
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  font-family: arial, helvetica, sans-serif;
  padding-bottom: 0;
}

.row_contact_form .page-center {
  padding: 0;
}

.row_contact_form .hs_custom_column .hs_custom_column_inner {
  padding-top: 35px;
}

.row_contact_form .hs_custom_row .hs_cos_wrapper_type_form form p {
  font-family: arial, helvetica, sans-serif;
  color: #33475b;
  font-size: 14px;
  line-height: 24px;
  margin: 1em 0;
}

.row_contact_form .hs_custom_row .hs_cos_wrapper_type_form form p a {
  color: -webkit-link;
  text-decoration: underline;
}

.row_contact_form .hs_custom_row .hs_cos_wrapper_type_form form .actions {
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 17px 0px;
}

.row_contact_form .hs_custom_row .hs_cos_wrapper_type_form form .actions input {
  margin: 0;
  padding: 12px 24px;
}

.row_contact_form .hs_custom_row .hs_cos_wrapper_type_form form {
  padding-bottom: 22px;
}

.row_contact_form .hs_custom_row .hs_cos_wrapper_type_form .hs-error-msgs label {
  color: #f2545b;
  font-family: arial, helvetica, sans-serif;
  font-size: 13px;
  line-height: 18px;
}

.row_contact_form .hs_cos_wrapper_type_rich_text *:not(a) {
  color: #fff;
}
/* End Contact Page */

/* Free Trial Page */
.row_how_it_works .page-center {
  padding: 0;
}

.row_how_it_works .hs_custom_column.span12 {
  padding-top: 35px;
}

.row_how_it_works .hs_custom_column.how_image .container-fluid{
  padding-left: 40px;
}

.row_how_it_works .hs_custom_column.how_image .container-fluid {
  max-width: 100%;
  height: auto;
}
.row_how_it_works .hs_custom_row.hs_training .hs_custom_column.how_image .container-fluid,
.row_how_it_works .hs_custom_row.hs_learning .hs_custom_column.how_image .container-fluid {
  padding-left: 80px;
}

.hs_custom_row.hs_learning.hs_flex .hs_custom_column{
  padding: 15px;
}

.hs_custom_row.hs_learning.hs_flex {
  margin-left: -22.5px;
  margin-right: -22.5px;
}

.row_apply_for_trials {
  background-color: #f9f9f9;
}

.row_apply_for_trials .hs_custom_column {
  padding-top: 35px;
}

.row_apply_for_trials .page-center {
  padding: 0;
}

.row_apply_for_trials .container-fluid.hs-contact-page-row7 img {
  display: inline;
  float: right;
  margin: 0 0 15px 30px;
}

.hs-trial-page.hs-custom-layout p {
  line-height: 1.35em!important;
}

.row_apply_for_trials_form {
  padding-top: 35px;
}

.row_apply_for_trials_form .page-center {
  padding: 0;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form {
  max-width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form fieldset {
  max-width: 100%;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form .hs-input:not([type=file]) {
  background-color: #f5f8fa;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form .hs-input[type="radio"] {
  display: inline-block;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form .inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 5px;
  padding-top: 6px;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form label {
  margin-bottom: 4px;
  display: block;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form .inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form .hs-form-field label {
  font-family: Roboto;
  font-size: 13px;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form {
  font-weight: normal;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form form {
  font-weight: inherit;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form .hs-form-field label:not(.hs-error-msg) {
  color: #0a0a0a;
}


.row_apply_for_trials_form .hs_cos_wrapper_type_form form .hs-richtext {
  padding: 0;
  font-weight: inherit;
  font-family: Roboto;
  color: #33475b;
  font-size: 14px;
  line-height: 24px;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form form p {
  font-weight: normal;
  margin: 1em 0;
  line-height: 24px !important;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form .legal-consent-container label {
  font-size: 14px;
  font-family: Roboto;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form form a {
  color: -webkit-link;
  text-decoration: underline;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form form .actions {
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 17px 0px;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form form .actions input {
  background: #5cc6cb;
  border-color: #5cc6cb;
  color: #ffffff;
  font-size: 12px;
  line-height: 12px;
  font-family: Roboto;
  margin: 0;
  display: inline-block;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
}

.row_apply_for_trials_form .hs_cos_wrapper_type_form form span p {
  line-height: 18px !important;
}
/* End Free Trial Page */


/* HomePage */
.row_home_intro {
  text-align: center;
}

.row_home_intro .page-center {
  padding: 0;
  padding-bottom: 65px;
  padding-top: 65px;
}

.row_home_intro .page-center .hs_custom_column {
  padding-top: 35px;
}

.row_home_intro .page-center .hs_custom_column a.fasc-button {
  font-size: 24px;
  padding: 11px 13px;
  line-height: 33px;
  margin: 3px 0;
  border: 0;
  border-radius: 15px;
  letter-spacing: -.5px!important;
  font-weight: 300;
  margin-bottom: 0;
}

.hs-home-page.hs-custom-layout .row-fluid [class*="span"] {
  min-height: 1px;
}

.row_home_method {
  background-color: #5ec6ca;
  color: #fff;
}

.row_home_method *:not(a) {
  color: #fff;
}

.row_home_method .hs_custom_column {
  padding-top: 35px;
}

.row_home_method .page-center {
  padding: 0;
}

.hs_custom_row.innovative_method .hs_custom_column {
  padding-top: 0;
}

.hs_custom_row.innovative_method {
  padding-top: 35px;
}

.row_home_method p,
.row_home_benefits p {
  line-height: 1.35em!important;
  letter-spacing: -.5px!important;
}

.row_home_benefits .page-center,
.row_home_testimonials .page-center{
  padding: 0;
}

.row_home_benefits .hs_custom_column,
.row_home_testimonials .hs_custom_column{
  padding-top: 35px;
}

.row_home_benefits {
  text-align: center;
}

.school_benefits_left p {
  color: #f56ca9;
}

.school_benefits_right p {
  color: #97c218;
}

.row_home_testimonials {
  background-color: #5ec6ca;
  text-align: center;
}

.row_home_testimonials,.row_home_testimonials * {
  color: #fff;
}

.row_home_testimonials {
  padding-bottom: 128px;
}


.row_home_app_download .page-center {
  padding: 0;
  padding-top: 35px;
}

.row_home_app_download img {
  clear: both;
  display: block;
  margin: 0 auto;
  text-align: center; 
}
.row_home_app_download {
  margin-bottom: 20px;
}
a.fasc-button{
  -webkit-font-smoothing: antialiased;
}
/* End HomePage */

/* Media Queries */

@media (max-width: 1279px) and (min-width: 1168px){
  .hs-term-page .container-fluid.banner-area h1 {
    font-size: 92px;
    line-height: 36px;
  }
  .container-fluid.hs-faq-page-row1 .widget-span img {
    margin: 0;
  }
}

@media (max-width: 1167px) and (min-width: 1024px){
  .container-fluid.hs-faq-page-row1 .widget-span img {
    margin: 0;
  }
  .hs-term-page .container-fluid.banner-area h1 {
    font-size: 60px;
    line-height: 54px;
    padding: 0 0 26px 0;
    font-family: 'Roboto',sans-serif;
  }
  .hs-custom-layout h1,
  .hs-custom-layout .h1 {
    font-size: 60px;
    line-height: 54px;
    padding: 0 0 26px 0;
  }

  .hs-custom-layout h2,
  .hs-custom-layout .h2,
  ul#hsresults li a.hs-search-results__title{
    font-size: 32px;
    line-height: 38px;
    padding: 0 0 36px 0;
  }

  .hs-custom-layout h3,
  .hs-custom-layout .h3 {
    font-size: 21px;
    line-height: 26px;
    padding: 0 0 32px 0;
  }

  .hs-custom-layout h4,
  .hs-custom-layout .h4 {
    font-size: 16px;
    line-height: 20px;
    padding: 0 0 28px 0;
  }

  .hs-custom-layout h5,
  .hs-custom-layout .h5 {
    font-size: 13px;
    line-height: 16px;
    padding: 0 0 26px 0;
  }

  .hs-custom-layout h6, 
  .hs-custom-layout .h6 {
    font-size: 12px;
    line-height: 15px;
    padding: 0 0 24px 0;
  }
}

@media(max-width:1160px){
  .row_home_intro .page-center {
    padding-top: 0;
  }
}

@media (max-width: 1023px) and (min-width: 800px){
  .container-fluid.hs-faq-page-row1 .widget-span img {
    margin: 0;
  }
  .hs-term-page .container-fluid.banner-area h1 {
    font-size: 65px;
    line-height: 50px;
    padding: 0 0 24px 0;
  }

  .hs-custom-layout h1, 
  .hs-custom-layout .h1 {
    font-size: 65px;
    line-height: 50px;
    padding: 0 0 24px 0;
  }

  .hs-custom-layout h2, 
  .hs-custom-layout .h2,
  ul#hsresults li a.hs-search-results__title{
    font-size: 30px;
    line-height: 36px;
    padding: 0 0 30px 0;
  }

  .hs-custom-layout h3,
  .hs-custom-layout .h3 {
    font-size: 20px;
    line-height: 24px;
    padding: 0 0 28px 0;
  }

  .hs-custom-layout h4, 
  .hs-custom-layout .h4 {
    font-size: 14px;
    line-height: 18px;
    padding: 0 0 24px 0;
  }

  .hs-custom-layout h5, 
  .hs-custom-layout .h5 {
    font-size: 13px;
    line-height: 16px;
    padding: 0 0 20px 0;
  }

  .hs-custom-layout h6, 
  .hs-custom-layout .h6 {
    font-size: 12px;
    line-height: 15px;
    padding: 0 0 18px 0;
  }
  .row_apply_for_trials .container-fluid.hs-contact-page-row7 h1 {
    line-height: 1;
  }
}

@media (max-width: 799px) and (min-width: 480px){
  .container-fluid.hs-faq-page-row1 .widget-span img {
    margin: 0;
  }
  .hs-term-page .container-fluid.banner-area h1 {
    font-size: 30px;
    line-height: 36px;
    padding: 0 0 22px 0;
  }

  .hs-custom-layout h1, 
  .hs-custom-layout .h1 {
    font-size: 30px;
    line-height: 36px;
    padding: 0 0 22px 0;
  }

  .hs-custom-layout h2,
  .hs-custom-layout .h2,
  ul#hsresults li a.hs-search-results__title{
    font-size: 22px;
    line-height: 30px;
    padding: 0 0 28px 0;
  }

  .hs-custom-layout h3,
  .hs-custom-layout .h3 {
    font-size: 16px;
    line-height: 22px;
    padding: 0 0 26px 0;
    font-weight: 300;
  }

  .hs-custom-layout h4, 
  .hs-custom-layout .h4 {
    font-size: 14px;
    line-height: 18px;
    padding: 0 0 24px 0;
  }

  .hs-custom-layout h5,
  .hs-custom-layout .h5 {
    font-size: 13px;
    line-height: 16px;
    padding: 0 0 20px 0;
  }

  .hs-custom-layout h6,
  .hs-custom-layout .h6 {
    font-size: 12px;
    line-height: 15px;
    padding: 0 0 18px 0;
  }
  .hs-media-page.hs-custom-layout .hs_row .left-title {
    padding-left: 0;
  }
}

@media (max-width: 799px) and (min-width: 768px){
  .container-fluid.body-container.migration h1 {
    font-size: 31px;
  }

  .container-fluid.body-container.migration h2 {
    font-size: 29px;
  }

  .container-fluid.body-container.migration .form-title {
    font-size: 18px;
    line-height: 1;
  }
  .container-fluid.hs-faq-page-row2 h6:last-child {
    padding-left: 0;
  }

  .container-fluid.hs-faq-page-row2 h6:not(:last-child) {
    padding-left: 0;
  }

  .container-fluid.hs-faq-page-row2 table tbody tr td {
    padding-left: 0;
  }

  .container-fluid.hs-faq-page-row2 table {
    margin-left: 0;
  }
}

@media(max-width:767px){
  .hs_custom_column[class*="span"]{
    float:none;
    width:100%;
  }
  .container-fluid.hs-faq-page-row2 h6:last-child {
    padding-left: 0;
  }

  .container-fluid.hs-faq-page-row2 h6:not(:last-child) {
    padding-left: 0;
  }

  .container-fluid.hs-faq-page-row2 table tbody tr td {
    padding-left: 0;
  }

  .container-fluid.hs-faq-page-row2 table {
    margin-left: 0;
  }
  .hs_cos_wrapper_type_form form .hs-input {
    width: 100% !important;
  }
  .banner_area_wrapper .hs_custom_column.content_image img {
    margin-top: -3px;
  }

  .hs-custom-layout h2, 
  .hs-custom-layout .h2 {
    font-family: 'Roboto',sans-serif;
  }

  .row_apply_for_trials_form .hs_cos_wrapper_type_form .hs-input[type="radio"] {
    width: auto !important;
  }

  .row_apply_for_trials_form .hs_cos_wrapper_type_form .hs-input[type=checkbox] {
    width: auto !important;
  }
}

@media (max-width: 480px){
  .productRow {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5em;
    font-weight: 400;
    font-size: 20px;
  }

  .hs-product-page.hs-custom-layout {
    color: #5Bc6cb;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
  }

  .hs_row.learning_application:not(.download_app) .dnd-section > .row-fluid {
    flex-direction: column-reverse;
    display: flex;
  }

  .hs_row.learning_application.download_app .widget-span.dnd-column,
  .hs_row.lesson_plans .widget-span.dnd-column,
  .hs_row.proven_results{
    padding-top: 10px;
  }

  .hs_row.how_it_works img {
    clear: both;
    display: block;
    margin: 0 auto;
    text-align: center;
    max-width:100%;
  }

  .hs-media-page.hs-custom-layout .hs_row.media_title {
    letter-spacing: 1px;
  }

  .hs_row.media_bank_top .hs_custom_column .hs_custom_column_inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  .hs-material-page.hs-custom-layout .span10 .hs_custom_row:first-child {
    margin-bottom: -3px;
  }
  .container-fluid.hs-faq-page-row1 ul {
    padding-left: 0;
  }
  .container-fluid.hs-faq-page-row1 .widget-span img{
    margin-left: 0px;
  }

  .container-fluid.hs-faq-page-row2 table td {
    color: #5Bc6cb;
    letter-spacing: 1px;
  }
  .hs-contact-page.hs-custom-layout .productRow {
    letter-spacing: 1px;
  }
  .hs-contact-page.hs-custom-layout .productRow {
    letter-spacing: 1px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 400;
    color: #5Bc6cb;
  }
  .hs-contact-page.hs-custom-layout .productRow p{
    font-weight: inherit;
  }

  .hs-contact-page.hs-custom-layout .productRow .hs_custom_row .hs_custom_column .hs_custom_column_inner {
    padding-left: 10px!important;
    padding-right: 10px!important;
  }

  .hs-contact-page.hs-custom-layout .productRow .hs_custom_row {
    margin: 0;
  }

  .hs-contact-page.hs-custom-layout .productRow .page-center, 
  .hs-contact-page.hs-custom-layout .productRow .dnd-section > .row-fluid,
  .row_home_intro .page-center,
  .row_home_intro .dnd-section > .row-fluid{
    max-width: 100%;
  }
  .row_where_to_find .hs_custom_column .hs_custom_column_inner {
    padding-top: 10px;
    margin-bottom: 40px;
  }

  .row_where_to_find .hs_custom_column.span6:last-child .hs_custom_column_inner {
    margin-bottom: 22px;
  }
  .row_locations .hs_cos_wrapper_type_rich_text {
    padding-top: 10px;
  }

  .row_contact_form {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
  }

  .banner_area_wrapper .hs_custom_column.content_image {
    padding-left: 0;
  }

  .banner_area_wrapper .banner_description, .banner_area_wrapper .banner_button {
    padding-left: 0;
  }

  .banner_area_wrapper .banner_button a {
    padding: 11px 30px;
  }
  .row_how_it_works .hs_custom_row.hs_training .hs_custom_column.how_image .container-fluid, .row_how_it_works .hs_custom_row.hs_learning .hs_custom_column.how_image .container-fluid,.row_how_it_works .hs_custom_column.how_image .container-fluid {
    padding-left: 0;
  }

  .row_how_it_works .hs_custom_column.how_image .container-fluid img {
    max-width: 100%;
  }
  .row_apply_for_trials {
    color: #5Bc6cb;
  }
  .row_home_intro .hs_custom_column .hs_custom_column_inner {
    padding-left: 10px!important;
    padding-right: 10px!important;
  }
  .row_home_intro {
    padding: 0 25px;
  }
}


@media (max-width: 479px){
  .hs-term-page .container-fluid.banner-area h1 {
    font-size: 27px;
    line-height: 32px;
    padding: 0 0 16px 0;
  }
  .hs-term-page.hs-custom-layout .dnd-section>.row-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hs-product-page.hs-custom-layout .dnd-section > .row-fluid {
    max-width: 100%;
    padding: 0 30px;
    min-width: 280px;
  }

  .hs-custom-layout h1, 
  .hs-custom-layout .h1 {
    font-size: 27px;
    line-height: 32px;
    padding: 0 0 16px 0;
  }

  .hs-custom-layout h2, 
  .hs-custom-layout .h2,
  ul#hsresults li a.hs-search-results__title{
    font-size: 20px;
    line-height: 26px;
    padding: 0 0 20px 0;
    font-weight: 300;
    font-family: 'Roboto',sans-serif;
  }

  .hs-custom-layout h3, 
  .hs-custom-layout .h3 {
    font-size: 16px;
    line-height: 20px;
    padding: 0 0 20px 0;
    font-weight: 300;
  }

  .hs-custom-layout h4, 
  .hs-custom-layout .h4 {
    font-size: 14px;
    line-height: 18px;
    padding: 0 0 20px 0;
  }

  .hs-custom-layout h5, 
  .hs-custom-layout .h5 {
    font-size: 13px;
    line-height: 16px;
    padding: 0 0 20px 0;
  }

  .hs-custom-layout h6, 
  .hs-custom-layout .h6 {
    font-size: 12px;
    line-height: 15px;
    padding: 0 0 18px 0;
  }
  .hs_row.has-popup-table {
    letter-spacing: 1px;
    line-height: 18px;
  }
  .hs_row.lightbox-wrapper .hs_custom_column.span8 ul {
    columns: 1;
    -webkit-columns: 1;
  }

  .hs_row.lightbox-wrapper .hs_custom_column.span8 ul li {
    width: 100%;
    float: none;
    margin-bottom: 5px;
  }
  .faq-accordion .accordion-heading ~ h5 {
    padding-left: 0;
  }
}

@media(max-width:320px){
  .hs-product-page.hs-custom-layout .dnd-section>.row-fluid {
    padding: 0 21.5px;
    max-width: 280px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */
.topWrapFixed {
  top: -100px;
  display: none;
  background-color: rgb(255, 255, 255);
  height: 100px;
}

.topWrap {
  top: -100px;
  background-color: #fff;
}

.topWrap .logo {
  float: left;
  font-size: 29px;
  font-weight: 100;
  line-height: 30px;
  padding: 35px 0 0 0;
  color: #fff;
  font-size: 36px;
}
.topWrap .logo.logo_left {
  text-align: left;
}
header.noFixMenu .topWrap .logo {
  padding: 25px 0 0 0;
}

.topWrap .logo a {
  display: block;
  text-decoration: none;
}
.topWrap .logo img {
  display: inline-block;
  border: none;
  vertical-align: top;
  margin-right: 10px;
  max-height: 50px;
  width: auto !important;
}

.topWrap .search {
  float: right;
  margin: 33px 0 37px 10px;
  height: 28px;
  width: 0;
  padding: 0 28px 0 0;
  border: 1px solid rgba(255,255,255,0.4);
  position: relative;
  -webkit-transition: width 0.3s ease-out;
  -moz-transition: width 0.3s ease-out;
  -ms-transition: width 0.3s ease-out;
  -o-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}
.topWrap .search {
  border-width: 1px;
  border-color: rgba(91,198,203,1);
}
header.noFixMenu.menu_right .topWrap .search {
  margin-top: 33px;
  margin-bottom: 37px;
}
.topWrap .search:before{
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 28px;
  height: 28px;
  content: '\e83f';
  font-family: "fontello";
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 29px;
  text-align: center;
  color: rgba(91,198,203,1);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out
}

.topWrap .search .searchForm {
  display: none;
  height: 28px;
  width: 220px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.topWrap .search .searchForm .searchSubmit .icoSearch {
  display: block;
  width: 28px;
  height: 28px;
  color: #fff;
  text-align: center;
  position: relative;
}
header.topSearchShow .menuTopWrap.desktop {
  display: none;
}
.topWrap .search .searchForm .searchField {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  height: 28px;
  width: 180px;
  line-height: 28px;
  background: none;
  border: none;
  margin: 0;
  padding: 0 9px;
  color: #fff;
  position: absolute;
  left: 28px;
  top: 0;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.topWrap .search .searchForm .searchField {
  color: rgba(91,198,203,.5);
}

.topWrap .search .searchForm .searchField::-webkit-input-placeholder {
  color: rgba(0,0,0,.2);
}

.topWrap .search .ajaxSearchResults {
  display: none;
  background: #fff;
  border: 1px solid #ddd;
  width: 260px;
  position: absolute;
  right: 0;
  top: 40px;
  z-index: 10000;
  -webkit-box-shadow: 0 2px 2px -1px #ddd;
  -moz-box-shadow: 0 2px 2px -1px #ddd;
  box-shadow: 0 2px 2px -1px #ddd;
}
.topWrap .search .hs-search-field.hs-search-field--open  .ajaxSearchResults {
  display: block;
  padding: 10px 10px;
  left: 0;
}


.openResponsiveMenu {
  display: none;
  margin: 0;
  height: 35px;
  line-height: 35px;
  width: 100%;
  border-top: 1px solid rgba(41, 41, 41, 0.2);
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  clear: both;
  font-weight: 700;
  border-top-color: rgba(91,198,203,.2);
  color: #5bc6cb;
}

.topWrap .topMenuStyleFon {
  float: right;
}

nav.navigation-primary > ul {
  margin: 0;
  padding: 0;
}

nav.navigation-primary > ul > li {
  font-family: 'Calibri', sans-serif;
  display: block;
  float: left;
  position: relative;
  padding: 30px 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

nav.navigation-primary > ul > li > a {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  display: block;
  padding: 0 18px;
  border-width: 1px 1px 0 1px;
  border-style: solid;
  border-color: transparent;
  height: 38px;
  line-height: 38px;
  text-transform: uppercase;
  text-decoration: none;
  color: #292929;
  z-index: 1000;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: color, background 0.3s ease-out;
  -moz-transition: color, background 0.3s ease-out;
  -ms-transition: color, background 0.3s ease-out;
  -o-transition: color, background 0.3s ease-out;
  transition: color, background 0.3s ease-out;
  color: #5bc6cb;
}

nav.navigation-primary ul li a {
  font-size: 22px!important;
  letter-spacing: 1.5px;
}

nav.navigation-primary ul ul.submenu {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 200px;
  display: none;
  position: absolute;
  left: 0;
  top: 67px;
  background: #fff;
  padding: 15px 7px 5px 7px;
  margin: 0;
  border: 1px solid #ddd;
  z-index: 1002;
  -moz-border-radius-topleft: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  top: 67px;
}

.topWrap .page-center.clearfix {
  padding: 0 !important;
}

.topWrap .search {
  -webkit-border-radius: 1000px !important;
  -moz-border-radius: 1000px !important;
  border-radius: 1000px !important;
  height: 30px;
}

nav.navigation-primary ul li a:hover {
  color: #ea624c;
}

.topWrap .search:hover {
  cursor: pointer;
}

.topWrap .topMenuStyleFon nav.navigation-primary > ul > li.sfHover > a, .topWrap .topMenuStyleFon nav.navigation-primary > ul > li.sfHover > a:hover {
  border-style: solid;
  border-color: #ddd;
  border-width: 1px 1px 0 1px;
  background: #fff;
  margin: 0;
  -moz-border-radius-bottomleft: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -moz-border-radius-bottomright: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}

.topWrap .topMenuStyleFon nav.navigation-primary  > ul > li > a:hover {
  -webkit-transition: color, background 0.3s ease-out;
  -moz-transition: color, background 0.3s ease-out;
  -ms-transition: color, background 0.3s ease-out;
  -o-transition: color, background 0.3s ease-out;
  transition: color, background 0.3s ease-out;
}

.topWrap .topMenuStyleFon nav.navigation-primary > ul > li.sfHover > a {
  z-index: 1003;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

nav.navigation-primary ul ul li {
  list-style: none;
  display: block;
  position: relative;
}

nav.navigation-primary ul ul li a {
  position: relative;
  display: block;
  padding: 3px 9px;
  font-size: 13px;
  line-height: 20px;
  margin: 0 0 11px 0;
  color: #222222;
}

.topWrap .search.searchOpen {
  width: 170px;
}

.topWrap .search.searchOpen .searchForm {
  display: block;
}

.topWrap .search .searchForm .searchSubmit {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  outline:0 !important;
}

.topWrap .search .searchForm .searchSubmit .icoSearch:before {
  font-family: "fontello";
  content: '\e83f';
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 28px;
  width: 28px;
  height: 28px;
  display: block;
  position: absolute;
  z-index: 4;
  color: rgba(91,198,203,1);
}

.topWrap .search .searchForm .searchField {
  color: rgba(91,198,203,.5);
}

.topWrap .search.searchOpen:before {
  content: '\e811';
}


.topWrap .search.searchOpen{
  width: 200px;
}

.topWrap .search .searchForm .searchField:focus {
  color: rgba(0,0,0,.5);
}

.topWrap .search .ajaxSearchResults:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #FFF;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  position: absolute;
  top: -5px;
  left: 50px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.topWrap .search .ajaxSearchResults li a {
  display: block;
  position: relative;
  padding: 0 0 6px 0;
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  font-family: 'Roboto',sans-serif;
  background: none;

}

@media(min-width:1024px){
  .menuTopWrap.topMenuStyleFon.mobile {
    display: none;
  }
  header.header.menu_right.lp.fixedTopMenu .topWrap {
    height: 60px;
  }
  header.header.fixedTopMenu .topWrapFixed {
    display: block;
  }

  header.fixedTopMenu .topWrap {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2000;
    width: 100%;
    -webkit-box-shadow: 0 0 10px 1px #777;
    -moz-box-shadow: 0 0 10px 1px #777;
    box-shadow: 0 0 10px 1px #777;
  }

  header.fixedTopMenu .topWrap .logo {
    height: 30px;
    padding: 15px 0;
  }

  header.fixedTopMenu .topWrap .logo img {
    height: 35px;
  }

  header.fixedTopMenu .topWrap .search {
    margin: 15px 0 15px 10px;
  }

  header.fixedTopMenu nav.navigation-primary>ul>li {
    padding: 10px 0;
  }
  header.fixedTopMenu  nav.navigation-primary > ul > li > ul.submenu {
    top: 47px;
  }
}

@media (max-width: 1023px){
  .menuTopWrap.topMenuStyleFon.desktop {
    display: none;
  }
  .topWrap .topMenuStyleFon {
    display: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    clear: both;
    float: none !important;
    padding: 0 0 30px 0;
  }
  .topWrap .topMenuStyleFon nav.navigation-primary > ul {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .topWrap .topMenuStyleFon > ul > li {
    display: block !important;
    float: none !important;
    padding: 0 !important;
  }
  .topWrap .topMenuStyleFon > ul > li > a {
    text-transform: uppercase;
    display: block;
    color: #ffffff;
  }

  header.noFixMenu .topWrap .logo {
    padding: 20px 0 0 0!important;
    float: left;
  }
  .topWrap .topMenuStyleFon > ul > li {
    margin-left: 4px;
    margin-right: 4px;
    border-bottom: none;
  }
  .topWrap .topMenuStyleFon > ul > li > a {
    color: #ffffff;
  }
  .MenuBackground {
    position: relative;
    width: 25px;
    height: 25px;
    float: right!important;
    padding: 9px 10px;
    margin-top: -75px;
    margin-right: 0;
    margin-bottom: 8px;
    background-color: #5BC6CB;
    background-image: none;
    border: 2px solid #5BC6CB;
    border-radius: 50%;
    box-sizing: content-box;
  }
  .openResponsiveMenu {
    border-top-color: rgba(91,198,203,.2);
    color: #5bc6cb;
    display: block;
  }
  .top-bar, .middle-bar, .bottom-bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 4px -2px;
    transition: 0.2s;
  }
  .search {
    margin-right: 60px!important;
  }
  .topWrap .topMenuStyleFon nav.navigation-primary>ul {
    background-color: #5BC6CB;
  }

  .topWrap .topMenuStyleFon nav.navigation-primary>ul>li {
    display: block !important;
    float: none !important;
    padding: 0 !important;
    margin-left: 4px;
    margin-right: 4px;
    border-bottom: none;
    font-family: 'Roboto', sans-serif;
  }

  .topWrap .topMenuStyleFon nav.navigation-primary>ul>li>a {
    text-transform: uppercase;
    display: block;
    color: #ffffff;
    font-weight: 800!important;
  }

  .topWrap .topMenuStyleFon nav.navigation-primary ul li a {
    font-size: 18px!important;
    font-family: 'Roboto', sans-serif;
    height: 39px;
    line-height: 39px;
    padding: 0 20px;
    border-radius: 0;
    border: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
  }
  .topWrap .topMenuStyleFon nav.navigation-primary ul li.has-submenu:before {
    content: '\e85d';
    font-family: "fontello";
    width: 40px;
    display: block;
    float: right;
    padding: 7px 0 0 0;
    text-align: center;
    color: #ffffff;
  }
  .change .bottom-bar {
    -webkit-transform: rotate(45deg) translate(-5px, -5px);
    -moz-transform: rotate(45deg) translate(-5px, -5px);
    transform: rotate(45deg) translate(-5px, -5px);
  }
  .change .middle-bar {
    opacity: 0;
  }
  .change .top-bar {
    -webkit-transform: rotate(-45deg) translate(-5px, 4.5px);
    -moz-transform: rotate(-45deg) translate(-5px, 4.5px);
    transform: rotate(-45deg) translate(-5px, 4.5px);
  }
  nav.navigation-primary ul ul.submenu {
    position: static;
    background: transparent;
    border: 0;
    width: 100%;
  }

  .topWrap .topMenuStyleFon nav.navigation-primary ul ul li a {
    color: #fff;
    padding: 6px 50px;
    margin: 0;
    border: 2px solid #fff;
    border-radius: 50px;
    height: auto;
    letter-spacing: 1.5px;
    line-height: 20px;
    font-weight: 700;
    text-transform: none;
  }

  .topWrap .topMenuStyleFon nav.navigation-primary ul ul li:not(:last-child) {
    margin-bottom: 5px;
  }
}

@media(max-width:479px){
  .MenuBackground {
    position: relative;
    width: 25px;
    height: 25px;
    float: right!important;
    padding: 9px 10px;
    margin-top: -50px;
    margin-right: -25px;
    margin-bottom: 8px;
    background-color: #5BC6CB;
    background-image: none;
    border: 2px solid #5BC6CB;
    border-radius: 50%;
  }
  .topWrap .search{
    display: none;
  }
  header.noFixMenu .topWrap .logo {
    float: none !important;
    padding: 20px 0;
    text-align: center;
  }
}

@media(max-width:365px){
  .MenuBackground {
    margin-right: 0;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */
.copyWrap{
  overflow: hidden;
}

.copyWrap {
  background-color: #ffffff;
  color: #a5a5a5;
}

div.copyWrap {
  box-shadow: 0px 0px 2px #000;
  -webkit-box-shadow: 0px 0px 2px #000;
  -moz-box-shadow: 0px 0px 2px #000;
}

.copyWrap .copy {
  padding: 20px 0 10px 0;
}
.copyright {
  color: #000;
}
.copyWrap .copy .copyright {
  float: right;
  min-height: 32px;
  line-height: 32px;
  margin: 0 0 20px 0;
}
div.copyWrap .copy .copyright {
  margin: 0;
  float: none!important;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}
.copyWrap .socPage {
  height: 32px;
  float: left;
  height: 36px;
}
.copyWrap .socPage {
  padding-top: 4px;
}
.copyWrap .copy:after {
  content: '';
  clear: both;
  height: 0;
  display: block;
}

.copyright a {
  color: #5BC6CB;
}

.copyright  {
  display: flex;
  align-items: center;
  justify-content: center;
}


.hs_top_footer.hs_custom_row.hs_flex {
  width: 100%;
}


.hs_top_footer p {
  padding: 0 0 30px 0;
  margin: 0;
  letter-spacing: -.5px!important;
  line-height: 1.35em!important;
  text-align: center;
  margin-bottom: 0;
}
.footer_social_wrapper ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}

.footer_social_wrapper ul li {
  vertical-align: middle;
  float: none;
  width: auto;
  margin: 0;
  list-style-type: none;
  border: none;
  padding: 0;
  background: none;
  line-height: normal;
}

.footer_social_wrapper ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.footer_social_wrapper ul li a {
  border: none;
  text-decoration: none;
  display: block;
  text-align: center;
  -webkit-transition: width 0.5s;
  transition: all 0.5s;
  box-sizing: border-box;
  background-color: #fff;
  width: 52px;
  height: 52px;
  padding: 9px 0;
  margin: 2px;
  color: #5ec6ca;
  border-radius: 50%;
}

.footer_social_wrapper ul li a i {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  font-size: 34px;
}

.fa {
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-youtube:before {
  content: "\f167";
}

.fa.fa-linkedin:before {
  content: "\f0e1";
}

.fa-twitter:before {
  content: "\f099";
}

.fa.fa-facebook:before {
  content: "\f39e";
}

.footer_social_wrapper ul li a:hover {
  background-color: #fff;
  color: #262626;
}

.footer_social_wrapper ul {
  padding-bottom: 30px;
  padding-top: 30px;
}
.hs_top_footer.hs_custom_row.hs_flex {
  position: relative;
  left: 7px;
}
.footer_social_wrapper ul li a i {
  text-align: center;
  font-size: 0;
}

.footer_social_wrapper ul li a i:before {
  font-size: 34px;
}

footer.footer p {
  line-height: 1.35em;
}
.footer_social_wrapper ul {
  flex-wrap: wrap;
}
.upToScroll.buttonShow {
  bottom: 30px;
  right: 30px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border: none;
  border-radius: 4px;
  background-color: transparent;
  height: 100px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.upToScroll a.scrollToTop {
  background: transparent url(https://6887309.fs1.hubspotusercontent-na1.net/hubfs/6887309/raw_assets/public/Moomin_Language_School_November2020/images/back-to-top.png) no-repeat 50% 100%;
  background-size: cover;
  width: 100px;
  height: 100px;
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
.hs_top_footer p a,
.hs_top_footer p a:hover{
    color: inherit;
}

@keyframes floating {
  0% {transform: translateY(0%) rotate3d(0,0,-1,0deg);}
  50% {transform: translateY(8%) rotate3d(0,0,-1,3deg);}
  100% {transform: translateY(0%) rotate3d(0,0,-1,0deg);}
}
@-webkit-keyframes floating {
  0% {-webkit-transform: translateY(0%) rotate3d(0,0,-1,0deg);}
  50% {-webkit-transform: translateY(8%) rotate3d(0,0,-1,3deg);}
  100% {-webkit-transform: translateY(0%) rotate3d(0,0,-1,0deg);}
}

@media (min-width:800px){
  .upToScroll.buttonShow {
    display: none;
  }
}

@media(max-width:1024px){
  footer.footer p {
    font-size: 16px!important;
  }
}
@media (max-width: 799px) and (min-width: 480px){
  .upToScroll a {
    width: 32px;
    height: 32px;
    font-size: 16px;
    line-height: 32px;
  }
  .upToScroll a.scrollToTop {
    display: block;
  }
  .upToScroll.buttonShow {
    bottom: 10px;
  }
  .upToScroll.buttonShow {
    bottom: 30px;
    right: -50px;
  }
}

@media only screen and (max-width: 799px){
  div.copyWrap .copy .copyright {
    float: none!important;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 50px;
  }
  .copyWrap .copy {
    padding-bottom: 0;
  }
}

@media(max-width:767px){
  .hs_custom_column.span6 {
    width: 100%;
  }
  .hs_custom_column.span8 {
    width: 100%;
  }

  .hs_custom_column.span2 {
    width: 100%;
  }
}

@media only screen and (max-width: 480px){
  div.copyWrap .copy .copyright {
    margin: 0 0 50px 0;
    float: none!important;
    text-align: left;
    line-height: 1.5em;
  }
  .upToScroll a.scrollToTop {
    display: block;
  }
  .upToScroll a.scrollToTop {
    width: 75px!important;
    height: 75px!important;
    margin-top: 0;
  }
  .upToScroll a.scrollToTop {
    margin-right: 60px;
  }
  .upToScroll a {
    width: 32px;
    height: 32px;
    font-size: 16px;
    line-height: 32px;
  }
  
  footer.footer p {
    font-size: 18px!important;
  }
  
  .footer_social_wrapper ul li a i:before {
    font-size: 30px;
  }

  .footer_social_wrapper ul li a {
    width: 40px!important;
    height: 30px!important;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.content-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}
.blog__subscription-block{
  background-color: #fff;
}
.blog-header {
  background-color: #fff;
  text-align: center;
}
.subscription-form .hs_cos_wrapper_type_blog_subscribe {
  max-width: 100% !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.blog-header__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 3.3rem 0;
}

.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

.blog-header__form {
  margin: 0 1rem;
}

@media screen and (min-width: 768px) {
  .blog-header__form {
    width: 500px;
    margin: 0 auto;
  }
}

.blog-index {
  display: flex;
  flex-wrap: wrap;
  padding: 3.3rem 0;
}
.blog-index:after {
  content: "";
  flex: auto;
}
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}
.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.blog-index__tag-heading {
  padding-bottom: 1rem;
  border-bottom: 3px solid #D1D6DC;
}
.blog-index__post {
  flex:  0 0 100%;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-index__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-index__post {
    flex:  0 0 calc(100%/3);
  }
}
@media screen and (min-width: 768px) {
  .blog-index__post--large {
    flex: 1 0 100%;
    display: flex;
    justify-items: space-between;
  }
}
.blog-post img {
  max-width: 100%;
}
.blog-index__post-image {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
  background-image: url('./images/grayscale-mountain.png');
    }
@media screen and (min-width: 768px) {
  .blog-index__post-image--large {
    flex: 1 1 100%;
    padding-bottom: 0;
  }
  .blog-index__post-content--large {
    flex: 1 1 100%;
    padding-left: 2rem;
  }
  .blog-index__post-image--large {
    flex: 1 1 48%;
  }
  .blog-index__post-content--large {
    flex: 1 1 48%;
    padding-left: 2rem;
  }
}
.blog-index__post-content h2 {
  margin: .5rem 0;
}
.blog-index__post-content--small h2 {
  font-size: 24px;
}
.blog-index__post-content p {
  font-family: Lato, sans-serif;
}
.blog-index__post-content a {
  color: #111;
}
.blog-index__post img {
  max-width: 100%;
  height: auto;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Lato, sans-serif;
  margin-bottom: 3.3rem;
}
.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  color: #111;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 7px;
}
.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
}
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
}
.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}
.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B0C1D4;
  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #111;
  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}

.blog-header__author-avatar {
  height: 200px;
  width: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
  margin: 0 auto 1.5rem;
}
.blog-header__author-social-links a {
  display: inline-block;
  position: relative;
  background-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.blog-header__author-social-links a:hover {
  background-color: #111;
}
.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-post {
  max-width: 960px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-post h1 {
  font-size: 1.6rem;
}
.blog-post__meta {
  margin: 1rem 0;
}
.blog-post__meta a {
  color: #111;
  text-decoration: underline;
}

.blog-post__tags {
  font-family: Lato, sans-serif;
  color: #000;
}
.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
}
.blog-post__tag-link {
  font-size: .8rem;
  color: #000;
}

.blog-recent-posts {
  margin-top: 3rem;
  background-color: #fff;
  padding: 2rem 0;
}
.blog-recent-posts h2 {
  text-align: center;
}
.blog-recent-posts__list {
  display: flex;
}
.blog-recent-posts__post {
  display: block;
  flex:  0 0 100%;
  color: #111;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/3);
  }
}
.blog-recent-posts__post:hover {
  text-decoration: none;
}
.blog-recent-posts__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
}
.blog-recent-posts__title {
  margin: 1rem 0 .5rem;
}

.blog-comments {
  max-width: 680px;
  margin: 0 auto;
}
.blog-comments form {
  max-width: 100%;
}
.blog-comments .hs-submit {
  text-align: center;
}
 
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #494A52;
}

/*             Blog Listing with Sidebar            */

.post-item .page-center{
  display: -webkit-flex; /* Safari */
  display: flex; /* Standard syntax */
  margin-bottom: 20px;
}
.post-item .page-center .span4, .post-item .page-center .span8 {
  -webkit-flex: 1; /* Safari */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* Standard syntax */
}
.post-item .page-center .span8 {
  flex-basis: 31.914893614%;

}
img.featured-image {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}
@media(max-width: 480px){
  .blog-post img {
    width: 100% !important;
    float: none !important;
  }
}

/*             Blog Grid Listing            */

.blog-index__post.blog-index__post--small {
  display: flex;
}

.blog-index__post-inner-card {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  border-radius: 5px;
  background: #fff;
}

.blog-index__post-image {
  border-radius: 5px 5px 0 0;
}

.blog-index__post-inner-card .blog-index__post-content {
  display: flex;
  flex-direction: column;
  padding: 24px 30px 30px 30px;
  height: 100%;
}

.blog-post__tag-link,
.blog-post__tags {
  font-size: 12px;
  font-weight: 200;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01rem;
}

.blog-post__tag-link:hover{
  text-decoration: none;
}

.blog-index__post-content--small h2 {
  font-size: 18px;
  line-height: 26px;
}

.blog-index__post-content--small h2 a:hover {
  text-decoration: none;
  transition: all .5s;
}

.blog-post__meta-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 30px;
  font-size: 14px;
}

.blog-post__read-more a:hover {
  text-decoration: none;
}

.read-more__arrow {
  position: relative;
  top: 3px;
  padding-left: 10px;
}

.blog-post__read-more svg {
  width: 15px;
  height: auto;
}

.blog-post__read-more a svg {
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media screen and (max-width: 767px) {
  .blog-index.sidebar {
    padding: 1rem 0;
    padding-bottom: 3.3rem;
  }
}

/*             Blog Grid Listing with Sidebar            */

.blog-index.sidebar {
  display:flex;
}

@media screen and (min-width: 1000px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/2);
  }
}

@media screen and (max-width: 999px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/1);
  }
}

.blog-sidebar {
  padding-top: 3.9rem;
}

@media screen and (max-width: 767px) {
  .blog-sidebar {
    padding: 2rem 1rem;
    padding-bottom: 0;
  }
}

.blog-sidebar h3 {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 600;
  line-height: 37px;
}

.blog-sidebar ul {
  padding: 30px;
  margin: 0 0 40px 0;
  list-style: none;
  border-radius: 5px;
  background: #fff;
}

.blog-sidebar ul li {
  padding: 10px 0;
  border-top: 1px solid #dfddd9;
  font-weight: 600;
}

.blog-sidebar ul li:first-child {
  border-top-color: transparent;
}

.blog-sidebar a {
  text-decoration: none;
}

.blog-sidebar a:hover {
  text-decoration: none;
}

.blog-sidebar .filter-link-count {
  display: none;
}

.blog-sidebar .filter-expand-link {
  position: relative;
  top: -15px;
  display: block;
  margin-bottom: 25px;
  text-transform: capitalize;
  text-align: center;
}

.blog-sidebar-post-listing ul li {
  padding-left: 2.3em;
  line-height: 24px;
  text-indent: -2.3em;
}

.blog-sidebar-post-listing li:before {
  position: relative;
  width: 22px;
  float: left;
  content: counter(list-item);
  margin-right: 25px;
  font-size: 36px;
  font-weight: 600;
}

.blog-sidebar-post-listing li a {
  position: relative;
  top: -3px;
}

.blog-pagination.span12 {
  display: flex;
  margin-left: 0;
}

/* Mobile Blog Sidebar */

@media(max-width: 767px) {
  .hs-blog-listing .content-wrapper > .row-fluid {
    display: flex;
    flex-direction: column;
  }

  .hs-blog-listing .span3 {
    order: 1;
  }

  .hs-blog-listing .span9 {
    order: 2;
  }

  .hs-blog-listing .blog-pagination {
    order: 3;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter ul,
  .blog-sidebar.mobile .blog-sidebar-post-listing ul {
    visibility: hidden;
    opacity: 0;
    transition: all 5s;
    display: none;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter h3,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3 {
    cursor: pointer;
  }
  .blog-sidebar.mobile .blog-sidebar-topic-filter h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3:after {
    content: "+";
    padding-left: 6px;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter.clicked h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing.clicked h3:after {
    content: "-";
    padding-left: 7px;
  }

  .blog-sidebar.mobile .clicked ul {
    display: block;
    visibility: visible;
    transition: all 1s;
    opacity: 1;
  }
}

/* Blog Subscription Section */

.subscription-form {
  display: block;
  margin: 0 auto;
  padding: 60px 0;
  width: 40%;
  text-align: center;
}

@media (max-width: 767px) {
  .subscription-form {
    width: 85%;
  }
}

.subscription-form label {
  text-align: center;
}

/*             Blog Post Layout          */

.post-featured-image {
  margin-bottom: -110px;
  min-height: 300px;
  background-size: cover;
  border-radius: 5px;
  margin-top: 40px;
  background-position: center center;
}

.blog-post {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 84px 100px 80px 100px;
  background: #fff;
  border-radius: 5px;
}

.blog-post.no-image {
  margin-top: 50px;
}

.blog-post__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.blog-post__meta a {
  text-decoration: none;
}

.blog-post__links {
  display: block;
  padding: 26px 0;
  margin-top: 20px;
}

.blog-post__back-to-blog {
  text-decoration: none;
}

.blog-post__back-to-blog svg {
  position: relative;
  top: 6px;
  margin-right: 10px;
  width: 20px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media (max-width: 767px) {
  .blog-post {
    width: 90%;
    padding: 30px;
  }
}

/* Blog Comments */

.blog-comments {
  max-width: 100%;
}

.comment.depth-0:first-child {
  margin-top: 2em;
}

.comment.depth-1 {
  padding-left: 2em;
  padding-top: 1em;
  margin-top: 1em;
}

.blog-comments form {
  margin-top: 2em;
  padding-top: 2em;
}

/* Related Articles */

.blog-recent-posts__list {
  flex-wrap: wrap;
}

.blog-recent-posts .blog-index__post-content h2 {
  text-align: left;
}

.blog-recent-posts .blog-post__meta-section {
  justify-content: flex-end;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}

.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #F3F6F9;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 3rem 0;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  max-width:500px;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  font-size: 16px;
  color: #4F7D24;
  padding: 8px;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: arial black, sans-serif;
  font-size: 1.25rem;
  color: #111;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #111;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}
ul.no-list.hs-error-msgs {
  padding: 0;
}
.systems-page input.email-edit.hs-input {
  width: 100% !important;
}
.systems-page form .hs-form-field {
  margin-bottom: 15px;
}

.systems-page  input#hs-login-widget-remember {
  display: inline-block;
}
ul.no-list.hs-error-msgs {
  padding: 0 !important;
  margin: 0 !IMPORTANT;
}

ul.no-list.hs-error-msgs li label::before {
  display: none;
}

.hs-error-msgs li {
  white-space: normal !important;
}
input#hs-pwd-widget-password {
  width: 100%;
  height: 40px !IMPORTANT;
}

a.hs-reset-widget-show-password {
  display: block;
  margin: 5px 0;
}

.systems-page ul.no-list.hs-error-msgs {
  font-size: 18px;
}
label.hs-membership-global-error.hs-error-msg {
  display: none !important;
}

.page404.error-page::before {
  content: none;
}

.page404 {
  text-align: center;
  padding-bottom: 50px;
}

.page404 .titleError {
  font-size: 150px;
  height: 150px;
  line-height: 150px;
  font-weight: 700;
  color: #292929;
}

.page404 .h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 36px;
}

.page404 p {
  font-weight: 400;
  padding: 0;
  margin: 0;
}


.page404 .hs-search-field {
  background: #fafafa;
  height: 50px;
  width: 50px;
  border: 1px solid #ddd;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s 0.3s ease-out;
  -moz-transition: all 0.4s 0.3s ease-out;
  -ms-transition: all 0.4s 0.3s ease-out;
  -o-transition: all 0.4s 0.3s ease-out;
  transition: all 0.4s 0.3s ease-out;
  -webkit-border-radius: 1000px ;
  -moz-border-radius: 1000px ;
  border-radius: 1000px ;
  max-width: 50px;
  width: 100%;
  margin-top: 20px;
}

.page404 .hs-search-field.sFocus {
  width: 480px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  max-width: 480px;
  width: 100%;
}

.page404 .hs-search-field input.searchField.hs-search-field__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  height: 36px;
  line-height: 36px;
  padding: 0 15px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  color: #888888;
  background-color: #fafafa;
  border: 1px solid #ddd;
  margin: 0;
  height: 50px;
  width: 480px;
  padding: 0 60px 0 15px;
  border: none;
  background: none;
  top: -50px;
  position: relative;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.page404 .hs-search-field.sFocus input.searchField.hs-search-field__input {
  top: 0;
  -webkit-transition: all 0.4s 0.3s ease-out;
  -moz-transition: all 0.4s 0.3s ease-out;
  -ms-transition: all 0.4s 0.3s ease-out;
  -o-transition: all 0.4s 0.3s ease-out;
  transition: all 0.4s 0.3s ease-out;
}

.page404 .hs-search-field button.searchSubmit {
  color: #888888;
  text-decoration: none;
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  border: 0;
  background: transparent;
  padding:0;
  outline:0 !important;
  cursor: pointer;
  z-index:9;
}

.page404 .hs-search-field button.searchSubmit:before {
  font-family: "fontello";
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  content: '\e83f';
}

ul#hsresults {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul#hsresults li {
  padding-bottom: 50px;
}


ul#hsresults li a.hs-search-results__title {
  font-family: 'Roboto',sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 36px;
  color: #5ec6ca;
  text-decoration: none;
  padding-bottom: 40px;
  display: inline-block;
  margin: 0;
}

@media(min-width:768px){
  .systems-page form {
    max-width: 500px;
  }
}
@media (max-width:767px) {
  .systems-page h1 {
    font-size: 22px;
  }

  .systems-page h2 {
    font-size: 17px;
  }
}
@media(max-width:480px){
  .page404 p a {
    color: #5Bc6cb!important;
    text-decoration: underline;
  }
  .page404 p a:hover, .page404 p a:active, .page404 p a:focus {
    color: #000!important;
  }
}