/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

.dnd-section .dnd-column {
  padding: 0 1rem;
}

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

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

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

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}
@font-face {
  font-family: 'Founders Grotesk X-Condensed';  
  src: url(//362209.fs1.hubspotusercontent-na1.net/hubfs/362209/raw_assets/public/Geographe%20Feb_2024/fonts/FoundersGroteskXCond-Bold.woff2) format('woff2'),  
    url(//362209.fs1.hubspotusercontent-na1.net/hubfs/362209/raw_assets/public/Geographe%20Feb_2024/fonts/FoundersGroteskXCond-Bold.woff) format('woff');  
  font-weight: 700; 
  font-style: normal;  
} 
@font-face {
  font-family: 'FoundersGrotesk';  
  src: url(//362209.fs1.hubspotusercontent-na1.net/hubfs/362209/raw_assets/public/Geographe%20Feb_2024/fonts/FoundersGrotesk-Bold.woff2) format('woff2'),  
    url(//362209.fs1.hubspotusercontent-na1.net/hubfs/362209/raw_assets/public/Geographe%20Feb_2024/fonts/FoundersGrotesk-Bold.woff) format('woff');  
  font-weight: 700; 
  font-style: normal;  
} 
@font-face {
  font-family: 'FoundersGrotesk';  
  src: url(//362209.fs1.hubspotusercontent-na1.net/hubfs/362209/raw_assets/public/Geographe%20Feb_2024/fonts/FoundersGrotesk-Semibold.woff2) format('woff2'),  
    url(//362209.fs1.hubspotusercontent-na1.net/hubfs/362209/raw_assets/public/Geographe%20Feb_2024/fonts/FoundersGrotesk-Semibold.woff) format('woff');  
  font-weight: 600; 
  font-style: normal;  
} 
@font-face {
  font-family: 'FoundersGrotesk';  
  src: url(//362209.fs1.hubspotusercontent-na1.net/hubfs/362209/raw_assets/public/Geographe%20Feb_2024/fonts/FoundersGrotesk-Medium.woff2) format('woff2'),  
    url(//362209.fs1.hubspotusercontent-na1.net/hubfs/362209/raw_assets/public/Geographe%20Feb_2024/fonts/FoundersGrotesk-Medium.woff) format('woff');  
  font-weight: 500; 
  font-style: normal;  
} 
@font-face {
  font-family: 'FoundersGrotesk';  
  src: url(//362209.fs1.hubspotusercontent-na1.net/hubfs/362209/raw_assets/public/Geographe%20Feb_2024/fonts/FoundersGrotesk-Regular.woff2) format('woff2'),  
    url(//362209.fs1.hubspotusercontent-na1.net/hubfs/362209/raw_assets/public/Geographe%20Feb_2024/fonts/FoundersGrotesk-Regular.woff) format('woff');  
  font-weight: 400; 
  font-style: normal;  
}
@font-face {
  font-family: 'FoundersGrotesk';  
  src: url(//362209.fs1.hubspotusercontent-na1.net/hubfs/362209/raw_assets/public/Geographe%20Feb_2024/fonts/FoundersGrotesk-Light.woff2) format('woff2'),  
    url(//362209.fs1.hubspotusercontent-na1.net/hubfs/362209/raw_assets/public/Geographe%20Feb_2024/fonts/FoundersGrotesk-Light.woff) format('woff');  
  font-weight: 300; 
  font-style: normal;  
}  




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

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

/* Paragraphs */

p {
  font-size: 18px;
  margin: 0 0 .8rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* 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;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

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

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* Header DND sections */

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

/* Search bar */

.hs-search-field {
  position: relative;
}
.hs-search-field__input {
  box-sizing: border-box;
  width: 100%;
}
.search-bar.mobile {
    width: 100%;position: relative;
}
.header .search-bar.mobile input.hs-search-field__input.search-input {
    height: 45px;
    padding: 8px 0px 8px 20px;
    border-radius: 10px;
    border: 1px solid #4C4C4C;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.header .search-bar.mobile form button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 15px !important;
    border-radius: 10px;
    background: #EE3042;
    height: 45px;
}
.hs-search-field__bar button svg {
  width: 15px;
    height: 15px;
    fill: #ffffff;
}
.hs-search-field__suggestions {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hs-search-field--open .hs-search-field__suggestions {
 background: #fff !important;
    padding: 60px 20px 20px !important;
    border-radius: 10px !important;
}
.hs-search-field__suggestions li {
  display: block;
  margin: 0;
  padding: 0;
}
.hs-search-field__suggestions #results-for {
  font-weight: bold;
}
.hs-search-field__suggestions a,
.hs-search-field__suggestions #results-for {
  display: block;
}
.hs-search-field__suggestions a:hover,
.hs-search-field__suggestions a:focus {
  background-color: rgba(0, 0, 0, 0.1);
  outline: none;
  padding: 5px 0px 0px;
}

.search-form {
  display: inline-block;
  float: right;
  position: relative;
  width: 100%;
}
/* 
.search-field,
.search-submit {
  height: 3.75rem;
} */

.search-field {
  position: absolute;
  right: 0;
  transition: all 0.5s ease-in-out;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 2.25rem;
  font-weight: 300;
  opacity: 0;
  padding-right: 3.75rem;
  width: 0 !important;
  z-index: 3;
}
.search-field:focus {
  cursor: text;
  opacity: 1 !important;
  outline: none;
  width: 100% !important;
  z-index: 1;
}


.search-submit {
  transition: all 0.2s ease-in-out;
  background-color: transparent;
  border: none;
  float: right;
  position: relative;
  width: 25px;
  z-index: 2;
}
.search-submit:hover .fa-search {
  color: white;
}
.search-bar {
    width: 10%;
}

.search-bar.hovered {
    width: 75%;
}



@media screen and (max-width: 600px) {
  #header20 .s-hide {
    display: none;
  }
  #header20 .m-show {
    display: none;
  }
  #header20 .l-show {
    display: none;
  }
  #header20 .s-show {
    display: block;
  }
  #header20 .col-s-center {
    /*margin: 0 auto !important;*/
    margin-left: auto !important;
    margin-right: auto !important;
    float: none;
  }
}
@media(min-width: 1025px) and (max-width: 1199px) {
header.header .row>.col-8 { 
    width: 93% !important;
  } 
  .header-logo { 
    margin-top: -20px;
  }
  #header20 .menu20 ul.desk-mailUl{
    margin-top: 5px; 
  }

}
@media(min-width: 1025px) and (max-width: 1360px) {
  .contact-cta.desk {
    display: none;
}
  .contact-cta.extraSon.tab {
    display: block;    margin-left: 20px;
}
  #header20 .menu20 ul .menuTitle {
    padding: 0;
    font-size: 14px;
}
  .top-row ul li a {
    font-size: 14px;
}
}
@media screen and (max-width: 1024px) {/*1159*/
  .menu20 .menu20Content .title {
    box-sizing: border-box;
  }
  .menu20 .menu20Content .title a {
    padding-left: 0.5em !important;
  }
}
.header .top-row.mobile ul {
    display: none;
}
@media screen and (max-width: 1024px) {/*1159*/
  
  
  main#main {
    margin: 50px 0 0 0 !important;
  }
  .header .top-row.mobile ul {
    display: block !important;
    justify-content: flex-start;
    padding: 0 !important;
}
  .header .top-row.mobile ul li {
    width: auto !important;
    margin: 0;        padding: 18px 0 10px;
        border-bottom: 1px solid hsla(0, 0%, 100%, .7);
}
.header .top-row ul{
  display: none;
  }
  #header20 {
    z-index: 999999999;
/*     box-shadow: rgba(0, 0, 0, 0.3) 0 0 3px 0; */
  }
  #header20 .baseline {
    display: none;
  }
  #header20 .contentTitle, #header20 hr {
    display: none;
  }
  #header20 .westSide .txtRight a {
    display: none;
  }
  #header20 .westSide .l2 a {
    color: #0050D7;
    padding: 0.5em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
  }
  #header20 .westSide .l2 a:hover {
    color: #122844;
  }
  #header20 .westSide .l2 a span {
    display: none;
  }
  #header20 .eastSide {
    background-color: #ddf7ff;
    margin: 0px !important;
    width: 100% !important;
  }
  #header20 .eastSide .quickAction, #header20 .eastSide hr {
    display: none;
  }
  #header20 .eastSide a {
    color: #0050D7;
    text-decoration: none;
    padding: 0.5em 1.5em;
    font-weight: bold;
  }
  #header20 #profilIcon {
    display: block !important;
    float: right;
    margin-right: -1em;
  }
  #header20 #profileContainer {
    background: #def8ff;
    padding: 1em;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
  }
  #header20 #profileContainer .card {
    background: #fff;
    box-shadow: 0px 0px 6px #000E9C1A;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    padding: 0px;
    text-align: center;
  }
  #header20 #profileContainer .card p {
    text-align: left;
  }
  #header20 #profileContainer .card img {
    max-width: 120px;
    margin-top: 1em;
  }
  #header20 #profileContainer .card .link20 {
    padding: 1em;
    display: block;
  }
  #header20 .hamburger {
    display: inline-block;
    margin: 30px 20px 0px 0;
    cursor: pointer;
        float: right;
    /* ONE */
  }
  #header20 .hamburger .line {
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 13px;
  }
  #header20 .hamburger.is-active .line {
    margin: 3px auto;
}
  #header20 .hamburger:hover {
    cursor: pointer;
  }
  #header20 .hamburger.is-active .line:nth-child(2) {
    opacity: 0;
  }
  #header20 .hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(5px) rotate(45deg);
    -ms-transform: translateY(5px) rotate(45deg);
    -o-transform: translateY(5px) rotate(45deg);
    transform: translateY(5px) rotate(45deg);
  }
  #header20 .hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-5px) rotate(-45deg);
    -ms-transform: translateY(-5px) rotate(-45deg);
    -o-transform: translateY(-5px) rotate(-45deg);
    transform: translateY(-5px) rotate(-45deg);
  }
  #header20 .support {
    display: none;
  }
  header.header .row>.col-8{
    width: 100% !important;
    padding: 0;
  }
  #header20 .offBg {
/*     background: #fff; */
    height: 51px;
  }
  #header20 .offBg #ucartzLogo img {
    display: none;
  }
  #header20 .offBg #ucartzLogo:before {
    content: "";
    background: url("https://362209.fs1.hubspotusercontent-na1.net/hubfs/362209/Geographe%20Feb_2024/Arrow.png") center center no-repeat;
    height: 51px;
    width: 198px;
    display: inline-block;
  }
  @keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }
  @keyframes animateleft {
    from {
      left: -300px;
      opacity: 0;
    }
    to {
      left: 0;
      opacity: 1;
    }
  }
  #header20 .menu20 {
    display: none;
    position: relative;
    z-index: 9;
    background: #fff;
  }
  #header20 .menu20 .row {
    margin: 0px;
    padding: 0px;
  }
  #header20 .menu20.is-active {
    display: block;
    animation: animateleft 0.4s;
  }
  #header20 .menu20 .menu20Content {
    display: none;
    position: relative;
    animation: animateleft 0.4s;
  }
  #header20 .menu20 .menu20Content.is-active {
    display: block;
  }
  #header20 .menu20 .menu20Content ul.l3 {
    display: none;
    overflow: hidden;
    padding: 0 0 0 1em;
  }
  #header20 .menu20 .menu20Content ul.l3 .l3Title {
    display: none;
  }
  #header20 .menu20 .menu20Content ul.l3 li {
    position: relative;
    animation: animatetop 0.4s;
  }
  #header20 .menu20 .menu20Content ul.l3 li a {
    color: #0050D7;
    font-weight: bold;
    text-decoration: none;
  }
  #header20 .menu20 .menu20Content ul.l3 li a:hover {
    color: #ee3042 !important;
  }
  #header20 .menu20 .menu20Content ul.l3 li a span {
    display: none;
  }
  #header20 .menu20 .menu20Content .title, #header20 .menu20 .menu20Content ul.l2 li {
    width: 100%;
  }
  #header20 .menu20 .menu20Content .title, #header20 .menu20 .menu20Content .title a {
    clear: both;
    box-sizing: border-box;
    color: #4C4C4D;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 185%;
  }
  #header20 .menu20 .menu20Content .title:hover, #header20 .menu20 .menu20Content .title a:hover {
    color: #ee3042 !important;
  }
  #header20 .menu20 .menu20Content .title:not(.noL3).hidd:before{
    display: none;
  }
  #header20 .menu20 .menu20Content .title a, #header20 .menu20 .menu20Content .title a {
    padding: 0;
  }
  #header20 .menu20 .menu20Content .title:not(.noL3):before {
    content: "";
    float: right;
    font-size: 1.6em;
    font-weight: 900;
    margin: 0;
    background: url("https://362209.fs1.hubspotusercontent-na1.net/hubfs/362209/Geographe%20Feb_2024/Arrow.png") center center no-repeat;
    height: 18px;
    width: 18px;
    position: relative;
    animation: animateleft 0.4s;
  }
  @keyframes animateleft {
    from {
      left: -300px;
      opacity: 0;
    }
    to {
      left: 0;
      opacity: 1;
    }
  }
  #header20 .menu20 .menu20Content .title:not(.noL3).active:before {
    transform: rotate(180deg);
  }
  #header20 .menu20 .menu20Content .title:not(.noL3).nbfr:before {
    background: none;
  }
  #header20 .menu20 .menuTitle {
    cursor: pointer;
    color: #ee3042;
    padding: 0.5em 1em;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    border-bottom: solid #bbb 1px;
    box-sizing: border-box;
    text-decoration: none;
  }
  #header20 .menu20 .menuTitle:after {
    content: "";
    float: right;
    font-size: 1.6em;
    font-weight: 900;
    margin: 0.15em 0.1em 0;
    background: url("https://362209.fs1.hubspotusercontent-na1.net/hubfs/362209/Geographe%20Feb_2024/Arrow.png") center center no-repeat;
    height: 18px;
    width: 18px;
/*     transform: rotate(-90deg); */
    position: relative;
    animation: animateleft 0.4s;
  }
  @keyframes animateleft {
    from {
      left: -300px;
      opacity: 0;
    }
    to {
      left: 0;
      opacity: 1;
    }
  }
  #header20 .menu20 .menuTitle.active {
    color: #ee3042;
    font-weight: bolder;
  }
  #header20 .menu20 .menuTitle.active:after {
    float: left;
    transform: rotate(90deg);
    margin-left: -5px;
  }
  #header20 .menu20 ul {
    padding: 0px;
    margin: 0px;
    width: 100%;
  }
  #header20 .menu20 ul li {
    list-style: none;
    width: 100%;
  }
  #header20 .menu20 ul li a {
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 500;
  }
  #header20 .mobileSupportMenu {
    display: block;
  }
  #header20 .mobileSupportMenu .menu20 {
    background-color: #000E9C;
  }
  #header20 .mobileSupportMenu .menu20 .menuTitle {
    border-color: #0022b2;
    text-decoration: none;
  }
  #header20 .mobileSupportMenu .menu20 .menuTitle:after {
    background: url("https://362209.fs1.hubspotusercontent-na1.net/hubfs/362209/Geographe%20Feb_2024/Arrow.png") center center no-repeat;
  }
  #header20 .mobileSupportMenu .menu20 .menu20Content {
    background-color: #000E9C;
  }

  body div#main {
    margin: 50px auto 0 auto !important;
  }
  
li.l1.parent {
    position: relative;
    margin: 0 !important;
}

span.child-trigger {
  display:block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 52.28px;
    z-index: 2;
    cursor: pointer;
}

li.l1.parent div#radio_menu20Content {
    animation: unset !important;
}
  .search-form {
  float: none;
}

  #header20 .menu20 .menu20Content .title, #header20 .menu20 .menu20Content .title a {
    float: none !important;
}

#header20 .menu20 .menu20Content ul.l2 li {position: relative;}

#header20 .menu20 .menu20Content ul.l2 li span.child-trigger {
    height: 33.29px;
}

#header20 .menu20 .menu20Content ul.l3 {
    display: block !important;
    overflow: visible;
}

#header20 .col-s-12.noMargin {}

#header20 .col-s-12.noMargin.right-inner-hover {
    display: none;
}

.full.menu20 * {
    float: none !important;
}
.full.menu20 {
    overflow: hidden;
    height: calc(100vh - 102px);
    overflow-y: scroll;
  margin-top: 21px;
}
  .col-s-12.col-l-8.noMargin.oHide.images {
    display: none;
}
}
 .header .extraSon{
    display: none;
  }

@media screen and (max-width: 1024.98px) {
  header.header{
        padding-bottom: 44px !important;
  }
  #header20 .col-s-12.col-l-8.noMargin.oHide.images{
   padding-left: 0; 
  }
  header.header .header-logo a{
  z-index: 99;
    padding-top: 8px;
    display: block;
}
  header.header{
   background: #171717;
    padding-left: 26px;
    padding-bottom: 26px;
    padding-bottom: 15px;
  }
  .header .header-logo {
    padding: 15px 22px;
    position: relative;
    position: absolute;
    top: 20px;
    left: 26px;
    padding: 5px 10px 10px;
  }
  .header .search-bar{
   display: none; 
  }
  #header20 .hamburger { 
    float: right;transition: 0.3s;
    margin: 30px 20px 0px 0;
  }
  header.header .container > .row{
    margin: 0 !important;
  } 
  header.header .container{
   padding: 0; 
  }
/*   .header-logo:after{
    display: none !important;
  } */ 
 #header20 .menu20 ul{
   display: block; 
   background: #171717;
    padding: 0 26px; 
  }
  #header20 .menu20 .menuTitle { 
    border-bottom: 1px solid rgba(255, 255, 255, 0.70);
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding: 18px 0 10px 0;
  }
  #header20 .hamburger{
   margin: 130x 20px 0px 0; 
  }
  #header20 .hamburger.is-active {
    margin: 40px 20px 0 0;
}
  .header .cta-section{
    position: absolute;
    right: 70px;
    width: 100% !important;
    text-align: right;
    top: 18px;
    height: 0;z-index: 9;
  }
 
  .header .search-bar.mobile {
    padding-top: 20px;
  }
  .westSide.col-s-12.col-m-12 h3 {
    display: none;
}
  #header20 .menu20 .menuTitle img {
    display: none;
}
  #header20 .full {
    background: #171717;
}
  #header20 .menu20 .menu20Content .title a, #header20 .menu20 .menu20Content ul.l3 li a {
    color: #fff!important;
    font-size: 18px!important;
    font-weight: 500!important;
    padding: 18px 0 10px!important;
}
  .side-hover {
    margin-top: 18px !important;
    border-left: 2px solid #E7E7E8;
}
  #header20 .menu20 .menu20Content ul.l3 .row {
    margin-bottom: 10px;
    border-left: 2px solid #E7E7E8;
}
}

 

@media screen and (max-width: 480px) {
  .header .cta-section{
    display: none; 
  }
  .header .extraSon{
    display: block;
        margin-top: 20px;
    margin-left: 12px;
  }
  
}
footer form .hs-button {
/*     background-image: url(https://362209.fs1.hubspotusercontent-na1.net/hubfs/362209/Geographe%20Feb_2024/Homepage/Icons.png);
    background-position: 86%;
    background-repeat: no-repeat;
    background-size: 15px 15px; */
    padding: 12px 25px 6px 25px!important;
}
footer.footer form {
    position: relative;
}
footer .hs_submit.hs-submit {
    position: absolute;
    top: 0;
    right: 0;
}
.footer hr {
    opacity: 1;
}
form {position: relative;}

.footer .hs_submit.hs-submit {
    position: absolute;
    top: 0;
    right: 0;
}

.footer form input {
    border: 1px solid #4c4c4d;
    border-radius: 10px !important;
    box-shadow: 0 1px 2px 0 rgba(16,24,40,.05);
    font-size: 18px !important;
    padding: 12px 20px 6px;
}

.footer form .hs-form-field {
    /* margin: 0; */
}

footer form .hs-button {
    font-weight: bold !important;
    font-family: FoundersGrotesk!important;
}

.footer li.hs-menu-item.hs-menu-depth-1 a {
    color: #fff !important;
    font-size: 16px;
    font-style: normal;
    line-height: 140%;
}

li.hs-menu-item.hs-menu-depth-1 {}

.footer li.hs-menu-item.hs-menu-depth-1:first-child a {
    font-weight: 600;
}

.footer li.hs-menu-item.hs-menu-depth-1:first-child {
    margin-top: 23px;
}

.footer .span4.widget-span.widget-type-cell.cell_1708322267003-vertical-alignment.dnd-column img.hs-image-widget {
/*     position: absolute; */
/*     left: 0;
    top: 80px; */
}
.footer .span4.widget-span.widget-type-cell.cell_1708322267003-vertical-alignment.dnd-column .hs_cos_wrapper_type_logo{
      background: #EE3042;
    padding: 24px 0px 24px 0;
    border-radius: 0 10px 10px 0;
  position: relative
}
.footer .span4.widget-span.widget-type-cell.cell_1708322267003-vertical-alignment.dnd-column a{
 position: relative;
  z-index: 9;
  background: #ee3042;
    border-radius: 5px;
    padding: 24px 15px 19px 0px;
}
.footer .span4.widget-span.widget-type-cell.cell_1708322267003-vertical-alignment.dnd-column .hs_cos_wrapper_type_logo:after{
        background-color: #ee3042;
    content: "";
    height: 66px;
    left: -300%;
    position: absolute;
    top: 0;
    width: 302%;
  }
footer.footer {
    position: relative;
}
footer .row-fluid .span4.widget-type-cell.cell_1708322244878-vertical-alignment{
  padding-left: 0; 
}
footer .input input[type=email]{
  outline: none; 
  padding-right: 151px;
  padding-left: 12px;
}
@media(max-width:1160px){
  .footer .span4.widget-span.widget-type-cell.cell_1708322267003-vertical-alignment.dnd-column .hs_cos_wrapper_type_logo {
/*     width: 100%; */
    display: inline-block;
}
  .footer .container-fluid{
    padding-left: 0;
    padding-right: 0;
  }
  .footer .span4.widget-span.widget-type-cell.cell_1708322267003-vertical-alignment.dnd-column .hs_cos_wrapper_type_logo:after {
    height: 83px;
}
  footer .row-fluid-wrapper.row-depth-1.row-number-1.footer-row-0-background-color.footer-row-0-vertical-alignment.dnd-section.footer-row-0-padding {}

footer .row-fluid-wrapper.row-depth-1.row-number-1.footer-row-0-background-color.footer-row-0-vertical-alignment.dnd-section.footer-row-0-padding .row-fluid {
    flex-direction: column;
}

footer .row-fluid-wrapper.row-depth-1.row-number-1.footer-row-0-background-color.footer-row-0-vertical-alignment.dnd-section.footer-row-0-padding .row-fluid .span4 {
    width: 100% !important;
    /* margin-bottom: 20px; */
}
.footer hr {
    width: 100% !important;
}
footer div#hs_cos_wrapper_widget_1708322266671 {
    width: 100%;
    margin-bottom: 30px;
}
}

@media(min-width:768px) and (max-width:991px){
  
}

@media(max-width:991px){
  footer .row-fluid-wrapper.row-depth-1.row-number-7.dnd-section.footer-row-2-background-color.footer-row-2-padding .row-fluid {
    flex-direction: column-reverse;
}
  footer .row-fluid-wrapper.row-depth-1.row-number-7.dnd-section.footer-row-2-background-color.footer-row-2-padding .row-fluid .span4 {
    width: 100% !important;
}
}
@media screen and (max-width: 767.98px) {
  .footer .container-fluid{
    padding-left: 18px;
    padding-right: 18px;
  }
}
.footer .span6.widget-span .hs_cos_wrapper_type_logo a {
    position: relative;
    z-index: 9;
}

.footer .span6.widget-span .hs_cos_wrapper_type_logo {
background: #ee3042;
    border-radius: 10px;
    padding: 24px 0 24px 26px;
    position: relative;
}
.footer .span6.widget-span .hs_cos_wrapper_type_logo:after {
    background-color: #ee3042;
    content: "";
    height: 66px;
    right: -300%;
    position: absolute;
    top: 0;
    width: 302%;
}

footer.lp-footer {
    position: relative;
    overflow-x: hidden;
}

@media screen and (max-width: 1440px) {
.hs-landing-page header.header {
    padding: 20px 0;
}
}

@media screen and (max-width: 1024.98px) {
.hs-landing-page .header .cta-section {
    right: 0 !important;
}

.hs-landing-page header.header {
    background: transparent !important;
    padding: 0 !important;
}
}


@media screen and (max-width: 767px) {
  .footer .span6.widget-span .hs_cos_wrapper_type_logo {
    background: transparent !important;
    padding: 0 !important;
}
.footer .span6.widget-span .hs_cos_wrapper_type_logo:after {
display:none  !important;
}
  .footer .span6.widget-span #hs_cos_wrapper_widget_1708931598401 {
    margin: 20px auto 0;
}
  .footer #hs_cos_wrapper_footer-module-2 .social-links {
    justify-content: center;
}
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

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

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

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

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

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

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

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

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

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

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

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

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