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

:root{
    --blue: #0074C8;
    --white: #fff;
    --green: #00A499;
    --dblue: #003B70;
    --lblue: #75bee9;
    --paleblue: #CFE1F2;
}

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

body{
  color: #424242;
  font-family: "myriad-pro", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: normal;
  font-style: normal; 
}

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

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

body {
  margin: 0;
}

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

main {
  display: block;
}

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

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

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

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

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  background-color: unset !important;
}

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

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

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

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

a {
  background-color: transparent;
}

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
========================================================================== */

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

img {
  border-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

progress {
  vertical-align: baseline;
}

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

textarea {
  overflow: auto;
}

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

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

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

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

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

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

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

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

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

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

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

/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/

details {
  display: block;
}

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

summary {
  display: list-item;
}

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

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

template {
  display: none;
}

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

[hidden] {
  display: none;
}

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

/* Responsive grid */

.row-fluid {
  width: 100%;
}

.row-fluid:before, .row-fluid:after {
  display: table;
  content: '';
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*='span'] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 2.127659574%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*='span']:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 99.99999998999999%;
}

.row-fluid .span11 {
  width: 91.489361693%;
}

.row-fluid .span10 {
  width: 82.97872339599999%;
}

.row-fluid .span9 {
  width: 74.468085099%;
}

.row-fluid .span8 {
  width: 65.95744680199999%;
}

.row-fluid .span7 {
  width: 57.446808505%;
}

.row-fluid .span6 {
  width: 48.93617020799999%;
}

.row-fluid .span5 {
  width: 40.425531911%;
}

.row-fluid .span4 {
  width: 31.914893614%;
}

.row-fluid .span3 {
  width: 23.404255317%;
}

.row-fluid .span2 {
  width: 14.89361702%;
}

.row-fluid .span1 {
  width: 6.382978723%;
}

.container-fluid:before, .container-fluid:after {
  display: table;
  content: '';
}

.container-fluid:after {
  clear: both;
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1139px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.762430939%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*='span']:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 99.999999993%;
  }

  .row-fluid .span11 {
    width: 91.436464082%;
  }

  .row-fluid .span10 {
    width: 82.87292817100001%;
  }

  .row-fluid .span9 {
    width: 74.30939226%;
  }

  .row-fluid .span8 {
    width: 65.74585634900001%;
  }

  .row-fluid .span7 {
    width: 57.182320438000005%;
  }

  .row-fluid .span6 {
    width: 48.618784527%;
  }

  .row-fluid .span5 {
    width: 40.055248616%;
  }

  .row-fluid .span4 {
    width: 31.491712705%;
  }

  .row-fluid .span3 {
    width: 22.928176794%;
  }

  .row-fluid .span2 {
    width: 14.364640883%;
  }

  .row-fluid .span1 {
    width: 5.801104972%;
  }
}

@media (min-width: 1280px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: '';
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.564102564%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*='span']:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }

  .row-fluid .span11 {
    width: 91.45299145300001%;
  }

  .row-fluid .span10 {
    width: 82.905982906%;
  }

  .row-fluid .span9 {
    width: 74.358974359%;
  }

  .row-fluid .span8 {
    width: 65.81196581200001%;
  }

  .row-fluid .span7 {
    width: 57.264957265%;
  }

  .row-fluid .span6 {
    width: 48.717948718%;
  }

  .row-fluid .span5 {
    width: 40.170940171000005%;
  }

  .row-fluid .span4 {
    width: 31.623931624%;
  }

  .row-fluid .span3 {
    width: 23.076923077%;
  }

  .row-fluid .span2 {
    width: 14.529914530000001%;
  }

  .row-fluid .span1 {
    width: 5.982905983%;
  }
}

/* Clearfix */

.clearfix:before, .clearfix:after {
  display: table;
  content: '';
}

.clearfix:after {
  clear: both;
}

/* Visibilty classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive visibilty classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 1024px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

.dnd-section,
.content-wrapper--vertical-spacing {
  padding: 80px 20px;
}


@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.)
*/

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
/*   letter-spacing: 3px; */
}

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

.white,
.white *{
 color: #fff !important; 
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.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;
}


.hs-button,
[class*="-btn"] {
  display: inline-block;
  text-decoration: none !important;
  font-weight: bold;
  text-align: center !important;
  padding: 10px 20px !important;
  border-radius: 4.52px !important;
  transition: 0.2s all !important;
}

[class*="-btn"]:hover {
  text-decoration: none !important;
}

[class*="-btn"].pencil-icon::after {
  content: "\f303";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

[class*="-btn"].table-of-contents::after {
  content: "\f03a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

[class*="-btn"].block {
  display: block;
}

[class*="-btn"].shadow {
  box-shadow: 5px 5px 10px #00000029 !important;
}

[class*="-btn"].shadow:hover {
  box-shadow: none !important;
}

[class*="-btn"].spectral {
  font-family: "Spectral", serif;
}

[class*="-btn"].stranger-times {
  font-family: "Stranger Times", serif;
}

[class*="-btn"].myriad-pro {
  font-family: myriad-pro, sans-serif;
  font-weight: 400;
}

[class*="-btn"].bold {
  font-weight: bold;
}

[class*="arrow-btn"][class*='arrow']{
  position: relative;
  font-size: 19.2px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid var(--lblue);
  display: flex;
  align-items: center;
  justify-content: space-between;
/*   min-width: 250px; */
  width: fit-content;
  border-radius: 0px !important;
  padding: 0px !important;
  color: var(--white);
}

[class*="arrow-btn"].arrow-right:after {
  content: '';
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='18' viewBox='0 0 11 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.60713 1.29687L9.79131 8.79512C9.94834 8.99141 10.0661 9.22695 10.0661 9.4625C10.0661 9.69805 9.94834 9.93359 9.79131 10.0906L2.60713 17.5889C2.25381 17.9814 1.62569 17.9814 1.27237 17.6281C0.879789 17.2748 0.879789 16.6859 1.23311 16.2934L7.82842 9.42324L1.23311 2.59238C0.879789 2.23906 0.879789 1.61094 1.27237 1.25762C1.62569 0.904297 2.25381 0.904297 2.60713 1.29687Z' fill='white'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 40px;
  margin-left: 20px;
}

.hs-button,
.blue-btn {
  color: white !important;
  background-color: var(--blue) !important;
  box-shadow: 5px 5px 10px #00000029 !important;
}

.hs-button:hover,
.blue-btn:hover {
  color: white !important;
  background-color: var(--blue) !important;
}

.light-blue-btn {
  background-color: var(--lblue) !important;
  color: white !important;
}

.light-blue-btn:hover {
  background-color: var(--white) !important;
  color: #2F6EBD !important;
}

.white-btn {
  background-color: white !important;
  color: var(--dblue) !important;
}

.white-btn:hover {
  color: var(--blue) !important;
}

.white-btn.outline {
  color: var(--white) !important;
  background-color: transparent !important;
  border: 5px solid var(--white) !important;
}

.white-btn.outline:hover {
  background-color: var(--white) !important;
  color: var(--blue) !important;
}

.green-btn{
  background-color: var(--green) !important;
  color: var(--white);
}

.green-btn:hover{
  color: #fff;
}



/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* 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 {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

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;
  margin-bottom: 0px !important;
}

form input[type=checkbox]{
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}

/* 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;
  color: #fff;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Stranger Times */
@font-face {
    font-family: 'Stranger Times';
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/stranger-times/StrangerTimes-Regular.eot');
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/stranger-times/StrangerTimes-Regular.eot?#iefix') format('embedded-opentype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/stranger-times/StrangerTimes-Regular.woff2') format('woff2'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/stranger-times/StrangerTimes-Regular.woff') format('woff'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/stranger-times/StrangerTimes-Regular.ttf') format('truetype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/stranger-times/StrangerTimes-Regular.svg#StrangerTimes-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Sharp Grotesk */
@font-face {
    font-family: 'Sharp Grotesk';
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/sharp-grotesk/SharpGroteskTRIALBold12.eot');
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/sharp-grotesk/SharpGroteskTRIALBold12.eot?#iefix') format('embedded-opentype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/sharp-grotesk/SharpGroteskTRIALBold12.woff2') format('woff2'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/sharp-grotesk/SharpGroteskTRIALBold12.woff') format('woff'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/sharp-grotesk/SharpGroteskTRIALBold12.ttf') format('truetype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/sharp-grotesk/SharpGroteskTRIALBold12.svg#SharpGroteskTRIALBold12') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Grotesk Medium';
    src: url('https://resources.sandiego.edu/hubfs/fonts/SharpGrotesk-MediumNo11.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sharp Grotesk';
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/sharp-grotesk/SharpGroteskSmBold11.eot');
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/sharp-grotesk/SharpGroteskSmBold11.eot?#iefix') format('embedded-opentype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/sharp-grotesk/SharpGroteskSmBold11.woff2') format('woff2'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/sharp-grotesk/SharpGroteskSmBold11.woff') format('woff'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/sharp-grotesk/SharpGroteskSmBold11.ttf') format('truetype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/sharp-grotesk/SharpGroteskSmBold11.svg#SharpGroteskSmBold11') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Spectral */
@font-face {
    font-family: 'Spectral';
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-ExtraLight.eot');
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-ExtraLight.eot?#iefix') format('embedded-opentype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-ExtraLight.woff2') format('woff2'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-ExtraLight.woff') format('woff'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-ExtraLight.ttf') format('truetype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-ExtraLight.svg#Spectral-ExtraLight') format('svg');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-ExtraLightItalic.eot');
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-ExtraLightItalic.eot?#iefix') format('embedded-opentype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-ExtraLightItalic.woff2') format('woff2'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-ExtraLightItalic.woff') format('woff'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-ExtraLightItalic.ttf') format('truetype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-ExtraLightItalic.svg#Spectral-ExtraLightItalic') format('svg');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Light.eot');
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Light.eot?#iefix') format('embedded-opentype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Light.woff2') format('woff2'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Light.woff') format('woff'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Light.ttf') format('truetype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Light.svg#Spectral-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-LightItalic.eot');
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-LightItalic.eot?#iefix') format('embedded-opentype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-LightItalic.woff2') format('woff2'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-LightItalic.woff') format('woff'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-LightItalic.ttf') format('truetype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-LightItalic.svg#Spectral-LightItalic') format('svg');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Regular.eot');
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Regular.eot?#iefix') format('embedded-opentype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Regular.woff2') format('woff2'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Regular.woff') format('woff'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Regular.ttf') format('truetype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Regular.svg#Spectral-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Italic.eot');
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Italic.eot?#iefix') format('embedded-opentype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Italic.woff2') format('woff2'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Italic.woff') format('woff'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Italic.ttf') format('truetype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Italic.svg#Spectral-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Medium.eot');
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Medium.eot?#iefix') format('embedded-opentype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Medium.woff2') format('woff2'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Medium.woff') format('woff'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Medium.ttf') format('truetype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-Medium.svg#Spectral-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-MediumItalic.eot');
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-MediumItalic.woff2') format('woff2'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-MediumItalic.woff') format('woff'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-MediumItalic.ttf') format('truetype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-MediumItalic.svg#Spectral-MediumItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-SemiBold.eot');
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-SemiBold.woff2') format('woff2'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-SemiBold.woff') format('woff'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-SemiBold.ttf') format('truetype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-SemiBold.svg#Spectral-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-SemiBoldItalic.eot');
    src: url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-SemiBoldItalic.eot?#iefix') format('embedded-opentype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-SemiBoldItalic.woff2') format('woff2'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-SemiBoldItalic.woff') format('woff'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-SemiBoldItalic.ttf') format('truetype'),
        url('https://solesresources.sandiego.edu/hubfs/KROC/%5BKROC%5D%20Fonts/spectral/Spectral-SemiBoldItalic.svg#Spectral-SemiBoldItalic') format('svg');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
/* 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 DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.header.header--no-navigation {
  background-color: white;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

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

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 0.7rem;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

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

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


/* ==========================================================================
Table of Contents:

1. EXTERNAL RESOURCES
2. BASE STYLES
3. COS STRUCTURE
4. MAIN NAVIGATION
5. BLOG
6. FORMS
7. BUTTONS
8. MISCELLANEOUS
9. MOBILE MEDIA QUERIES
========================================================================== */


/* ========== 3. COS STRUCTURE ========== */

/* NEW Footer (2021) */
footer{
  width: 100%;
  overflow: hidden;
}
footer a[target="_blank"]:after, footer button[target="_blank"]:after{
  margin-left: 0.25rem;
  content: "\f35d";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.5rem;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  vertical-align: super;
}
footer a .c-icon:before, 
footer button .c-icon:before{
  display: inline-block;
}
footer a:hover, footer button:hover {
  color: #00294E;
  background-color: #F1F8FC;
  outline: 0.25rem solid #F1F8FC;
}
footer .fa-sm {
  font-size: calc(1rem + 0.2 * ((100vw - 20rem) / 100));
}
footer .fas, footer .far{
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: bold;
}
.c-footer{
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-row: 4;
  grid-template-columns: 3rem auto auto 3rem;
  grid-template-rows: auto auto;
  grid-row-gap: 1rem;
  padding-top: 40px;
  background-color: #00294E;
}
.c-footer .c-footer__contact{
  grid-column: 2 / 3;
  align-self: center;
}
.c-footer .c-footer__contact .c-contact{
  padding: 0;
  grid-template-columns: 1fr 1fr;
}
.c-footer .c-footer__contact .c-contact .c-contact__site{
  box-shadow: none;
  grid-column: 1 / -1;
  -ms-grid-column: 1;
  align-self: flex-start;
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 1rem;
  padding: 0;
}
.c-footer .c-footer__contact .c-contact .c-contact__site > *{
  margin: 0; 
}
.c-footer .c-footer__contact .c-contact .c-contact__site .c-heading,
.c-footer .c-footer__contact .c-contact .c-contact__site h3{
  line-height: 1.2;
  color: #ffffff;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  font-family: "Spectral", "adobe-garamond-pro-n4", "adobe-garamond-pro", "Times New Roman", serif;
  font-weight: 200;
  font-size: 34px;
}
.c-footer .c-footer__contact .c-contact .c-contact__info{
  color: #ffffff;
  padding-bottom: 0.5rem;
  padding-left: 0;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  grid-column-gap: 2rem;
  font-size: 20px;
  /*   font-size: calc(1.2rem + 0.05 * ((100vw - 20rem) / 100)); */
  font-family: "Spectral", "adobe-garamond-pro-n4", "adobe-garamond-pro", "Times New Roman", serif;
  font-weight: 200;
  flex-direction: column;
  margin: 0;
}
.c-footer .c-footer__contact .c-contact .c-contact__info > span{
  margin-bottom: 0px;
  display: flex;
  margin-bottom: 0.5rem;
}
.c-footer .c-footer__contact .c-contact .c-contact__info span{
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  align-self: flex-start;
  line-height: 1.5;
  text-align: center;
}
.c-footer .c-footer__contact .c-contact .c-contact__info a{
  color: #ffffff;
}
.c-footer .c-footer__contact .c-contact .c-contact__info a:hover{
  color: #00294e;
}
.c-footer .c-contact .c-contact__label {
  margin-right: 0.25rem;
  min-width: 1.5rem;
}
.c-footer .c-contact .c-contact__label .c-contact__label--icons {
  text-align: center;
  padding: 2px;
  min-width: 1.5rem;
}

/* Location/Address */
.c-footer .c-contact .c-contact__info .c-contact__location{
  grid-column: 1 / 2;
  grid-row: 1/ 4;
}
.c-footer .c-footer__contact .c-contact .c-contact__info .c-contact__location address{
  text-align: left; 
  font-style: initial;
  display: inline;
}
.c-footer .c-footer__contact .c-contact .c-contact__info .c-contact__location address .c-contact__building{
  display: block;
  text-align: left; 
}
.c-footer .c-contact .c-contact__info span .c-contact__phone{
  grid-row: 1 / 2;
}
.c-footer .c-contact .c-contact__info .c-contact__email:nth-child(3){
  grid-column: 1 / 2;
}
.c-footer .c-contact .c-contact__info .c-icon{
  color: #75bee9;
}

/* CTA/Social Icons */
.c-footer .c-contact .c-contact__cta{
  grid-column: 1 / -1;
  justify-content: flex-start;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-footer .c-contact .c-contact__cta .c-social-icons{
  order: 2;
  margin-right: 0;
  position: relative;
}
.c-footer .c-contact .c-contact__cta .c-social-icons .c-btn-group{
  margin: 0;
  justify-content: left;
}
.c-footer .c-contact .c-contact__cta .c-social-icons .c-btn{
  order: 1;
  width: fit-content;
  height: fit-content;
  display: inline-block;
  text-align: center;
  position: relative;
}
.c-footer .c-contact .c-contact__cta .c-social-icons .c-btn:hover{
  background-color: transparent;
  box-shadow: 0 0.5rem 0 0 #75bee9;
  color: #ffffff;
  outline: none;
}
.c-footer .c-contact .c-contact__cta .c-social-icons .c-btn .c-icon{
  line-height: 2rem;
  color: #f1f1f1;
  pointer-events: none;
  transform: scale(1);
  transition: 0.1s ease;
}

.c-footer .c-contact .c-contact__cta .c-social-icons .c-btn:hover .c-icon{
 transform: scale(1.25); 
}

.c-footer .c-contact .c-contact__cta .c-social-icons .c-btn:after{
  position: absolute;
  visibility: hidden;
  top: -.25rem;
  right: -.25rem;
}
.c-footer .c-contact .c-contact__cta .c-social-icons .c-btn:hover:after{
  visibility: visible; 
}
.c-btn{
  font-family: "myriad-pro", Arial, sans-serif;
  font-weight: 600;
  color: #0074c8;
  border: 0;
  min-width: 2.5rem;
}
.c-btn--tertiary{
  background: #f8f8f8;
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  padding: 0.25rem 1rem !important;
  line-height: 1.5;
  text-decoration: none;
  outline: none;
  color: #0074c8 !important;
  box-shadow: 0 0 0.25rem 0 rgb(0 0 0 / 10%);
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: .25rem !important;
  width: fit-content !important;
}
.c-btn--tertiary:hover{
  color: #003b70;
  background-color: #f8f8f8;
  box-shadow: none;
  outline: none;
}

/* Footer Links Section */
.c-footer .c-footer__links{
  grid-column: 3 / 4; 
  grid-row: 1 / -1;
  justify-self: end;
  display: inline-flex;
  align-self: center;
}
.c-footer .c-footer__links .fa-chevron-down{
  display: none;
}
.c-footer .c-footer__links > *{
  flex-grow: 1;
}
.c-footer .c-footer__links .c-quick-links{
  margin-bottom: 0;
  margin-right: 2rem;
}
.c-footer .c-footer__links .c-quick-links .c-heading{
  color: #75bee9;
  padding-left: 35px;
  font-family: "myriad-pro", Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}
.c-footer .c-footer__links .c-quick-links .c-list--ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: white;
}
.c-footer .c-footer__links .c-quick-links:first-child .c-list--ul{
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  align-self: stretch;
  grid-auto-flow: column;
  grid-column-gap: 1rem;
  vertical-align: baseline;
  font-family: "myriad-pro", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}
.c-footer .c-footer__links .c-quick-links ul li.c-list__item{
  box-shadow: none !important;
  padding: 0px;
  font-family: "myriad-pro", Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: calc(0.8rem + 0.03333 * ((100vw - 20rem) / 100));
  min-width: 200px;
}
.c-footer .c-footer__links .c-list__item:active, 
.c-footer .c-footer__links .c-list__item:hover, 
.c-footer .c-footer__links .c-list__item:focus{
  outline: none;
  color: #75bee9;
  transition: all 0.3s ease-in-out;
}
.c-footer .c-footer__links .c-quick-links ul.c-list--micro li.c-list__item:hover .c-btn{
  outline: none;
  color: #75bee9;
  background: rgba(0, 0, 0, 0.2) !important;
}
.c-footer .c-footer__links .c-quick-links ul.c-list--micro li.c-list__item:hover .c-btn span{
  color: #75bee9;
}
.c-footer .c-footer__links .c-quick-links .c-btn{
  padding: 0.5rem 0.25rem 0.25rem 0.25rem;
  align-items: baseline;
}
.c-footer .c-footer__links .c-quick-links .c-btn span{
  display: inline-block;
  color: white;
}
.c-footer .c-footer__links .c-quick-links--light.c-quick-links--small .c-btn{
  font-size: 18px;
  font-weight: 200;
  font-family: "Spectral", "adobe-garamond-pro-n4", "adobe-garamond-pro", "Times New Roman", serif;
  text-transform: none;
  letter-spacing: 0;
}
.c-footer .c-footer__links .c-quick-links .c-btn.c-btn--block{
  text-align: left; 
  display: flex;
}
.c-footer .c-footer__links .c-quick-links .c-btn .c-icon{
  margin-right: 7.5px;
  font-size: 20px;
  padding-top: 0;
  text-align: center;
  margin-bottom: 0;
  pointer-events: none;
}
.c-footer .c-footer__links .c-quick-links .c-list__item .c-btn i:before{
  color: transparent;
  width: 1.5rem; 
}
.c-footer .c-footer__links .c-list__item:active .c-btn i:before, 
.c-footer .c-footer__links .c-list__item:hover .c-btn i:before, 
.c-footer .c-footer__links .c-list__item:focus .c-btn i:before {
  color: #75bee9;
}

/* Legal Info */
.c-footer__legal{
  background-image: -webkit-linear-gradient(left, #003b70, #0074c8);
  background-image: -moz-linear-gradient(left, #003b70, #0074c8);
  background-image: -o-linear-gradient(left, #003b70, #0074c8);
  background-image: linear-gradient(left, #003b70, #0074c8);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; 
  transition: all .3s ease;
  text-align: center;
  grid-column: 1 / -1 !important;
  grid-template-columns: auto auto;
  margin-bottom: 0px;
  padding: 0 2rem;
}
.c-footer__legal > *{
  grid-column: 1 / -1;
}
.c-footer__copyright{
  text-align: left;
  flex-grow: 1;
  flex-basis: auto;
  padding: 0.5rem;
  grid-row-start 3;
}
.c-footer__copyright p{
  font-family: "myriad-pro", Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 5px auto;
}
.c-footer__legal .c-footer__links-legal{
  padding-bottom: 0px;
  grid-row-start: 2;
  display: flex;
}
.c-footer__legal .c-footer__links-legal .c-btn-group{
  width: auto !important;
  margin: 0;
  flex-direction: row;
  justify-content: center;
  display: inline-flex;
  flex-wrap: wrap;
}
.c-footer__legal .c-footer__links-legal .c-btn-group--link .c-btn{
  color: #ffffff;
  text-decoration-color: #75bee9;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  padding: 0px !important;
}
.c-footer__legal .c-footer__links-legal .c-btn-group--link .c-btn:hover{
  color: #0074c8; 
  background-color: #F1F8FC;
  outline: 0.25rem solid #F1F8FC;
  text-decoration: none;
}
.c-footer__legal .c-footer__links-legal .c-btn-group .c-btn.c-btn--small{
  font-size: 14px; 
  text-decoration: unset;
  text-decoration-color: #75bee9;
}
.c-footer__legal .c-footer__links-legal .c-btn-group .c-btn.c-btn--small:hover{
  color: #0074c8;
  background-color: #f1f8fc;
  outline: .25rem solid #f1f8fc;
  text-decoration-color: #f1f8fc;
}
.c-footer__links-legal .c-btn-group--link .c-btn:focus {
  color: #00294E;
}

/* Large Screens */
@media screen and (min-width: 1600px){
  .c-footer .c-footer__links .c-quick-links ul li.c-list__item{
    min-width: 240px;
  }
  .c-footer .c-footer__links .c-quick-links--light.c-quick-links--small .c-btn{
    font-size: 20px;
  }
  .c-footer .c-footer__contact .c-contact .c-contact__info{
    font-size: 24px;
  }
  .c-footer .c-footer__links .c-quick-links .c-btn .c-icon{
    font-size: 24px;
  }
  .c-footer .c-contact .c-contact__info .c-contact__email:nth-child(3){
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .c-footer .c-contact .c-contact__location .c-contact__label.c-contact__label--icons{
    display: none;
  }
}

/* Small Screens */
@media screen and (max-width: 1280px){
  .c-footer{
    grid-template-columns: 1rem 1fr 1rem;
  }
  .c-footer > *,
  .c-footer .c-footer__links,
  .c-footer .c-footer__contact,
  .c-footer .c-footer__legal{
    grid-column: 2 / -2;
    grid-row: unset;
  }
  .c-footer .c-footer__contact .c-contact .c-contact__info address .c-contact__building{
    text-align: left;
  }
  .c-footer .c-contact .c-contact__cta{
    justify-content: space-between;
  }
  .c-footer .c-footer__links{
    justify-self: unset;
    display: inline-flex;
    align-self: center; 
    margin-bottom: 0.5rem;
    cursor: pointer;
  }
  .c-footer .c-footer__links h2{
    color: #fff !important;
  }
  .c-footer .c-footer__links h2:before{
    display: block;
    position: absolute;
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: -25px;
    transform: rotate(-90deg);
    color: #fff;
  }
  .c-footer .c-footer__links h2.show:before{
    transform: rotate(0deg);

  }
  .c-footer .c-footer__links .c-quick-links{
    background-color: #003b70;
    color: white;
    padding: 10px;
    margin: auto !important;
  }
  .c-footer .c-footer__links .c-quick-links.active{
    background-color: #75BEE9;
  }
  .c-footer .c-footer__links .c-quick-links.active h2,
  .c-footer .c-footer__links .c-quick-links.active h2:before{
    color: #000 !important;
  }
  .c-footer .c-footer__links .c-quick-links ul{
  }
  .c-footer .c-footer__links .c-quick-links h2{
    margin-bottom: 0px;
  }
  .c-footer .c-footer__links .c-quick-links:first-child .c-list--ul{
    display: none;
    background: white;
    padding: 10px;
    margin: 5px;
  }
  .c-footer .c-footer__links .c-quick-links:first-child .c-list--ul.show{
    display: block;
  }
  .c-footer .c-footer__links .c-quick-links:first-child .c-list--ul .c-list__item .c-btn,
  .c-footer .c-footer__links .c-quick-links .c-btn span,
  .c-footer .c-footer__links .c-quick-links .c-list__item .c-btn i:before{
    color: #0074c8 !important;
  }
  .c-footer__copyright{
    text-align: center; 
    padding: 0px;
    background-image: -webkit-linear-gradient(left, #003b70, #0074c8);
    background-image: -moz-linear-gradient(left, #003b70, #0074c8);
    background-image: -o-linear-gradient(left, #003b70, #0074c8);
    background-image: linear-gradient(left, #003b70, #0074c8);
  }
  .c-footer__legal{
    display: grid;
    background-image: none;
    background: transparent;
    padding: 0px;
    text-align: center;
  }
  .c-footer__legal .c-footer__links-legal{
    padding-bottom: 0.5rem;
    display: grid;
  }
  .c-footer__legal > *{
    grid-column: 1 / -1;
  }
  .c-footer .c-footer__contact .c-contact .c-contact__info{
    display: flex;
    margin: 0;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  .c-footer .c-contact .c-contact__info .c-contact__location .c-contact__label{
    display: block; 
  }
  .c-footer .c-footer__links .c-quick-links ul li.c-list__item{
    min-width: unset;
  }

  .c-footer .c-footer__contact .c-contact .c-contact__site h3{
    font-size: 24px;
  }
  .c-footer .c-footer__contact .c-contact .c-contact__info{
    font-size: 20px;
  }
  .c-btn--tertiary{
    font-size: 16px;
  }
}

.body-container {
  margin-top: 0 !important;
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */



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

/* 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%;
}
body {
  background: white !important;
}

body:not(.with-banner) .body-container {
  margin-top: 68px;
}

.fa-x-twitter:before{content:"\e61b"}

.container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  float: none;
}

.simple-banner {

}

.bg-dblue{
  background-color: #003B70;
}

.pre-footer-center-content .fa {
  font-size: 20pt !important;

}

.fa-calendar, .fa-user-md, .fa-envelope-o, .fa-pencil-alt, .fa-pencil{
  color: #00A499;
  text-align: center;
  font-size: 50pt !important;
  margin-bottom: 10px;
}

form input, form textarea {
  background: white !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0 0 10px lightgrey !important;
  padding: 10px !important;
  margin-bottom: 20px !important;
}

form .hs-form form select {
  padding: 10px !important;
}

form .hs-fieldtype-text label, form .hs-fieldtype-select label, form .hs-fieldtype-textarea label {
  display: none;
}

form textarea {
  min-height: 150px;
}

form input[type="submit"], .green-btn {
  background-image: none !important;
  border-radius: 0px;
}

form .actions {
  text-align: center;
}

.custom-footer-menu ul li.hs-menu-depth-1:last-child > ul.hs-menu-children-wrapper {
  display: flex !important;
}

.custom-footer-menu ul li.hs-menu-depth-1:last-child > ul.hs-menu-children-wrapper li {
  padding-left: 20px;
}

.custom-footer-menu ul li.hs-menu-depth-1:last-child > a {
  padding-left: 40px;
}

.blue-tiny-btn {
  border: 3px solid #3390d3;
  background: transparent;
  color: #0074c8 !important;
  font-size: 1rem;
  font-weight: normal;
  padding: 0.25rem 1rem;
  margin: 20px 0 0 0 !important;
  transition: all .4s ease;
}

a.blue-tiny-btn:hover {
  background: #0074c8;
  color: #FFFFFF !important;
  transition: all .4s ease;
}

.disclaimer-ms, .disclaimer-phd, .disclaimer-st {
  display: none;
}

/* ==========================================================================
HubSpot Migrations Services - COS Boilerplate v2.0.0                              
========================================================================== */


/* ==========================================================================
Table of Contents:

1. EXTERNAL RESOURCES
2. BASE STYLES
3. COS STRUCTURE
4. MAIN NAVIGATION
5. BLOG
6. FORMS
7. BUTTONS
8. MISCELLANEOUS
9. MOBILE MEDIA QUERIES
========================================================================== */


/* ==========================================================================
1. EXTERNAL RESOURCES                                            
========================================================================== */


/* =============== @import, @font-face, and CSS File Includes =============== */

/* EX: @import url('http://example.com/example_style.css'); */
@font-face {
  font-family: myriad-pro;
  src: url("//use.typekit.net/af/1b1b1e/00000000000000000001709e/27/l?subset_id=2&fvd=n7&v=3") format("woff2"), 
    url("//use.typekit.net/af/1b1b1e/00000000000000000001709e/27/d?subset_id=2&fvd=n7&v=3") format("woff"), 
    url("//use.typekit.net/af/1b1b1e/00000000000000000001709e/27/a?subset_id=2&fvd=n7&v=3") format("opentype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: myriad-pro;
  src: url("//use.typekit.net/af/80c5d0/00000000000000000001709c/27/l?subset_id=2&fvd=n6&v=3") format("woff2"), 
    url("//use.typekit.net/af/80c5d0/00000000000000000001709c/27/d?subset_id=2&fvd=n6&v=3") format("woff"), 
    url("//use.typekit.net/af/80c5d0/00000000000000000001709c/27/a?subset_id=2&fvd=n6&v=3") format("opentype");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: myriad-pro;
  src: url("//use.typekit.net/af/d32e26/00000000000000000001709b/27/l?subset_id=2&fvd=i4&v=3") format("woff2"),
    url("//use.typekit.net/af/d32e26/00000000000000000001709b/27/d?subset_id=2&fvd=i4&v=3") format("woff"), 
    url("//use.typekit.net/af/d32e26/00000000000000000001709b/27/a?subset_id=2&fvd=i4&v=3") format("opentype");
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-family: myriad-pro;
  src: url("//use.typekit.net/af/cafa63/00000000000000000001709a/27/l?subset_id=2&fvd=n4&v=3") format("woff2"),
    url("//use.typekit.net/af/cafa63/00000000000000000001709a/27/d?subset_id=2&fvd=n4&v=3") format("woff"),
    url("//use.typekit.net/af/cafa63/00000000000000000001709a/27/a?subset_id=2&fvd=n4&v=3") format("opentype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: myriad-pro;
  src: url("//use.typekit.net/af/c630c3/000000000000000000017098/27/l?subset_id=2&fvd=n3&v=3") format("woff2"),
    url("//use.typekit.net/af/c630c3/000000000000000000017098/27/d?subset_id=2&fvd=n3&v=3") format("woff"), 
    url("//use.typekit.net/af/c630c3/000000000000000000017098/27/a?subset_id=2&fvd=n3&v=3") format("opentype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "icomoon";
  src: url("//6041001.fs1.hubspotusercontent-na1.net/hubfs/6041001/University_of_SanDiego_June2019/Fonts/icomoon.eot") format("embedded-opentype"), 
    url("//6041001.fs1.hubspotusercontent-na1.net/hubfs/6041001/University_of_SanDiego_June2019/Fonts/icomoon.woff") format("woff"), 
    url("//6041001.fs1.hubspotusercontent-na1.net/hubfs/6041001/University_of_SanDiego_June2019/Fonts/icomoon.ttf") format("truetype"),
    url("//6041001.fs1.hubspotusercontent-na1.net/hubfs/6041001/University_of_SanDiego_June2019/Fonts/icomoon.svg") format("svg");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: adobe-garamond-pro;
  src: url("//use.typekit.net/af/2011b6/00000000000000003b9b00c1/27/l?subset_id=2&fvd=n4&v=3") format("woff2"),
    url("//use.typekit.net/af/2011b6/00000000000000003b9b00c1/27/d?subset_id=2&fvd=n4&v=3") format("woff"), 
    url("//use.typekit.net/af/2011b6/00000000000000003b9b00c1/27/a?subset_id=2&fvd=n4&v=3") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family:"adobe-garamond-pro";
  src:url("https://use.typekit.net/af/5cace6/00000000000000003b9b00c2/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff2"),
    url("https://use.typekit.net/af/5cace6/00000000000000003b9b00c2/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff"),
    url("https://use.typekit.net/af/5cace6/00000000000000003b9b00c2/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("opentype");
  font-style:italic;
  font-weight:400;
}

.tk-adobe-garamond-pro { font-family: "adobe-garamond-pro",serif; }
/* HubSpot_Boilerplate-modules.css is required to address style issues with the default modules and responsive grid layout */
/* Images */
img {
  max-width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom; /* Suppress the space beneath the baseline */
}
img.alignRight, img.alignright{ margin: 0 0 5px 15px; }
img.alignLeft, img.alignleft{ margin: 0 15px 5px 0; }

/* Reduces min-height on bootstrap structure */
.row-fluid [class*="span"] { min-height: 1px; }

/* Blog Social Sharing */
.hs-blog-social-share .hs-blog-social-share-list {
  margin: 0;
  list-style: none !important;
}
.hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item {
  height: 30px;
  list-style: none !important;
}
@media (max-width: 479px){
  .hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item:nth-child(2) {
    float: none !important; /* Stack social icons into two rows on phones */
  }
}
.hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item .fb-like > span{
  vertical-align: top !important; /* Aligns Facebook icon with other social media icons */
}
.hs-blog-social-share-list li.hs-blog-social-share-item.hs-blog-social-share-item-linkedin .IN-widget {
    vertical-align: top !important;
}

/* Captcha */
#recaptcha_response_field {
  width: auto !important;
  display: inline-block !important;
}

/* line height fix for reCaptcha theme */
#recaptcha_table td {line-height: 0;}
.recaptchatable #recaptcha_response_field { min-height: 0;line-height: 12px; }

@media all and (max-width: 400px) {
  /* beat recaptcha into being responsive, !importants and specificity are necessary */
  #captcha_wrapper,
  #recaptcha_area,
  #recaptcha_area table#recaptcha_table,
  #recaptcha_area table#recaptcha_table .recaptcha_r1_c1 {
    width: auto !important;
    overflow: hidden; 
  }
  #recaptcha_area table#recaptcha_table .recaptcha_r4_c4 { width: 67px !important; }
  #recaptcha_area table#recaptcha_table #recaptcha_image { width:280px !important; }
}

/* Videos */
video {
  max-width: 100%;
  height: auto;
}

/* Date Picker */
#calroot {
  width: 202px !important;
  line-height: normal;
}
#calroot,
#calroot *,
#calroot *:before,
#calroot *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
} 
#calroot select {
  min-height: 0 !important;
  padding: 1px 2px !important;
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet MS", Verdana, sans-serif !important;
  font-size: 10px !important;
  line-height: 18px !important;
  font-weight: normal !important;
} 
#caldays {
  margin-bottom: 4px;
}

/* Responsive Embed Container (iFrame, Object, Embed)*/
@media only screen and (max-width: 767px){
  .hs-responsive-embed,
  .hs-responsive-embed.hs-responsive-embed-youtube,
  .hs-responsive-embed.hs-responsive-embed-wistia,
  .hs-responsive-embed.hs-responsive-embed-vimeo {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  .hs-responsive-embed iframe, 
  .hs-responsive-embed object, 
  .hs-responsive-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
}
.hs-responsive-embed.hs-responsive-embed-instagram {
  padding-top: 0px;
  padding-bottom: 116.01%;
}
.hs-responsive-embed.hs-responsive-embed-pinterest {
  height: auto;
  overflow: visible;
  padding: 0 0 0 0;
}
.hs-responsive-embed.hs-responsive-embed-pinterest iframe {
  position: static;
  width: auto;
  height: auto;
}
iframe[src^="http://www.slideshare.net/slideshow/embed_code/"] {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 568px) {
  iframe {
    max-width: 100%;
  }
}

/* Forms */
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"]
select {
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Fix radio button and check box fields in multi column forms*/
.hs-form fieldset[class*="form-columns"] input[type="checkbox"].hs-input,
.hs-form fieldset[class*="form-columns"] input[type="radio"].hs-input {
  width: auto;
}

/* System Template Forms */
#email-prefs-form .email-edit {
  width: 100% !important;
  max-width: 507px !important;
}
#hs-pwd-widget-password {
  height: auto !important;
}

/* Menus */
.hs-menu-wrapper ul {
  padding: 0; 
}

/* Horizontal Menu
========================================================================== */

.hs-menu-wrapper.hs-menu-flow-horizontal ul {
  list-style: none;
  margin: 0;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul {
  display: inline-block;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul:before {
  content: " ";
  display: table;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul:after {
  content: " ";
  display: table;
  clear: both;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
  float: left;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  display: inline-block;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children {
  position: relative;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  position: absolute;
  z-index: 10;
  left: 0;
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  display: block;
  white-space: nowrap;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
  left: 100%;
  top: 0;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
  opacity: 1;
  visibility: visible;
}
.row-fluid-wrapper:last-child .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
  margin-bottom: 0;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch {
  position: relative;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul {
  margin-bottom: 0;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children {
  position: static;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  display: none;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper {
  display: block;
  visibility: visible;
  opacity: 1;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper:before {
  content: " ";
  display: table;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper:after {
  content: " ";
  display: table;
  clear: both;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li {
  float: left;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li a {
  display: inline-block;
}

/* Vertical Menu
========================================================================== */ 

.hs-menu-wrapper.hs-menu-flow-vertical {
  width: 100%;
}
.hs-menu-wrapper.hs-menu-flow-vertical ul {
  list-style: none;
  margin: 0;
}
.hs-menu-wrapper.hs-menu-flow-vertical li a {
  display: block;
}
.hs-menu-wrapper.hs-menu-flow-vertical > ul {
  margin-bottom: 0;
}
.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-menu-depth-1 > a {
  width: auto;
}
.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-item-has-children {
  position: relative;
}

/* Flyouts */
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  position: absolute;
  z-index: 10;
  left: 0;
}
.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  display: block;
  white-space: nowrap;
}
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  left: 100%;
  top: 0;
}
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
  opacity: 1;
  visibility: visible;
}


@media (max-width: 767px) {
  .hs-menu-wrapper, .hs-menu-wrapper * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    list-style: none;
    margin: 0;
    display: block;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    display: block;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
    float: none;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a,
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a,
  .hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li a {
    display: block;
  }

  /* Stacking Horizontal Nav for Mobile */
  .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal ul ul ul {
    padding: 0;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    white-space: normal;
  }

  /* Stacking Vertical Nav for Mobile */
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper  {
    position: static;
    opacity: 1;
    visibility: visible;
  }
}

.hs-menu-wrapper.hs-menu-flow-vertical.no-flyouts .hs-menu-children-wrapper {
  visibility: visible;
  opacity: 1;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.no-flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Space Module */
.widget-type-space { visibility: hidden; }

/* Blog Author Section */
.hs-author-social-links { display: inline-block; }
.hs-author-social-links a.hs-author-social-link {
  width: 24px;
  height: 24px;
  border-width: 0px;
  border: 0px;
  line-height: 24px;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  display: inline-block;
  text-indent: -99999px;
}
.hs-author-social-links a.hs-author-social-link.hs-social-facebook {
  background-image: url("//static.hubspot.com/final/img/common/icons/social/facebook-24x24.png");
}
.hs-author-social-links a.hs-author-social-link.hs-social-linkedin {
  background-image: url("//static.hubspot.com/final/img/common/icons/social/linkedin-24x24.png");
}
.hs-author-social-links a.hs-author-social-link.hs-social-twitter {
  background-image: url("//static.hubspot.com/final/img/common/icons/social/twitter-24x24.png");
}
.hs-author-social-links a.hs-author-social-link.hs-social-google-plus {
  background-image: url("//static.hubspot.com/final/img/common/icons/social/googleplus-24x24.png");
}

/* Fix for CTA border box issue */
.hs-cta-wrapper a {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
* jQuery FlexSlider v2.0
* http://www.woothemes.com/flexslider/
*
* Copyright 2012 WooThemes
* Free to use under the GPLv2 license.
* http://www.gnu.org/licenses/gpl-2.0.html
*
* Contributing author: Tyler Smith (@mbmufffin)
*/

/* Wrapper */
.hs_cos_wrapper_type_image_slider {
  display: block;
  overflow: hidden
}

/* Browser Resets */
.hs_cos_flex-container a:active,
.hs_cos_flex-slider a:active,
.hs_cos_flex-container a:focus,
.hs_cos_flex-slider a:focus  {outline: none;}
.hs_cos_flex-slides,
.hs_cos_flex-control-nav,
.hs_cos_flex-direction-nav {margin: 0; padding: 0; list-style: none;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
* include js that eliminates this class on page load */

/* FlexSlider Default Theme
*********************************/
.hs_cos_flex-slider {margin: 0 0 60px; padding: 0; background: #fff; border: 0; position: relative; -webkit-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; zoom: 1;}
.hs_cos_flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
.loading .hs_cos_flex-viewport {max-height: 300px;}
.hs_cos_flex-slider .hs_cos_flex-slides {zoom: 1;}

.carousel li {margin-right: 5px}

/* FlexSlider Necessary Styles
*********************************/
.hs_cos_flex-slider .hs_cos_flex-slides > li {display: none; -webkit-backface-visibility: hidden; position: relative;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.hs_cos_flex-slider .hs_cos_flex-slides img {width: 100%; display: block; border-radius: 0px;}
.hs_cos_flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .hs_cos_flex-slides element */
.hs_cos_flex-slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .hs_cos_flex-slides {display: block;}
* html .hs_cos_flex-slides {height: 1%;}


/* Direction Nav */
.hs_cos_flex-direction-nav {*height: 0;}
.hs_cos_flex-direction-nav a {width: 30px; height: 30px; margin: -20px 0 0; display: block; background: url("//cdn2.hubspotqa.com/local/hub/124/file-52894-png/bg_direction_nav.png") no-repeat 0 0; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; opacity: 0; -webkit-transition: all .3s ease;}
.hs_cos_flex-direction-nav .hs_cos_flex-next {background-position: 100% 0; right: -36px; }
.hs_cos_flex-direction-nav .hs_cos_flex-prev {left: -36px;}
.hs_cos_flex-slider:hover .hs_cos_flex-next {opacity: 0.8; right: 5px;}
.hs_cos_flex-slider:hover .hs_cos_flex-prev {opacity: 0.8; left: 5px;}
.hs_cos_flex-slider:hover .hs_cos_flex-next:hover, .hs_cos_flex-slider:hover .hs_cos_flex-prev:hover {opacity: 1;}
.hs_cos_flex-direction-nav .hs_cos_flex-disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}

/* Direction Nav for the Thumbnail Carousel */
.hs_cos_flex_thumbnavs-direction-nav {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.hs_cos_flex_thumbnavs-direction-nav {*height: 0;}
.hs_cos_flex_thumbnavs-direction-nav a {width: 30px; height: 140px; margin: -60px 0 0; display: block; background: url("//cdn2.hubspotqa.com/local/hub/124/file-52894-png/bg_direction_nav.png") no-repeat 0 40%; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; opacity: 1; -webkit-transition: all .3s ease;}
.hs_cos_flex_thumbnavs-direction-nav .hs_cos_flex_thumbnavs-next {background-position: 100% 40%; right: 0px; }
.hs_cos_flex_thumbnavs-direction-nav .hs_cos_flex_thumbnavs-prev {left: 0px;}
.hs-cos-flex-slider-control-panel img { cursor: pointer; }
.hs-cos-flex-slider-control-panel img:hover { opacity:.8; }
.hs-cos-flex-slider-control-panel { margin-top: -30px; }



/* Control Nav */
.hs_cos_flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}
.hs_cos_flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
.hs_cos_flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(0,0,0,0.3);}
.hs_cos_flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
.hs_cos_flex-control-paging li a.hs_cos_flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }

.hs_cos_flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.hs_cos_flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.hs_cos_flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.hs_cos_flex-control-thumbs img:hover {opacity: 1;}
.hs_cos_flex-control-thumbs .hs_cos_flex-active {opacity: 1; cursor: default;}

@media screen and (max-width: 860px) {
  .hs_cos_flex-direction-nav .hs_cos_flex-prev {opacity: 1; left: 0;}
  .hs_cos_flex-direction-nav .hs_cos_flex-next {opacity: 1; right: 0;}
}

.hs_cos_flex-slider .caption {
  background-color: black;
  position: static;
  font-size: 2em;
  line-height: 1.1em;
  color: white;
  padding: 0px 5% 0px 5%;
  width: 100%;
  top: 40%;
  text-align: center;
}
.hs_cos_flex-slider .superimpose .caption {
  color: white;
  font-size: 3em;
  line-height: 1.1em;
  position: absolute;
  padding: 0px 5% 0px 5%;
  width: 90%;
  top: 40%;
  text-align: center;
  background-color: transparent;
}

@media all and (max-width: 400px) {
  .hs_cos_flex-slider .superimpose .caption {
    background-color: black;
    position: static;
    font-size: 2em;
    line-height: 1.1em;
    color: white;
    width: 90%;
    padding: 0px 5% 0px 5%;
    top: 40%;
    text-align: center;
  }
}

.hs_cos_flex-slider h1,
.hs_cos_flex-slider h2,
.hs_cos_flex-slider h3,
.hs_cos_flex-slider h4,
.hs_cos_flex-slider h5,
.hs_cos_flex-slider h6,
.hs_cos_flex-slider p {
  color: white;
}
/* Thumbnail only version of the gallery */
.hs-gallery-thumbnails li {
  display: inline-block;
  margin: 0px;
  padding: 0px;
  margin-right:-4px;
}
.hs-gallery-thumbnails.fixed-height li img {
  max-height: 150px;
  margin: 0px;
  padding: 0px;
  border-width: 0px;
}

/* responsive pre elements */
pre { overflow-x: auto; }

/* responsive pre tables */
table pre { white-space: pre-wrap; }

/* Corrects width issues in table elements created via the wysiwyg editor */
table tr td img { max-width: initial; }

/* adding minimal spacing for blog comments */
.comment { margin: 10px 0 10px 0; }

/* make sure lines with no whitespace don't interefere with layout */
.hs_cos_wrapper_type_rich_text,
.hs_cos_wrapper_type_text,
.hs_cos_wrapper_type_header,
.hs_cos_wrapper_type_section_header,
.hs_cos_wrapper_type_raw_html,
.hs_cos_wrapper_type_raw_jinja,
.hs_cos_wrapper_type_page_footer {
  word-wrap: break-word;
}

/* HTML 5 Reset */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}
audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}

/* Support migrations from wordpress */
.wp-float-left {
  float: left;
  margin: 0 20px 20px 0;
}

.wp-float-right {
  float: right;
  margin: 0 0 20px 20px;
}

/* Responsive Google Maps */
#map_canvas img, .google-maps img { max-width: none; }


/* ==========================================================================
2. BASE STYLES                                             
========================================================================== */

/* =============== Base =============== */

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
} 

body {
  background: #f6f6f6;
  color: #424242;
  font-family: "myriad-pro", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: normal;
  font-style: normal;
}





/* Page Center */
.container-fluid .row-fluid .page-center {
  float: none;
  max-width: 81.25rem;
  margin: 0 auto;
}
.container-fluid .row-fluid .page-center.content-wrapper{
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background-color:#fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
/* Highlighted Text */
::-moz-selection {
  color: #fff;
  background: #333;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: #333;
  text-shadow: none;
}


/* =============== Typography =============== */

/* Basic text */
p {} 
small {}
strong {}
em {}
cite {}
code {}
pre {}

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

sup { top: -0.5em; }
sub { bottom: -0.25em; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "myriad-pro", Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #646469;
  text-rendering: optimizeLegibility;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {}

h1 {
  font-size: 1.75rem;
  font-family: "adobe-garamond-pro-n4", "adobe-garamond-pro", "Times New Roman", serif;
  font-weight: 300;
  line-height: 1.25;
}

h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #003b70;
}

h3 {
  font-size: 1.1875rem;
  font-weight: 300;
  color: #00a499;
}

h4 {
  font-size: 1.0625rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}


@media only screen and (min-width: 30.063em){
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
  }
  h1 {
    font-size: 2.375rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.375rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: 1rem;
  }
}
/* Anchor Links */
a {
  text-decoration: none;
  line-height: inherit;
  color: #0074c8;
  word-wrap: break-word;
}
a:hover, a:focus { 
  color: #33628d;
}

/* Lists */
ul, ol {}
ul ul, ul ol, ol ol, ol ul {}
li {}

/* Block Quotes */
blockquote {}
blockquote p {}
blockquote small {}

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


/* =============== EU Cookie Confirmation Bar =============== */

/* Confirmation Outer Wrapper*/
#hs-eu-cookie-confirmation {}

/* Confirmation Inner Wrapper*/
#hs-eu-cookie-confirmation-inner {}
#hs-eu-cookie-confirmation-inner p{}

/* Confirmation Button */
#hs-en-cookie-confirmation-buttons-area {}
a#hs-eu-confirmation-button {}


/* ==========================================================================
3. COS STRUCTURE                                            
========================================================================== */


/* =============== Structure =============== */

/* The outer wrappers of your website */
.header-container-wrapper, 
.body-container-wrapper, 
.footer-container-wrapper {}

/* The inner wrappers of your website */
.header-container, 
.body-container, 
.footer-container {}


/* =============== Header =============== */

.header-container-wrapper {}
.header-container {}

.widget-span.cm-header-outer {
  width: 100%;
  left: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  top: 0;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  position: fixed;
  font-family: "myriad-pro", Arial, sans-serif;
  z-index: 10000;
  height: 88px;
}

.widget-span.cm-header-outer:before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 24px;
  background: linear-gradient(45deg, #75bee9 0%, #91cbed 100%);
}

.widget-span.cm-header-outer:after {
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0px;
  border-bottom: 24px solid #e3f2fb;
}

.widget-span.cm-logo-wrap {
  top: 0;
  width: 100%;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  float: none;
  left: 0;
  position: absolute;
  z-index: 3;
  transition: background-color 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #003b70;
}

.widget-span.header-logo {
  position: relative;
  width: 58.33333%;
  height: 60px;
}

.widget-span.header-logo .custom-logo {
  height: 60px;
  display: inline-block;
}

.widget-span.header-logo .custom-logo a {
  display: inline-block;
}

.widget-span.header-logo .custom-logo a img {
  margin-top: 0;
  width: 336px;
}

.widget-span.mobile-trigger-wrap {
  position: absolute;
  left: auto;
  right: 0;
  width: 8.33333%;
  margin-left: 0;
  height: 60px;
  display: none;
}
.container-fluid .widget-span.cm-search-wrap .row-fluid .page-center {
  position: relative;
}
.main-search {
  position: absolute;
  left: auto;
  width: 16.66667%;
  float: right;
  right: 0;
  z-index: 11;
  padding: 0;
  top: 0;
}

.main-search .sb-search {
  float: right;
  position: relative;
  overflow: visible;
  min-width: 150px;
  width: 100%;
}

.main-search .sb-search form {
  text-align: left;
  color: #FFFFFF;
  background: transparent;
  height: 46px;
  position: relative;
  margin: .25rem 0 0 0;
  width: 100%;
}

.main-search .sb-search form:before {
  content: "\ed1e";
  margin-left: .75rem;
  font-size: 1.25rem;
  top: 0;
  left: 0;
  height: 60px;
  line-height: 60px;
  z-index: 11;
  font-size: 1rem;
  height: 46px;
  line-height: 46px;
  left: auto;
  right: 1rem;
  position: absolute;
  font-size: 1.25rem;
  height: 56px;
  line-height: 54px;
}

.main-search .sb-search form input[type="text"] {
  display: block;
  -webkit-appearance: none;
  font-family: "myriad-pro", Arial, sans-serif;
  z-index: 10;
  width: 100%;
  outline: none;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: none;
  color: #FFFFFF;
  letter-spacing: 1px;
  -webkit-font-smoothing: auto;
  margin: 0;
  padding: 0 1rem .125rem 1rem;
  font-weight: 400;
  font-size: .9375rem;
  height: 56px;
  line-height: 54px;
  background: transparent;
  border: 0 !important;
  border-radius: 0;
  transition: background 0.1s !important;
  background-color: rgba(255, 255, 255, 0.1);
}
.main-search .sb-search form .sb-icon-search {
  text-align: center;
  cursor: pointer;
  transition: padding 0.3s;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  margin: 0;
  font-size: 1.25rem;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  display: block;
  color: #fff;
  background: transparent;
  z-index: 90;
  width: 140px;
  height: 56px;
  line-height: 56px;
}

.main-search .sb-search form .sb-icon-search:before {
  content: "\ed1e";
  height: 56px;
  line-height: 56px;
  visibility: hidden;
}

.show-for-sr {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  color: #FFFFFF !important;
  background-color: #000000 !important;
}
.main-search .sb-search form input[type="submit"] {
  overflow: hidden;
  font-size: 0.875rem;
  text-align: center;
  cursor: pointer;
  transition: padding 0.3s;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 1;
  color: transparent;
  border: none;
  z-index: -1;
  margin-right: 0 !important;
  width: 140px;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  height: 56px;
  line-height: 56px;
  text-shadow: none;
  box-shadow: none;
  display:none;
}
.main-search .search-help {
  width: 0%;
  min-width: 140px;
  color: #FFFFFF;
  padding: 0rem;
  background-color: rgba(100, 100, 105, 0.96);
  overflow: visible;
  position: absolute;
  right: 0;
  opacity: 0;
  visibility: hidden;
  margin-top: 60px;
}

.main-search .search-help .pop-search {
  padding: 1rem 0;
}

.main-search .search-help .pop-search h3 {
  padding: 0 1rem;
  margin-bottom: .25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

.main-search .search-help .pop-search ul {
  margin: 0;
  padding: 0;
  font-family: "myriad-pro", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
  overflow: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto auto auto auto;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(8, auto);
}

.main-search .search-help .pop-search ul li {
  margin: 0;
  padding: 0;
}

.main-search .search-help .pop-search ul li a {
  color: #FFFFFF;
  display: block;
  padding: 0;
  font-size: .875rem;
  line-height: 1.2;
  padding: .25rem 1rem;
}

.main-search .search-help .pop-search ul li a:hover {
  color: #e4e4e4;
}
.main-search .sb-search.sb-search-open form input[type="text"] {
  background-color: white !important;
  width: calc(100% - 50px);
  left: 0;
  box-shadow: 0 0 5px #999999;
  padding-left: 1rem;
  color: #0074c8;
  position: relative;
  z-index: 12;
}

.main-search .sb-search.sb-search-open form input[type="submit"] {
  z-index: 90;
  width: 50px;
  height: 56px;
  line-height: 56px;
}

.main-search .sb-search.sb-search-open form .sb-icon-search {
  background: #eeeeee;
  width: 50px;
  color: #33628d;
  z-index: 11;
}

.main-search .sb-search.sb-search-open form .sb-icon-search:before {
  visibility: visible;
}


.main-search .sb-search.sb-search-open + .search-help {
  visibility: visible;
  opacity: 1;
  width: 100%;
  margin-right: 0;
}
.main-search .sb-search.sb-search-open form input[type="text"]:focus {
  box-shadow: 0 0 5px #999999;
  padding-left: 1rem;
  color: #0074c8;
}
.simple-banner {
  background-size: cover;
  position: relative;
  transition: min-height .25s;
  background-position: center center;
  background-color: #838387;
  height: 350px;
}
.header-hide .widget-span.cm-header-outer {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header-show .widget-span.cm-header-outer {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* =============== Content =============== */

.body-container-wrapper {}
.body-container {}

.content-wrapper {
  font-family: "myriad-pro", Arial, sans-serif;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.6;
  padding-top:20px;
  padding-bottom:20px;
}
body:not(.with-banner) .content-wrapper{
  padding-top: 60px !important;
}
.main-content {}
.sidebar{}
.sidebar.right{}
.sidebar.left{}


/* =============== OLD Footer =============== */

.footer-container-wrapper {}
.footer-container {}

.widget-span.cm-footer-outer {
  background-color: #424242;
  color: #f6f6f6;
  margin: 0 auto !important;
  padding: 1rem 0 0 0;
}

.widget-span.cm-footer-bottom {
  background-color: #222;
  text-align: center;
  margin-top: 1.5rem;
  padding: 1rem 0;
}

.widget-span.copyright {
  position: relative;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  float: left;
  width: 41.66667%;
}

.widget-span.copyright p {
  margin: 0;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  font-family: "myriad-pro", Arial, sans-serif;
  font-weight: normal;
  color: #dddddd;
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.widget-span.footer-feedback-menu {
  margin-left: 0;
  position: relative;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 58.33333%;
  float: right;
}

.widget-span.footer-feedback-menu .hs-menu-wrapper > ul {
  text-align: right;
  width: 100%;
  vertical-align: middle;
}

.widget-span.footer-feedback-menu .hs-menu-wrapper > ul > li {
  float: none;
  color: #dddddd;
  text-align: left;
  font-size: 0.9rem;
  border-right: thin solid #646469;
  display: inline;
}

.widget-span.footer-feedback-menu .hs-menu-wrapper > ul > li > a {
  color: #dddddd;
  display: inline-block;
  padding: 0 0.65rem 0 0.5rem;
}
.widget-span.footer-feedback-menu .hs-menu-wrapper > ul > li > a:hover {
  color: #b1b1b4;
}
.widget-span.footer-feedback-menu .hs-menu-wrapper > ul > li:last-child {
  border-right: 0;
}
.widget-span.cm-footer-top {
  padding: 1.5rem 0 0 0;
}

.container-fluid .widget-span.cm-footer-top .row-fluid .page-center > div {
  position: relative;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.widget-span.footer-address {
  padding-right: 0.9375rem;
  position: relative;
  width: 41.66667%;
  margin-bottom: 1rem;
}

.widget-span.footer-address p {
  margin: 0;
  margin-bottom: 0.625rem;
  text-rendering: optimizeLegibility;
  font-family: "myriad-pro", Arial, sans-serif;
  font-weight: normal;
  color: #dddddd;
  text-align: left !important;
  font-size: 0.95rem;
  line-height: 1.6;
}

.widget-span.footer-address p span {
  display: inline-block;
}

.widget-span.footer-address p > span:first-child {
  font-family: "adobe-garamond-pro-n4", "adobe-garamond-pro", "Times New Roman", serif;
  font-size: 1.75rem;
}

.widget-span.footer-address p a {
  color: #dddddd;
}

.widget-span.footer-address p > a:first-of-type > span:first-child {
  border-right: 1px solid #dddddd;
  line-height: 1rem;
  margin-right: 0.4rem;
  padding-right: 0.75rem;
}

.widget-span.footer-address p > a:nth-child(5) {
  display: inline-block;
  margin-right: 0.5rem;
}

.widget-span.footer-address p > a:nth-child(5) span {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-align: center;
  text-transform: none;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 0.15rem;
  vertical-align: middle;
  font-size: 1.15rem;
}

.widget-span.footer-address p > a:nth-child(5) span:before {
  content: "\ec08";
}

.widget-span.footer-address p > a:nth-child(6) > span {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-align: center;
  text-transform: none;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25rem;
  margin-right: 0.15rem;
  vertical-align: middle;
}

.widget-span.footer-address p > a:nth-child(6) > span:before {
  content: "\e605";
}

.footer-container a {
  color: #dddddd;
}

.footer-container a:hover {
  color: #b1b1b4;
}

.widget-span.footer-address p a:hover {
  color: #b1b1b4;
}

.widget-span.custom-footer-menu {
  position: relative;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  float: left;
  width: 58.33333%;
  margin-left: 0;
  margin-top: 1rem;
  text-align: left;
}

.widget-span.custom-footer-menu > div {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}

.widget-span.custom-footer-menu .hs-menu-wrapper > ul {
  display: block;
}

.widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Get-Started {
  padding-right: 0.9375rem;
  width: 33.33333%;
  position: relative;
  left: 16.66667%;
  right: auto;
}

.widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Schools {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 50%;
  float: right;
}

.widget-span.custom-footer-menu .hs-menu-wrapper > ul > li > a {
  text-rendering: optimizeLegibility;
  text-align: left !important;
  border-bottom: 1px dotted #646469;
  color: #dddddd;
  display: inline-block;
  font-family: "adobe-garamond-pro-n4", "adobe-garamond-pro", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5rem;
  margin: 2rem 0 0.25rem;
  margin-top: 0;
  padding: 0 0 0.5rem 0;
  width: 100%;
}

.widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Get-Started ul {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.widget-span.custom-footer-menu .hs-menu-wrapper > ul > li ul li {
  color: #dddddd;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  font-family: "myriad-pro", Arial, sans-serif;
  list-style-type: none;
}
.widget-span.custom-footer-menu .hs-menu-wrapper > ul > li ul li a {
  white-space: normal !important;
}
.widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Schools > ul {
  margin-bottom: 0.5rem;
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}

.widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Schools > ul > li {
  margin-bottom: 2rem;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-row: 1;
  grid-column: 1;
}

.widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Schools > ul > li:last-child {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-row: 1;
  grid-column: 2;
}

.widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Schools > ul > li > a {
  display: none;
}
.widget-span.footer-social-share {
  margin-left: 0;
  right: 65%;
  left: auto;
  width: 35%;
  padding-right: 0.9375rem;
  position: relative;
  float: right;
  padding-left: 0;
  text-align: left;
  margin-top: -4rem;
}
.widget-span.footer-social-share-simple{
  margin-left: 0;
  padding-right: unset;
  position: relative;
  float: right;
  padding-left: 0;
  text-align: right;
}

.widget-span.footer-social-share ul {
  font-family: "myriad-pro", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0;
  list-style: none;
  overflow: hidden;
  border-top: 1px dotted #646469;
  display: inline-block;
  list-style-type: none;
  margin: 0;
}
.widget-span.footer-social-share-simple ul{
  float: right;
}
.widget-span.footer-social-share-simple ul li,
.widget-span.footer-social-share ul li {
  color: #dddddd;
  text-align: left !important;
  display: block;
  list-style: none;
  float: left;
  font-size: 1.75rem;
  margin: 0 0.45rem 0 0;
  padding: 0.5rem;
  width: auto;
}
.widget-span.footer-social-share-simple ul li a, 
.widget-span.footer-social-share ul li a {
  color: #dddddd;
}
.widget-span.footer-social-share-simple ul li:first-child,
.widget-span.footer-social-share ul li:first-child {
  padding-left: 0;
  margin-left: 0;
}
.widget-span.footer-social-share-simple ul li:last-child,
.widget-span.footer-social-share ul li:last-child {
  padding-right: 0;
}
.icon-facebook:before {
  content: "\f271";
}
.icon-instagram:before {
  content: "\f32a";
}
.icon-linkedin:before {
  content: "\f2a8";
}
.icon-twitter:before {
  content: "\f270";
}

.widget-span.footer-social-share ul {
  border-top: unset;
}


.footer-top-banner a {
  background: url(//6041001.fs1.hubspotusercontent-na1.net/hubfs/6041001/University_of_SanDiego_June2019/Images/USD-virtual-tour-bg.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
  display: inline-block;
  width: 100%;
}

/* ==========================================================================
4. MAIN NAVIGATION                                            
========================================================================== */


/* =============== Custom Menu Primary =============== */

/* Parent List */

@media screen and (min-width:1025px) {
  .widget-span.cm-sitemap-wrap {
    position: relative;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 81.25rem;
    float: none;
  }
  .widget-span.cm-sitemap-inner {
    padding: 100px 0px 0 0;
    color: #FFFFFF;
    right: 0;
    left: auto;
    padding-top: 0;
    margin-top: 60px;
    width: 100%;
    position: absolute;
    z-index: 10;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    height: auto;
    background-color: transparent;
    transition: none;
  }

  .container-fluid .widget-span.cm-sitemap-inner .row-fluid .page-center {
    height: calc(100% - 85px);
  }

  .container-fluid .widget-span.cm-sitemap-inner .row-fluid .page-center > div {
    position: relative;
  }

  .widget-span.custom-menu-primary {
    background: rgba(7, 35, 71, 0.97);
    z-index: 20;
    background-color: transparent;
    padding: 0;
    width: 58.33333%;
    left: 25%;
    margin-top: -56px;
    position: relative;
  }

  .widget-span.custom-audience-menu {
    margin-left: 0;
    position: relative;
    width: 25%;
    padding: 0;
    background-color: transparent;
    border-color: transparent;
  }

  .widget-span.custom-torero-links {
    position: relative;
    float: right;
    margin-left: 0;
    width: 41.66667%;
    margin-right: 16.66667%;
    padding: 0;
    background-color: transparent;
    border-color: transparent;
  }

  .widget-span.header-button-menu {
    width: 16.66667%;
    top: 0;
    bottom: auto;
    right: 0;
    transition: none;
    position: absolute;
  }

  .widget-span.header-button-menu .hs-menu-wrapper > ul {
    display: block;
    border-right: 1px solid #75bee9;
    border-left: 1px solid #75bee9;
  }

  .widget-span.header-button-menu .hs-menu-wrapper > ul > li {
    width: 33.33333%;
    display: inline-block;
    text-align: center;
    height: 28px;
  }

  .widget-span.header-button-menu .hs-menu-wrapper > ul > li > a {
    text-transform: uppercase;
    width: 100%;
    letter-spacing: 1px;
    display: inline-block;
    border-right: 1px solid #91cbed;
    font-size: 0.875rem;
    color: #003b70;
    padding: .25rem 0 .125rem 0;
    font-weight: 600;
    line-height: 22px;
  }
  .widget-span.header-button-menu .hs-menu-wrapper > ul > li:last-child > a {
    border-right: 0;
  }
  .widget-span.header-button-menu .hs-menu-wrapper > ul > li > a:hover, 
  .widget-span.header-button-menu .hs-menu-wrapper > ul > li > a:focus {
    outline: none;
    background: #0074c8;
    color: #FFFFFF;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul {
    display: block;
    font-family: "myriad-pro", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    display: -ms-grid;
    display: grid;
    margin-right: .5rem;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-justify-content: end;
    justify-content: end;
    -ms-grid-columns: auto auto auto auto auto auto;
    grid-template-columns: repeat(6, auto);
    -ms-grid-rows: auto auto auto auto auto auto;
    grid-template-rows: repeat(6, auto);
    float: right;
    width: 100%;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper {
    display: block;
    width: 100%;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul:before, 
  .widget-span.custom-torero-links .hs-menu-wrapper > ul:after {
    display: none;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul > li > a {
    width: 100%;
    color: #003b70;
    display: block;
    padding: .25rem .5rem .125rem .5rem;
    line-height: 22px;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.5px;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul > li > a:hover, 
  .widget-span.custom-torero-links .hs-menu-wrapper > ul > li > a:focus {
    background-color: #0074c8;
    color: #FFFFFF;
    border-radius: 0;
  }
  .icon, .fa {
    font-family: "icomoon";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-align: center;
    text-transform: none;
    line-height: 1;
    -webkit-font-feature-settings: "liga";
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    -o-font-feature-settings: "liga";
    font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
  }
  .icon-caret-down:before {
    content: "\f29f";
  }
  .widget-span.custom-torero-links .hs-menu-wrapper > ul ul {
    background-color: #FFFFFF;
    left: auto !important;
    width: 132px;
    right: 0;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul ul li a {
    width: 100%;
    color: #003b70;
    display: block;
    text-align: right;
    padding: .125rem .5rem .25rem .5rem;
    line-height: 22px;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.5px;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul ul li a:hover, 
  .widget-span.custom-torero-links .hs-menu-wrapper > ul ul li a:focus {
    background-color: #0074c8;
    color: #FFFFFF;
    border-radius: 0;
  }
  .widget-span.custom-audience-menu .hs-menu-wrapper > ul {
    list-style-position: outside;
    font-family: "myriad-pro", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 0 1.875rem;
    display: -webkit-flex;
    display: flex;
  }

  .widget-span.custom-audience-menu .hs-menu-wrapper > ul:before,
  .widget-span.custom-audience-menu .hs-menu-wrapper > ul:after {
    display: none;
  }

  .widget-span.custom-audience-menu .hs-menu-wrapper > ul > li > a {
    font-weight: 400;
    color: #003b70;
    display: block;
    text-align: center;
    margin: 0;
    padding: .25rem .5rem .125rem .5rem;
    font-size: .875rem;
    line-height: 22px;
  }

  .widget-span.custom-audience-menu .hs-menu-wrapper > ul > li > a:hover,
  .widget-span.custom-audience-menu .hs-menu-wrapper > ul > li > a:focus {
    color: #FFFFFF;
    background-color: #0074c8;
  }
  .widget-span.custom-menu-primary .hs-menu-wrapper > ul {
    font-family: "myriad-pro", Arial, sans-serif;
    line-height: 1.6;
    text-transform: uppercase;
    font-size: 2.125rem;
    margin: 0 .5rem 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    padding: 0;
    transition: none;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li {
    text-align: left;
    letter-spacing: 1px;
    list-style-type: none;
    font-weight: 400;
    position: relative;
    font-size: 1rem;
    line-height: 54px;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > a {
    width: 100%;
    color: #f1f1f1;
    display: inline-block;
    float: none;
    background-color: #003b70;
    padding: 0 1.5rem 0.125rem .75rem;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul:before,
  .widget-span.custom-menu-primary .hs-menu-wrapper > ul:after {
    display: none;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > a > .icon {
    color: #75bee9;
    display: block;
    position: absolute;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 20px;
    right: .5rem;
    transition: all .2s;
  }
  .icon-angle-right:before {
    content: "\f2ca";
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:hover > a, 
  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:focus > a {
    color: #003b70;
    background-color: #FFFFFF;
    border-radius: 0;
    transition: all 0s;
    position: relative;
    z-index: 99;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:hover > a > .icon, 
  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:focus > a > .icon {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    color: #0074c8;
    margin-top: -1px;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li ul {
    display: none !important;
    pointer-events:none;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:hover ul {
    display: flex !important;
    pointer-events:all;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul {
    background: #fafafa;
    background-image: linear-gradient(to right, #FFFFFF, #FFFFFF 200px, #fafafa 200px);
    border-bottom: 4px solid #003b70;
    left: 0 !important;
    top: 56px !important;
    width: 600px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Left-Col {
    -webkit-flex-basis: 33.33333%;
    flex-basis: 33.33333%;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col {
    -webkit-flex-basis: 66.66667%;
    flex-basis: 66.66667%;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Left-Col > a {
    display: none !important;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Left-Col > ul {
    font-family: "myriad-pro", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding: 1rem 0;
    font-weight: 400;
    position: static !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Left-Col > ul > li > a {
    width: 100%;
    position: relative;
    white-space: normal;
    line-height: 1.5;
    color: #003b70;
    font-size: 1rem;
    padding: .25rem .75rem;
    text-transform: none;
    letter-spacing: 0;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Left-Col > ul > li > a:hover {
    background-color: transparent;
    color: #0074c8;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Left-Col > ul > li > a:focus {
    color: #FFFFFF;
    background-color: #0074c8;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > a {
    display: none !important;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul {
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-flow: wrap !important;
    flex-flow: wrap !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    background: transparent;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul:before, 
  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul:after {
    display: none;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul > li {
    font-family: "myriad-pro", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding: 1rem 0;
    font-weight: 400;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul .Top-Left {
    -webkit-flex-basis: 40%;
    flex-basis: 40%;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul .Top-Right {
    padding-top: 3rem;
    -webkit-flex-basis: 60%;
    flex-basis: 60%;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul .Bottom {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul > li > a {
    display: none;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul > li > ul {
    display: block !important;
    visibility: visible !important;
    position: static !important;
    opacity: 1 !important;
    background: transparent;
    font-size: 1rem;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul .Top-Left > ul > li:first-child {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0;
    color: #646469;
    font-size: .75rem;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul .Top-Left > ul > li:first-child > a {
    display: inline-block;
    position: relative;
    white-space: normal;
    font-weight: 400;
    text-transform: none;
    color: #003b70;
    font-size: 1rem;
    padding: .25rem .75rem;
    line-height: 25.6px;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul > li > ul > li > a {
    display: inline-block;
    position: relative;
    white-space: normal !important;
    color: #003b70;
    line-height: 1.5;
    font-size: .9375rem;
    padding: .125rem .75rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul > li.Bottom > ul > li:first-child > a {
    padding: .5rem .75rem .25rem .75rem;
    font-size: .75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0;
    color: #646469;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul > li > ul > li > a:hover {
    background-color: transparent;
    color: #0074c8;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul > li > ul > li > a:focus {
    color: #FFFFFF !important;
    background-color: #0074c8 !important;
  }
  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul > .Right-Col {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul {
    width: 400px;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul > .Left-Col {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul > .Right-Col > ul > li > a {
    display: block;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul > .Right-Col > ul {
    display: block !important;
    font-family: "myriad-pro", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding: 1rem 0;
    font-weight: 400;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul > .Right-Col > ul > li {
    padding: 0;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul > .Right-Col > ul > li:first-child > a:hover {
    pointer-events: none;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul > .Right-Col > ul > li > a {
    position: relative;
    white-space: normal !important;
    color: #003b70;
    line-height: 1.5;
    padding: .125rem .75rem;
    font-size: .9375rem;
    letter-spacing: 0;
    text-transform: none;
  }


  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul > .Right-Col > ul > li:first-child > a {
    padding: .5rem .75rem .25rem .75rem;
    color: #646469;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .75rem;
    line-height: 19.2px;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul > .Right-Col > ul > li:first-child {
    font-size: .75rem;
    line-height: 19.2px;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul > .Right-Col > ul > li > a:hover {
    background-color: transparent;
    color: #0074c8;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul > .Right-Col > ul > li > a:focus {
    color: #FFFFFF !important;
    background-color: #0074c8 !important;
    border-radius: 0 !important;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child):last-child > ul {
    width: 200px;
    display: block !important;
  }

  /* Override max width on menu links */
  .custom-menu-primary .hs-menu-wrapper > ul li a, 
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    overflow: visible !important;
    max-width: none !important;
    width: auto !important;
  }
  .Related-Links a {
    pointer-events: none;
  }
  /* Fix menu disappearing on desktop after toggling mobile menu */
  .custom-menu-primary .hs-menu-wrapper,
  .custom-menu-primary .hs-menu-wrapper > ul ul { 
    display:block !important;
  }
}
@media screen and (max-width:1072px) and (min-width:1025px){
  .widget-span.custom-torero-links .hs-menu-wrapper > ul > li > a {
    width: auto;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul > li > a .icon {
    position: absolute;
    right: 8px;
    top: 7px;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul > li:last-child > a {
    margin-right: 12px;
  }  
}
/* =============== Mobile Toggle Menu =============== */

/* Hide button on Desktop */
.mobile-trigger, .child-trigger{ display: none; }

@media (max-width: 1024px){

  /* Menu Reset */
  .custom-menu-primary,
  .custom-menu-primary .hs-menu-wrapper > ul,
  .custom-menu-primary .hs-menu-wrapper > ul li,
  .custom-menu-primary .hs-menu-wrapper > ul li a{
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: transparent;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; 
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1;  
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
    color:#fff;
  }

  /* ===== Mobile Menu Styles ===== */  

  .custom-menu-primary.js-enabled{
    position: relative;
    padding-top: 44px; /* Makes room for button */
    margin: 10px 0 10px 0;
  }

  /* Hide menu on mobile */
  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{
    display: none;
  }  

  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper{
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
  }

  /* Mobile Menu Styles */ 
  .custom-menu-primary.js-enabled .hs-menu-wrapper{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper{
    background-color: #000;
    width: 100%; /* Full screen width */
  }
}


/* ==========================================================================
5. BLOG                                        
========================================================================== */


/* =============== General Blog Styles =============== */

/* Blog Post and Listing Body Class */
.blog {}

/* Blog Post */
.hs-blog-post {}

/* Blog Listing */
.hs-blog-listing {}

/* Blog Columns Wrapper */
.blog .content-wrapper {}


/* =============== Blog Content Column =============== */

.blog .blog-content {}

/* Use this to style the main wrapper for the blog listing pages */
.blog-listing-wrapper {}

/* Use this to style the main wrapper for the blog post pages */
.blog-post-wrapper {}

/* Blog Title */
.hs-blog-header h1 {}
.hs-blog-header h1 a{}

/* Blog Post Title */
.post-header h2 {
  margin-bottom: 10px;
}
.post-header h2 a {
  text-decoration: none;
  color: inherit;
  border: none;
}
.post-header h2 a:hover {} 

.blog-post-wrapper h2{
  margin-bottom: 10px;
}
.blog-post-wrapper h2 a{
  text-decoration: none;
  color: inherit;
  border: none;
}
.blog-post-wrapper h2 a:hover,
/* Blog Author and Avatar */
#hubspot-author_data {}
#hubspot-author_data:after {
  content: '';
  display: block;
  clear: both;
}
#hubspot-author_data a.author-link {}
#hubspot-author_data .hs-author-avatar {
  max-width: 70px;
  padding: 10px 10px 10px 0;
}
#hubspot-author_data .hs-author-avatar img {
  width: 50px;
  float: left;
  margin-right: 15px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  height: auto !important;
  max-width: 100%;
}

/* Use this to set up different styling for your blog posts */
.blog-listing-wrapper .post-listing .post-item {
  border-bottom: 1px solid #cccccc;
  padding: 0 0 20px;
  margin: 0 0 20px;
}
.blog-listing-wrapper .post-listing .post-item .post-body {}
.blog-post-wrapper .post-body {}

/* Post Featured Image on Listings Page */
.hs-featured-image-wrapper {}
.hs-featured-image-wrapper .hs-featured-image-link {}
.hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image{
  border-width: 0;
  max-height: 170px;
  max-width: 210px;
  height: auto;
  width: auto;
  display: inline-block !important;
  float: right;
  margin: 20px 0 20px 20px;
}

/* Read More Link */
a.more-link {
  display: inline-block;
  padding-top: 10px;
}

/* Blog Topics List */
#hubspot-topic_data {
  color: #888888;
  font-weight: 700;
}
#hubspot-topic_data a.topic-link {}

/* Blog Social Sharing Icons */
.hs-blog-social-share {
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  height: auto;
  margin-top: 10px;
  padding: 10px 0 0;
}

/* Blog Commments */
#comments-listing {
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
  margin-top: 30px;
}
.comment {
  margin: 10px 0;
  border-top: 1px solid #ccc;
  padding: 15px 0;
}
.comment-date { font-size: 13px; text-align: right; }
.comment-from { font-weight: bold; }
.comment-body { padding: 10px 0; }

.custom_listing_comments {
  border: 1px solid #ccc;
  padding: 10px;
  margin: 10px 0;
}

.new-comments.no-comments {
  border: none !important;
  margin:0px;
}


/* Pagination */
.blog-pagination {}
.blog-pagination a {
  display: table;
}
.blog-pagination a.previous-posts-link {}
.blog-pagination a.all-posts-link {}
.blog-pagination a.next-posts-link {}

/* Blog All Posts Page */
.hs-content-path-blog-all {}
div.post-listing-simple {}
div.post-listing-simple .post-item {}
h2.post-listing-simple {}
h2.post-listing-simple a {}


/* =============== Blog Sidebar =============== */

.blog .blog-sidebar {}

/* Blog Modules */
.blog .blog-sidebar .widget-span {
  margin-bottom:20px;	
}

.blog .blog-sidebar ul li {
  padding: 0 0 10px;
}

/* =============== Blog Author Page and Author Bio =============== */

.hs-blog-listing .hs-author-profile {
  border-bottom: 1px solid #ccc;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
}
.hs-blog-post .hs-author-profile {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 20px 0 20px 0;
  margin: 20px 0 20px 0;
}
.hs-author-profile .hs-author-profile:after {
  content: '';
  display: block;
  clear: both;
}

/* Author Avatar */
.hs-author-profile .hs-author-avatar {
  float: left;
  margin-right: 15px;
  max-width: 100px;
}
.hs-author-profile .hs-author-avatar img{
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  max-width: 100%;
}

/* Author Bio Wrapper*/
.hs-author-profile .hs-author-bio {
  overflow: hidden;
}

/* Author Name */
.hs-author-profile h2.hs-author-name {
  margin: 0 0 10px 0;
}

/* Author Social Follow Me */
.hs-author-profile .hs-author-social-section {}
.hs-author-profile .hs-author-social-label {}
.hs-author-profile .hs-author-social-links {}
.hs-author-profile .hs-author-social-link {}
.hs-author-profile .hs-social-facebook {}
.hs-author-profile .hs-social-linkedin {}
.hs-author-profile .hs-social-twitter {}
.hs-author-profile .hs-social-google-plus {}



/* Default Comment Form */

#comment-form {
  border:1px solid #000;
  padding:20px;
  margin-top:20px;
  margin-bottom:20px;
  max-width:500px;
}



@media (max-width: 767px) {
  .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  #comment-form {
    max-width:100%;
  }
}





/* ==========================================================================
6. FORMS                                        
========================================================================== */


/* =============== Global Form Styles =============== */

/* Form Field */
.hs-form-field {}

/* Descriptions */
.hs-field-desc {}

/* Labels and Legends */
label {}
.hs-form-field > label {}

/* One Line Inputs */
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea,
select {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  padding: 4px 6px;
  font-size: 14px;
  line-height: 20px;
  color: #555555 !important;
  display: block;
  margin-bottom: 10px;
  vertical-align: middle;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-family:inherit;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

/* Max width for rich text in Forms */
.hs-form .hs-richtext p{
  max-width: 767px;
}

/* Separate Styles for Multiple Line Inputs */
textarea {}
textarea:focus {}

/* Separate Styles for Drop Downs */
select {
  height: 40px;
}

select:focus {}

/* Multiple Selection Inputs */
form.hs-form .hs-form-field ul.inputs-list {
  list-style: none;
  padding: 0;
}
form.hs-form .hs-form-field ul.inputs-list li input {}
input[type="radio"] {}
input[type="checkbox"] {}

/* Required */
input:focus:required:invalid, 
textarea:focus:required:invalid, 
select:focus:required:invalid {}

input:focus:required:invalid:focus, 
textarea:focus:required:invalid:focus, 
select:focus:required:invalid:focus {}

/* Error */
.hs-error-msgs label{}

/* Placeholder Text */
::-webkit-input-placeholder {} /* Webkit Browsers */
:-moz-placeholder {} /* Firefox 18- */
::-moz-placeholder {} /* Firefox 19+ */
:-ms-input-placeholder {} /* IE10 */

.main-search .sb-search form input[type="text"]::-webkit-input-placeholder {
  color: #FFFFFF;
  opacity: 1 !important;
} /* Webkit Browsers */
.main-search .sb-search form input[type="text"]:-moz-placeholder {
  color: #FFFFFF;
  opacity: 1 !important;
} /* Firefox 18- */
.main-search .sb-search form input[type="text"]::-moz-placeholder {
  color: #FFFFFF;
  opacity: 1 !important;
} /* Firefox 19+ */
.main-search .sb-search form input[type="text"]:-ms-input-placeholder {
  color: #FFFFFF;
  opacity: 1 !important;
} /* IE10 */

.main-search .sb-search.sb-search-open form input[type="text"]::-webkit-input-placeholder {
  color: #3390d3;
} /* Webkit Browsers */
.main-search .sb-search.sb-search-open form input[type="text"]:-moz-placeholder {
  color: #3390d3;
} /* Firefox 18- */
.main-search .sb-search.sb-search-open form input[type="text"]::-moz-placeholder {
  color: #3390d3;
} /* Firefox 19+ */
.main-search .sb-search.sb-search-open form input[type="text"]:-ms-input-placeholder {
  color: #3390d3;
} /* IE10 */

/* =============== Multi Column Form =============== */

.hs-form fieldset.form-columns-1 {}
.hs-form fieldset.form-columns-1 .hs-form-field {}
.hs-form fieldset.form-columns-2 {}
.hs-form fieldset.form-columns-2 .hs-form-field {}
.hs-form fieldset.form-columns-3 {}
.hs-form fieldset.form-columns-3 .hs-form-field {}

/* Multiple Selection Inputs */
form.hs-form .hs-form-field ul.inputs-list li input {}
input[type="radio"] {}
input[type="checkbox"] {}
form.hs-form fieldset { max-width: none; }
form.hs-form fieldset .hs-form-field { padding: 0 10px 0 0; }
form.hs-form fieldset[class*="form-columns"] .input { margin-right: 0; }
form.hs-form fieldset[class*="form-columns"] .hs-input { width: 100%; }
form.hs-form fieldset[class*="form-columns"] .hs-input[type="checkbox"] { width: auto; }
form.hs-form fieldset.form-columns-3 .hs-form-field { width: 33.33%; }

@media (max-width: 800px) {
  form.hs-form fieldset .hs-form-field { padding: 0; }
  form.hs-form fieldset.form-columns-3 .hs-form-field,
  form.hs-form .form-columns-2 .hs-form-field .hs-input, 
  form.hs-form .form-columns-3 .hs-form-field .hs-input { width: 100% !important; }
  form.hs-form .form-columns-3 .hs-form-field .hs-input[type="checkbox"] { width: auto; }
}

/* =============== Blog Subscribe Form =============== */

.soles-blog-subs .hs-form-field {
  max-width:100% !important;
  width:66.666%;
  display:inline-block;
  vertical-align:bottom;
  padding-right: 3.333%;
}

.soles-blog-subs input { 
  width:100%;
}

.soles-blog-subs .hs_submit {
  width:30%;
  display:inline-block;
}

.soles-blog-subs .hs-input::-webkit-input-placeholder{
  color: #555555;
}

.soles-blog-subs form input, form select, form textarea {
  background: white !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0 0 10px lightgrey !important;
  padding: 10px !important;
  margin-bottom: 20px !important;
}

.soles-blog-subs body .hs-button.primary, body input[type="submit"], body input[type="button"] {
  background-color: #3574E3 !important;
  background-image: none !important;
  z-index: 999;
  color: #ffffff !important;
  font-size: 12pt;
  text-shadow: none !important;
  border: none !important;
  -webkit-appearance: none;
  border-radius: 0;
}

label {}
.soles-blog-subs .hs-form-field > label {
  display: none;
}




/* =============== Blog Comment Form =============== */

/* Label */
#comment-form .hs-form-field > label {}
#comment-form label {}

/* Inputs */
#comment-form input[type="text"] {}
#comment-form input[type="text"]:focus {}

#comment-form textarea {}
#comment-form textarea:focus {}

#comment-form input[type="checkbox"] {}


/* =============== Blog Subscription Form =============== */

/* Label */
#hs_form_target_blog_subscription .hs-form-field > label {}
#hs_form_target_blog_subscription label {}

/* Inputs */
#hs_form_target_blog_subscription input[type="email"] {}
#hs_form_target_blog_subscription input[type="email"]:focus {}
#hs_form_target_blog_subscription input[type="radio"], #hs_form_target_blog_subscription input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

/* =============== Google Search Form =============== */

/* Label */
.widget-type-google_search label {}

/* Input */
.widget-type-google_search input[type="text"] {}
.widget-type-google_search input[type="focus"] {}


/* ==========================================================================
7. BUTTONS                                        
========================================================================== */


/* =============== All Global Buttons (Excluding CTAs) =============== */

ul.hs-error-msgs.inputs-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

ul.hs-error-msgs.inputs-list label {
  color: #f00;
}
.hs-button.primary,
input[type="submit"],
input[type="button"] {
  display: inline-block;
  padding: 4px 12px;
  margin:10px 0;
  font-size: 13px !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  line-height: 20px;
  color: #333333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  cursor: pointer;
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #cccccc;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  font-family:inherit;
}

.hs-button.primary:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.hs-button.primary:focus,
input[type="submit"]:focus,
input[type="button"]:focus {
  text-decoration: none;
  background-color: #e6e6e6;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.hs-button.primary:focus,
input[type="submit"]:focus,
input[type="button"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}





/* =============== Form Module Button =============== */

.hs_cos_wrapper_type_form .hs-button.primary.large {}
.hs_cos_wrapper_type_form .hs-button.primary.large:hover {}
.hs_cos_wrapper_type_form .hs-button.primary.large:focus {}


/* =============== Blog Comment Button =============== */

#add-comment-button.hs-button.primary {}
#add-comment-button.hs-button.primary:hover {}
#add-comment-button.hs-button.primary:focus {}


/* =============== Blog Subscription Button =============== */

#hs_form_target_blog_subscription .hs-button.primary.large {}
#hs_form_target_blog_subscription .hs-button.primary.large:hover {}
#hs_form_target_blog_subscription .hs-button.primary.large:focus {}


/* =============== Google Search Button =============== */

.widget-type-google_search .hs-button.primary {}
.widget-type-google_search .hs-button.primary:hover {}
.widget-type-google_search .hs-button.primary:focus {}

/* ==========================================================================
8. MISCELLANEOUS                                      
========================================================================== */
@media screen and (min-width: 800px){

  #right-column-form-fixed{
    display: block !important;
  }

  #right-column-info{
    display: none;
  }

  .online-programs-form{
    position: sticky;
    position: -webkit-sticky;
    right: 10px;
    z-index: 1 !important;
    margin-top: 40px;
    top: 100px;
  }

}

@media screen and (max-width: 800px){
  #right-column-form-fixed{
    display: none; 
  }

  #right-column-info{
    display: block;
  }

  .online-programs-form{
    top: 100px;
    position: fixed; 
    right: 10px; 
    z-index: 1 !important; 
    margin-top: 40px;
  }

  .mobile-form{
    width: 100% !important;
  }
}

.icon, .fa {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-align: center;
  text-transform: none;
  line-height: 1;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.widget-span.cm-sitemap-wrap.mobile{
  display:none;
}
ul.hs-search-field__suggestions {
  padding: 10px;
}
ul.hs-search-field__suggestions li {
  margin-bottom: 5px;
}
ul.hs-search-field__suggestions a {
  padding: 5px;
}
input[type="search"]::-webkit-search-decoration, 
input[type="search"]::-webkit-search-cancel-button, 
input[type="search"]::-webkit-search-results-button, 
input[type="search"]::-webkit-search-results-decoration { 
  display: none; 
}
.subscribe-options label {
  margin: 0;
}
.comment-date {
  display: table;
}
input[type="checkbox"] {
  display: inline-block;
}
.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  padding: 5px;
  overflow: hidden;
  overflow-x: auto;
}
@media (max-width:767px){
  .post-body img {
    margin: 0 auto !important;
    display: block !important;
    float: none !important;
    width: auto !important;
  }

  .hs-author-profile .hs-author-avatar {
    float: none;
    margin: 0 0 10px;
  }
}
.hs-blog-social-share .hs-blog-social-share-list .hs-blog-social-share-item span {
  vertical-align: top !important;
}
.lp .widget-span.cm-footer-bottom {
  margin: 0;
}

.widget-span.cm-footer-outer.lp {
  padding: 0;
}
body:not(.with-banner) .body-container {
  margin-top: 88px;
}
.widget-span.cm-header-outer.lp:after {
  display: none;
}
.lp-pages .simple-banner {
  margin-top: 63px;
}
.widget-span.cm-header-outer.lp {
  height: 64px;
}

.widget-span.cm-header-outer.lp:before {
  bottom: 0;
}
/* Styles that do not fit into any of the available sections above can go here. */


/* ==========================================================================
9. MEDIA QUERIES                              
========================================================================== */

@media (max-width: 1440px) and (min-width:1025px){
  .widget-span.custom-menu-primary {
    margin-top: -46px;
    margin-bottom: 0;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li {
    position: relative;
    font-size: .875rem;
    font-weight: 400;
    line-height: 44px;
    white-space: nowrap;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > a {
    background-color: #003b70;
    padding: 0 1.25rem 0.125rem .5rem;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > a > .icon {
    top: 15px;
    right: .5rem;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul {
    top: 46px !important;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Left-Col > ul > li > a {
    font-size: .9375rem;
    padding: .25rem .5rem;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul .Top-Left > ul > li:first-child > a {
    padding: .25rem .5rem;
    font-size: .9375rem;
    line-height: 24px;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul > li > ul > li > a {
    padding: .125rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > ul > .Right-Col > ul > li.Bottom > ul > li:first-child > a {
    padding: .5rem .5rem .25rem .5rem;
    color: #646469;
    font-size: .625rem;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul > .Right-Col > ul > li:first-child > a {
    padding: .5rem .5rem .25rem .5rem;
    font-size: .625rem;
    line-height: 16px;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul > .Right-Col > ul > li > a {
    padding: .125rem .5rem;
    font-size: .875rem;
    line-height: 21px;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-child) > ul > .Right-Col > ul > li {
    line-height: 25.6px;
  }
  .widget-span.cm-sitemap-inner {
    margin-top: 50px;
  }
  .widget-span.cm-header-outer.lp {
    height: 54px;
  }
  .lp-pages .simple-banner {
    margin-top: 53px;
  }
}




@media (max-width: 1440px) {
  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Get-Started {
    left: 8.33333%;
    right: auto;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Schools {
    width: 58.33333%;
  }
  .simple-banner {
    min-height: 250px;
  }

  .widget-span.cm-header-outer {
    height: 78px;
  }

  .widget-span.cm-logo-wrap {
    top: 0;
    width: 100% !important;
    margin: 0 auto !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    left: 0;
    position: absolute;
    z-index: 3;
    transition: background-color 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: #003b70;
  }

  .widget-span.header-logo {
    height: 50px;
  }

  .widget-span.header-logo .custom-logo {
    height: 50px;
  }

  .widget-span.header-logo .custom-logo a img {
    margin-top: 3px;
    width: 246px;
  }

  .main-search {
    top:0;
  }

  .main-search .sb-search {
    min-width: 140px;
  }

  .main-search .sb-search form:before {
    height: 50px;
    line-height: 50px;
    margin-left: .75rem;
    font-size: 1.25rem;
    top: 0;
    left: 0;
    z-index: 11;
    font-size: 1rem;
    height: 46px;
    line-height: 46px;
    left: auto;
    right: 1rem;
    position: absolute;
  }

  .main-search .sb-search form input[type="text"] {
    font-size: .875rem;
    font-weight: 400;
    height: 46px;
    line-height: 44px;
    letter-spacing: 1px;
    -webkit-font-smoothing: auto;
    margin: 0;
    padding: 0 1rem .125rem 1rem;
  }

  .main-search .sb-search.sb-search-open form .sb-icon-search {
    height: 46px;
    line-height: 46px;
  }

  .main-search .sb-search form .sb-icon-search:before {
    height: 46px;
    line-height: 46px;
  }

  .main-search .sb-search.sb-search-open form input[type="submit"] {
    height: 46px;
    line-height: 46px;
  }

  .main-search .sb-search.sb-search-open + .search-help {
    margin-top: 46px;
  }
}
/* =============== Screen sizes smaller than .page-center =============== */

@media (max-width: 1024px) {
  .widget-span.cm-footer-bottom {
    padding: 0.5rem 0 0.75rem 0;
  }

  .widget-span.footer-feedback-menu {
    width: 100%;
    text-align: center;
    padding-bottom: 1px;
  }

  .widget-span.footer-feedback-menu .hs-menu-wrapper > ul {
    text-align: center;
  }

  .widget-span.copyright {
    width: 100%;
  }

  .widget-span.copyright p {
    text-align: center;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Get-Started {
    width: 50%;
    position: static;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Schools {
    width: 50%;
    margin-bottom: 4px;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Schools > ul {
    display: block !important;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Schools > ul > li {
    margin: 0;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li ul li {
    border: 1px solid #424242;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li:first-child ul li {
    border: 0;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Schools > ul > li {
    border: 0;
  }

  .widget-span.footer-social-share {
    right: 50%;
    left: auto;
    width: 50%;
    margin-top: -8rem;
  }
  .widget-span.cm-header-outer {
    height: 50px;
  }

  .widget-span.cm-header-outer:before {
    display: none;
  }

  .widget-span.cm-header-outer:after {
    display: none;
  }


  .widget-span.mobile-trigger-wrap {
    display: block;
    height: 50px;
    width: 16.66667%;
  }

  .widget-span.header-logo .custom-logo a img {
    margin: 0;
    width: 280px;
  }

  .simple-banner {
  }

  .mobile-trigger {
    height: 100%;
    position: absolute;
    right: 0;
    text-align: center;
    width: 100%;
    color: #FFFFFF;
    background: #0074c8;
    bottom: auto;
    display: block;
  }

  .mobile-trigger span.cd-menu-text {
    display: inline-block;
    font-weight: 700;
    line-height: 50px;
    padding-top: 0;
    padding-left: 0.5rem;
    position: relative;
    text-transform: uppercase;
  }

  .mobile-trigger span.cd-menu-icon {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: background-color 0.3s;
    background-color: #FFFFFF;
    bottom: auto;
    display: inline-block;
    height: 2px;
    left: 0;
    position: relative;
    vertical-align: middle;
    width: 18px;
  }

  .mobile-trigger span.cd-menu-icon:before, .mobile-trigger span.cd-menu-icon:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #FFFFFF;
    right: 0;
    transition: -webkit-transform .3s, top .3s, background-color 0s;
    transition: transform .3s, top .3s, background-color 0s;
  }

  .mobile-trigger span.cd-menu-icon:before {
    top: -5px;
  }

  .mobile-trigger span.cd-menu-icon:after {
    top: 5px;
  }

  .mobile-trigger:hover, .mobile-trigger:focus {
    background: #0f72b9;
    transition: all 0.4s ease;
    color: #FFFFFF;
  }

  .mobile-open .mobile-trigger span.cd-menu-icon:before {
    top: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .mobile-open .mobile-trigger span.cd-menu-icon:after {
    top: 0;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }

  .mobile-open .mobile-trigger span.cd-menu-icon {
    background-color: rgba(255, 255, 255, 0);
  }

  body.mobile-open {
    overflow-y: hidden;
  }
  .main-search {
    width: 25%;
    position: absolute;
    padding: 0;
    z-index: 3;
    right: 16.66667%;
    top: 0;
  }

  .widget-span.cm-search-wrap {
    min-height: 0 !important;
  }

  .main-search .sb-search {
    width: 0%;
    visibility: visible;
    overflow: visible;
  }

  .main-search .sb-search form {
    height: 50px;
    color: #FFFFFF;
    background: transparent;
    text-align: left;
    margin-top: 0;
  }

  .main-search .sb-search form:before {
    height: 50px;
    line-height: 50px;
    margin-left: .75rem;
    font-size: 1.25rem;
    top: 0;
    left: 0;
  }

  .main-search .sb-search form input[type="text"] {
    padding: 0 1rem 0 2.5rem;
    width: 100%;
    height: 50px;
    margin: 0;
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
  }

  .main-search .sb-search form input[type="submit"] {
    overflow: hidden;
    font-size: 0.875rem;
    height: 50px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    margin: 0;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    transition: padding 0.3s;
    background: transparent;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 1;
    color: transparent;
    border: none;
    z-index: -1;
    width: 140px;
    margin-right: 0 !important;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
  }

  .main-search .sb-search form .sb-icon-search {
    height: 50px;
    background: transparent;
    z-index: 90;
    line-height: 50px;
    font-size: 1.25rem;
    width: 140px;
  }

  .main-search .sb-search form .sb-icon-search:before {
    visibility: hidden;
    height: 50px;
  }
  .main-search .search-help {
    width: 150%;
    margin-right: -50%;
  }

  .main-search .search-help .pop-search ul {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
  }
  .widget-span.cm-sitemap-wrap {
    transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
    padding: 100px 0px 0 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    top: 0;
    position: fixed;
    color: #FFFFFF;
    right: -520px;
    left: auto;
    background-color: #f6f6f6;
    padding-top: 0;
    margin-top: 50px;
    height: calc(100vh - 50px);
    width: 520px;
  }

  .mobile-open .widget-span.cm-sitemap-wrap {
    right: 0;
    opacity: 1;
  }

  .widget-span.header-button-menu {
    margin-bottom: 0rem;
    padding: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .widget-span.header-button-menu .hs-menu-wrapper > ul > li {
    width: 33.33333%;
    position: relative;
    display: inline-block;
    text-align: center;
    height: 75px;
  }

  .widget-span.header-button-menu .hs-menu-wrapper > ul {
    display: block;
    width: 100%;
    position: relative;
  }

  .widget-span.header-button-menu .hs-menu-wrapper > ul > li > a {
    text-transform: uppercase;
    width: 100%;
    display: inline-block;
    font-weight: normal;
    letter-spacing: 1px;
    color: #FFFFFF;
    border-right: 1px solid #91cbed;
    font-size: 0.875rem;
    padding: .5rem 0;
  }

  .widget-span.header-button-menu .hs-menu-wrapper {
    background-color: #0074c8;
  }
  .widget-span.cm-sitemap-wrap.mobile{
    display: block;
  }
  .widget-span.cm-sitemap-wrap.desktop{
    display: none; 
  }
  .widget-span.header-button-menu .hs-menu-wrapper > ul > li > a span.icon {
    pointer-events: none;
    display: block;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: .5rem;
    font-size: 2rem;
  }
  .icon-gift3:before {
    content: "\ed94";
  }
  .icon-location-pin:before {
    content: "\f418";
  }
  .icon-pencil7:before {
    content: "\eaff";
  }
  .widget-span.custom-menu-primary {
    margin: 0;
    padding: 0;
    width: 100%;
    background: rgba(7, 35, 71, 0.97);
    padding: 1.5rem 0 1.5rem 0;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper {
    background: transparent;
  }
  .widget-span.custom-menu-primary .hs-menu-wrapper h2 {
    font-family: "myriad-pro", Arial, sans-serif;
    line-height: 1.4;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: #dddddd;
    font-size: 1rem;
    padding: 0 2rem .5rem 2rem;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul {
    margin: 0;
    font-size: 2rem;
    text-transform: uppercase;
    margin-left: 0;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li {
    font-weight: 600;
    letter-spacing: 1px;
    list-style-type: none;
    line-height: 1.2;
    text-align: left;
    position: relative;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > a {
    width: 100%;
    color: #f1f1f1;
    display: inline-block;
    position: relative;
    padding: .5rem 2rem;
    font-weight: 600;
    line-height: 38.4px;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover, 
  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > a:focus {
    outline: none;
    color: #FFFFFF;
    background-color: #003b70;
    transition: all 0.4s ease;
  }
  .container-fluid .widget-span.cm-sitemap-inner .row-fluid .page-center {
    height: calc(100vh - 75px);
    overflow-y: scroll;
  }

  .widget-span.cm-sitemap-inner > div {
    height: 100%;
  }

  .widget-span.cm-sitemap-inner > div > div {
    height: 100%;
  }
  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > a > p {
    text-rendering: optimizeLegibility;
    line-height: 1.6;
    font-family: "myriad-pro", Arial, sans-serif;
    display: block;
    color: #badef4;
    font-weight: 300;
    font-size: 1rem;
    margin: 0;
    padding-right: 70px;
    text-transform: none;
    letter-spacing: normal;
  }
  .child-trigger {
    font-family: "icomoon";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-align: center;
    text-transform: none;
    line-height: 1;
    -webkit-font-feature-settings: "liga";
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    -o-font-feature-settings: "liga";
    font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    top: 9px;
    color: #75bee9;
    display: block;
    position: absolute;
    right: 1.5rem;
    cursor:pointer;
  }
  .child-trigger:before {
    content: "\f2ca";
  }
  .widget-span.custom-menu-primary .hs-menu-wrapper > ul ul .child-trigger{
    display:none;
  }
  .widget-span.custom-audience-menu {
    margin-left: 0;
    width: 100%;
    position: relative;
    border-top: 4px solid;
    margin: 0;
    background-color: #eeeeee;
    border-color: #75bee9;
    padding: 1.25rem 2rem;
  }
  .widget-span.custom-audience-menu .hs-menu-wrapper > h2 {
    text-rendering: optimizeLegibility;
    margin-top: 0.2rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #003b70;
    font-size: 1rem;
  }

  .widget-span.custom-audience-menu .hs-menu-wrapper > ul {
    list-style-position: outside;
    font-family: "myriad-pro", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    list-style-type: none;
    margin: 1rem 0 0 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: repeat(5, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-auto-flow: row;
  }

  .widget-span.custom-audience-menu .hs-menu-wrapper > ul > li > a {
    color: #003b70;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    padding: .5rem 0 .5rem 0;
    text-align: center;
  }

  .widget-span.custom-audience-menu .hs-menu-wrapper > ul:before,
  .widget-span.custom-audience-menu .hs-menu-wrapper > ul:after {
    display: none;
  }

  .widget-span.custom-audience-menu .hs-menu-wrapper > ul > li > a:hover {
    color: #0074c8;
  }

  .widget-span.custom-torero-links {
    margin-left: 0;
    width: 100%;
    border-top: 4px solid;
    border-color: #e4e4e4;
    background-color: #f6f6f6;
    padding: 1.25rem 2rem;
    padding-bottom: 4rem;
  }
  .widget-span.custom-torero-links .hs-menu-wrapper > h2 {
    text-rendering: optimizeLegibility;
    margin-top: 0.2rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #003b70;
    font-size: 1rem;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul {
    font-family: "myriad-pro", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: repeat(5, 1fr);
    -ms-grid-rows: 1fr 1fr;
    grid-template-row: repeat(2, 1fr);
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul:before, 
  .widget-span.custom-torero-links .hs-menu-wrapper > ul:after {
    display: none;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul > li {
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul > li > a {
    display: inline-block;
    width: 100%;
    color: #003b70;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul > li > a:hover {
    outline: none;
    background-color: #eeeeee;
    color: #003b70;
    border-radius: 3px;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul > li > a > .icon {
    color: #003b70;
    display: block;
    font-size: 2rem;
    padding: .75rem;
    top: 0;
    left: 0;
    min-width: 80px;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul > li > a > .icon:before {
    top: 0;
    left: 0;
  }
  .icon-MySanDiego:before {
    content: "\e7a8";
  }
  .widget-span.custom-torero-links .hs-menu-wrapper > ul > li > a > .caption{
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0 .25rem .5rem .25rem;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul > li > a:hover > .icon {
    color: #0074c8;
  }
  .icon-mail:before {
    content: "\e605";
  }
  .icon-BBoard:before {
    content: "\e6f7";
  }
  .icon-users8:before {
    content: "\ece0";
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul > li > a > .icon img{

    height: 32px;
    display: block;
    margin: 0 auto;
  }
  .icon-calendar2:before {
    content: "\e6c9";
  }
  .icon-library2:before {
    content: "\eb84";
  }
  .icon-book9:before {
    content: "\e830";
  }
  .icon-location22:before {
    content: "\ec24";
  }
  .icon-shield5:before {
    content: "\ee19";
  }
  .widget-span.cm-header-outer:before {
    background: rgba(0, 0, 0, 0.5);
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    opacity: 0;
    transition: all .4s ease;
    visibility: hidden;
    top: 50px;
    content: '';
    bottom: 0;
  }

  .mobile-open .widget-span.cm-header-outer:before {
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
  .widget-span.header-button-menu:before {
    transition: all 0.25s ease;
    opacity: 0;
    content: 'Scroll for More';
    text-align: center;
    position: absolute;
    font-weight: 500;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    left: 50%;
    width: auto;
    height: 30px;
    padding: 0 1rem;
    border-radius: 99rem;
    line-height: 30px;
    font-size: .625rem;
    background: linear-gradient(45deg, rgba(0, 164, 153, 0.95) 0%, rgba(51, 182, 173, 0.93) 100%);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
    height: 40px;
    line-height: 40px;
    font-size: 1rem;
    opacity: 1;
    top: -4rem;
  }

  .menu-scroll .widget-span.header-button-menu:before {
    transition: all 0.25s ease;
    opacity: 0;
    content: 'Scroll for More';
    text-align: center;
    position: absolute;
    font-weight: 500;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    left: 50%;
    width: auto;
    height: 30px;
    padding: 0 1rem;
    border-radius: 99rem;
    line-height: 30px;
    font-size: .625rem;
    background: linear-gradient(45deg, rgba(0, 164, 153, 0.95) 0%, rgba(51, 182, 173, 0.93) 100%);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
    height: 40px;
    line-height: 40px;
    font-size: 1rem;
  }
  .main-search .sb-search.sb-search-open {
    width: 100%;
  }

  .main-search .sb-search.sb-search-open form input[type="submit"] {
    z-index: 90;
    width: 50px;
    height: 60px;
    line-height: 60px;
  }

  .main-search .sb-search.sb-search-open form .sb-icon-search {
    line-height: 50px;
    background: #eeeeee;
    width: 50px;
    color: #33628d;
    z-index: 11;
    height: 50px;
  }

  .main-search .sb-search.sb-search-open + .search-help {
    width: 150%;
    margin-right: -50%;
    margin-top: 50px;
  }
  .widget-span.custom-menu-primary .hs-menu-wrapper > ul ul {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1rem;
    text-transform: none;
    font-weight: 300;
    margin-bottom: 0;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul ul li {
    margin-bottom: .5rem;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul ul li a {
    color: #f1f1f1;
    padding: .25rem 0.9375rem;
    font-weight: 300;
    line-height: 25.6px;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul ul li a:hover {
    outline: none;
    color: #FFFFFF;
    background-color: #003b70;
    transition: all 0.4s ease;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul ul ul {
    display: block !important;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul ul ul li {
    padding: 0 1rem;
  }
  .main-search .sb-search.sb-search-open form:before {
    display: none;
  }
  .main-search .sb-search.sb-search-open form input[type="text"]::-webkit-input-placeholder {
    font-weight:700;
  } /* Webkit Browsers */
  .main-search .sb-search.sb-search-open form input[type="text"]:-moz-placeholder {
    font-weight:700;
  } /* Firefox 18- */
  .main-search .sb-search.sb-search-open form input[type="text"]::-moz-placeholder {
    font-weight:700;
  } /* Firefox 19+ */
  .main-search .sb-search.sb-search-open form input[type="text"]:-ms-input-placeholder {
    font-weight:700;
  } /* IE10 */
  .main-search .sb-search form input[type="text"] {
    font-weight: 700;
    font-size: 1rem;
    background: transparent;
    letter-spacing: 0;

  }
  .widget-span.cm-sitemap-wrap {
    height: calc(100vh - 50px);
  }
  .main-search .sb-search form input[type="text"] {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .widget-span.cm-header-outer.lp {
    height: 50px;
  }

  .lp-pages .simple-banner {
    margin-top: 49px;
  }
}


/* =============== Landscape tablet and smaller devices =============== */

@media (max-width: 767px) {
  .widget-span.cm-footer-bottom {
    background-color: #222;
    padding: 0.5rem 0;
    margin: 0;
  }

  .widget-span.footer-feedback-menu .hs-menu-wrapper > ul > li {
    width: auto !important;
    display: inline-block;
  }

  .widget-span.footer-feedback-menu .hs-menu-wrapper > ul > li > a {
    line-height: 23.04px;
  }

  .widget-span.footer-feedback-menu .hs-menu-wrapper > ul {
    display: inline;
  }

  .widget-span.copyright {
    margin-bottom: -1px;
  }

  .widget-span.footer-social-share {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%;
    margin-top: 1.5rem;
    position: static;
    text-align: center;
  }

  .widget-span.footer-social-share-simple{
    float: unset;
  }

  .widget-span.footer-social-share-simple ul{
    float: unset;
    margin: auto;
    padding: 20px;
    width: 100%;
    text-align: center;
    display: inline-flex;
  }
  .widget-span.footer-social-share-simple ul li{
    width: auto;
    margin: auto !important;
    padding 0px !important;
  }

  .widget-span.footer-social-share ul li {
    text-align: center;
    display: block;
    font-size: 1.75rem;
    margin-left: 1rem;
    padding: 0.5rem 0.35rem;
    margin-right: 0;
  }

  .widget-span.custom-footer-menu {
    width: 100%;
    text-align: center;
    margin-top: 0;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Get-Started {
    width: 100%;
    padding-left: 0.9375rem;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li > a {
    width: 80%;
    text-align: center !important;
    border-bottom: 1px dotted #646469;
    color: #dddddd;
    display: inline-block;
    font-family: "adobe-garamond-pro-n4", "adobe-garamond-pro", "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5rem;
    margin: 2rem 0 0.25rem;
    padding: 0 0 0.5rem 0;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li ul li {
    margin: 0;
    font-size: 1rem;
    text-align: center;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li ul li a {
    line-height: 28.8px;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Schools {
    width: 100%;
    margin-bottom: 0;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Schools > ul {
    margin-bottom: 0.5rem;
  }

  .widget-span.custom-footer-menu .hs-menu-wrapper > ul > li.Schools > ul li {
    font-size: 1rem;
    text-align: center;
    font-family: "myriad-pro", Arial, sans-serif;
    list-style-type: none;
    border: 0;
    margin: 0;
  }

  .widget-span.footer-address {
    width: 100%;
    padding-left: 0.9375rem;
    text-align: center;
  }

  .widget-span.footer-address p {
    text-align: center !important;
    font-size: 1rem;
    margin-bottom: 0;
    padding-bottom: 0.625rem;
  }

  .widget-span.footer-address p > a:nth-child(6) > span {
    margin-left: 0.75rem;
  }

  .widget-span.footer-address p > a:nth-child(5) span {
    margin-left: 0.75rem;
  }
  .widget-span.cm-footer-outer {
    padding: 0;
  }
  .widget-span.header-logo {
    width: 50%;
    float: left;
  }

  .widget-span.mobile-trigger-wrap {
    width: 25%;
  }

  .main-search {
    width: 33.33333%;
    right: 25%;
  }

  .simple-banner {
    min-height: 175px;
  }
  .widget-span.cm-sitemap-wrap.mobile {
    width: 30.063rem;
  }

  .child-trigger {
    width: auto;
  }

  .widget-span.header-button-menu .hs-menu-wrapper > ul > li {
    float: left;
  }

}  

@media (max-width: 540px) {
  .widget-span.header-logo {
    width: 66.66667%;
  }

  .widget-span.mobile-trigger-wrap {
    width: 33.33333%;
  }

  .main-search {
    width: 100%;
    right: unset;
    left: unset;
    position: absolute;
    padding: 0;
    top: 50px;
  }

  .main-search .sb-search {
    position: relative;
    width: 100%;
    float: right;
    overflow: hidden;
  }

  .main-search .sb-search form {
    height: 50px;
    color: #3390d3;
    background-color: #FFFFFF;
    text-align: left;
  }

  .main-search .sb-search form input[type="submit"] {
    font-size: 0.875rem;
    width: 100%;
    height: 50px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    margin: 0;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    transition: padding 0.3s;
    background: transparent;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 1;
    color: transparent;
    border: none;
    z-index: -1;
    margin-right: 0 !important;
  }

  .main-search .sb-search form .sb-icon-search {
    width: 100%;
    height: 50px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    margin: 0;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    transition: padding 0.3s;
    display: block;
    color: #fff;
    background: transparent;
    z-index: 90;
    line-height: 50px;
    font-size: 1.25rem;
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
  }

  .main-search .sb-search.sb-search-open form .sb-icon-search {
    background: #eeeeee;
    width: 50px;
    color: #33628d;
    z-index: 11;
  }

  .main-search .sb-search form:before {
    height: 50px;
    line-height: 50px;
    margin-left: .75rem;
    font-size: 1.25rem;
    top: 0;
    left: 0;
    width: auto;
  }

  .main-search .sb-search.sb-search-open form:before {
    display: none;
  }

  .main-search .sb-search.sb-search-open + .search-help {
    display: none;
  }
  .widget-span.cm-sitemap-wrap.mobile {
    position: fixed;
    color: #FFFFFF;
    height: 100vh;
    width: 100%;
    top: 0;
    right: 0;
    background-color: #f6f6f6;
    z-index: 2;
    padding: 100px 0px 0 0;
    margin-top: 0;
    transform: translateY(-100%);
  }

  .mobile-open .widget-span.cm-sitemap-wrap.mobile {
    transform: translateY(0%);
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper h2 {
    padding: 0 1rem .5rem 1rem;
    font-size: .875rem;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > a {
    padding: .5rem 1rem;
  }

  .widget-span.custom-menu-primary .hs-menu-wrapper > ul > li > a > p {
    display: none;
  }

  .child-trigger {
    right: 1rem;
  }

  .widget-span.custom-menu-primary {
    padding: 1.5rem 0 1rem 0;
  }

  .widget-span.custom-audience-menu {
    padding: 1.25rem 1rem;
  }

  .widget-span.custom-audience-menu .hs-menu-wrapper > h2 {
    color: #003b70;
    font-size: .875rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .widget-span.custom-audience-menu .hs-menu-wrapper > ul {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-auto-flow: column;
  }

  .widget-span.custom-audience-menu .hs-menu-wrapper > ul > li {
    text-align: left;
  }

  .widget-span.custom-audience-menu .hs-menu-wrapper > ul > li > a {
    text-align: left;
  }

  .widget-span.custom-torero-links {
    padding: 1.25rem 1rem;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > h2 {
    color: #003b70;
    font-size: .875rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .widget-span.custom-torero-links .hs-menu-wrapper > ul {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: 1fr 1fr 1fr;
    grid-template-row: repeat(4, 1fr);
  }

  .widget-span.header-button-menu {}

  .widget-span.header-button-menu .hs-menu-wrapper > ul > li {
    height: 63px;
  }

  .widget-span.header-button-menu .hs-menu-wrapper > ul > li > a {
    font-size: 0.6875rem;
  }

  .widget-span.header-button-menu .hs-menu-wrapper > ul > li > a span.icon {
    font-size: 1.5rem;
  }

  .container-fluid .widget-span.cm-sitemap-inner .row-fluid .page-center {
    height: calc(100vh - 162px);
  }

  .widget-span.header-button-menu:before {
    padding: 0 1rem;
    line-height: 30px;
    font-size: .625rem;
    height: 30px;
  }
  .main-search .sb-search form input[type="text"]::-webkit-input-placeholder {
    color: #3390d3;
  } /* Webkit Browsers */
  .main-search .sb-search form input[type="text"]:-moz-placeholder {
    color: #3390d3;
  } /* Firefox 18- */
  .main-search .sb-search form input[type="text"]::-moz-placeholder {
    color: #3390d3;
  } /* Firefox 19+ */
  .main-search .sb-search form input[type="text"]:-ms-input-placeholder {
    color: #3390d3;
  } /* IE10 */
  .simple-banner {
  }
  .header-hide .main-search {
    top: 0;
  }
  .widget-span.cm-header-outer {
    height: 100px;
  }
  .menu-scroll .widget-span.header-button-menu:before {
    transition: all 0.25s ease;
    opacity: 0;
    content: 'Scroll for More';
    text-align: center;
    position: absolute;
    font-weight: 500;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    left: 50%;
    width: auto;
    height: 30px;
    padding: 0 1rem;
    border-radius: 99rem;
    line-height: 30px;
    font-size: .625rem;
    background: linear-gradient(45deg, rgba(0, 164, 153, 0.95) 0%, rgba(51, 182, 173, 0.93) 100%);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
  }
}
/* =============== Landscape phones and smaller devices =============== */

@media (max-width: 800px){
  input[type="text"],
  input[type="password"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="tel"],
  input[type="color"],
  textarea,
  select{
    -webkit-appearance: none;
  }
}

@media (max-width: 479px) {}

@media (max-width: 380px) {
  .widget-span.custom-torero-links .hs-menu-wrapper > ul {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr 1fr 1fr;
    grid-template-row: repeat(2, 1fr);
  }
}

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