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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

@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%;
}

.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;
}
.modal-body {
  background: #E3E8ED;
  position: relative;
  font-style: normal;
  max-height: 100%;
  overflow: hidden;
  padding: 30px;
  border-radius: 20px;
}
.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;
}

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: 2px solid;
	margin: 0 0 1.4rem;
	padding-left: 0.7rem;
}

/* Horizontal rules */

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

/* Image alt text */
img.border-radius {
	border-radius: 20px;
}
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 :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 32px;
}

iframe {
	width: 100%;
}
.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: 16px 20px;
	line-height: 22px;
	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 label {
	display: block;
	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%;
	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 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;
}

.select {
	display: grid;
	grid-template-areas: "select";
	align-items: center;
	position: relative;
}
.select select,
.select::after {
	grid-area: select;
}
.select:not(.select--multiple)::after {
	content: url("//23669148.fs1.hubspotusercontent-na1.net/hubfs/23669148/raw_assets/public/Grace-Academy/images/icon-select.svg");
	justify-self: end;
	position: relative;
	right: 15px;
	top: 0;
}
.select option {
	color: #000;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

header img.border-radius {
   border-radius: 0;
}
.header-top {
   height: 0;
}
.header__container {
   position: relative;
	background-color: #ffffff;
}
.sticky-wrapper .header__container {
	transition: background 0.3s, 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);
}
.header__container {
   display: flex;
   justify-content: space-between;
   padding: 0 10px;
   flex-direction: column;
}
.header__row-1 {
   padding-top: 20px;
   padding-bottom: 20px;
   border-bottom: 1px solid #e5e5e5;
}
.header__row-1,
.header__row-2 {
   align-items: center;
   display: flex;
   justify-content: flex-end;
   width: 100%;
}
.header__column {
   width: 100%;
}
@media (max-width: 991px) {
   .header__row-1 {
      border-top: 1px solid #e5e5e5;
      justify-content: space-between;
      border-bottom-color: transparent;
   }
}
@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;
	}
}


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

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

.header__logo--main {
/*   padding-right: 10px;*/
   width: 100px;
   margin: 15px auto 10px;
}
@media (min-width: 768px) {
	.header__logo--main {
	   padding-top: 5px;
	   padding-bottom: 5px;
	   padding-right: 25px;
      margin: 0;
	}
   .header__logo {
      max-width: 100px;
   }
}
@media (min-width: 768px) and (max-width: 991px) {

}
@media (min-width: 992px) {
   .header__logo--main {
      padding-top: 25px;
      padding-bottom: 25px;
      padding-right: 25px;
      width: 150px;
      width: auto;
      margin: 0;
   }
   .header__logo {
      max-width: 200px;
   }
}


/*Phone*/
.header__phone {
	margin: 0 18px;
}
@media (max-width: 991px) {
   .site-header__navigtion-utility {
      margin: 0 0 0 18px;     
   }
   .header__phone {
      margin-left: auto;
   }
}



/*Button*/
.header__button a.hs-button {
   display: block;
}
@media (min-width: 992px) {
	.header__button {
      text-align: right;
		width: 150px;
	}
   .header__button a.hs-button {
      display: inline-block;
   }
}



/* Search bar */
.header__search {
   padding: 0 1rem;
   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;
   }
}

/*@media (max-width: 767px) {
   .header__search {
      border-top: 2px solid #CED4DB;
      order: 1;
      padding: 1.05rem;
   }
}*/



/* Navigation */
.header__menu-top {
	margin-right: 20px;
}
.header__menu-top ul li a {
	margin-right: 16px;
}
.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;
}
@media (min-width: 768px) {
   .header__menu-top li a {
      font-size: 16px;
      line-height: 20px;
   }
}


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

/* Horizontal menu */
.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
/*	flex-direction: column;*/
}

/* Vertical menu */
.hs-menu-wrapper.hs-menu-flow-vertical ul {
	flex-direction: column;
}

/* Flyouts */
.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('data:image/svg+xml;utf8,<svg width="8" height="5" viewBox="0 0 8 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.146447 0.146447C0.341709 -0.0488155 0.658291 -0.0488155 0.853553 0.146447L4 3.29289L7.14645 0.146447C7.34171 -0.0488155 7.65829 -0.0488155 7.85355 0.146447C8.04882 0.341709 8.04882 0.658291 7.85355 0.853553L4.35355 4.35355C4.15829 4.54882 3.84171 4.54882 3.64645 4.35355L0.146447 0.853553C-0.0488155 0.658291 -0.0488155 0.341709 0.146447 0.146447Z" fill="black"/></svg>');
	background-repeat: no-repeat;
	background-size: cover;
	height: 5px;
	width: 8px;
	display: inline-block;
	margin-left: 7px;
	vertical-align: middle;
}
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
	left: -9999px;
	opacity: 0;
	position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
	display: block;
	white-space: nowrap;
}

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

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
	left: 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: 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%;
}

/* 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 */
/**/
.hero > .row-fluid {
	position: relative;
}
.hero .wrapper img {
	border-radius: 20px;
}
@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;
}
.cta.contrast :is(h1, h2, h3, h4, h5, h6) {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}
.cta.contrast p {
	margin-top: 15px;
}


/* cta-1 */
@media (max-width: 767px) {
	.cta-1 .span3 {
		align-items: center !important;
		text-align: center !important;
	}	
}


/* cta-2 */
.cta-2 .row-fluid .dnd-row:first-child {
	border-radius: 10px;
	box-shadow: 0px 24px 60px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
	.cta-2 .row-fluid .dnd-row:last-child {
		text-align: center;
	}
	.cta-2 .row-fluid .dnd-row .span3 {
		align-items: center !important;
	}
}
.two-column {
	position: relative;
}
.two-column .row-fluid {
	z-index: 1;
	position: relative;
}
.two-column img {}




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



/* two-column 2 */
.two-column-2,
.two-column-2 .hs_cos_wrapper_type_header :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}
@media (min-width: 992px) {
	.two-column-2 .dnd-column:last-child {
		padding-left: 40px;
	}
}
@media (min-width: 1280px) {
	.two-column-2 .dnd-column:last-child {
		padding-left: 80px;
	}
}



/*section Find Out More*/
.two-column-3 .cards {
	display: grid;
  	grid-template-columns: repeat(1, 1fr);
  	gap: 15px;
}
.two-column-3 .cards .cards__card {
	display: flex;
   flex-direction: column;
   align-items: flex-start;
}
.two-column-3 .cards .card__inner {
	align-items: flex-start;
}
.two-column-3 .cards .cards__card img {
	width: auto;
	margin-bottom: 30px;
}
.two-column-3 .cards .cards__card .card__text {
	margin-bottom: 70px;
}
@media (min-width: 576px) {
	.two-column-3 .cards a {
		margin-top: auto;
	}
}
@media (min-width: 768px) {
	.two-column-3 .cards {
	  	grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 992px) {
	.two-column-3 .cards {
	  	gap: 20px;
	}
}



/*3 block*/
.two-column-5 {}
@media (max-width: 767px) {
	.two-column-5 .row-fluid .dnd-row:nth-child(2) .row-fluid {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}	
}



/*.two-column-7*/
.two-column-7 {}
.two-column-7 .span5 .dnd-row:last-child {
	margin-top: auto;
	border-radius: 10px;
/*	background-color: ;*/
}
.two-column-7 .span5 .dnd-row:last-child p {
	font-size: 16px;
	line-height: 20px;
}
.two-column-7 .span5 .dnd-row:last-child p a {
	text-decoration: underline;
	color: #26349D;
}
@media (max-width: 767px) {
	.two-column-7 .span5 .dnd-row:first-child {
		text-align: center;
	}
	.two-column-7 .button-wrapper {
		text-align: center;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.two-column-7 .span5,
	.two-column-7 .span7 {
		width: 50%;
	}
}
.useful-links :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 20px;
}
.useful-links .cards {
	justify-content: center;
	gap: 11px;
}
.useful-links .cards {
	grid-auto-rows: 4fr;
}
.useful-links .cards__card {
	display: flex;
   flex-direction: column;
   align-items: flex-start;
   justify-content: flex-start;
   position: relative;
   transition: background-color 0.15s linear;
   overflow: hidden;
}
@media (min-width: 768px) {
	.useful-links .cards__card {
	}
}
.useful-links .cards__card:hover {
	color: #fff;
	cursor: default;
	background-color: #26349D;
}
.useful-links .cards__card:hover :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}
.useful-links .cards__card img {
	width: auto;
	margin-bottom: 30px;
	top: 0;
	opacity: 1;
	transition: opacity 0.07s linear;
}
.useful-links .cards__card:hover img {
	margin-bottom: 30px;
	opacity: 0;
}
.useful-links .cards__card .card__inner {
	position: relative;
	justify-content: flex-end;
	align-items: flex-start;
}
.useful-links .cards__card:hover .card__inner {
	top: -100px;
}
.useful-links .cards__card .card__text {
	font-size: 16px;
	line-height: 26px;
}
.useful-links .cards__card .hs-button {
	display: none;
	opacity: 0;
	position: absolute;
	bottom: -75px;
	transition: opacity 0.07s linear;
}
.useful-links .cards__card:hover .hs-button {
	display: block;
	opacity: 1;
	background-color: #fff;
	margin-top: 20px;
	color: #26349D;
}
.useful-links .cards__card:hover .hs-button:hover {
	background-color: transparent;
	color: #fff;
	border-color: #fff;
}
.useful-links .cards__card:hover .hs-button > div {
	position: relative;
}

@media (min-width: 1500px) {
	.useful-links .cards {
		grid-template-columns: repeat(4, 350px);
	}
}
.statistics :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 20px;
}
.resources .cards__card {
	display: flex;
   flex-direction: column;
   align-items: flex-start;
}
.resources img {
	width: auto;
	margin-bottom: 25px;
}
.resources .cards :is(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 25px;
}
.resources .cards {
	gap: 10px;
}
.resources .cards .card__inner {
	align-items: flex-start;
}
.resources .card__text {
	margin-bottom: 25px;
}
.resources .cards a.hs-button {
	margin-top: auto;
}
@media (min-width: 768px) {
	.resources .cards {
		gap: 20px;
	}
	.resources img {
		margin-bottom: 50px;
	}
	.resources .card__text {
		margin-bottom: 40px;
	}
}
@media (min-width: 992px) {
	.resources .cards {
	  	grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 1280px) {
	.resources .card__text {
		width: 90%;
	}
}
.testimonial .dnd-column {
	padding: 0;
}
.body-container--contact {}

.two-column {}




















.row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) {
	display: flex;
	flex-direction: column;
}
@media (min-width: 768px) {
	.row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) {
		padding-right: 30px;
	}
}
@media (min-width: 1200px) {
	.row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) {
		padding-right: 95px;
	}	
}

.row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) .dnd-row:last-child {
	margin-top: auto;
}
.row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) .dnd-row:last-child p {
	font-size: 16px;
	color: #000;
}
.row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) .dnd-row:last-child a,
.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;
}
.row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) .dnd-row:last-child a {
/*	margin-top: 6px;*/
}
.row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(1) .dnd-row:last-child .social-links {
	display: flex;
	margin-top: 10px;
}
.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);
	border-radius: 10px;
	background-color: #fff;
	display: flex;
	line-height: 1;
	width: 40px;
	height: 40px;
	margin-right: 10px;
}



.body-container--contact form .hs-fieldtype-checkbox {}
.body-container--contact form .hs-fieldtype-checkbox ul {
	columns: 2;
  	-webkit-columns: 2;
  	-moz-columns: 2;
  	padding: 10px 0;
}
.body-container--contact form .hs-fieldtype-checkbox ul li {
	margin: 0 0 15px 0;
}
.body-container--contact form .hs-fieldtype-checkbox ul li label {
	display: flex;
	align-items: center;
}
.body-container--contact form .hs-fieldtype-checkbox ul li label input {
	width: 30px !important;
}



.row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) {}
.row-fluid > .span12 > .row-fluid-wrapper:nth-child(2) .span6:nth-child(2) {
	border-radius: 20px;
}




.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%;
}
@media (min-width: 768px) {
	.body-container--contact form textarea {
/*		height: 340px;*/
	}
}

.newsletter {
	padding: 50px 10px;
}
.newsletter .row-fluid .span12 {
	text-align: center;
	display: flex;
   flex-direction: column;
   align-items: center;
}
.newsletter .widget-type-linked_image img {
	margin-bottom: 25px;
}
.newsletter h3 {
	margin-bottom: 10px;
}
.newsletter form {
	display: flex;
	margin-top: 30px;
}
.newsletter form .hs_email {
	width: 340px;
/*	max-width: 340px;*/
}
.newsletter form .hs-form-field {
	margin-bottom: 0;
}
.newsletter form .hs_error_rollup {
	display: none;
}
.newsletter form .hs-error-msgs {
	text-align: center;
}
.newsletter form .hs_submit .actions input {
	margin-top: 0;
}
@media (min-width: 576px) {
	.newsletter form .hs_submit {
		margin-top: 10px;
		margin-left: 10px;
	}
}
@media (max-width: 575px) {
	.newsletter form {
		flex-direction: column;
	}
	.newsletter form .hs_submit {
		margin-top: 10px;
	}
}
@media (min-width: 768px) {
	.newsletter {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.newsletter form {
		margin-top: 65px;
	}
}


.newsletter.request a.hs-button {
	margin-top: 35px;
}
@media (min-width: 768px) {
	.newsletter.request a.hs-button {
		margin-top: 65px;
	}	
}
footer {
   padding: 0 20px;
}
.footer-top {
   padding-top: 35px;
   padding-bottom: 35px;
}
@media (min-width: 768px) {
   .footer-top {
      padding-top: 67px;
      padding-bottom: 67px;
   }   
}


/*logo*/
.footer-top .dnd-column-1 img {
   width: auto;
}
.footer-top .dnd-column-1 p {
   margin-bottom: 32px;
}
.footer-top .dnd-column-1 p:last-child {
   margin-bottom: 0;
}


/*menu 2*/
@media (min-width: 768px) {
   .footer-top .dnd-column-2 {
      padding-left: 30px;
   }
}
@media (min-width: 992px) {
   .footer-top .dnd-column-2 {
      padding-left: 45px;
   }
}
@media (min-width: 1200px) {
   .footer-top .dnd-column-2 {
      padding-left: 90px;
   }
}


/*title menu*/
.footer-top h5 {
   margin-top: 20px;
   margin-bottom: 8px;
   font-size: 18px;
   line-height: 26px;
   display: inline-block;
}
.footer-top h5:after {
   content: "";
   border-bottom: 1px solid #fff;
   width: 20px;
   display: block;
   margin: 4px auto 0;
}
@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;  
}
@media (min-width: 576px) {
  .footer-top li {
    margin-right: 25px;
  }
}


/*text html*/
.footer-top .span3 .hs_cos_wrapper_type_rich_text {
   width: 100%;
   display: block;
}
@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;
}


/*social*/
.footer-top .hs-social-follow {
   justify-content: center;
}
@media (min-width: 576px) {
  .footer-top .hs-social-follow {
    justify-content: flex-end;
  }
}
.footer-top .hs-social-follow a.hs-social-follow__link {
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: 10px;
   transition: background-color .15s linear;
  
   display: flex;
   align-items: center;
   justify-content: center;
  
   padding: 7px;
}
.footer-top .hs-social-follow a span.hs-social-follow__icon {
   height: 80%;
}
.footer-top .hs-social-follow a.hs-social-follow__link:hover {
   background-color: #fff;
}
.footer-top .hs-social-follow a.hs-social-follow__link svg {
   transition: fill .15s linear;
}
.footer-top .hs-social-follow a.hs-social-follow__link:hover svg {
   fill: #26349D !important;
}


/*Copyright*/
.footer-bottom .span12 {
   border-top: 1px solid rgba(255, 255, 255, .2);
   padding: 35px 0;
}
.footer-bottom p {
   font-size: 14px;
   line-height: 14px;
   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;
   }
}




/*.test {
	text-align: center;
}

.test h3 {
	color: #fff;
	max-width: 760px;
	width: 100%;
}*/