/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 90%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

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

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

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

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

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

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

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

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

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

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
/*  --column-gap: 2.13%;*/
/*  --column-width-multiplier: 8.333;*/
}

/* Mobile layout */

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


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  
    .row-fluid .span1 {
      width: calc(100% / (12 / 1));
/*      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span2 {
      width: calc(100% / (12 / 2));
/*      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span3 {
      width: calc(100% / (12 / 3));
/*      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span4 {
      width: calc(100% / (12 / 4));
/*      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span5 {
      width: calc(100% / (12 / 5));
/*      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span6 {
      width: calc(100% / (12 / 6));
/*      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span7 {
      width: calc(100% / (12 / 7));
/*      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span8 {
      width: calc(100% / (12 / 8));
/*      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span9 {
      width: calc(100% / (12 / 9));
/*      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span10 {
      width: calc(100% / (12 / 10));
/*      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));*/
    }
  
    .row-fluid .span11 {
      width: calc(100% / (12 / 11));
/*      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));*/
    }
  
}
.content-wrapper {
	margin: 0 auto;
/*  padding: 0 1rem;*/
}

@media screen and (min-width: 1380px) {
	.content-wrapper {
		padding: 0;
	}
}

.dnd-section > .row-fluid {
	margin: 0 auto;
}

/*.dnd-section > .row-fluid > .span12,*/
.dnd-section {
	padding: 0 20px;
}

@media (min-width: 768px) {
	.dnd-section {
		padding: 0 20px;
	}
}
@media (min-width: 992px) {
	.dnd-section {
		padding: 0 30px;
	} 
}
.modal.fade {
	opacity: 0;
	-webkit-transition: opacity 0.15s linear;
	-o-transition: opacity 0.15s linear;
	transition: opacity 0.15s linear;
}
.modal.fade.in {
	opacity: 1;
}

.modal-open {
	overflow: hidden;
}

.embed-responsive {
	position: relative;
	display: block;
	height: 0;
	padding: 0;
	overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.embed-responsive-16by9 {
	/* padding-bottom: 56.25%; */
    padding-bottom: 59%;
}

.embed-responsive-4by3 {
	padding-bottom: 75%;
}

.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	display: none;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	background-color: rgba(0, 0, 0, 0.5);
	outline: 0;
}
.modal.fade .modal-dialog {
	-webkit-transform: translate(0, -25%);
	-ms-transform: translate(0, -25%);
	-o-transform: translate(0, -25%);
	transform: translate(0, -25%);
	-webkit-transition: -webkit-transform 0.3s ease-out;
	-o-transition: -o-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
}
.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000000;
}
.modal-backdrop.fade {
	filter: alpha(opacity=0);
	opacity: 0;
}
.modal-backdrop.in {
	filter: alpha(opacity=50);
	opacity: 0.5;
}
.modal-content {
	position: relative;
	background-clip: padding-box;
	outline: 0;
	max-height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100vh;
	margin-right: 10px;
	margin-left: 10px;
}
.modal .close {
	padding: 0;
	border: 0;
	position: absolute;
	top: 30px;
	right: 30px;
	background-color: transparent;
	background: transparent;
    z-index: 2;
}
.modal-body {
	background: #fff;
	position: relative;
	font-style: normal;
	max-height: 100%;
	overflow: hidden;
	padding: 30px;
}
.modal-title {
	display: flex;
	align-items: center;
	line-height: 46px;
	margin-bottom: 30px;
}
.modal-title:before {
	content: "";
	border-top: 1px solid #000000;
	width: 20px;
	display: block;
	margin-right: 20px;
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll;
}

@media (min-width: 768px) {
	.modal-dialog {
		position: relative;
		width: 80%;
		margin: 0 auto;
		height: 100vh;
	}
}

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

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}


/* Lists */
ul,
ol {
	margin: 0 0 1.4rem;
	padding-inline-start: 25px;
}

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

ul.no-list {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

/* Code blocks */

pre {
	overflow: auto;
}

code {
	vertical-align: bottom;
}

/* Blockquotes */

blockquote {
	border-left: 4px solid;
	margin: 0 0 32px 0;
	padding: 10px 0 10px 20px;

	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
}
blockquote p {
	margin-bottom: 0;
}

/* Horizontal rules */

hr {
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

/* Image alt text */
.header-top .cookies span a img {
	width: auto;
}
img {
	width: 100%;
}
/*img.align-left {
	display: flex;
}
img.align-right {
	display: flex;
}*/
img, svg, object {
	font-size: 0.583rem;
	word-break: normal;
	margin: 0;
	vertical-align: middle;
}
.clearfix:before,
.clearfix:after {
   content: " ";
   display: table;
}
.clearfix:after {
   clear: both;
}


/* Paragraphs */
p {
	margin: 0;
	margin-bottom: 32px;
}
p:last-child {
	 margin-bottom: 0;  
}


/*all simple pages*/
.body-container--page .hs_cos_wrapper_type_rich_text :is(h1, h2, h3, h4, h5, h6, ul) {
	margin-bottom: 32px;
}
/* .body-container--page .hs_cos_wrapper_type_rich_text :is(h4) {
	text-transform: none;
} */
iframe {
	width: 100%;
}
.body-container--page a {
	font-weight: 700;
	text-decoration-color: #0064B1;
}
.body-container--page hr {
	padding-top: 10px;
	margin-bottom: 40px;
}
@media (min-width: 768px) {
	.body-container--page hr {
		padding-top: 30px;
		margin-bottom: 60px;
	}	
}


.body-container--secondary-pages-1-col .hs_cos_wrapper_type_rich_text :is(h4),
.body-container--secondary-pages-2-col .hs_cos_wrapper_type_rich_text :is(h4) {
	text-transform: uppercase;
}


.body-container--tertiary-pages-2-col .row-fluid > .span8,
.body-container--secondary-pages-2-col .row-fluid > .span8 {
	padding-right: 0;
	padding-bottom: 30px;
}
@media (min-width: 768px) {
	.body-container--tertiary-pages-2-col .row-fluid > .span8,
	.body-container--secondary-pages-2-col .row-fluid > .span8 {
		padding-right: 70px;
		padding-bottom: 0;
	}
}
@media (min-width: 992px) {
	.body-container--tertiary-pages-2-col .row-fluid > .span8,
	.body-container--secondary-pages-2-col .row-fluid > .span8 {
		padding-right: 90px;
	}
}
@media (min-width: 1200px) {
	.body-container--tertiary-pages-2-col .row-fluid > .span8,
	.body-container--secondary-pages-2-col .row-fluid > .span8 {
		padding-right: 90px;
	}
	.body-container--tertiary-pages-2-col .row-fluid > .span4,
	.body-container--secondary-pages-2-col .row-fluid > .span4 {
		padding-left: 55px;
	}
}
.body-container--tertiary-pages-2-col .row-fluid .span4 {}



/* .body-container--secondary-pages-2-col .gallery-slider-for.slick-slider img.slick-arrow,
.body-container--tertiary-pages-2-col .gallery-slider-for.slick-slider img.slick-arrow {
	filter: invert(95%) sepia(99%) saturate(4%) hue-rotate(223deg) brightness(105%) contrast(100%);
} */


.widget-type-rich_text .hs_cos_wrapper_type_rich_text h1,
.widget-type-rich_text .hs_cos_wrapper_type_rich_text .h1 {
	text-transform: uppercase;
	font-weight: 700;
}
.widget-type-rich_text .hs_cos_wrapper_type_rich_text h2,
.widget-type-rich_text .hs_cos_wrapper_type_rich_text .h2 {
	font-weight: 400;
}
.widget-type-rich_text .hs_cos_wrapper_type_rich_text h5,
.widget-type-rich_text .hs_cos_wrapper_type_rich_text .h5 {
	font-size: 19px;
}
.widget-type-rich_text .hs_cos_wrapper_type_rich_text h6,
.widget-type-rich_text .hs_cos_wrapper_type_rich_text .h6 {
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
}
.widget-type-rich_text .hs_cos_wrapper_type_rich_text div:not(:has(p,table)) {
	font-size: 14px;
	font-weight: 400;
	line-height: 16.8px;
	margin-bottom: 32px;
}
/* .contrast,
.contrast :is(h1, h2, h3, h4, h5, h6),
.contrast p {
	color: #ffffff;
}

a.hs-button.style_2:hover,
a.hs-button.style_2:active,
a.hs-button.style_2:focus {
	border-color: #fff;
	color: #ffffff;
} */
button,
.hs-button,
form input[type=submit],
form .hs-button {
	cursor: pointer;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	padding: 15px 19px;
	line-height: 19px;
	transition: background-color 0.15s linear, border-color 0.15s linear, color 0.15s linear;
}

/*small*/
.hs-button.small {
	padding: 7px 20px;
}

.bg-inverse a.hs-button:hover {
	border-color: #fff;
	color: #fff;
}

/*button:hover,
button:focus,
button:active,
.button:hover,
.button:focus,
.button:active,
form .hs-button:hover,
form .hs-button:focus,
form .hs-button:active,
form input[type=submit]:hover,
form input[type=submit]:focus,
form input[type=submit]:active {
	background-color: #ffffff;
	color: #000000;
}*/


button:disabled,
.button:disabled,
.hs-button:disabled {
	background-color: #D0D0D0;
	border-color: #D0D0D0;
	color: #E6E6E6;
}


/* No button */
.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
	background: none;
	border: none;
	border-radius: 0;
	color: initial;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	margin-bottom: 0;
	padding: 0;
	text-align: left;
	text-decoration: none;
	transition: none;
}
/* Fields */

.hs-form-field {
	margin-bottom: 1.4rem;
}

/* Labels */

form .field > label {
	display: none;
	margin-bottom: 10px;
}

/* Form Title */
.form-title {
	margin-bottom: 0;
}

/* Help text */

form legend {
	font-size: 0.875rem;
}


/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
	display: inline-block;
	padding: 19px 30px;
	width: 100% !important;
	line-height: 16px;
	font-size: 14px;
}
/*@media (min-width: 768px) {
	form input[type=text],
	form input[type=search],
	form input[type=email],
	form input[type=password],
	form input[type=tel],
	form input[type=number],
	form input[type=file],
	form select,
	form textarea {
		padding: 16px 30px;
	}
}*/

form textarea {
	resize: vertical;
}

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

/* Inputs - checkbox/radio */

form .inputs-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

form .inputs-list>li {
	display: block;
	margin: 0.7rem 0;
}

form .inputs-list>li.hs-form-checkbox label {
    line-height: 22px;
    margin-bottom: 13px;
    margin-left: 20px;
}
form .inputs-list>li.hs-form-checkbox label input.hs-input {
    margin-left: -20px;
    width: auto !important;
}
form .hs-form-checkbox label span {
    cursor: pointer;
	color: #000;
}
form .inputs-list input,
form .inputs-list span {
	vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
	cursor: pointer;
	margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
	position: relative;
}

.hs-dateinput:before {
	content: '\01F4C5';
	position: absolute;
	right: 10%;
	top: 50%;
	transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
	color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
	border-radius: 0;
	box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
	border-radius: 0 !important;
	color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
	background-color: transparent;
	border: initial;
	padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
	font-size: 0.875rem;
	margin: 0 0 1.4rem;
}

form .hs-richtext img {
	max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display>span,
.legal-consent-container .hs-form-booleancheckbox-display>span p {
	margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
	color: #EF6B51;
}

.hs-input.invalid.error {
	border-color: #EF6B51;
}

.hs-error-msg {
	color: #EF6B51;
	text-align: center;
	font-size: 14px;
}
@media (min-width: 768px) {
	.hs-error-msg {
		text-align: left;
	}	
}

/* Captcha */
.grecaptcha-badge {
	margin: 0 auto;
}

{
	% if (get_asset_version("@hubspot/search_input")=="1") %
}
/* Search button input field and suggestions */
.body-container-wrapper .hs-search-field__button {
	padding: 15px;
}

.body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
	margin-left: 6px;
	margin-bottom: 0;
}

.body-container-wrapper .hs-search-field__button svg {
	height: 15px;
	fill: #fff;
}
.body-container-wrapper .hs-search-field__suggestions li a {
	color: #494A52;
	padding: 0.35rem 0.7rem;
	text-decoration: none;
	transition: background-color 0.3s;
}
	{
	% endif %
}
:root {
	--select-border: #777;
	--select-focus: blue;
	--select-arrow: var(--select-border);
}

select {
	appearance: none;
	width: 100%;
	border-radius: 10px;
	background-color: transparent;
	color: #818181;
	border: 1px solid #000000;
	padding: 19px 46px 15px 20px;
	font-size: 16px;
	line-height: 20px;
	z-index: 1;
	outline: none;
}
select::-ms-expand {
	display: none;
}

.hs-fieldtype-select .input {
	display: grid;
	grid-template-areas: "select";
	align-items: center;
	position: relative;
}
.hs-fieldtype-select .input select,
.hs-fieldtype-select .input::after {
	grid-area: select;
}
.hs-fieldtype-select .input:not(.select--multiple)::after {
	content: url("//6652701.fs1.hubspotusercontent-na1.net/hubfs/6652701/raw_assets/public/Northshore-Academy/images/icon-select.svg");
	justify-self: end;
	position: relative;
	right: 15px;
	top: 0;
}
.hs-fieldtype-select .input option {
	color: #000;
}
/* Table */
table {
	border-collapse: collapse;
	margin-bottom: 1.4rem;
	overflow-wrap: break-word;
    border: 1px solid #ddd;
}

/* Table cells */

td,
th {
	vertical-align: top;
}

/* Table header */
table > tbody > tr > td,
table > tbody > tr > th,
table > tfoot > tr > td,
table > tfoot > tr > th,
table > thead > tr > td,
table > thead > tr > th {
    border: 1px solid #ddd;
    padding: 17px;
}
thead th {
	vertical-align: bottom;
}
table > caption+thead>tr:first-child>td,
table > caption+thead>tr:first-child>th, 
table > colgroup+thead>tr:first-child>td,
table > colgroup+thead>tr:first-child>th,
table > thead:first-child>tr:first-child>td,
table > thead:first-child>tr:first-child>th {
    border-top: 0;
}
table > thead > tr > td,
table > thead > tr > th {
  border-bottom-width: 2px;
}
table > thead > tr > th {
  border: 1px solid #ddd;
}


.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    /* overflow-y: hidden; */
    /* -ms-overflow-style: -ms-autohiding-scrollbar; */

    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive > table {
    margin-bottom: 0;
  }

  .table-responsive > table > thead > tr > th,
  .table-responsive > table > tbody > tr > th,
  .table-responsive > table > tfoot > tr > th,
  .table-responsive > table > thead > tr > td,
  .table-responsive > table > tbody > tr > td,
  .table-responsive > table > tfoot > tr > td {
    white-space: nowrap;
  }
}

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

header {
	position: relative;
	z-index: 4;
}
header img.border-radius {
	border-radius: 0;
}
.header-top {
	height: 0;
	opacity: 0;
}
.header__container {
	position: relative;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
}

/* home page */
body.hs-content-id-137606015752 header .sticky-wrapper .header__logo--main {
	display: none !important;
}
body:not(.hs-content-id-137606015752) header .sticky-wrapper .header__logo--main-30th-anniversary {
	display: none !important;
}

.sticky-wrapper .header__container {
	transition: background-color 0.1s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.is-sticky .header__container {
	box-shadow: 0px 4px 33px 1px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}
.header__container {
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	flex-direction: row;
}
.header__row-1,
.header__row-2 {
	align-items: center;
	display: flex;
	justify-content: flex-end;
	width: 100%;
}
.header__column {
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
}
@media (max-width: 991px) {
	.header__column {
		display: flex;
	}
	.header__row-2 {
		display: none !important;
	}
}
@media (min-width: 768px) {
	.header__container {
		padding-left: 20px;
		padding-right: 20px;
		flex-direction: row;
	}
	.header__row-2 .hs_cos_wrapper_type_module {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
}
@media (min-width: 992px) {
	.header__container {
		padding-left: 30px;
		padding-right: 30px;
	}
	.header__row-2 {
		padding-top: 10px;
		padding-bottom: 5px;
	}
	.header__row-1 #hs_cos_wrapper_megamenu {
		display: none;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.header__row-2 .header__search,
	.header__row-2 .header__menu-top {
		display: none;
	}
}
@media (min-width: 1200px) {
	.header__row-1 #hs_cos_wrapper_megamenu {
		display: block;
	}
	.header__row-1 {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.header__row-2 {
		display: none !important;
	}
}


/* Logo */
.header__logo {
	align-items: center;
	display: flex;
	justify-content: center;
	height: auto;
	margin-right: auto;
	overflow: hidden;
}
.header__logo img {
	max-width: 100%;
}

.header__logo .logo-company-name {
	font-size: 1.167rem;
	margin-top: 0.7rem;
}

.header__logo--main {
	width: 124px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.header__logo.header__logo--main-30th-anniversary {
	max-width: 68px;
}
@media (min-width: 768px) {
	.header__logo--main {
		padding-right: 25px;
		margin: 0;
	}
	.header__logo {
		width: 150px;
	}
  .header__logo.header__logo--main-30th-anniversary {
		max-width: 65px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {

}
@media (min-width: 992px) {
	.sticky-wrapper .header__logo--main {
		padding-top: 0;
		padding-bottom: 0;
		padding-right: 0;
		width: auto;
		margin: 0;
	}
	.sticky-wrapper .header__logo {
		padding-top: 25px;
		max-width: 115px;
		transition: max-width 0.3s;
	}
  .sticky-wrapper .header__logo.header__logo--main-30th-anniversary {
    padding-top: 0px;
		max-width: 90px;
	}
}
@media (min-width: 1200px) {
	.sticky-wrapper .header__logo {
		padding-top: 0;
		max-width: 124px;
		transition: max-width 0.3s;
	}
  .sticky-wrapper .header__logo.header__logo--main-30th-anniversary {
		max-width: 70px;
	}
}


/* Search bar */
.header__search {
	padding: 0 1rem 0 2rem;
	width: auto;
}
@media (min-width: 767px) {
	.header__search form {
		align-items: center;
		display: flex;
		flex-direction: row;
	}

	.header__search label {
		margin: 0 1rem 0 0;
	}

	.header__search .hs-search-field__input {
		width: auto;
	}
}

/* button only mobile */
.header__button-mobile {
	/* display: none !important; */
	margin-right: -10px;
}
.header__button-mobile a.hs-button {
	padding: 9px 14px;
	font-size: 15px;
}
@media (min-width: 992px) {
	.header__button-mobile {
		display: none !important;
	}
}


/* Navigation */
@media (max-width: 991px) {
	.header__menu-top {
		display: none;
	}
    .header__menu-top a {
        color: #000;
    }
}
.header__navigation {
    display: none;
    width: 100%;
}
.header__navigation.open {
    background-color: #fff;
    display: block;
    left: 0;
    /* height: 100vh; */
    overflow: overlay;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 2;

	height: 100vh;
    height: calc(var(--vh, 1vh)* 100);
}
.header__navigation--toggle,
.header__close--toggle {
    cursor: pointer;
    position: relative;
}
.header__navigation--toggle.hide {
    display: none;
}
.header__navigation--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
}
.header__navigation--toggle.hide {
    display: none;
}
.header__navigation--toggle {
    background-image: url("//6652701.fs1.hubspotusercontent-na1.net/hubfs/6652701/raw_assets/public/Northshore-Academy/images/icon-burger-menu.svg");
    background-size: cover;
    height: 34px;
    width: 34px;
}
.header__close--toggle {
    /* background-image: url("//6652701.fs1.hubspotusercontent-na1.net/hubfs/6652701/raw_assets/public/Northshore-Academy/images/icon-burger-close.svg"); */
    background-image: url('data:image/svg+xml;utf8,<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.41839 7.41839C7.97625 6.86054 8.88083 6.86054 9.43869 7.41839L17 14.9798L24.5613 7.41839C25.1192 6.86054 26.0237 6.86054 26.5816 7.41839C27.1395 7.97638 27.1395 8.88085 26.5816 9.4387L19.0203 17.0001L26.5816 24.5613C27.1395 25.1192 27.1395 26.0238 26.5816 26.5816C26.0237 27.1395 25.1192 27.1395 24.5613 26.5816L17 19.0204L9.43869 26.5816C8.88083 27.1395 7.97625 27.1395 7.41839 26.5816C6.86054 26.0238 6.86054 25.1192 7.41839 24.5613L14.9797 17.0001L7.41839 9.4387C6.86054 8.88085 6.86054 7.97638 7.41839 7.41839Z" fill="black"/></svg>');
    background-repeat: no-repeat;
    height: 34px;
    width: 34px;
    display: none;
}
.header__close--toggle.show {
    display: block;
}



/* Navigation */
.header__navigation ul li:first-child a,
.header__menu-top ul li:first-child a {
	margin-left: 0;
}
.header__navigation ul li:last-child a,
.header__menu-top ul li:last-child a {
	margin-right: 0;
}


/* Menu mobile */
.header__menu-mobile {
	display: block;
    margin-right: -5px;
}
@media (min-width: 992px) {
	.header__menu-mobile {
		display: none;
	}
}



/*if toogle menu is open*/
@media (max-width: 991px) {
	.mobile-menu-active .header__container {
		background-color: #fff;
	}
	.mobile-menu-active .header__row-1 {
		/* border-color: #CECECE; */
	}
}
/* .hs-menu-wrapper ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
} */



/* Menu and simple menu */
.dr-menu-dropdown ul.hs-menu-children-wrapper {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 20px 0 0 0;
	padding: 0 30px;
	flex-direction: column;
	/* border-top: 20px solid transparent; */
}
.dr-menu-dropdown ul.hs-menu-children-wrapper::before {
	content: "";
	width: 100%;
	height: 20px;
	position: absolute;
	left: 0;
	top: -20px;
	/* background-color: #000; */
}
.hs-menu-wrapper ul li {
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.hs-menu-wrapper ul li:last-child {
	border-bottom: none;
}
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
	display: inline-flex;
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
	position: relative;
}
.hs-menu-wrapper.flyouts .hs-item-has-children a:after {
	content: "";
	background-image: url("//6652701.fs1.hubspotusercontent-na1.net/hubfs/6652701/raw_assets/public/Northshore-Academy/images/icon-hs-menu-item__child-toggle.svg");
	filter: invert(95%) sepia(99%) saturate(4%) hue-rotate(223deg) brightness(105%) contrast(100%);
	background-repeat: no-repeat;
	background-size: cover;
	height: 13px;
	width: 14px;
	display: inline-block;
	margin-left: 7px;
	vertical-align: middle;
}
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
	/* right: -9999px; */
	right: 0;
	left: auto;
	opacity: 0;
	display: none;
	position: absolute;
	z-index: 5;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
	display: flex;
	white-space: nowrap;
	align-items: center;
  	justify-content: space-between;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children.hover > .hs-menu-children-wrapper {
	left: auto;
	right: -10px;
	opacity: 1;
	display: block;
	top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
	left: auto;
	right: 100%;
	opacity: 1;
	top: 0;
}

@media (max-width: 767px) {
	.hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
	.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
	.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
		left: auto;
		right: 0;
		opacity: 1;
		position: relative;
		top: auto;
	}
}

/* CTA, logo, and rich text images */
.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
	height: auto;
	max-width: 100%;
}

/* default slider */
.splide__track--nav>.splide__list>.splide__slide.splide__slide--nav {
	margin: 0 !important;
	border: 6px solid transparent !important;
}
.splide__track--nav>.splide__list>.splide__slide.is-active img {
	border: 6px solid #282E8E !important;
}


.slider__container .splide__main button.splide__arrow {
	opacity: 1 !important;
	transition: opacity 0.05s linear;
	width: 3em;
	height: 3em;
	outline: none;
}
.slider__container .splide__main button.splide__arrow span {
	outline: none;
}
.slider__container .splide__main button.splide__arrow svg {
	margin-top: 0 !important;
	height: 20px;
  	width: 20px;
	outline: none;
}
.slider__container .splide__main button.splide__arrow:disabled,
.slider__container .splide__main button.splide__arrow[disabled] {
	opacity: 0 !important;
	cursor: default;
}
.slider__container .splide__nav button.splide__arrow {
	opacity: 0 !important;
	outline: none;
}
@media (min-width: 768px) {
	.slider__container .splide__main button.splide__arrow {
		width: 4em;
		height: 4em;
	}
	.slider__container .splide__main button.splide__arrow svg {
		height: 28px;
		width: 28px;
	}
}
[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)}

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

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}


/* Section */
/* Slider 1 */
.body-container--home .slider-home-1 {
    margin-top: -740px;
}
@media (min-width: 768px) {
    .body-container--home .slider-home-1 {
        margin-top: -760px;
    }
}

.slider-home-1 .hs_cos_wrapper_type_header :is(h1, h2, h3, h4, h5, h6) {
    text-transform: none;
    padding-left: 30px;
    position: relative;
    top: 95px;
    z-index: 2;
}
@media (min-width: 768px) {
    .slider-home-1 .hs_cos_wrapper_type_header :is(h1, h2, h3, h4, h5, h6) {
        top: 140px;
    }
}
@media (min-width: 992px) {
    .slider-home-1 .hs_cos_wrapper_type_header :is(h1, h2, h3, h4, h5, h6) {
        padding-left: 60px;
    }
}




/* Slider 2 */
.slider-home-2 {}


/* Slider 3 */
.slider-home-3 {
    
}
.hero > .row-fluid {
	position: relative;
}
@media (min-width: 768px) {
	.hero #button {
		margin-top: auto;
		position: absolute;
		bottom: 0;
		left: 0;
	}
}
@media (min-width: 768px) and (max-width: 1279px) {
	.hero .row-fluid .span4,
	.hero .row-fluid .span8 {
		width: 50%;
	}
}




/*button to do*/
.hero a#button img {
	top: 0;
	position: relative;
	transition: top 0.15s linear;
}
.hero a#button:hover img {
	top: 5px;
}




/* hero calendar */
.hero-2 :is(h1, h2, h3, h4, h5, h6),
.hero-2 p {
	color: #fff;
}




/* hero tertiary pages */
@media (max-width: 767px) {
	.hero-tertiary-pages.dnd_area_top-row-0-background-layers,
	.hero-tertiary-pages.dnd_area-row-0-background-layers {
		background-size: auto 300px !important;
		background-position: top center !important;
		padding-top: 270px;
	}
	.hero-tertiary-pages > .row-fluid {
		margin-bottom: -30px;
	}
	.hero-tertiary-pages > .row-fluid > .span12 > .row-number-2 {
		display: none;
	}
	.hero-tertiary-pages :is(h1, h2, h3, h4, h5, h6, p, a, span) {
		color: #000;
		text-transform: uppercase;
	}
	.hero-tertiary-pages ul.hs-breadcrumb-menu {
		display: inline-block;
		padding-bottom: 25px;
	}
	.hero-tertiary-pages > .row-fluid > .span12 > div:last-child {
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
}
@media (min-width: 768px) {
	.hero-tertiary-pages > .row-fluid {
		background-color: #15184A;
		mix-blend-mode: hard-light;
	}
	.hero-tertiary-pages :is(h1, h2, h3, h4, h5, h6, p, a, span) {
		color: #fff;
		text-transform: uppercase;
	}
	.hero-tertiary-pages > .row-fluid > .span12  {
		text-align: center;
	}
	.hero-tertiary-pages ul.hs-breadcrumb-menu {
		width: 100%;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
.hero-tertiary-pages > .row-fluid > .span12  {
	padding: 0 20px;
	flex-direction: column;
}
.hero-tertiary-pages h1 {
	font-weight: 700;
	margin-bottom: 20px;
	margin-top: 20px;
}
@media (min-width: 576px) {
	.hero-tertiary-pages h1 {
		margin-top: 40px;
	}	
}
@media (max-width: 575px) {
	.hero-tertiary-pages .row-number-4 > .row-fluid > .dnd-column {
		flex-direction: column;
	}
}
.hero-tertiary-pages .row-number-4 > .row-fluid > .dnd-column {
	display: flex;
	justify-content: center;
}
.hero-tertiary-pages .row-number-4 > .row-fluid > .dnd-column > .dnd-row {
	padding: 0 2.5px;
}
.hero-tertiary-pages li.hs-breadcrumb-menu-item {
	padding: 0;
}
.hero-tertiary-pages .row-number-4 > .row-fluid > .dnd-column > .dnd-row .hs_cos_wrapper_type_rich_text a,
.hero-tertiary-pages li.hs-breadcrumb-menu-item a,
.hero-tertiary-pages li.hs-breadcrumb-menu-item span {
	text-decoration-color: transparent;
	font-size: 16px;
	font-weight: 700;
}
.hero-tertiary-pages .row-number-4 > .row-fluid > .dnd-column > .dnd-row .hs_cos_wrapper_type_rich_text a:hover,
.hero-tertiary-pages .row-number-4 > .row-fluid > .dnd-column > .dnd-row .hs_cos_wrapper_type_rich_text a:focus,
.hero-tertiary-pages li.hs-breadcrumb-menu-item a:hover,
.hero-tertiary-pages li.hs-breadcrumb-menu-item a:focus {
	color: #fff;
	text-decoration-color: #fff;
}
.hero-tertiary-pages .hs-breadcrumb-menu-divider::before {
	content: "/";
	font-weight: 700;
	padding-left: 5px;
	padding-right: 5px;
}



/* hero - Top pages */
@media (min-width: 768px) {
	.hero-top-pages > .row-fluid > .span12 {
		height: 650px;
	}
}
.hero-top-pages .hs_cos_wrapper_type_rich_text {
	max-width: 800px;
	display: block;
	margin: 10px auto 30px;
}
@media (max-width: 767px) {
	.hero-tertiary-pages.hero-top-pages .hs-button.style_1 {
		border-color: #0064B1;
    	background-color: #0064B1;

		margin-bottom: 20px;
	}
}
@media (min-width: 768px) {
	.hero-top-pages .hs_cos_wrapper_type_rich_text {
		padding-right: 20px;
		padding-left: 20px;
	}
}
.hero-top-pages .hs_cos_wrapper_type_rich_text p {
	text-transform: none;
	font-size: 22px;
	font-weight: 700;
	line-height: 32px;
}
.hero-top-pages a.hs-button.style_1 {
	background-color: transparent;
	border-color: #fff;
	color: #fff;
	padding-left: 50px;
	padding-right: 50px;
}
.hero-top-pages a.hs-button:hover,
.hero-top-pages a.hs-button:focus {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}
@media (min-width: 768px) {
	.hero-top-pages .hs_cos_wrapper_type_rich_text {
		margin-bottom: 60px;
	}
}



/* hero - Secondary pages */
.hero-secondary-pages .row-fluid {
	justify-content: flex-end;
}
.hero-secondary-pages .row-fluid > .span6:first-child > div {
	padding-right: 0px;
}
.hero-secondary-pages .row-fluid > .span6 > div a.hs-button {
	background-color: transparent;
	margin-left: 80px;
	border-color: #fff;
}
.hero-secondary-pages .row-fluid > .span6 > div a.hs-button:hover {
	background-color: #fff;
	color: #0064B1;
}


.hero-secondary-pages .row-fluid > .span6 h1 {
	text-transform: uppercase;
}
.hero-secondary-pages .row-fluid > .span6 .hs_cos_wrapper_type_rich_text p {
	font-size: 22px;
	line-height: 32px;
}
.hero-secondary-pages .row-fluid > .span6 .hs_cos_wrapper_type_rich_text :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 20px;
}
.hero-secondary-pages .row-fluid > .span6 .hs_cos_wrapper {
	position: relative;
}
.hero-secondary-pages .row-fluid > .span6 > .row-number-3 {
	background-image: url("https://6652701.fs1.hubspotusercontent-na1.net/hubfs/6652701/26743-white.svg");
	background-repeat: no-repeat;
}
.hero-secondary-pages .row-fluid > .span6 :is(h1, h2, h3, h4, h5, h6, p, span) {
	font-weight: 700;
}
.hero-secondary-pages .row-fluid > .span6 :is(h1, h2, h3, h4, h5, h6, p, a, span) {
	color: #fff;
}
.hero-secondary-pages .row-fluid > .span6:first-child {
	background-size: 80% !important;
}




.hero-secondary-pages .row-fluid > .span6 .wrapper > img {
	object-fit: cover;
}
@media (max-height: 768px) and (min-width: 992px) {
	.hero-secondary-pages .row-fluid > .span6 .wrapper > img {
		height: 550px !important;
	}
}
@media (min-height: 769px) {
	.hero-secondary-pages .row-fluid > .span6 .wrapper > img {
		height: 610px !important;
	}
}
@media (min-height: 910px) {
	.hero-secondary-pages .row-fluid > .span6 .wrapper > img {
		height: 760px !important;
	}
}









@media (max-width: 767px) {
	.hero-secondary-pages > .row-fluid {
		flex-direction: column-reverse;
	}
	.hero-secondary-pages > .row-fluid > .span6:last-child .wrapper > img {
		height: 300px !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.hero-secondary-pages .row-fluid > .span6:first-child > div {
		/* padding-left: 20px; */
	}
}
@media (min-width: 768px) and (max-width: 1299px) {
	.hero-secondary-pages .span6:last-child div {
		height: 100%;
	}
	.hero-secondary-pages .row-fluid > .span6 .wrapper {
		display: flex;
	}
}
@media (min-width: 768px) {
	.hero-secondary-pages .row-fluid > .span6:first-child {
		display: flex;
		align-items: flex-end;
  		flex-direction: column;
  		justify-content: space-between;
	}
	.hero-secondary-pages .row-fluid > .span6:first-child > div {
		width: 100%;
		max-width: 610px;
		text-align: left;
	}
}
@media (min-width: 992px) {
	.hero-secondary-pages .row-fluid > .span6 a.hs-button {
		margin-left: 115px;
	}
	.hero-secondary-pages .row-fluid > .span6:first-child > div {
		padding-right: 35px;
	}
}
@media (min-width: 1200px) {
	.hero-secondary-pages .row-fluid > .span6:first-child > div {
		padding-right: 110px;
	}
}


/* new */
.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) > .row-fluid > .span6:nth-child(2) {
	padding: 20px 12px 20px 20px;
}
.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) > .row-fluid > .span6:nth-child(1) > .dnd-row:nth-child(1),
.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) > .row-fluid > .span6:nth-child(1) > .dnd-row:nth-child(2) {
	margin-bottom: 30px;
}
.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) > .row-fluid > .span6:nth-child(1) > .dnd-row:nth-child(3) > .row-fluid .span6:first-child {
	margin-bottom: 20px;
}
@media (min-width: 768px) {
	.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) {
		padding-right: 30px;
	}
	.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) > .row-fluid > .span6:nth-child(2) {
		padding: 30px 22px 30px 30px;
	}
	.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) > .row-fluid > .span6:nth-child(1) > .dnd-row:nth-child(1),
	.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) > .row-fluid > .span6:nth-child(1) > .dnd-row:nth-child(2) {
		margin-bottom: 0;
	}
	.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) > .row-fluid > .span6:nth-child(1) > .dnd-row:nth-child(3) > .row-fluid .span6:first-child {
		margin-bottom: 0;
	}
}
@media (min-width: 992px) {
	.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) > .row-fluid > .span6:nth-child(2) {
		padding: 40px 32px 40px 40px;
	}
}
@media (min-width: 1200px) {
	.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) > .row-fluid > .span6:nth-child(1) > .dnd-row:nth-child(1) {
		max-width: 355px;
	}	
}
.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) h4 {
	text-transform: none;
}

.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) .dnd-row:nth-child(2) .span12 p a {
	display: block;
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
	color: #2A72BC;
}
.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) .dnd-row:nth-child(2) .span12 .dnd-row:nth-child(1) {
	margin-bottom: 40px;
}
.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) .dnd-row:nth-child(2) p {
	font-size: 16px;
	line-height: 20px;
	color: #000;
}
.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) .dnd-row:nth-child(3) p {
	font-size: 16px;
	line-height: 20px;
	color: #000;
}
.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) .dnd-row:last-child a,
.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) .dnd-row:last-child strong {
	font-family: 'Bree Serif';
	display: block;
	font-size: 32px;
	line-height: 43px;
	font-weight: 400;
	color: #26349D;
}
.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) .dnd-row:last-child .social-links {
	display: flex;
	margin-top: 10px;
}
.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) .dnd-row:last-child .social-links a {
	border: 1px solid rgba(0, 0, 0, 0.1);	
	background-color: #fff;
	line-height: 1;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	display: flex;
  	justify-content: center;
}
.body-container--contact .row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) .dnd-row:last-child .social-links img {
	filter: invert(95%) sepia(99%) saturate(4%) hue-rotate(223deg) brightness(105%) contrast(100%);
	width: 20px;
  	height: 20px !important;
}




.body-container--contact h3.form-title {
	font-size: 40px;
	line-height: 50px;
	text-align: center;
	padding-bottom: 30px;
	display: block;
	width: 100%;
}


@media (min-width: 768px) {
	.body-container--contact h3.form-title {
		font-size: 50px;
		line-height: 60px;
		padding-bottom: 45px;
	}
	.body-container--contact .form-columns-2 .field:first-child .input {
		margin-right: 10px !important;
	}
	.body-container--contact .form-columns-2 .field:last-child .input {
		margin-left: 10px !important;
	}
}

.body-container--contact form textarea,
.body-container--contact form input.hs-input {
	width: 100% !important;
	font-size: 16px;
	line-height: 20px;
}
.body-container--contact form textarea {
	height: 180px;
}
/*submit button form hubspot*/
.body-container--contact form .hs_submit {
	margin-right: 8px;
}
.body-container--contact form .hs-button {
	display: block;
	width: 100%;
	color: #fff;
	border-color: #0064B1;
	background: #0064B1;
}
.body-container--contact form .hs-button:hover,
.body-container--contact form .hs-button:focus {
	background: #0064B1;
}
.team-section .hs_cos_wrapper_type_header :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}
.testimonial .dnd-column {
	padding: 0;
}

.body-container--admission .dnd-section.testimonial,
.body-container--home .dnd-section.testimonial {
	margin-top: -95px;
}
@media (min-width: 768px) {
	.body-container--admission .dnd-section.testimonial,
	.body-container--home .dnd-section.testimonial {
		margin-top: -435px;
	}
}
.section-cards-2 {
    margin-top: 160px;
    padding-top: 80px;
    display: flex;
}
.section-cards-2 .row-fluid {
    position: relative;
    margin-top: -80px;
}
.section-cards-2 .items {
  	gap: 20px;
}
.section-cards-2 .items__card {
	background-color: #fff;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.20);
	padding: 40px 30px 80px 30px;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    transition: background-color .3s linear, box-shadow .8s linear;
}
.section-cards-2 .items__card:hover {
    background-color: #cce0ef;
    box-shadow: 0px 34px 70px 0px rgba(0, 0, 0, 0.40);
}
.section-cards-2 .item__inner {
    text-align: center;
    justify-content: flex-start;
    max-width: 250px;
}
.section-cards-2 .item__inner h4 {
    margin-top: 40px;
    margin-bottom: 15px;
}
.section-cards-2 .item__inner .item__text {
    margin-bottom: 40px;
}
.section-cards-2 a.hs-button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border: 0;

    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 0;
    padding: 0;
    margin: 10px;
    border: 1px solid transparent;
    background-color: transparent;
}
.section-cards-2 .items__card a.hs-button:hover,
.section-cards-2 .items__card a.hs-button:focus {
    background-color: transparent;
    border-color: #0064B1;
}
.section-cards-2 .items__card a.hs-button > div {
    transition: border-color 0.15s linear, color 0.15s linear, background-color 0.15s linear;
}
.section-cards-2 .items__card:hover a.hs-button > div,
.section-cards-2 .items__card:focus a.hs-button > div {
    border-color: transparent;
    color: #fff;
    background-color: #0064B1;
}
.section-cards-2 a.hs-button div.hs_cos_wrapper {
    border: 1px solid #000;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    position: relative;
    top: -40px;
}
@media (min-width: 576px) {
	.section-cards-2 .items {
	  	grid-template-columns: repeat(1, 1fr);
	}
}
@media (min-width: 768px) {
	.section-cards-2 .items {
	  	grid-template-columns: repeat(3, 1fr);
	}
    .section-cards-2 .items__card {
        padding: 60px 30px 80px 30px;
    }
}
@media (min-width: 992px) {
    .section-cards-2 .items__card {
        padding: 85px 30px 110px 30px;
    }
    .section-cards-2 a.hs-button div.hs_cos_wrapper {
        top: -60px;
    }
}
/* @media (min-width: 1200px) {
    .section-cards-2 .cards__card {
        padding: 60px 60px 110px 60px;
    }
} */
.nummber .hs_cos_wrapper_type_header :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
    /* text-align: center; */
}
.nummber .nummber_slider {
    border: 1px solid rgba(255, 255, 255, .3);
    padding-left: 20px;
    padding-right: 20px;
}
.nummber .nummber_slider .fact {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}
.nummber .nummber_slider .fact span {
    color: #CCE0EF;
    text-align: right;
    font-size: 64px;
    font-weight: 700;
    line-height: 60px;
    text-transform: uppercase;
    margin-right: 10px;
}
.nummber .nummber_slider h5 {
    width: 50%;
    padding-left: 10px;
    text-transform: none;
    color: #fff;
}
.nummber .nummber_slider .hs_cos_wrapper_type_header h3 {
    color: #fff;
}
.nummber .nummber_slider a.hs-button {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.nummber .nummber_slider a.hs-button:hover {
    color: #000;
}
@media (max-width: 767px) {
    .nummber .nummber_slider button.slick-arrow {
        bottom: -80px;
    }
}
@media (min-width: 768px) {
    .nummber .nummber_slider button.slick-arrow {
        top: 50%;
    }
}
.nummber .nummber_slider button.slick-next {
    right: 20px;
}
.nummber .nummber_slider button.slick-prev {
    left: 20px;
}
.nummber .nummber_slider button.slick-arrow {
    filter: invert(95%) sepia(99%) saturate(4%) hue-rotate(223deg) brightness(105%) contrast(100%);
}
@media (max-width: 767px) {
    .nummber .nummber_slider .fact {
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    .nummber .nummber_slider .fact h5 {
        padding-left: 0;
        width: 100%;
    }
}
@media (min-width: 768px) {
    .nummber .nummber_slider {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 80px;
        padding-right: 80px;
    }
    .nummber .nummber_slider .fact {
        margin: 0;
    }
    .nummber .nummber_slider .fact span {
        margin: 60px 0;
    }
    /* .nummber .nummber_slider .fact span > div {
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .nummber .nummber_slider .fact span > div > small {
        color: #fff;
        font-size: 22px;
        text-transform: none;
        position: absolute;
        bottom: -58px;
        left: 0;
        right: 0;
    } */
}

.nummber a.hs-button {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
} 
.nummber a.hs-button:hover,
.nummber a.hs-button:focus {
    background-color: transparent;
}
.upcoming-events-posts h3,
.upcoming-events-posts p {
    text-align: center;
}
/* .body-container--home .dnd-module hr {
    margin-left: -20px !important;
    width: calc(100% + 40px) !important;
}

@media (min-width: 992px) {
    .body-container--home .dnd-module hr {
        margin-left: -30px !important;
        width: calc(100% + 60px) !important;
    }   
} */
.tabs-section {
    background: url("//6652701.fs1.hubspotusercontent-na1.net/hubfs/6652701/raw_assets/public/Northshore-Academy/images/bg-image-tabs.png") no-repeat right top;
    background-size: auto 100%;
    margin-bottom: 400px;
}
.tabs-section:after {
    content: "";
    background: url("//6652701.fs1.hubspotusercontent-na1.net/hubfs/6652701/raw_assets/public/Northshore-Academy/images/bg-image-tabs-bottom.svg") no-repeat;
    width: calc(100% + 50px);
    position: relative;
    top: 340px;
    height: 270px;
    display: block;
    margin-left: -30px;
}
@media (min-width: 992px) {
    .tabs-section:after {
        width: calc(100% + 60px);
    }
}
@media (min-width: 1200px) {
    .tabs-section:after {
        top: 340px;
        margin-left: -30px;
    }
}
.one-column-global,
.one-column {
    color: #ffffff;
    background: url("//6652701.fs1.hubspotusercontent-na1.net/hubfs/6652701/raw_assets/public/Northshore-Academy/images/bg-block-nca.png") no-repeat left top;
    background-size: auto 100%;
}
.one-column-global h3,
.one-column h3 {
    text-align: center;
    color: #ffffff;
}
.one-column-global p,
.one-column p {
    color: #ffffff;
    text-align: center;
}
.one-column-global .dnd-row.content .widget-type-rich_text,
.one-column .widget-type-rich_text {
    width: 100%;
    max-width: 650px;
    margin: 0 auto
}


/* global */
.one-column-global {
    text-align: center;
    padding-top: 30px;
}
.one-column-global .dnd-row.content {
    padding-top: 20px;
    padding-bottom: 20px;
}
.one-column-global .dnd-row.button {
    padding-bottom: 20px;
}
@media (min-width: 768px) {
    .one-column-global {
        text-align: center;
        padding-top: 110px;
    }
    .one-column-global .dnd-row.content {
        padding-top: 35px;
        padding-bottom: 50px;
    }
    .one-column-global .dnd-row.image {
        margin-top: -100px;
    }
}
.one-column-global .button-wrapper > a.hs-button:hover,
.one-column-global .button-wrapper > a.hs-button:focus {
    border-color: #fff;
    color: #fff;
    background-color: transparent;
}
.one-column-global .dnd-row.button {
    position: relative;
    z-index: 2;
}
.two-column {
	position: relative;
}
.two-column .row-fluid {
	z-index: 1;
	position: relative;
}




/* 1 */
.two-column-1 .row-fluid {
	justify-content: flex-end;
}
.two-column-1 .row-fluid > .span6:first-child {
	/* align-items: flex-end; */
}
.two-column-1 .row-fluid > .span6:first-child > div {
	padding-right: 0px;
}
.two-column-1 .row-fluid > .span6:first-child > div .hs_cos_wrapper_type_rich_text p {
	font-size: 22px;
	font-weight: 700;
	line-height: 32px;
}
.two-column-1 .row-fluid > .span6:first-child > div a.hs-button {
	background-color: transparent;
	padding-left: 50px;
	padding-right: 50px;
}
.two-column-1 .row-fluid > .span6:last-child .wrapper > img {
	object-fit: cover;
	max-height: 800px !important;
}
@media (min-width: 768px) {
	.two-column-1 .row-fluid > .span6:first-child {
		max-width: 670px;
	}
	.two-column-1 .row-fluid > .span6:first-child > div {
		padding-right: 55px;
	}
}
@media (min-width: 1200px) {
	.two-column-1 .row-fluid > .span6:first-child > div {
		padding-right: 110px;
	}
}
/* @media (min-width: 768px) {
	.two-column-1 .dnd-column:last-child {
		padding-left: 20px;
	}
}
@media (min-width: 992px) {
	.two-column-1 .dnd-column:last-child {
		padding-left: 70px;
	}
}
@media (min-width: 1280px) {
	.two-column-1 .dnd-column:last-child {
		padding-left: 140px;
	}
} */



/* 2 */
.two-column-2::before {
	content: "";
	display: block;
	background-color: #cce0ef;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
.two-column-2 .row-fluid .span6:first-child .wrapper {
	text-align: right;
}
.two-column-2 .row-fluid .span6:last-child > div {
	max-width: 600px;
}
.two-column-2 .widget-type-rich_text:first-child span {
	display: flex;
	align-items: center;
}
.two-column-2 .widget-type-rich_text:first-child span img {
	margin-right: 20px;
}
.two-column-2 .widget-type-rich_text:first-child span h5 {
	color: #013281;
}
.two-column-2 a.hs-button {
	border-color: transparent;
	color: #fff;
	background-color: #0064B1;
}
.two-column-2 a.hs-button:hover {
	background-color: transparent;
	color: #0064B1;
	border-color: #0064B1;
}
@media (max-width: 767px) {
	.two-column-2 .row-fluid .span6:first-child {
		background-color: #cce0ef;
	}
	.two-column-2 .row-fluid {
		flex-direction: column-reverse;
	}
}
@media (min-width: 768px) {
	.two-column-2:before {
		height: 480px;
	}
	.two-column-2 .row-fluid .span6:first-child {
		border-right: 1px solid rgba(0, 0, 0, 0.1);
	}
}
@media (min-width: 992px) {
	.two-column-2 .row-fluid .span6:last-child > div {
		margin-left: 53px;
	}
}
@media (min-width: 1200px) {
	.two-column-2 .row-fluid .span6:last-child > div {
		margin-left: 107px;
	}
}




/* section-3 Columns widen on hover */
/* .two-column-3 {
	margin-left: -30px;
	margin-right: -30px;
} */
.two-column-3 .dnd-row .dnd-module .hs_cos_wrapper_type_header :is(h1, h2, h3, h4, h5, h6) {
	padding: 0 20px;
	text-align: center;
}
.two-column-3 .dnd-row .dnd-module .widget-type-rich_text {
	padding: 0 20px;
	max-width: 760px;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.two-column-3 .dnd-row .dnd-module .hs_cos_wrapper_type_header :is(h1, h2, h3, h4, h5, h6) {
		padding: 0 30px;
	}
	.two-column-3 .dnd-row .dnd-module .widget-type-rich_text {
		padding: 0 30px;
	}
}
@media (min-width: 576px) {
	
}
@media (min-width: 768px) {
	
}




/*3 block*/
/* .two-column-5 {} */




/* 6 */
.two-column-6 :is(h2, h3, h4, h5, h6, p, a, small) {
	color: #fff;
}
.two-column-6 .row-fluid .span4 {
	justify-content: space-between !important;
}





/* 7 */
.two-column-7 .dnd-row:nth-child(odd) .row-fluid {
	justify-content: flex-end;
}
.two-column-7 .span12 > .dnd-row:nth-child(odd) {
	background-color: #cce0ef;
}
.two-column-7 .dnd-row:nth-child(even) .row-fluid {
	justify-content: flex-end;
}
.two-column-7 .dnd-row:nth-child(odd) .row-fluid > .span6:first-child > div {
	padding-right: 0px;
}
.two-column-7 .dnd-row:nth-child(even) .row-fluid > .span6:last-child > div {
	padding-left: 0px;
}
.two-column-7 .dnd-row .row-fluid > .span6 > div a.hs-button {
	background-color: transparent;
	padding-left: 50px;
	padding-right: 50px;
}
.two-column-7 .row-fluid > .span6 .wrapper > img {
	object-fit: cover;
	max-height: 760px !important;
}
@media (max-width: 767px) {
	.two-column-7 .dnd-row > .row-fluid {
		flex-direction: column-reverse;
	}
}
@media (min-width: 768px) and (max-width: 1199px) {
	.two-column-7 .dnd-row:nth-child(odd) .row-fluid > .span6:first-child > div {
		padding-left: 20px;
	}
	.two-column-7 .dnd-row:nth-child(even) .row-fluid > .span6:first-child > div {
		padding-right: 20px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.two-column-7 .dnd-row .span6:last-child div {
		height: 100%;
	}
	.two-column-7 .row-fluid > .span6 .wrapper {
		display: flex;
	}
}
@media (min-width: 768px) {
	.two-column-7 .dnd-row .row-fluid > .span6:first-child {
		max-width: 670px;
	}
	.two-column-7 .dnd-row:nth-child(even) .row-fluid {
		flex-direction: row-reverse;
	}
	.two-column-7 .dnd-row:nth-child(odd) .row-fluid > .span6:first-child > div {
		padding-right: 35px;
	}
	.two-column-7 .dnd-row:nth-child(even) .row-fluid > .span6:first-child > div {
		padding-left: 35px;
	}
}
@media (min-width: 1200px) {
	.two-column-7 .dnd-row:nth-child(odd) .row-fluid > .span6:first-child > div {
		padding-right: 110px;
	}
	.two-column-7 .dnd-row:nth-child(even) .row-fluid > .span6:first-child > div {
		padding-left: 110px;
	}
}




/* 9 */
.two-column-9 {
	border-bottom: 1px solid #d1d1d1;
}
.two-column-9 .row-fluid > .span6:last-child > div a.hs-button {
	background-color: transparent;
}
@media (min-width: 768px) {
	.two-column-9 .row-fluid > .span6:first-child {
  		align-items: flex-end;
	}
	.two-column-9 .row-fluid > .span6:first-child > div,
	.two-column-9 .row-fluid > .span6:last-child > div {
		width: 100%;
	}
}
@media (min-width: 1200px) {
	.two-column-9 .row-fluid > .span6:first-child > div,
	.two-column-9 .row-fluid > .span6:last-child > div {
		max-width: 750px;
	}
	.two-column-9 .row-fluid > .span6:last-child > div > .row-fluid {
		width: 500px;
		margin: 0 auto;
	}
}




/* 10 */
.two-column-10 > .row-fluid {
	position: relative;
}
.two-column-10 > .row-fluid::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #eaf5fa;
}
.two-column-10 .row-fluid > .span6:first-child img {
	box-shadow: 0px 24px 60px 0px rgba(0, 0, 0, 0.25);
}
.two-column-10 .row-fluid > .span6:last-child > div a.hs-button.style_1 {
	background-color: transparent;
}
.two-column-10 > .row-fluid > .span6 .row-fluid {
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.two-column-10 > .row-fluid .row-fluid .span6 {
	width: auto !important;
	margin-bottom: 10px;
}
.two-column-10 > .row-fluid > .span6:last-child {
	padding-left: 20px;
	padding-right: 20px;
}
@media (min-width: 768px) {
	.two-column-10 > .row-fluid::after {
		left: 130px;
	}
	.two-column-10 > .row-fluid > .span6 .row-fluid {
		align-items: flex-start;
	}
	.two-column-10 > .row-fluid > .span6:last-child {
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media (min-width: 992px) {
	.two-column-10 > .row-fluid .row-fluid .span6 {
		margin-right: 20px;
		margin-bottom: 0;
	}
	.two-column-10 > .row-fluid > .span6 .row-fluid {
		flex-direction: row;
	}
	.two-column-10 > .row-fluid > .span6:last-child {
		padding-left: 70px;
		padding-right: 50px;
	}
}
@media (min-width: 1200px) {
	.two-column-10 > .row-fluid > .span6:last-child {
		padding-right: 85px;
	}
}


/* 11 */
.two-column-11 :is(h2, h3, h4, h5, h6, p, a, small, ul, ol, li) {
	color: #fff;
}
.two-column-11 a.hs-button {
	border-color: transparent;
}
.two-column-11 .widget-type-linked_image img {
	box-shadow: 0px 24px 60px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
	.two-column-11 .row-fluid {
		flex-direction: column-reverse;
	}
	.two-column-11 > .row-fluid > .span6:first-child {
		background: #0064B1;
	}
	.two-column-11 > .row-fluid > .span6 > div {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (min-width: 768px) {
	.two-column-11 {
		background: linear-gradient(90deg, #0064B1 50%, #fff 50%);
	}
	.two-column-11 .widget-type-linked_image .wrapper {
		margin: 0 0 0 -60px;
	}
	.two-column-11 .row-fluid > .span6 .hs_cos_wrapper_type_rich_text {
		max-width: 430px;
		display: block;
	}
}
.logo-clients h3 {
    text-align: center;
}
.logo-clients .logos {
    grid-template-columns: repeat(2,1fr);
    /* gap: 0; */
}
.logo-clients .card__inner {
    display: none;
}
.logo-clients .logos__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-clients .logos__card:after {
    content: "";
    border-right: 1px solid #cccccc;
    height: 31px;
    position: relative;
    left: 20px;
    transform: rotate(180deg);
}
.logo-clients .logos__card:last-child:after {
    border: none;
}
/* .logo-clients .logos__card:nth-child(2):after,
.logo-clients .logos__card:nth-child(4):after {
    border: none;
} */
.logo-clients .logos__card img {
    width: auto !important;
    margin: 0 auto;
}



/* global */
.logo-clients-global .dnd-row.button {
    text-align: center;
}
.logo-clients-global {
    padding-top: 30px;
    padding-bottom: 30px;
}
.logo-clients-global .dnd-row.card {
    padding-top: 10px;
    padding-bottom: 10px;
}
@media (min-width: 768px) {
    .logo-clients-global {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .logo-clients-global .dnd-row.card {
        padding-top: 30px;
        padding-bottom: 10px;
    }
}

.logo-clients .button .button-wrapper a.hs-button:hover,
.logo-clients .button .button-wrapper a.hs-button:focus {
    cursor: pointer;
	color: #fff;
    border-color: #0064B1;
	background-color: #0064B1;
}
.dnd-section.video {
    height: 420px;
    display: flex;
    align-items: center;
    flex-direction: row;
}
.dnd-section.video button.video-hubspot {
    border: 0;
    border-radius: 0;
    height: 80px;
    width: 80px;
    padding: 0;
    transform: scale(1);
    transition: transform 0.15s ease;
}
.dnd-section.video button.video-hubspot:hover {
    transform: scale(1.1);
}
.dnd-section.video :is(h2, h3, h4, h5, h6, p) {
    color: #fff;
}
@media (max-width: 767px) {
    .dnd-section.video .row-fluid > .span6 {
        text-align: center;
    }
}
@media (min-width: 768px) {
    .dnd-section.video {
        height: 720px;
    }
    .dnd-section.video button.video-hubspot {
        margin-left: -40px;
    }
    .dnd-section.video .row-fluid > .span6:first-child .hs_cos_wrapper_type_header,
    .dnd-section.video .row-fluid > .span6:first-child .hs_cos_wrapper_type_rich_text {
        max-width: 370px;
        /* margin-right: 30%; */
        display: block;
    }
    .dnd-section.video .row-fluid > .span6:first-child :is(h2, h3, h4, h5, h6) {
        padding-right: 60px;
    }
}
footer {
	padding: 0 20px;
}
.footer-top {
	padding-top: 75px;
	padding-bottom: 35px;
}
@media (min-width: 768px) {
	.footer-top {
		padding-top: 67px;
		padding-bottom: 67px;
	}   
}


/*logo*/
.footer-top .span3.dnd-column.dnd-column-1 {
    justify-content: flex-end;
}
.footer-top .span3.dnd-column-1 #hs_cos_wrapper_site_logo_footer img {
	width: auto;
    margin-bottom: 20px;
}
.footer-top .span3.dnd-column-1 .widget-type-linked_image {
    margin-bottom: auto;
}
.footer-top .span3.dnd-column.dnd-column-1 .widget-type-linked_image {
    margin-top: 25px;
    margin-bottom: 0;
}
.footer-top .span3.dnd-column.dnd-column-1 .box {
    margin-bottom: 0;
}
.footer-top .span3.dnd-column-1 .widget-type-rich_text p a {
    font-size: 18px;
    line-height: 28px;
    text-decoration-color: #ffffff;
    font-weight: 700;
}
.footer-top .dnd-column-1 p {
	margin-bottom: 32px;
}
.footer-top .dnd-column-1 p:last-child {
	margin-bottom: 0;
}

/* column */
.footer-top .span3.dnd-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .footer-top .dnd-column {
        align-items: center;
    }
}
@media (min-width: 768px) {
	.footer-top .dnd-column-1 {
        padding-right: 20px;
    }
	.footer-top .dnd-column-2 {
        padding-left: 0px;
    }
    .footer-top .dnd-column-3 {
        padding-left: 20px;
		padding-right: 20px;
	}
    .footer-top .dnd-column-4 {
        padding-left: 20px;
    }
}
@media (min-width: 992px) {
	.footer-top .dnd-column-1 {
        padding-right: 40px;
    }
	.footer-top .dnd-column-2 {
        padding-left: 20px;
    }
    .footer-top .dnd-column-3 {
        padding-left: 20px;
		padding-right: 20px;
	}
    .footer-top .dnd-column-4 {
        padding-left: 20px;
    }
}
@media (min-width: 1200px) {
    .footer-top .dnd-column-1 {
        padding-right: 90px;
    }
	.footer-top .dnd-column-2 {
        padding-right: 75px;
    }
    .footer-top .dnd-column-3 {
		padding-left: 50px;
        padding-right: 60px;
	}
    .footer-top .dnd-column-4 {
        padding-left: 75px;
    }
}


/*title menu*/
.footer-top .box {
    display: flex;
    align-items: center;
	margin-bottom: 13px;
}
@media (max-width: 575px) {
    .footer-top #hs_cos_wrapper_Header-2 {
        max-width: 100%;
        width: 230px;
    }
}
@media (max-width: 767px) {
    .footer-top .box {
        justify-content: center;
    }
    .footer-top #hs_cos_wrapper_Address {
        max-width: 100%;
        width: 290px;
    }
}



.footer-top h5 {
	display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
}
.footer-top h5 > a {
    text-decoration-color: #ffffff;
}
.footer-top h5, .footer-top p {
    font-size: 18px;
	line-height: 26px;
}
/* .footer-top h5:after {
	content: "";
	border-bottom: 1px solid #fff;
	width: 20px;
	display: block;
	margin: 4px auto 0;
} */
.footer-top .box img {
    width: auto;
    margin-right: 10px;
}
@media (min-width: 768px) {
	/* .footer-top h5 {
		margin-top: 0;
		margin-bottom: 45px;
	} */
	/* .footer-top h5:after {
		margin-top: 4px;
		margin-left: 0;
	}   */
}


/*menu*/
.footer-top li {
	margin-bottom: 8px;
}
.footer-top li:last-child {
	margin-bottom: 0;  
}


/*text html*/
.footer-top .span3 .hs_cos_wrapper_type_rich_text {
	width: 100%;
	display: block;
}
.footer-top .span3 > .widget-type-rich_text {
    margin-bottom: auto;
}
@media (min-width: 768px) {
	.footer-top .span3 .hs_cos_wrapper_type_rich_text {
		max-width: 250px;
	}
}
.footer-top .span3 .hs_cos_wrapper_type_module:last-child {
	margin-top: 25px;
}
.footer-top .span3 .hs_cos_wrapper_type_module:last-child .box {
    margin-bottom: 0;
}
.footer-top .widget-type-linked_image {
    display: flex;
    margin-top: 20px;
}


/*social*/
.footer-top .hs-social-follow {
	display: flex;
	align-items: flex-start;
	flex-direction: row;
	flex-wrap: nowrap;
    margin-top: 43px;
	gap: 10px;
}
.footer-top .hs-social-follow a.hs-social-follow__link {
	background-color: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.3);
	height: 23px !important;
	width: 31px !important;
	display: flex;
	justify-content: center;
	padding: 8px 4px;
	transition: border-color 0.15s linear;
}
.footer-top .hs-social-follow a.hs-social-follow__link img {
	width: 20px;
	height: 20px !important;
}
.footer-top .hs-social-follow a:last-child {
	margin-right: 0;  
}
.footer-top .hs-social-follow a.hs-social-follow__link:hover {
	border-color: #fff;
	/* color: #282E8E; */
	/* text-decoration-color: #0064B1 !important; */
}


/*Copyright*/
.footer-bottom .span12 {
	border-top: 1px solid rgba(255, 255, 255, .2);
	padding: 35px 0;
}
.footer-bottom p {
	font-size: 16px;
	line-height: 20px;
	text-align: center;
}
.footer-bottom a {
	text-decoration-color: #E6F3FF;
}


@media (max-width: 767px) {
	footer .dnd-column {
		text-align: center;
		margin-bottom: 20px;
	}
	.footer-top .social-links {
		justify-content: center;
		margin: 20px 0 0;
	}
}


/* Missing Template at Path: \'Northshore-Academy\/css\/section\/_test.css\' */