/* ================================ GLOBAL VARIABLES ================================= */

:root {
  /* Fonts */
  --font-primary: Geist, sans-serif;
  --font-secondary: 'Druk Condensed Super';
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Colors */
  --color-primary-blue: #000586;
  --color-purple: #882166;
  --color-light-blue: #84ABFF;
  --color-dark-blue: #031373;
  --color-cta-blue: #0222D0;
  --color-gray: #808080;
  --color-background: #EDEFFA;
  
  /* Spacing */
  --border-radius: 25px;
  --border-radius-button: 30px;
  
  /* Sizes */
  --header-height: 140px;
  --base-font-size: 18px;
  --base-mobile-font-size: 18px;
}

/* ================================ BASE STYLES ================================= */

html {
  font-size: var(--base-font-size);
  font-family: var(--font-primary);
  font-weight: 400;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  background: white;
  padding: 0;
  margin: 0;
}

h1 {
  font-weight: 900;
  font-style: normal;
}

h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-style: normal;
}

p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: normal;
  font-size: var(--base-font-size);
}

p.lead,
p.intro {
  font-size: 1.25rem;
}

/* ================================ LINKS ================================= */

a {
  font-family: var(--font-primary);
  font-weight: 400;
  text-decoration: none;
}

a:hover,
a:focus {
  font-family: var(--font-primary);
  font-weight: 400;
}

/* ================================ LISTS ================================= */

ul,
ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

ul li,
ol li {
  margin: 0.7rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 1.5rem;
}

/* ================================ BLOCKQUOTE & HR ================================= */

blockquote {
  padding-left: 1.5rem;
}

/* ================================ CONTAINERS ================================= */

.row-fluid [class*="span"] {
  min-height: 20px;
}

.dnd-section > .row-fluid {
  max-width: 1800px;
}

/* ================================ IMAGES ================================= */

img {
  max-width: 100%;
}

/* ================================ BUTTONS ================================= */

button,
.button {
  background-color: var(--color-primary-blue);
  border-radius: 0;
  padding: 8px 16px;
  text-align: center;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
button:active,
.button:active {
  background-color: #020732;
}

.button.button--small {
  font-size: 14px;
  padding: 8px 44px;
}

/* ================================ FORMS ================================= */

input[type='text'],
input[type='email'],
input[type='password'],
input[type='tel'],
input[type='number'],
select,
textarea {
  padding: 10px 15px;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='tel']:focus,
input[type='number']:focus,
input[type='file']:focus,
select:focus,
textarea:focus {
  outline-color: var(--color-primary-blue);
}

/* Form Overrides */
#hs_form_target_widget_1668702571762 form {
  position: relative;
  max-width: 640px;
  margin: auto;
}

#hs_form_target_widget_1668702571762 form .hs_submit,
#hs_form_target_widget_1668702571762 form .hs_email {
  position: absolute;
}

#hs_form_target_widget_1668702571762 form .hs-email input,
#hs_form_target_widget_1668702571762 form .hs-submit input {
  height: 40px;
  margin-top: 0 !important;
}

#hs_form_target_widget_1668702571762 form .hs_email label {
  display: none;
}

#hs_form_target_widget_1668702571762 .hs_email {
  width: 400px;
  left: 0;
  top: 5px;
}

#hs_form_target_widget_1668702571762 .hs-submit {
  width: 240px;
  margin-top: 0 !important;
  right: 0;
  top: 5px;
}

#hs_form_target_widget_1668702571762 .hs_email .hs-input {
  margin-top: 0 !important;
}

.submitted-message p {
  text-align: center;
  color: #000 !important;
}

.legal-consent-container {
  padding-top: 45px;
}

/* ================================ TABLES ================================= */

th,
td {
  padding: 10px 15px;
}

/* ================================ HEADER ================================= */

.body-container-wrapper {
  padding-top: 120px;
}

.top-row {
  text-align: center;
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 100;
}

.top-row .row-depth-1 {
  max-width: 1450px;
  width: 90%;
  margin: 20px auto;
}

#main-header {
  background-color: #882166;
}

#main-header img {
  display: block;
}

#main-header .row-fluid .span6 {
  width: 50%;
}

.header {
  clear: both;
  position: relative;
}

.header-logo img {
  max-width: 100%;
  max-height: 55px;
  display: block;
}

.header .menu ul {
  margin-top: 0;
}

.cell_1668696790912-vertical-alignment img {
  display: block;
}

/* Navigation */
.global-head-menu li {
  float: left;
  padding: 0 20px;
}

.global-head-menu ul {
  background-color: rgba(255, 255, 255, 0.6);
}

.global-head-menu ul[role="menu"] a {
  padding: 0;
  font-size: 18px;
  font-family: var(--font-primary);
  font-weight: 400;
  display: inline-block;
  color: #707070;
}

.global-head-menu ul li {
  margin: 0;
}

.global-head-menu ul .hs-menu-children-wrapper a {
  font-size: 16px;
}

/* CTA Button */
div.lets-talk.right {
  text-align: right;
}

.lets-talk a {
  font-family: var(--font-primary);
  text-align: center;
  font-weight: 400;
  font-style: normal;
  border-radius: 30px;
  padding: 8px 16px;
  width: 150px;
}

/* Header Overrides for Menu */
#global-top-header ul[role="menu"] {
  margin-top: 0;
}

#global-top-header .lets-talk {
  margin-top: 0;
}

.header .hs-menu-item a {
  color: #707070;
  font-family: urw-form-semi-condensed !important;
  font-weight: 400;
  font-size: 18px;
}

/* ================================ FOOTER ================================= */

#footer-row {
  background-color: transparent;
}

#footer-row .inner-row {
  background-color: #031373;
  padding: 60px 120px;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(100% - 40px);
  float: none;
  border-radius: 25px;
  box-sizing: border-box;
}

.footer-menu-vert {
  margin-bottom: 0;
}

.footer-menu-vert .navigation-primary {
  display: block;
}

.footer-menu-vert .submenu.level-1 {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu-vert .submenu.level-1 > li {
  display: block;
  padding: 30px 0;
  border-bottom: 1px solid #84ABFF;
  margin: 0;
}

.footer-menu-vert .submenu.level-1 > li:last-child {
  border-bottom: none;
}

.footer-menu-vert .submenu.level-1 > li a {
  position: relative;
  display: block;
  padding-right: 60px;
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.footer-menu-vert .submenu.level-1 > li a:hover {
  opacity: 0.8;
}

.footer-menu-vert .submenu.level-1 > li a::after,
.footer-menu-vert .navigation-primary .submenu.level-1 > li > a.active-item::after {
  content: "";
  width: 45px;
  height: 45px;
  position: absolute;
  right: 0 !important;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('https://6529582.fs1.hubspotusercontent-na1.net/hubfs/6529582/2026%20Redesign/footer-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: transparent;
}

.post-footer-container {
  background-color: #84ABFF;
  margin-top: 40px;
  padding-bottom: 40px;
}

.post-footer {
  max-width: 1100px;
  padding-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.legal-copy {
  color: #031373;
  font-size: 12px;
  line-height: 1.75;
}

.legal-copy p,
.legal-copy span {
  color: #031373;
}

.icon-row {
  margin-bottom: 20px;
}

.icon-row img {
  max-height: 32px;
  width: auto;
}

/* ================================ BLOG ================================= */

.blog-index__post--card,
article {
  border-radius: 25px;
  overflow: hidden;
}


.blog-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: auto;
  max-width: 1200px;
  padding: 0;
}

.first-post.blog-index__post {
  background: var(--color-primary-blue);
}

.first-post .blog-index__post-post-summary {
  color: #ffffff; 
}

.blog-index__post--card {
  display: grid;
}

.blog-index__post-content {
  min-height: 250px;
}

.blog-index__post-meta,
.blog-more-posts__post-meta {
  color: #0E111D !important;
}

.blog-index__post-meta span,
.blog-more-posts__post-meta span {
  margin-left: 0;
}

.about-the-author,
.blog-post__meta {
  display: block;
}

.blog-post__meta {
  padding: 20px;
  background-color: #e8e8e8;
  text-align: center;
}

.blog-post__avatar {
  margin-right: auto;
  margin-left: auto;
}

.blog-post__title {
  max-width: 85%;
}

.blog-post__title * {
  font-weight: 900;
  font-size: 48px;
  color: #0E111D;
}

.blog-post__summary {
  font-size: 20px !important;
  max-width: 85%;
}

.blog-post__body-wrapper {
  width: 100%;
  display: flex;
  max-width: 100%;
  margin-top: 20px;
}

.column_left {
  max-width: 70%;
  margin-right: 5%;
}

.column_right {
  max-width: 25%;
}

.blog-tag-filter {
  border: 1px solid #d2e9fc;
  border-radius: 4px;
}

.rl-content-description {
  min-height: 170px;
}

h3.blog-index__post-title {
  min-height: 32px;
}


.first-post .blog-index__post-button {
    color: var(--color-primary-blue);
    background-color: #fff;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
}

.blog-index__post-button.blog-index__post-button--card {
  background-color: transparent;
  color: var(--color-primary-blue);
}


article.blog-index__post:not(.first-post) {
  border: 1px solid #ccc;

}

/* ================================ CTA STYLES ================================= */

.cta-btn {
  border: 2px solid #000586 !important;
  background-color: transparent !important;
  color: #000586 !important;
}

.cta-btn div {
  color: #000586 !important;
}

.cta-row h1 div {
  font-size: 36px;
  color: #000586 !important;
}

.cta-row {
  background-color: #fff !important;
}

/* ================================ MODAL ================================= */

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

#modal_gate {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* ================================ UTILITY CLASSES ================================= */

.dnd_area-column-1-row-1-margin {
  max-width: 1200px;
  margin: auto;
}

.row-depth-1 .hs-image-widget {
  display: block;
}

.rl-dl-link #hs_cos_wrapper_,
.gateDoor #hs_cos_wrapper_ {
  display: inline-block;
  width: 12px;
  height: auto;
}

/* ================================ MEDIA QUERIES ================================= */

@media screen and (min-width: 621px) {
  #hs_cos_wrapper_widget_1643231852692,
  #hs_cos_wrapper_widget_1647456398911 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}

@media screen and (min-width: 760px) {
  .slick-slide .card-bg-image {
    min-height: 640px;
  }
}

@media only screen and (max-width: 639px) {
  #hs_form_target_widget_1668702571762 .hs_email {
    width: 60%;
  }

  #hs_form_target_widget_1668702571762 .hs-submit {
    width: 40%;
  }

  #global-top-header .row-depth-1 {
    margin: 10px auto;
    width: 100%;
  }

  .top-row {
    height: 140px;
  }

  .body-container-wrapper {
    padding-top: 140px;
  }

  #hs_cos_wrapper_module_267870365 {
    position: absolute;
    top: 29px;
    right: 20px;
  }

  #global-top-header ul[role="menu"] {
    margin-top: 20px;
    display: inline-block;
  }

  #hs_cos_wrapper_widget_1668533864839_ h1 {
    font-size: 85px !important;
  }

  .active-branch ul {
    background: none;
  }

  .global-head-menu li {
    padding: 0 10px;
    width: 100%;
    text-align: left;
    margin-bottom: 0;
  }

  .active-branch ul li {
    background-color: rgba(255, 255, 255, 1);
    padding: 5px 15px !important;
  }

  .active-branch ul li:last-child {
    border-radius: 0 0 15px 15px;
  }

  #global-top-header .lets-talk {
    display: none !important;
  }

  .column_right {
    max-width: 100% !important;
  }
}

@media (max-width: 620px) {
  #hs_cos_wrapper_widget_1643231852692,
  #hs_cos_wrapper_widget_1647456398911 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .button.button--small {
    display: block;
    width: 140px;
    margin: 0 auto 10px;
  }

  .blog-post__body-wrapper {
    display: block;
  }

  .column_left,
  .column-right {
    max-width: 90%;
    margin-right: 0;
    padding: 5%;
  }
}




/* 1. Hide the LET'S TALK menu link by default (Desktop/Tablet) */
.global-head-menu ul[role="menu"] li.hs-menu-depth-1:last-child {
  display: none !important;
}

/* 2. Show the last menu item on Mobile only */
@media screen and (max-width: 767px) {
  .global-head-menu ul[role="menu"] li.hs-menu-depth-1:last-child {
    display: block !important;
  }
}


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

  #global-top-header .row-depth-1 {
    margin: 10px auto;
    width: 100%;
  }
  
  br.hide-mobile {
    display:none;
  }