/* ******************************************************************************
*********************************************************************************
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 {
  -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%;
}

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

/* 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 */
  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;
}
.banner-area .dnd-section {
  padding: 0;
}
.banner-section .row-fluid [class*="span"] {
  min-height: 0;
}
.banner-section .dnd-section>.row-fluid {
  padding: 0;
}

.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.dnd-section .widget-type-cell {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */


@font-face {
  font-family: "FS Siena";
  src: url("https://19538110.fs1.hubspotusercontent-eu1.net/hubfs/19538110/Redmaids_High_School_April2021/fonts/FSSienaWeb-ThinItalic.woff") format("woff");
  font-style: italic;
  font-weight: 100;
}


@font-face {
  font-family: "FS Siena";
  src: url("https://19538110.fs1.hubspotusercontent-eu1.net/hubfs/19538110/Redmaids_High_School_April2021/fonts/FSSienaWeb-ExtraLight.woff") format("woff");
  font-style: normal;
  font-weight: 200;
}

@font-face {
  font-family: "FS Siena";
  src: url("https://19538110.fs1.hubspotusercontent-eu1.net/hubfs/19538110/Redmaids_High_School_April2021/fonts/FSSienaWeb-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "FS Siena";
  src: url("https://19538110.fs1.hubspotusercontent-eu1.net/hubfs/19538110/Redmaids_High_School_April2021/fonts/FSSienaWeb-SemiBold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "FontAwesome";
  src: url("https://19538110.fs1.hubspotusercontent-eu1.net/hubfs/19538110/Redmaids_High_School_April2021/fonts/fontawesome-webfont.eot") format("embedded-opentype"), 
    url("https://19538110.fs1.hubspotusercontent-eu1.net/hubfs/19538110/Redmaids_High_School_April2021/fonts/fontawesome-webfont.woff2") format("woff2"), 
    url("https://19538110.fs1.hubspotusercontent-eu1.net/hubfs/19538110/Redmaids_High_School_April2021/fonts/fontawesome-webfont.woff") format("woff"),
    url("https://19538110.fs1.hubspotusercontent-eu1.net/hubfs/19538110/Redmaids_High_School_April2021/fonts/fontawesome-webfont.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}


html {
  font-family: inherit;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Lato, serif;
  font-size: 1rem;
  color: #494a52;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Lato, serif;
}

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
  outline: none;
}

a:hover {
  background: rgba(0,0,0,.1);
  outline: 3px solid rgba(0,0,0,.1);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: Merriweather, serif;
  color: #494a52;
  word-break: break-word;
}

h1 {
  font-size: 2.1rem;
  line-height: 1.4;
}

h2 {
  font-size: 1.6rem;
  line-height: 1.4;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.4;
}

h4 {
  font-family: Lato, sans-serif;
  font-weight: normal;
  font-size: 1.175rem;
  line-height: 1.4;
}

h5 {
  font-size: 1rem;
  line-height: 1.4;
}

h6 {
  font-size: .9rem;
  line-height: 1.4;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

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

ul li,
ol li {}

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

blockquote {
  margin: 0 0 1.25rem;
  padding: .5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #ddd;
  line-height: 1.6;
  color: #6f6f6f;
}

/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* TODO */
small {

}

/* TODO */
mark {

}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

:focus {
  outline: none;
  outline-color: none;
}

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

@media (max-width: 767px) {
  html { }
}

@media (max-width: 480px) {
  html { }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

form {
  max-width: 767px;
  font-family: Lato, sans-serif;
  margin-bottom: 20px;
}

.hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  position: relative;
  text-align: center;
  transition: background-color 300ms ease-out 0s;
  background-color: #494A52;
  border-color: #494A52;
  color: #fff;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  font-size: 1em;
  line-height: 1;
  padding: 15px 53px;
  
  white-space: normal;
  text-decoration: none;
}

.hs-button:hover {
  background-color: #21222a;
  border-color: #21222a;
  
  color: #fff;
  white-space: normal;
  outline: none;
}

.hs-button:active {
  background-color: #71727a;
  border-color: #71727a;
}


.hs-form label {
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  color: #33475b;
  display: block;
  float: none;
  width: auto;
  text-align: left;
  padding-top: 0;
  margin-bottom: 4px;
}

.inputs-list.hs-error-msgs label {
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-top: .5rem;
  color: #a6093d !important;
}

.hs_error_rollup .inputs-list.hs-error-msgs label {
  border: 5px solid #b10e1e;
  margin-top: 30px;
  margin-bottom: 30px;
  background: #fff;
  color: #a6093d;
  padding: 20px 15px 15px;
  font-weight: 500;
  line-height: 1.6;
}

.hs-input, input#hs-pwd-widget-password {
  display: inline-block;
  width: 100% !important;
  height: auto;
  padding: 5px 4px 4px 8px !important;
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1.25;
  color: #000000;
  background: #fff;
  border: 2px solid #53565a;
  box-sizing: border-box;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto !important;
  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:-moz-placeholder {
  color: #bfbfbf;
}

.hs-input::-webkit-input-placeholder {
  color: #bfbfbf;
}

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

.hs-input:focus, 
input#hs-pwd-widget-password:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 0;
}

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

/* 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 {
  border-color: #a6093d;
  border-width: 4px;
}
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 {
  border-color: #b9554d;
}

.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;
}

.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: 1rem;
  color: #494a52;
}
.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: Lato, serif;
}



input#hs-pwd-widget-password {
  height: auto !important;
  margin-top: 0 !important;
  width: 100% !important;
  margin-bottom: 18px;
}

#hs-search-module .hs-input {
  margin-bottom: 18px;
}
/* ******************************************************************************
*********************************************************************************
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: 0;
  margin: 0;
  list-style: none;
}

.hs-menu-item a {
  text-decoration: none;
}

.hs-menu-item:hover a,
.hs-menu-item:focus a {
  text-decoration: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
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.
*********************************************************************************
****************************************************************************** */

.custom-header {
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  color: #53565a;
}

.header__container {
  margin: 0 auto;
  max-width: 100% !important;
}

.header__container:before {
  content: " ";
  display: table;
}

.header__container:after {
  clear: both;
  content: " ";
  display: table;
}

.custom-logo a:hover {
  outline: none;
  background: none;
}


#logo {
  padding: 0 20px 0 .5em;
  display: flex;
  align-items: center;
  height: 100px;
}

.custom-logo img {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}

.right-panel {
  float: right;
  width: 61%;
  position: relative;
  padding-left: .5em;
  padding-right: .5em;
}

.top-menu .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  text-align: right;
  font-family: inherit;
  line-height: 1.6;
}

.top-menu .hs-menu-wrapper > ul > li {
  display: inline-block;
}

.top-menu .hs-menu-wrapper > ul > li > a {
  color: #53565a;
  line-height: inherit;
  padding: 0 5px;
  display: table;
  border-bottom: 1px solid;
  margin: 5px;
  transition: .2s;
  text-decoration: none;
}

.top-menu .hs-menu-wrapper > ul > li > a:hover {
  color: #222;
  margin-top: 0;
  padding-bottom: 3px;
  background: transparent;
  outline: none;
  text-decoration: none;
}

.social-icons {
  float: right;
  font-size: 1.3em;
  margin-right: 15px;
}

.social-icons a {
  color: #53565a;
  display: inline-block;
  padding: 13px;
  line-height: inherit;
  text-decoration: none;
}

.social-icons a:hover {
  outline: none;
  background: none;
  color: #eed14e;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-facebook-f:before, .fa-facebook:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.search-wrap {
  position: relative;
  width: 155px;
  display: inline-block;
  margin-right: 10px;
  float: right;
}

.search-wrap form {
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  max-width: 100% !important;
  margin: 0;
}

.search-wrap .search_box {
  font-family: Arial;
  font-size: 13.3333px;
  font-weight: 400;
  background: #f3d54e;
  border: 0 none;
  max-width: none;
  padding: 10px;
  border-radius: 0;
  outline: none;
  margin: 5px 0;
  width: 100%;
  letter-spacing: normal;
  line-height: normal;
}

.search-wrap .search_button {
  color: #555;
  font-size: 1.3em;
  position: absolute;
  right: 10px;
  top: 12px;
  background: transparent;
  border: none;
  padding: 0;
  font-family: FS Siena,Verdana,Arial,sans-serif;
  line-height: 1;
  transition: .3s;
  cursor: pointer;
}

.search-wrap .search_button:hover {
  color: #222;
}

.fa-search:before {
  content: "";
}

.custom-menu-desktop {
  width: 100%;
  z-index: 9;
  height: 32px;
}

.custom-menu-primary.desktop { 
  position: relative;
  padding-left: .5em;
  padding-right: .5em;
  float: left;
  width: 100%;
}

.custom-menu-primary.desktop .hs-menu-wrapper {
  -webkit-transition: left 300ms ease-out;
  -moz-transition: left 300ms ease-out;
  transition: left 300ms ease-out;
  display: flex;
  justify-content: center;
  width: 100%;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  font-family: inherit;
  line-height: 1.6;

  position: relative;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li {
  display: inline-block;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:not(.divider) {
  display: inline-block;
  border-right-width: 1px;
  border-right-style: solid;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:nth-last-of-type(2) {
  border-right: 0 solid #fff;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > .divider {
  border-left: 0 solid #999;
  height: 11px;
  border-bottom: none;
  border-top: none;
  border-right: solid 0 #2b2b2b;
  clear: none;
  width: 0;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
  display: block;
  width: 100%;
  color: #fff;
  padding: 12px;
  font-size: 12px;
  line-height: inherit;
  text-decoration: none;

  position: relative;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:first-child > a {
  padding-left: 0 !important;
}

.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover {
  text-decoration: none;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  position: absolute;
  z-index: 99;
}

.custom-menu-primary .hs-menu-wrapper a:hover {
  outline: none;
}


.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul {
  background: rgba(255,255,255,.95);
  padding: 1.5rem .5rem 1rem;
  width: 100%;
  height: auto;
  position: absolute;
  top: 32px;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:hover > ul {  
  opacity: 1;
  visibility: visible;
}


.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.development-and-alumnae > ul {
  max-width: 350px;
  width: 100%;
  right: 55px;
  left: auto;

  right: 1px;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.international-outlook > ul {
  max-width: 350px;
  width: 100%;
  right: 55px;
  left: auto;

  right: 306px;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.development-and-alumnae > ul > li,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.international-outlook > ul > li {
  padding-left: .5em;
  padding-right: .5em;
  transition: max-height .5s linear;
  max-height: 500px;
  overflow: hidden;
  transition: max-height .5s linear 0s;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.development-and-alumnae > ul > li > a,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.international-outlook > ul > li > a {
  display: block;
  color: #000;
  background: #b1b3b3;
  transition: .2s;
  padding: 5px 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: inherit;
  text-decoration: none;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.development-and-alumnae > ul > li > a:hover,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.international-outlook > ul > li > a:hover {
  background: #53565a;
  color: #f3d54e;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.development-and-alumnae > ul > li > ul,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.international-outlook > ul > li > ul {
  max-width: none;
  height: auto;
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 1.6;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.development-and-alumnae > ul > li > ul > li,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.international-outlook > ul > li > ul > li {
  line-height: 1.125rem;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.development-and-alumnae > ul > li > ul > li > a,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.international-outlook > ul > li > ul > li > a{
  color: #53565a;
  padding: 7px 10px;
  font-size: 14px;
  line-height: inherit;
  display: block;
  width: 100%;
  text-decoration: none;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.development-and-alumnae > ul > li > ul > li > a:hover,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.international-outlook > ul > li > ul > li > a:hover {
  color: #000;
  font-weight: 600;
  letter-spacing: -.1px;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.about-us > ul,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.admissions > ul {
  max-width: 700px;
  width: 100%;
  right: 55px;
  left: auto;
  right: 306px;
  left: auto;
  right: auto;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.about-us > ul > li,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.admissions > ul > li {
  padding-left: .5em;
  padding-right: .5em;
  transition: max-height .5s linear;
  max-height: 900px;
  overflow: hidden;
  transition: max-height .5s linear 0s;
  float: left;
  width: 50%;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.our-schools > ul {
  max-width: 700px;
  width: 100%;
  right: 55px;
  left: auto;
  right: 306px;
  left: auto;
  right: auto;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.our-schools > ul > li {
  padding-left: .5em;
  padding-right: .5em;
  transition: max-height .5s linear;
  max-height: 900px;
  overflow: hidden;
  transition: max-height .5s linear 0s;
  float: left;
  width: 33.33333%;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.about-us > ul > li:not(:last-child),
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.admissions > ul > li:not(:last-child),
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.our-schools > ul > li:not(:last-child ){
  border-right: 1px solid rgba(103,130,58,.3);
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.about-us > ul > li > a,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.admissions > ul > li > a,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.our-schools > ul > li > a {
  display: block;
  color: #000;
  background: #b1b3b3;
  transition: .2s;
  padding: 5px 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: inherit;
  text-decoration: none;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.about-us > ul > li > a:hover,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.admissions > ul > li > a:hover,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.our-schools > ul > li > a:hover {
  background: #53565a;
  color: #f3d54e;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.about-us > ul > li > ul,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.admissions > ul > li > ul,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.our-schools > ul > li > ul {
  max-width: none;
  height: auto;
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 1.6;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.about-us > ul > li > ul > li,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.admissions > ul > li > ul > li,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.our-schools > ul > li > ul > li {
  line-height: 1.125rem;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.about-us > ul > li > ul > li > a,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.admissions > ul > li > ul > li > a,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.our-schools > ul > li > ul > li > a {
  padding: 7px 10px;
  font-size: 14px;
  line-height: inherit;
  display: block;
  width: 100%;
  text-decoration: none;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.about-us > ul > li > ul > li > a:hover,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.admissions > ul > li > ul > li > a:hover,
.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.our-schools > ul > li > ul > li > a:hover {
  font-weight: 600;
  letter-spacing: -.1px;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li.hs-item-has-children > a:before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: -9px;
  width: 100%;
  height: 16px;
}


@media only screen and (min-width: 28.75em) {

  .custom-menu-primary.desktop .hs-menu-wrapper > ul {
    max-width: none;
    height: auto;
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li {
    float: left;
    position: relative;
    position: static
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
    padding: 0 5px;
  }
}

@media only screen and (min-width: 40em) {

  .custom-logo {
    position: relative;
    padding-left: .5em;
    padding-right: .5em;
    float: left;
    width: 37.5%;
  }

  .right-panel { 
    width: 62.5%;
    position: relative;
    padding-left: .5em;
    padding-right: .5em;
    float: right;
  }

  .custom-menu-primary.desktop { 
    position: relative;
    padding-left: .5em;
    padding-right: .5em;
    float: left;
  }

  .custom-menu-primary .hs-menu-wrapper {
    position: relative;
    padding-left: .5em;
    padding-right: .5em;
    float: left;
  }
}

@media only screen and (min-width: 64.063em) {

  .custom-logo {
    width: 41.66667%;
    position: relative;
    padding-left: .5em;
    padding-right: .5em;
    float: left;
  }

  .right-panel {
    float: left;
    width: 58.33333%;
    position: relative;
    padding-left: .5em;
    padding-right: .5em;
  }

  .custom-menu-primary.desktop {
    position: relative;
    padding-left: .5em;
    padding-right: .5em;
    float: left;
  }

  .custom-menu-primary .hs-menu-wrapper {
    position: relative;
    padding-left: .5em;
    padding-right: .5em;
    float: left;
  }
}


@media only screen and (min-width: 640px) {

  #logo {
    padding-right: 0;
  }
}

@media only screen and (min-width: 700px) {

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
    font-size: 13px;
  }
}

@media only screen and (min-width: 750px) {

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) {

  .child-trigger, 
  .mobile-trigger,
  .custom-header-mobile,
  .custom-menu-mobile {
    display: none;
  }
}

@media only screen and (min-width: 800px) {

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
    padding: 0 1.4vw;
  }
}

@media only screen and (min-width: 900px) {

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
    padding: 0 2.1vw;
  }
}

@media only screen and (min-width: 1025px) {

  #logo {
    padding-left: .5em;
    height: 115px;
  }

  .top-menu .hs-menu-wrapper > ul > li > a {
    margin: 10px 10px 7px;
    font-size: 18px;
  }

  .top-menu .hs-menu-wrapper > ul > li > a:hover {
    margin-top: 7px;
    padding-bottom: 3px;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.hs-item-has-children > a:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: solid 5px;
    margin-right: 8px;
    margin-top: -2.5px;
    position: absolute;
    top: 50%;
    right: 0;
  }
}

@media only screen and (min-width: 1100px) {

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
    padding: 0 3vw;
  }
}

@media only screen and (min-width: 1200px) {

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
    padding: 0 3.5vw;
  }
}


@media (max-width: 2600px) and (min-width: 2201px) {

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.development-and-alumnae > ul {
    right: -6px;
  }
}

@media (max-width: 2200px) and (min-width: 1901px) {

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.development-and-alumnae > ul {
    right: -33px;
  }
}

@media (max-width: 1900px) and (min-width: 1600px) {

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.development-and-alumnae > ul {
    right: -54px;
  }
}

@media only screen and (max-width: 1100px) {

  .custom-menu-primary.desktop .hs-menu-wrapper > ul {
    position: static;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.our-schools > ul,
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.about-us > ul, 
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.admissions > ul {
    max-width: 100%;
    left: 0;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.international-outlook,
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.development-and-alumnae {
    position: relative;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.international-outlook > ul {
    top: 27px;
    left: 0;
    width: 350px;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.development-and-alumnae > ul {
    width: 350px;
    right: 0;
    top: 27px;
  }
}

@media (max-width: 767px) {

  .body-wrapper {
    margin-top: 50px;
  }

  .custom-header {
    display: none;
  }

  .custom-header-mobile {
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #53565a;
    height: 50px;

  }

  .custom-mobile-logo {
    height: 50px;
    text-align: left;
    padding: 0 1rem;
    position: absolute;
    top: 4px;
    left: 0;
    right: 2.8125rem;
    float: left;
  }

  .custom-mobile-logo a {
    line-height: inherit;
    text-decoration: none;
  }

  .custom-mobile-logo a:hover {
    outline: none;
    background: none;
  }

  .custom-mobile-logo img {
    height: 40px;
    display: inline-block;
    vertical-align: middle;
  }

  .mobile-trigger {
    width: 60px;
    height: 60px;
    border-left: 0;
    box-shadow: none;
    z-index: 999;
    position: absolute;
    top: 0;
    right: 0;
  }

  .mobile-trigger a {
    height: 60px;
    width: 60px;
    line-height: 60px;
    z-index: 999;
    padding: 0;
    color: #fff;
    position: relative;
    display: block;
    text-indent: 2.1875rem;
  }

  .mobile-trigger a:hover {
    outline: none;
    background: none;
  }

  .mobile-trigger a span {
    -webkit-box-shadow: 0 9px 0 1px #53565a, 0 16px 0 1px #53565a, 0 23px 0 1px #53565a;
    box-shadow: 0 9px 0 1px #53565a, 0 16px 0 1px #53565a, 0 23px 0 1px #53565a;
    width: 25px;
    left: 17px;
    top: 13px;
    height: .1px;
    position: absolute;
    display: block;
  }

  .mobile-trigger a:hover span {
    -webkit-box-shadow: 1px 10px 1px 1px #b3b3b3, 1px 16px 1px 1px #b3b3b3, 1px 22px 1px 1px #b3b3b3;
    box-shadow: 0 10px 0 1px #b3b3b3, 0 16px 0 1px #b3b3b3, 0 22px 0 1px #b3b3b3;
  }

  .custom-menu-mobile {
    background: rgba(166,9,61,.95);
    width: calc(100% - 1rem);
    padding: .5rem;
    -webkit-transform: translate3d(-100%,0,0);
    -moz-transform: translate3d(-100%,0,0);
    -ms-transform: translate3d(-100%,0,0);
    -o-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
    transition: .5s;
    box-shadow: inset 3px 0 15px 0 rgb(153 153 153 / 50%);
    top: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    font-weight: 200;
    overflow-y: auto;
    z-index: 1001;
    box-sizing: content-box;
    line-height: 1;
    overflow-x: hidden;
  }

  .mobile-open .custom-menu-mobile {
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  .mobile-open {
    overflow: hidden;
  }

  .close-menu-icon {
    padding: 0;
    color: #fff;
    position: relative;
    display: block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    z-index: 1;
    text-indent: 2.1875rem;
    float: right !important;
    -webkit-backface-visibility: hidden;
  }

  .close-menu-icon:hover {
    outline: none;
    background: none;
  }

  .close-menu-icon span {
    position: absolute;
    display: block;
    width: 25px;
    left: 17px;
    top: 13px;
    height: .1px;
    -webkit-backface-visibility: hidden;
  }

  .close-menu-icon span:before, 
  .close-menu-icon span:after {
    content: "";
    width: 2px;
    height: 25px;
    background: #fff;
    display: block;
    position: absolute;
    right: 4px;
    top: -5px;
  }

  .close-menu-icon span:before {
    transform: rotate(
      45deg
    );
  }

  .close-menu-icon span:after {
    transform: rotate(
      -45deg
    );
  }

  .social-icons {
    float: right;
    font-size: 1.3em;
    margin-right: 0;
    position: relative;
  }

  .social-icons a {
    color: #53565a;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    padding:9px;
  }

  .search-wrap {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 100%;
    float: none;
  }

  .search-wrap .search_box {
    background: #fff;
    padding: 6px;
    border: 0 none;
    max-width: none;
    border-radius: 0;
    outline: none;
    width: 100%;
    margin: 5px 0;
  }

  .search-wrap .search_button {
    color: rgba(0,0,0,.3);
    top: 8px;
    font-size: 1.2rem;
    position: absolute;
    right: 10px;
    transition: .3s;
  }

  .search-wrap .search_button:hover {
    color: #222;
  }

  .top-menu .hs-menu-wrapper > ul {
    margin: 10px 0 20px;
    text-align: right;
    float: none;
  }

  .top-menu .hs-menu-wrapper > ul > li {
    display: block;
  }

  .top-menu .hs-menu-wrapper > ul > li > a {
    color: #fff;
    border: 0;
    padding: 0;
    margin: 5px 0;
    font-size: 15px;
    font-weight: 200;
    display: table;
    line-height: inherit;
    text-decoration: none;
    transition: .2s;
  }

  .top-menu .hs-menu-wrapper > ul > li > a:hover {
    color: #fff;
    padding: 0;
    text-decoration: none;
  }

  .custom-menu-primary .hs-menu-wrapper {
    float: none;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    font-family: inherit;
    line-height: 1.6;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > div {
    color: #fff;
    position: relative;
    cursor: pointer;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li:not(.active) > div {
    border-bottom: 1px solid rgba(255,255,255,.2);
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > div > a {
    font-size: 18px;
    padding: .2rem 1rem .2rem 0;
    display: block;
    color: #fff;
    text-decoration: none;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper a:hover {
    outline: none;
    background: none;
  }

  .child-trigger {
    position: absolute;
    right: 0;
    font-size: 14px;
    font-family: FontAwesome;
    top: 0;
    cursor: pointer;
    width: 40px;
    line-height: 41px;
    text-align: center;
  }

  .child-trigger:after {
    content: "";
  }

  .custom-menu-primary.mobile .hs-menu-wrapper ul > li.active > div .child-trigger:after {
    content: "";
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul {
    list-style: none;
    margin: 0;
    margin: 0;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding-bottom: 10px;
    line-height: 1.6;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper ul > li > ul > li > div {
    color: #fff;
    position: relative;
    cursor: pointer;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul > li > div > a {
    padding: .2rem 1rem .2rem 0;
    display: block;
    color: #fff;
    line-height: inherit;
    text-decoration: none;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper>ul>li>ul li ul {
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding-bottom: 10px;
    display: none;
    line-height: 1.6;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul li ul li {
    font-style: italic;
    font-weight: 100;
    padding-left: 10px;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul li ul li div {
    color: #fff;
    position: relative;
    cursor: pointer;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul li ul li div a {
    padding: .2rem 1rem .2rem 0;
    display: block;
    color: #fff;
    line-height: inherit;
    text-decoration: none;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > ul li ul li ul li {
    font-style: italic;
    font-weight: 100;
    padding-left: 20px;
    font-size: .9rem;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.footer__container {
  padding: 1rem;
  margin: 0 auto;
}

.footer-top {
  background: #f7f6f1;
  padding: 30px .5em 10px;
  font-size: .9em;
  border-top: 5px solid #fff;
}

.footer-top .footer__container {
  max-width: 100% !important;
  padding: 0;
}

.footer-top .row:before, 
.footer-top .row:after {
  content: " ";
  display: table;
}

.footer-top .row:after {
  clear: both;
}

.footer-registered-office,
.footer-junior-school, 
.footer-senior-school, 
.footer-menu, 
.footer-logo {
  position: relative;
  padding-left: .5em;
  padding-right: .5em;
  float: left;
  width: 100%;
}

.footer-menu {
  min-height: 1px;
}

.footer-registered-office h4,
.footer-junior-school h4,
.footer-senior-school h4,
.footer-menu h4 {
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.4;
  color: #a6093d;
  margin-top: .2rem;
  margin-bottom: 1rem;
  word-break: break-word;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

.footer-registered-office p,
.footer-junior-school p,
.footer-senior-school p {
  margin-bottom: 1rem;
  word-break: break-word;
  font-weight: 500;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.footer-logo img {
  display: inline-block;
  vertical-align: middle;
}

.footer-image-top img {
  width: 80%;
  display: inline-block;
  vertical-align: middle;
}

.footer-images {
  margin-bottom: 1rem;
  word-break: break-word;
  font-weight: 500;
  line-height: 1.6;
}

.footer-image-bottom img {
  width: 80%;
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: middle;
}

.footer-menu .hs-menu-wrapper > ul {
  list-style-position: outside;
  list-style-type: disc;
  margin: 0;
  padding: 0;
  display: block;
  line-height: 1.6;
  margin: 1em;
}

.footer-menu .hs-menu-wrapper > ul > li > a {
  color: #000;
  line-height: inherit;
  text-decoration: none;
}

.footer-menu .hs-menu-wrapper > ul > li > a:hover {
  color: #000;
  background: rgba(0,0,0,.1);
  outline: 3px solid rgba(0,0,0,.1);
  text-decoration: none;
}

.footer-bottom {
  width: 100%;
  padding: 5px 0;
  font-size: .8em;
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
}

.footer-bottom .footer__container {
  max-width: 100% !important;
  padding: 0;
  padding-left: .5em;
  padding-right: .5em;
}

.copyright {
  position: relative;
  padding-left: .5em;
  padding-right: .5em;
  width: 100%;
}

.copyright ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  line-height: 1.6;
}

.copyright ul:before, 
.copyright ul:after {
  content: " ";
  display: table;
}

.copyright ul:after {
  clear: both;
}

.copyright ul li {
  display: block;
  height: auto;
  float: left;
  width: 50%;
}

.copyright ul li:nth-of-type(n) {
  clear: none;
}

.copyright ul li:nth-of-type(2n+1) {
  clear: both;
}

.copyright ul li a {
  line-height: inherit;
  text-decoration: none;
}

.copyright ul li a:hover {
  background: rgba(0,0,0,.1);
  outline: 3px solid rgba(0,0,0,.1);
}


.footer-mobile-menu {
  background: #a6093d;
  bottom: 0;
  display: inline-block;
  height: 40px;
  overflow: hidden;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  border-top: 1px solid #555;
}

.footer-mobile-menu .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  line-height: 1.6;
  display: table;
  width: 100%;
}

.footer-mobile-menu .hs-menu-wrapper > ul > li {
  display: table-cell;
  vertical-align: middle;
  height: 40px;
  line-height: 1;
  font-size: 12px;
  width: 33.3333%;
  text-align: center;
}

.footer-mobile-menu .hs-menu-wrapper > ul > li > a {
  color: #fff;
  line-height: inherit;
  text-decoration: none;
}

.footer-mobile-menu .hs-menu-wrapper > ul > li > a:hover {
  color: #fff;
  background-color: transparent;
  outline: none;
  text-decoration: none;
}

@media only screen and (min-width: 40em) {

  .footer-mobile-menu {
    display: none;
  }

  .copyright ul li:nth-of-type(3n+1) {
    clear: both;
  }

  .copyright ul li:nth-of-type(n) {
    clear: none;
  }

  .footer-registered-office,
  .footer-junior-school,
  .footer-senior-school,
  .footer-menu,
  .footer-logo {
    position: relative;
    padding-left: .5em;
    padding-right: .5em;
    float: left;
    width: 50%;
  }

  .copyright ul li {
    width: 33.33333%;
    list-style: none;
  }
}


@media only screen and (min-width: 64.063em) {

  .footer-registered-office,
  .footer-junior-school,
  .footer-senior-school,
  .footer-menu,
  .footer-logo {
    position: relative;
    padding-left: .5em;
    padding-right: .5em;
    float: left;
    width: 25%;
  }

  .copyright ul li {
    width: 16.66667%;
    list-style: none;
  }
}

@media only screen and (min-width: 1025px) {

  .footer-logo-inner {
    text-align: center;
  }
}

@media only screen and (max-width: 639px) {

  .footer-registered-office h4,
  .footer-junior-school h4, 
  .footer-senior-school h4, 
  .footer-menu h4 {
    line-height: 1.2;
  }

  .footer-registered-office p,
  .footer-junior-school p, 
  .footer-senior-school p {
    line-height: 1.4;
  }

  .footer-bottom {
    margin-bottom: 40px;
  }
}

@media (max-width: 380px) {

  .footer-mobile-menu .hs-menu-wrapper > ul > li:first-child {
    padding: 0 0 0 5px;
  }

  .footer-mobile-menu .hs-menu-wrapper > ul > li:last-child {
    padding: 0 8px 0 0;
  }
}
/* ******************************************************************************
*********************************************************************************
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
*********************************************************************************
****************************************************************************** */

.hs-blog-listing, 
.hs-blog-post {
  background: #e8e8e7;
}

.section.post-footer .actions {
  text-align: left;
}

.blog-comments .hs-submit {
  text-align: center;
  margin-top: 30px;
}

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

input[type="search"]::-webkit-search-cancel-button { 
  display:none; 
}

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

.grecaptcha-badge {
  margin-left: 0;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Lato, sans-serif;
  margin: 3.3rem 0;
}
.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  color: #494a52;
  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: #494a52;
  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-pagination a:hover {
  outline: none;
  background: none;
}


/* TODO: Find a better place for this */

.content-wrapper {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.blog-list-wrap {
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  font-weight: normal;
  font-style: normal;
  position: relative;
  color: #53565a;
  background: #e8e8e7;
}

.blog-list-wrap .content-wrapper {
  max-width: 100% !important;
  padding: 0;
}

.blog-list-wrap .content-wrapper:before,
.blog-list-wrap .content-wrapper:after {
  content: " ";
  display: table;
}

.blog-list-wrap .content-wrapper:after {
  clear: both;
}

.blog-sidebar {
  padding-left: .5em;
  padding-right: .5em;
  width: 100%;
  float: left;
}

.blog-sidebar-inner {
  position: relative;
  padding-left: .5em;
  padding-right: .5em;
  float: left;
  width: 100%;
}

.blog-sidebar h2 {
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  font-size: 2em;
  font-weight: 500;
  color: #53565a;
  line-height: 1.4;
  margin-top: .2rem;
  margin-bottom: 1rem;
  word-break: break-word;
  text-rendering: optimizeLegibility;
}

.sidebar-topics ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}

.sidebar-topics ul li {
  cursor: pointer;
  display: block;
  padding: 9px 2px;
  color: #53565a;
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  text-decoration: none;
}

.sidebar-topics ul li a:before {
  content: "  ";
  font-family: FontAwesome;
  padding-right: 4px;
}

.sidebar-topics ul li a {
  color: #53565a;
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  font-weight: normal;
  font-style: normal;
  display: block;
  line-height: 1;
  text-decoration: none;
}

.sidebar-topics ul li.active a {
  color: #000;
}

.sidebar-topics ul li a:hover {
  color: #222;
  outline: none;
  background: none;
  text-decoration: none;
}

.blog-index {
  padding-top: .7vw;
  padding-right: 2vw;
  padding-bottom: 2vw;
  padding-left: 2vw;
  width: 100%;
  float: left;
}

.blog-index-inner {
  position: relative;
  padding-left: .5em;
  padding-right: .5em;
  width: 100%;
  float: left;
}

.blog-index h1 {
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  font-size: 3em;
  font-weight: 500;
  color: #53565a;
  line-height: 1.4;
  margin-top: .2rem;
  margin-bottom: 1rem;
  word-break: break-word;
  text-rendering: optimizeLegibility;
}

.blog-index h1.topic-page-title {
  text-transform: capitalize;
}

.post-listing {
  width: auto;
  margin-left: -.5em;
  margin-right: -.5em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none;
}

.post-listing:before,
.post-listing:after {
  content: " ";
  display: table;
}

.post-listing:after {
  clear: both;
}


.post-item {
  margin-bottom: 1em;
  padding-left: .5em;
  padding-right: .5em;
  width: 50%;
  float: left;
}

.post-item-inner {
  width: 100%;
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  position: relative;
}

.post-item-inner:after {
  content: "";
  display: block;
  padding-bottom: 150%;
}

.post-item a.post-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

.post-item a.post-link:hover {
  outline: none;
  background: none;
}

.post-item .blog-item__image {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.post-item .blog-item__image img {
  display: none;
  vertical-align: middle;
}

.article-content-wrap {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  height: 59px;
  overflow: hidden;
  transition: .3s;
  padding: 4px 10px;
  background: #53565a;
}

.article-content-wrap>p {
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 5px;
  margin: 0;
  margin-bottom: 5px;
  min-height: 59px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  word-break: break-word;
  font-weight: 500;
  text-rendering: optimizeLegibility;
}

.article-content-wrap>p b {
  font-weight: bold;
  line-height: inherit;
}

.news-details {
  opacity: .7;
}

.fa-clock-o:before {
  content: "";
}

.news-body>span {
  word-wrap: break-word;
}

.news-more {
  position: absolute;
  top: calc(100% - 30px);
  z-index: -1;
  opacity: 0;
  transition: .3s;
  background: #53565a;
  width: 100%;
  padding: 3px 10px;
  left: 0;
}

.news-body {
  color: #fff;
}

.post-item-inner:hover .article-content-wrap,
.post-item-inner.no-ft .article-content-wrap {
  height: 100%;
}

.post-item-inner:hover .news-more,
.post-item-inner.no-ft .news-more {
  z-index: 1;
  opacity: 1;
}

.spacer-top {
  padding-top: .7vw;
  padding-right: 2vw;
  padding-bottom: 2vw;
  padding-left: 2vw;
  float: left;
  width: 100%;
}

.spacer-bottom {
  padding-top: .7vw;
  padding-right: 2vw;
  padding-bottom: 2vw;
  padding-left: 2vw;
  float: left;
  width: 25%;
}

.spacer-wrapper:before, 
.spacer-wrapper:after {
  content: " ";
  display: table;
}

.spacer-wrapper:after {
  clear: both;
}

/* Post Page Styling */

.post-wrapper {
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  font-weight: normal;
  font-style: normal;
  position: relative;
  color: #53565a;
  background: #e8e8e7;
  line-height: 1;
}

.post-wrapper .content-wrapper {
  max-width: 100% !important;
  padding: 0;
}

.post-wrapper .content-wrapper:before,
.post-wrapper .content-wrapper:after {
  content: " ";
  display: table;
}

.post-wrapper .content-wrapper:after {
  clear: both;
}

.blog-post {
  width: 100%;
  float: left;
  padding-top: .7vw;
  padding-right: 2vw;
  padding-bottom: 2vw;
  padding-left: 2vw;
  padding-right: 1em;
}

.blog-post-inner,
.blog-post-in {
  padding-left: .5em;
  padding-right: .5em;
  width: 100%;
  float: left;
}

.blog-post-inner h1 {
  font-family: 'FS Siena',Verdana,Arial,sans-serif;
  font-size: 3em;
  font-weight: 500;
  color: #53565a;
  line-height: 1.4;
  margin-top: .2rem;
  margin-bottom: 1rem;
  word-break: break-word;
  text-rendering: optimizeLegibility;
}

.blog-post__body p {
  font-weight: 500;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.sidebar-menu a.sidebar-menu-title {
  font-size: 2rem;
  line-height: inherit;
  color: #53565a;
  margin-bottom: .2em;
  margin-top: .2em;
  padding: 10px;
  display: block;
  word-wrap: break-word;
  text-decoration: none;
}

.sidebar-menu a.sidebar-menu-title:before {
  content: "";
  font-family: FontAwesome;
}

.sidebar-menu a.sidebar-menu-title:hover {
  color: #222;
  outline: none;
  background: none;
  text-decoration: none;
}

.sidebar-menu .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}

.sidebar-menu .hs-menu-wrapper > ul > li > a {
  padding: 10px;
  display: block;
  line-height: inherit;
  word-wrap: break-word;
  text-decoration: none;
}

.sidebar-menu .hs-menu-wrapper > ul > li > a:hover {
  color: #222;
  outline: none;
  background: none;
  text-decoration: none;
}

.sidebar-menu .hs-menu-wrapper > ul > li > a:before {
  content: "  ";
  font-family: FontAwesome;
  padding-right: 4px;
}

.hs-blog-listing #logo,
.hs-blog-post #logo {
  height:115px;
}

.hs-blog-listing .social-icons, 
.hs-blog-post .social-icons {
  /* margin-top: 10px;*/
  align-items: center;
  /*height: 100px;*/
  display: flex;
}

.hs-blog-listing .social-icons a + a,
.hs-blog-post .social-icons a + a {
  border-left:solid 2px #53565a;
}

.main-site-link {
  float:right;
  /* margin-top:10px; */
  align-items: center;
  /*height: 100px;*/
  display: flex;
}

.main-site-link a, .main-site-link a:hover{
    color: #FFF;
    background: rgba(166,9,61,1.0);
    padding: 15px;
    height: 50px;
}


.news-details-post {
  opacity: .7;
}

.news-social-share {
  background: #666;
  border-radius: 4px;
  margin-right: 14px;
  padding: 4px 5px;
  font-size: 11px;
  display: inline-block;
  color: #fff;
  margin-top: 15px;
  line-height: inherit;
  text-decoration: none;
}

.news-social-share#facebook {
  background: #4267b2;
}

.news-social-share#facebook:hover {
  background: #365899;
  color: #fff;
  outline: none;
}

.news-social-share#twitter {
  background: #1b95e0;
}

.news-social-share#twitter:hover {
  background: #0c7abf;
  color: #fff;
  outline: none;
}

.section.post-footer {
  margin-top: 50px;
}

.blog-post__body ul li {
  line-height: 1.6;
}

.blog-post__body h2,
.blog-post__body h3 {
  font-size: 1.6em;
  font-weight: 500;
  color: #53565a;
  line-height: 1.4;
  margin-top: .2rem;
  margin-bottom: 1rem;
  word-break: break-word;
}


/* Related Posts Styling */

.related-post-wrapper h2 {
  font-size: 2em;
  font-weight: 500;
  color: #53565a;
  line-height: 1.4;
  margin-top: .2rem;
  margin-bottom: 1rem;
  word-break: break-word;
  text-rendering: optimizeLegibility;
}

.related-post-inner {
  width: auto;
  margin-left: -.5em;
  margin-right: -.5em;
  line-height: 1.6;
}

.related-post-inner:before,
.related-post-inner:after {
  content: " ";
  display: table;
}

.related-post-inner:after {
  clear: both;
}

.post-item-related {
  margin-bottom: 1em;
  padding-left: .5em;
  padding-right: .5em;
  width: 50%;
  float: left;
}

.post-item-related .post-item-inner {
  width: 100%;
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  position: relative;
}

.post-item-related .post-item-inner:after {
  content: "";
  display: block;
  padding-bottom: 150%;
}

.post-item-related a.post-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

.post-item-related a.post-link:hover {
  outline: none;
  background: none;
}

.post-item-related .blog-item__image {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.post-item-related .blog-item__image img {
  display: none;
  vertical-align: middle;
}

.post-item-related .article-content-wrap {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  height: 59px;
  overflow: hidden;
  transition: .3s;
  padding: 4px 10px;
  background: #53565a;
}

.post-item-related .article-content-wrap>p {
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 5px;
  margin: 0;
  margin-bottom: 5px;
  min-height: 59px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  word-break: break-word;
  font-weight: 500;
  text-rendering: optimizeLegibility;
}

.post-item-related .article-content-wrap>p b {
  font-weight: bold;
  line-height: inherit;
}

.post-item-related .news-details {
  opacity: .7;
}

.post-item-related .news-body>span {
  word-wrap: break-word;
}

.post-item-related .news-more {
  position: absolute;
  top: calc(100% - 30px);
  z-index: -1;
  opacity: 0;
  transition: .3s;
  background: #53565a;
  width: 100%;
  padding: 3px 10px;
  left: 0;
}

.post-item-related .news-body {
  color: #fff;
  font-size: 1em;
}

.post-item-related .post-item-inner:hover .article-content-wrap {
  height: 100%;
}

.post-item-related .post-item-inner:hover .news-more {
  z-index: 1;
  opacity: 1;
}

a.back-to-listing {
  background-color: transparent;
  border-color: #a6093d;
  border-style: solid;
  border-width: 2px;
  color: #a6093d;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  margin: .5em;
  margin-left: 0;
  padding: .8em 2em;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background-color 300ms ease-out 0s;
}

a.back-to-listing:hover {
  background-color: #a6093d;
  color: #fff;
  outline: none;
  text-decoration: none;
}


@media only screen and (min-width: 40em) {

  .spacer-top {
    float: left;
    width: 75%;
  }

  .spacer-bottom {
    float: left;
    width: 25%;
  }

  .blog-index {
    width: 75%;
  }
  .blog-post {
    width: 100%;
  }

  .blog-sidebar {
    width: 25%;
    position: relative;
    padding-left: .5em;
    padding-right: .5em;
    float: left;
  }

  .post-item {
    width: 50%;
    position: relative;
    padding-left: .5em;
    padding-right: .5em;
    float: left;
  }

  .post-item-related {
    width: 50%;
  }
}

@media only screen and (min-width: 64.063em) {

  .blog-sidebar {
    position: relative;
    padding-left: .5em;
    padding-right: .5em;
    float: left;
  }

  .post-item {
    width: 25%;
    position: relative;
    padding-left: .5em;
    padding-right: .5em;
    float: left;
  }

  .post-item-related {
    width: 25%;
  }
}


@media only screen and (min-width: 640px) {

  /*
  .blog-list-wrap,
  .post-wrapper {
    background: #e8e8e7;
    background: -moz-linear-gradient(left,#f5f5f5 0%,#f5f5f5 25%,#e8e8e7 25%,#e8e8e7 100%);
    background: -webkit-linear-gradient(left,#f5f5f5 0%,#f5f5f5 25%,#e8e8e7 25%,#e8e8e7 100%);
    background: linear-gradient(to right,#f5f5f5 0%,#f5f5f5 25%,#e8e8e7 25%,#e8e8e7 100%);
  }
  */
}

@media (min-width: 768px) {

  .sidebar-menu a.sidebar-mobile-title {
    display: none;
  }  

  .sidebar-topics ul {
    display: block !important;
    height: auto !important;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1200px) {

  .post-item .news-body {
    display: none;
  }

  .post-item-related .news-body {
    display: none;
  }
}

@media (max-width: 767px) {
  
  .spacer-wrapper {
    display: none;
  }

  .blog-post__body p {
    line-height: 1.4;
  }

  .blog-list-wrap,
  .post-wrapper {
    background: #e8e8e7;
  }

  .blog-index{
    width: 75%;
    float: none;
  }
  .blog-post {
    width: 100%;
    float: none;
  }

  .blog-sidebar,
  .blog-sidebar-inner {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    float: none;
  }

  .blog-sidebar h2 {
    background: #555;
    color: #fff;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,.5);
    padding: 0 1rem;
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .blog-sidebar h2:after {
    content: "";
    font-family: FontAwesome;
    position: absolute;
    right: 18px;
  }

  .blog-index h1 {
    line-height: 1;
  }

  .blog-post-inner, 
  .blog-post-in {
    float: none;
  }

  .sidebar-menu {
    background: #555;
  }

  .sidebar-menu a.sidebar-menu-title {
    display: none;
  }

  .sidebar-menu a.sidebar-mobile-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0;
    margin-top: 0;
    border-bottom: 1px solid rgba(255,255,255,.5);
    height: auto;
    padding: 5px 1rem;
    display: block;
    width: 100%;
    cursor: pointer;
  }

  .act .sidebar-menu a.sidebar-mobile-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    margin-top: 0;
    border-bottom: 1px solid rgba(255,255,255,.5);
  }

  .sidebar-menu a.sidebar-mobile-title:hover {
    color: #fff;
    outline: none;
    background: none;
  }

  .sidebar-menu a.sidebar-mobile-title:before {
    content: none;
  }

  .sidebar-menu a.sidebar-mobile-title:after {
    content: "";
    font-family: FontAwesome;
    position: absolute;
    right: 18px;
  }

  .sidebar-menu .hs-menu-wrapper {
    display: none;
  }

  .blog-post-inner h1 {
    line-height: 1;
  }

  .sidebar-menu .hs-menu-wrapper > ul > li {
    width: 49%;
    display: inline-flex;
  }

  .sidebar-menu .hs-menu-wrapper > ul > li:nth-of-type(odd) > a {
    border-right: 1px solid rgba(255,255,255,.5);
  }

  .sidebar-menu .hs-menu-wrapper > ul > li > a {
    height: auto;
    padding: 5px 1rem;
    display: inline-flex;
    color: #fff;
    overflow: hidden;
    word-wrap: break-word;
    width: 100%;
    text-decoration: none;
  }

  .sidebar-menu .hs-menu-wrapper > ul > li > a:hover {
    color: #fff;
    text-decoration: none;
  }

  .sidebar-menu .hs-menu-wrapper > ul > li:last-of-type > a {
    padding-bottom: 13px;
  }

  .sidebar-menu .hs-menu-wrapper > ul > li > a:before {
    content: none;
  }

  .sidebar-topics ul {
    background: #555;
    color: #fff;
    padding: 10px 0;
    display: none;
  }

  .sidebar-topics ul:before,
  .sidebar-topics ul:after {
    content: '';
    display: table;
  }

  .sidebar-topics ul:after {
    clear: both;
  }

  .sidebar-topics ul li {
    width: 50%;
    float: left;
    padding: 0;
  }

  .sidebar-topics ul li:nth-child(2n-1) {
    border-right: 1px solid rgba(255,255,255,.5);
  }

  .sidebar-topics ul li a {
    padding: 5px 1rem;
    color: #fff;
    display: inline-block;
    text-decoration: none;
  }

  .sidebar-topics ul li a:hover {
    color: #fff;
  }

  .sidebar-topics ul li.active a {
    color: #000;
  }

  .sidebar-topics ul li a::before {
    content: "";
    padding: 0;
  }
}

@media (max-width: 639px) {

  .related-post-wrapper h2 {
    line-height: 1.2;
  }
}


@media (max-width: 479px) {

  .post-item,
  .post-item-related {
    width: 100%;
    float: none;
  }
}
/* ******************************************************************************
*********************************************************************************
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 20px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  font-size: 13px;
  color: #4F7D24;
  padding: .1rem .75rem;
  max-width: 767px;
  width: 100%;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  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: #494a52;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}




.systems-page {
  padding-left: 0;
  padding-right: 0;
}

.systems-page .actions {
  margin: 10px 0;
}

.systems-page .hs-input {
  margin-bottom: 18px;
}

.form-input-validation-message ul.no-list {
  margin: 0;
  padding: 0;
}

.form-input-validation-message ul.no-list {
  padding: 0;
}

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

@media (max-width: 767px) {

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

  .systems-page h3 {
    font-size: 23px;
  }

  h1.error-page_heading {
    font-size: 40px;
  }
}


@media (max-width: 479px) {

  .form-input-validation-message label.hs-error-msg, 
  ul.no-list.hs-error-msgs label {  }


  .systems-page h1 {
    font-size: 33px;
  }

  .systems-page h2 {
    font-size: 25px;
  }
}