/* 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(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      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 .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

@font-face {
    font-family: 'Font Awesome 5 Brands';
    src: url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/fa-brands-400.woff),
        url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/fa-brands-400ss.ttf),
        url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/fa-brands-400ss.woff2);
    display: block;
    font-weight: normal;
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    src: url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/fa-solid-900s.woff),
        url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/fa-solid-900ss.ttf),
        url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/fa-solid-900ss.woff2);
    display: block;
    font-weight: normal;
}

@font-face {
    font-family: 'Feather';
    src: url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/Feather.ttf),
        url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/Feather.woff);
    display: block;
    font-weight: normal;
}

@font-face {
    font-family: 'Euclid-Circular';
    src: url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/EuclidCircularA-Regular.woff2),
        url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/EuclidCircularA-Regular.woff);
    font-style: normal; 
    font-weight: normal; 
    font-display: swap;
}
@font-face {
    font-family: 'Euclid-Circular';
    src: url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/EuclidCircularA-Italic.woff2),
        url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/EuclidCircularA-Italic.woff);
    font-style: italic; 
    font-weight: normal; 
    font-display: swap;
}

@font-face {
    font-family: 'Euclid-Circular';
    src: url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/EuclidCircularA-Medium.woff2),
        url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/EuclidCircularA-Medium.woff);
    font-style: normal; 
    font-weight: 500; 
    font-display: swap;
}

@font-face {
    font-family: 'Euclid-Circular';
    src: url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/EuclidCircularA-Bold.woff2),
        url(https://21149055.fs1.hubspotusercontent-na1.net/hubfs/21149055/raw_assets/public/EDULMS/fonts/EuclidCircularA-Bold.woff);
    font-style: normal; 
    font-weight: 700; 
    font-display: swap;
}
html {
    font-size: 62.5%;
}

body {
    overflow-wrap: break-word;
    scroll-behavior: auto;
    position: relative;
    overflow-y: scroll;
    scrollbar-width: thin;
    overflow-x: hidden;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Horizontal Line */

hr {
    background-size: 4px 4px;
    border: 0;
    height: 1px;
    margin: 0 0 24px;
}

/* Paragraphs */

p {
    margin: 0 0 1.4rem;
}

/* Anchors */

a {
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

[hidden] {
    display: none;
}

a {
    color: var(--color-heading);
    text-decoration: none;
    outline: none;
    transition: 0.3s;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: var(--color-primary);
}

a:focus {
    outline: none;
}


img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 0;
}

menu,
ol,
ul {
    margin: 16px 0;
    padding: 0 0 0 40px;
}

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}

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

ol ul {
    margin-bottom: 0;
}
/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
    overflow: auto;
}

code {
    vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
    font-size: 0.583rem;
    word-break: normal;
}
ul li,
ol li{
    margin: 15px 0;
}

.rows {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(-1* var(--bs-gutter-y));
    margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x));
}

.rows>*{
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-top: var(--bs-gutter-y);
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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;
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
}

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

/* Help text */

form legend {
    font-size: 0.875rem;
}

/* Inputs */

form input[type=text], form input[type=email], form input[type=password], form input[type=tel], form input[type=number], form input[type=file], form select, form textarea {
    border: 0;
    border-bottom: 2px solid #e6e3f1;
    background-color: transparent;
    padding-bottom: 8px;
    padding-top: 20px;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    height: 50px;
    font-size: 16px;
    color: #6b7385;
    box-shadow: 0 13px 14px 0 rgba(129, 104, 145, 0.05);
    line-height: 28px;
    background: transparent;
    outline: none;
    transition: 0.3s ease;
    width: 100%;
}

form .hs-form-field > label{
    width: 100%;
    color: rgba(107, 115, 133, 1.0);
    transition: 0.3s;
    letter-spacing: 0.5px;
    font-size: 18px;
    line-height: 28px;
}
form .hs-form-field label.hs-error-msg {
    font-size: 13px;
    color: #ef6155;
}
form input[type=checkbox],
form input[type=radio]{
    opacity: 1;
    position: static;
}
form .hs-form-field {
    position: relative;
}

textarea {
    border: 0;
    padding-bottom: 8px;
    padding-top: 8px;
    border-bottom: 2px solid #e6e3f1;
    background-color: transparent;
    resize: none;
    min-height: 133px;
}

form input[type=text]:focus, form input[type=email]:focus, form input[type=password]:focus, form input[type=tel]:focus, form input[type=number]:focus, form input[type=file]:focus, form select:focus, form textarea:focus {
    border-color: #2f57ef;
}

form .hs-form-field.focused label {
    top: -10px;
    font-size: 12px;
    transition: 0.3s;
    color: rgba(255, 154, 0, 1.0);
}

form fieldset {
    max-width: 100% !important;
}
input[type=checkbox] ~ label, input[type=radio] ~ label {
    position: relative;
    font-size: 15px;
    line-height: 25px;
    color: var(--body-color);
    font-weight: 400;
    padding-left: 20px;
    cursor: pointer;
    margin-bottom: 0;
}

input[type=checkbox] + span,
input[type=radio] + span{
    font-size: 15px;
    line-height: 1;
}
input[type=checkbox] ~ label::before, input[type=radio] ~ label::before {
    content: " ";
    position: absolute;
    top: 6px;
    left: 0;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border: 2px solid #e6e3f1;
    border-radius: 2px;
    transition: all 0.3s;
}

input[type=checkbox]:checked ~ label::before, input[type=radio]:checked ~ label::before {
    background-color: #2f57ef;
    border-color: #2f57ef;
}

input[type=checkbox] ~ label::after, input[type=radio] ~ label::after {
    content: " ";
    position: absolute;
    top: 9px;
    left: 2px;
    width: 10px;
    height: 5px;
    background-color: transparent;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    border-radius: 2px;
    transform: rotate(-45deg);
    opacity: 0;
    transition: all 0.3s;
}

input[type=checkbox]:checked ~ label::after, input[type=radio]:checked ~ label::after {
    opacity: 1
}
/* 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;
    margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.15s linear;
    white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
    margin: 0 auto;
}


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

.edu-header .search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #f1f0f3;
    box-shadow: 0 4px 16px rgba(8, 10, 18, 0.1);
    z-index: 104;
    visibility: hidden;
    clip: rect(0px, 200vw, 0, 0px);
    opacity: 0;
    transition: opacity 0.2s linear, clip 0.6s linear, visibility 0s 0.2s;
    transform: translateZ(0);
}

.dark .edu-header .search-dropdown{
    background: rgba(25, 35, 53, 1.0)
}

.edu-header .search-dropdown.active {
    visibility: visible;
    opacity: 1;
    clip: rect(0px, 200vw, 200vh, 0px);
    transition: clip 0.6s linear, opacity 0.2s linear;
}

.edu-header .search-dropdown .hs-search-field .wrapper {
    max-width: 900px;
    margin: 16px auto;
    padding: 0 16px;
    font-weight: 400;
}

.edu-header .search-dropdown .hs-search-field .wrapper form {
    margin: 30px 0;
    display: flex;
}

.edu-header .search-dropdown .hs-search-field .wrapper form input[type=text] {
    height: 50px;
    line-height: 48px;
    margin: 0 12px 0 0;
    padding: 0 16px;
    border: 2px solid #e6e3f1;
    transition: 0.3s;
    box-shadow: 0 13px 14px 0 rgba(129, 104, 145, 0.05);
    border-radius: 6px;
}

.edu-header .search-dropdown .hs-search-field .wrapper form button {border: none;padding-top: 0;padding-bottom: 0;line-height: normal;}

body.light.active:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 99;
    transition: all 0.7s;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
}
/* Footer */

.edu-footer .top-footer {
    padding-top: 80px;
    padding-bottom: 40px;
}

footer.footer-wrapper .rows {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: -30px;
}

.edu-footer .top-footer .rows>div {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 30px;
}

.edu-footer .top-footer .footerlogo{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

.edu-footer .top-footer .footerlogo .footer-light-logo{
    display: none;
}
.dark .edu-footer .top-footer .footerlogo .footer-light-logo{
    display: block;
}
.dark .edu-footer .top-footer .footerlogo .footer-dark-logo{
    display: none;
}
body.dark .edu-footer .copyright a {
    color: rgba(254, 254, 254, 1.0) !important;
}
.edu-footer .top-footer .menuSection1{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

.footer-menu ul ul{
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.edu-footer .top-footer .menuSection2{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

.edu-footer .top-footer .contact-section{
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

.edu-footer .top-footer .footerlogo .description{
    margin-top: 20px 
}


.edu-footer .top-footer .footerlogo .contact-btn {
    margin-top: 30px;
}

.edu-footer .top-footer .footerlogo .contact-btn a{
    background: var(--color-primary);
    background: linear-gradient(90deg, #cfa2e8, #637fea);
    border: none;
    border-radius: 6px;
    border-radius: 0;
    box-shadow: 0 10px 13px 0 rgba(209, 211, 237, .39);
    color: #192335;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    height: 60px;
    letter-spacing: .5px;
    line-height: 60px;
    outline: none;
    padding: 0 26px;
    position: relative;
    transition: all .4s ease-in-out;
    z-index: 1;
    z-index: 10;
    font-family: Euclid-Circular;
}

.radius-round{
    border-radius: 500px !important;
}

.edu-footer .top-footer .footerlogo .contact-btn a:before{
    content: "";
    z-index: -1;
    top: 3px;
    left: 3px;
    position: absolute;
    background: #fff;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 500px;
}

.edu-footer .top-footer .footerlogo .contact-btn .icon-reverse-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.edu-footer .top-footer .contact-btn .icon-reverse-wrapper .btn-icon{
    display: inline-block;
    transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
    transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);

}

.edu-footer .top-footer .footerlogo .contact-btn .icon-reverse-wrapper .btn-text{
    display: inline-block;
    transition: transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
    margin-inline-start: -23px;
}

.edu-footer .top-footer .contact-btn .icon-reverse-wrapper .btn-icon + .btn-icon {
    display: inline-block;
    margin-inline-start: 0;
    margin-inline-end: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition-delay: 0s;
    order: -2;
}

.edu-footer .top-footer .content-wrapper {
    padding: 0 7.5px;
}

.edu-footer .top-footer .contact-btn .icon-reverse-wrapper .btn-icon i {
    display: inline-block;
    top: 2px;
    position: relative;
    font-size: 17px;
    padding-left: 6px;
}

.edu-footer .top-footer .contact-btn .icon-reverse-wrapper .btn-icon+.btn-icon i {
    padding-left: 0;
    padding-right: 6px;
}


footer.footer-wrapper .bottom-footer .rows>div {
    max-width: 100%;
    padding-right: 7.5px;
    padding-left: 7.5px;
    margin-top: var(--bs-gutter-y);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
}

footer.footer-wrapper .bottom-footer .rows{
    margin-top: 0;
    margin-left: -12px;
    margin-right: -12px;
}

footer.footer-wrapper a {
    position: relative;
    color: #192335;
    font-size: 16px;
}

.bottom-footer {
    padding: 20px 0;
}

.edu-separator-mid hr {
    margin: 0;
}

footer.footer-wrapper p {
    font-size: 16px !important;
    margin: 0;
    line-height: 25px !important;
}
.copyright-links ul {
    justify-content: end;
    margin: -5px -10px !important;
}

.copyright-links ul li {
    font-size: 16px;
    line-height: 25px;
    padding: 0 10px;
    position: relative;
    margin-top: 5px;
    margin-bottom: 5px;
}

.copyright-links ul li a {
    transition: 0.4s;
    color: #6b7385;
}

.footer-menu .hs-menu-wrapper > ul > li > a {
    color: #192335;
    margin-bottom: 20px;
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.24;
    font-family: 'Euclid-Circular';
}

.footer-menu .hs-menu-wrapper > ul ul li a {
    color: #6b7385;
    display: inline-block !important;
    line-height: 25px;
}

.footer-menu .hs-menu-wrapper > ul ul li:not(:first-child) {
    margin-top: 10px;
}

.edu-footer .top-footer .contact-section ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.edu-footer .top-footer .contact-section ul li:not(:first-child) {
    margin-top: 10px;
}

.edu-footer .top-footer .contact-section ul li a {
}

.edu-footer .top-footer .contact-section ul li span {
    font-weight: 500;
    font-family: 'EUCLID-CIRCULAR';
}

.edu-footer .top-footer .contact-section ul li {
    line-height: 25px;
}

.edu-footer .top-footer .contact-section h5 {
    font-family: 'EUCLID-CIRCULAR';
    margin-bottom: 20px;
}

.copyright p a {
    color: #192335 !important;
    transition: 0.3s;
}
hr.edu-separator.m-0 {
    height: 1px;
    border:  none !important;
    background: #e6e3f1;
    opacity: 1;
}
footer.footer-wrapper a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
}

footer.footer-wrapper a:hover:after {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.edu-footer .top-footer .footerlogo .contact-btn a:after {
    display: none;
}
.footerlogo img{
    max-width: 150px;
}
@media screen and (min-width: 576px){
    .edu-footer .top-footer .footerlogo{
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .edu-footer .top-footer .menuSection1{
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .edu-footer .top-footer .menuSection2{
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }


    .edu-footer .top-footer .contact-section{
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
}

@media screen and (min-width: 768px){
    .edu-footer .top-footer .footerlogo{
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .edu-footer .top-footer .menuSection1{
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .edu-footer .top-footer .menuSection2{
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .edu-footer .top-footer .contact-section{
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    footer.footer-wrapper .bottom-footer .rows>div {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%; 
    }
}


@media screen and (min-width: 992px){
    .edu-footer .top-footer .footerlogo{
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .edu-footer .top-footer .menuSection1{
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .offset-lg-1{
        margin-left: 8.33333333%;
    }

    .edu-footer .top-footer .menuSection2{
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }


    .edu-footer .top-footer .contact-section{
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    footer.footer-wrapper .bottom-footer .rows>div {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
}

@media screen and (min-width: 1200px){
    footer.footer-wrapper .bottom-footer .rows>div {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
}

@media screen and (min-width: 1400px){
    footer.footer-wrapper .bottom-footer .rows>div {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
}

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

@media (max-width: 767px) {
    .hs-menu-wrapper.hs-menu-flow-horizontal ul {
        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;
}

@media (max-width: 767px) {
    .hs-menu-wrapper.hs-menu-flow-vertical ul {
        display: flex;
    }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
    position: relative;
}

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

    .edu-team-area .rows.g-5 {
        flex-direction: column;
    }

    .edu-team-area .rows.g-5 .col-lg-5 {
        width: 100%;
    }

    .edu-team-area .rows.g-5 .col-lg-7 {width: 100%;}

    .tab-pane .inner {
        flex-direction: column;
    }

    .tab-pane .inner .edu-team-details {
        padding: 0;
    }

    .edu-team-area .rows.g-5 .col-lg-5 ul li {
        flex-basis: 50%;
    }

    .rbt-counterup-area .rows.g-5.hanger-line {
        padding-left: 20px;
        padding-right: 20px;
    }

    .edu-main-header {
        padding: 0;
    }
}

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

.section-title {
    text-align: center;
}

.section-title span.subtitle {
    font-size: 14px;
    line-height: 15px;
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    display: inline-block;
    background: #FF9A0021;
    color: rgba(255, 154, 0, 1.0);
}

.icon-reverse-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-reverse-wrapper .btn-text {
    display: inline-block;
    transition: transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
    margin-inline-start: -23px;
}

.icon-reverse-wrapper .btn-icon {
    display: inline-flex;
    transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
    transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
}

.icon-reverse-wrapper .btn-icon + .btn-icon {
    display: inline-flex;
    margin-inline-start: 0;
    margin-inline-end: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition-delay: 0s;
    order: -2;
}

.icon-reverse-wrapper .btn-icon i {
    vertical-align: middle;
    padding-left: 5px;
}

.icon-reverse-wrapper .btn-icon + .btn-icon i {padding-left: 0;padding-right: 5px;}

/* .primary:hover {transform: translate3d(0, -2px, 0);} */
form input[type=submit]:hover {     transform: translate3d(0px, -24px, 0px); }

.primary:hover .icon-reverse-wrapper .btn-icon {
    opacity: 0;
    transition-delay: 0s;
    transform: translateX(10px);
}

.primary:hover .icon-reverse-wrapper .btn-icon + .btn-icon {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.225s;
}

.primary:hover .icon-reverse-wrapper .btn-text {
    transition-delay: 0.1s;
    transform: translateX(23px);
}

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