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

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * 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;*/
  margin: 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 {
  --gap: 2.127659574%;
}

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

.row-wrapper-custom {
  padding: 0px 20px;
  width: 100%;
}

.row-custom {
  max-width: 988px;
  margin: 0 auto;
}

/* Desktop layout */

@media (min-width: 1024px) {
  .row-wrapper-custom {
     padding: 0px 40px;
     width: 100%;
  }
  
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .row-fluid .span11 {
    width: calc(91.66% - var(--gap));
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--gap));
  }

  .row-fluid .span9 {
    width: calc(75% - var(--gap));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--gap));
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--gap));
  }

  .row-fluid .span6 {
    width: calc(50% - var(--gap));
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--gap));
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--gap));
  }

  .row-fluid .span3 {
    width: calc(25% - var(--gap));
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--gap));
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--gap));
  }
}
.content-wrapper {
  margin: 0 auto;
  /*padding: 0 1rem;*/
}

.cards__card {
  width: unset !important;
}

@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;*/
  margin: 0;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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 {
  cursor: pointer;
  /* display: inline-block; */
  text-align: center;
  transition: all 0.15s linear;
  line-height: 1.6;
}

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

.hs-form-field {
  margin-bottom: 8px;
}

/* Labels */

form label {
  display: block;
  font-size: 16px;
  /*margin-bottom: 0.35rem;*/
}

/* Help text */

form legend {
  font-size: 16px;
}

.form-title {
  font-size: 18px !important;
}

/* 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,
form .hs-input{
  display: inline-block;
  font-size: 16px;
  padding: 14px;
  width: 100% !important;
}

form input[type=text]:hover,
form input[type=email]:hover,
form input[type=password]:hover,
form input[type=tel]:hover,
form input[type=number]:hover,
form input[type=file]:hover,
form select:hover,
form textarea:hover,
form .hs-input:hover {
  border: 2px solid #007DA5;
}

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;
  width: fit-content !important;
  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: 16px;
  /* 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: red;
  /*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;
  background-color: #008533;
  padding: 9px 21px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  line-height: 1.6;
}

form input[type=submit]:hover,
form .hs-button:hover {
  background-color: #00ae42;
}

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

.footer-wrapper {
  padding-top: 42px;
  padding-bottom: 42px;
}

.footer__gradient-line {
  height: 3px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.footer__text {
  margin-top: 15px;
  margin-bottom: 0;
}

.footer-wrapper__inner {
  gap: 30px;
}

.footer__left-content p {
  margin-top: 15px !important;
  margin-bottom: 0 !important;
}

.footer__right-content a {
  font-weight: 700;
  margin-top: 0;
}

.footer__right-content p {
  margin: 0 !important;
}
.hero-with-top-margin {
  margin-top: 75px;
}

.header-wrapper {
  background-color: #323E48;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header-inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

.header-inner__logo img {
  height: 30px !important;
  width: auto !important;
}

.header-black-placeholder {
  display: none;
  position: fixed;
  top: 77px;
  left: 0;
  right: 0;
  width: 100svw;
  height: calc(100svh - 77px);
  z-index: 998;
  background: #00061A3D;
  backdrop-filter: blur(6px)
}

.header-black-placeholder.visible {
  display: block !important;
}


/* Actions Bar on the right side of the header */
.header__right-navigation {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.right-navigation__item {
  height: 45px;
  width: 45px;
  padding: 8px;
  background: #465460;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: all 0.3s ease-in;
}

.right-navigation__item:focus,
.right-navigation__item:active {
  outline: 1px solid #007DA5;
  background-color: #465460;
}

.right-navigation__item:hover {
  opacity: 0.7;
  background: #465460;
}

#search-jobs-btn, #hamburger-menu-btn {
  display: none;
}

#hamburger-menu-btn #hamburger-menu-btn-close {
  display: none;
}

#hamburger-menu-btn.open #hamburger-menu-btn-open {
  display: none;
}

#hamburger-menu-btn.open #hamburger-menu-btn-close {
  display: block;
}


/* Main Menu Navigation - First Level */
.menu-navigation__list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.menu-navigation__item {
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.menu-item-toggle {
  display: inline-block;
}

.menu-navigation__item svg {
  transition: all 0.3s;
}

.menu-navigation__item:focus {
  outline: none;
}

.menu-navigation__item-wrapper.hovered .menu-navigation__item,
.menu-navigation__item:focus,
.menu-navigation__item-wrapper:hover .menu-navigation__item {
  color: #4AC1E0;
}

.menu-navigation__item-wrapper.hovered .menu-navigation__item:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #4AC1E0;
  animation: grow-width 0.5s forwards;
}

.menu-navigation__item-wrapper.hovered .menu-navigation__item svg {
  transform: scaleY(-1);
}

.menu-navigation__item-wrapper.hovered .menu-navigation__item svg path:nth-of-type(2),
.menu-navigation__item-wrapper:hover .menu-navigation__item svg path:nth-of-type(2) {
  stroke: #4AC1E0;
}


/* Dropdown Navigation */
.nav-item__dropdown-container {
  display: none;
  position: absolute;
  padding-top: 20px !important;
  max-height: calc(100svh - 57px);
  top: 57px;
  left: 0;
  width: 100svw;
  background: transparent;
  z-index: 1;
}

.nav-dropdown__banner {
  padding: 9px 20px 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  background: #007DA5;
  color: #fff !important;
  font-size: 14px;
  position: relative;
}

.nav-banner__link {
  color: #fff !important;
}

.nav-banner__link:hover {
  text-decoration: underline;
}

.banner__primary {
  display: flex;
  align-items: center;
  gap: 5px;
}

.banner__primary a {
  font-weight: 700;
}

.banner__secondary {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

.nav-dropdown__banner img {
  filter: invert(100%) contrast(2);
  width: 24px;
  height: 24px;
}

.menu-navigation__item-wrapper.hovered  .nav-item__dropdown-container {
  display: flex;
  flex-direction: column;
}

.nav-item__dropdown-content {
  width: 100%;
  height: fit-content;
  background: #ffffff;
  transition: height 0.3s;
  max-height: calc(100svh - 77px);
  overflow: hidden;
  box-shadow: 0px 75px 21px 0px rgba(0, 0, 0, 0.00), 0px 48px 19px 0px rgba(0, 0, 0, 0.01), 0px 27px 16px 0px rgba(0, 0, 0, 0.05), 0px 12px 12px 0px rgba(0, 0, 0, 0.09), 0px 3px 7px 0px rgba(0, 0, 0, 0.10);
}


/* Main dropdown layout */
.two-cols-nav-container {
  display: flex;
  align-items: stretch;
}

.two-cols-nav-container > div:nth-of-type(1) {
  /* width: 471px; */
  max-width: 471px;
  width: 33%;
  height: auto;
  overflow-y: auto;
}

.two-cols-nav-container > div:nth-of-type(2) {
  flex: 1;
  height: auto;
  overflow-y: auto;
}

.two-cols-nav-container > div::-webkit-scrollbar {
  display: none;
   -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-item__dropdown-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
}

.nav-item__dropdown-col-content {
  padding: 20px 32px;
}

/* Main Submenu - Second level */
.nav-dropdown__main-item {
  height: 207px;
  min-height: 207px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F2F4F6;
  transition: background 0.3s;
}

.nav-dropdown__main-item-container {
  display: flex;
  gap: 15px;
  height: fit-content;
  width: 100%;
  max-width: 371px;
  margin-top: 10px;
}


/* Shared styles for icon with border */
.nav-dropdown__icon-with-border {
  align-items: center;
  border: 1px solid #bbc6c399;
  border-radius: 50%;
  display: flex;
  height: 70px;
  justify-content: center;
  min-height: 70px;
  min-width: 70px;
  width: 70px;
  transition: all 0.3 ease-in;
}

.nav-dropdown__icon-with-border img {
  width: 24px;
  height: 24px;
}

.nav-dropdown__icon-with-border svg{
  width: 24px;
  height: 24px;
  transition: all 0.3 ease-in;
}

.nav-dropdown__icon-with-border:not(.no-stroke) svg path {
  stroke: #1D252C;
}

/* Shared styles for common title */
.nav-dropdown__title {
  font-size: 18px;
  font-weight: 500;
  color: #1D252C;
  line-height: normal;
  margin: 0;
  width: fit-content;
}

/* Shared styles for common description */
.nav-dropdown__description {
  color: #5B6670;
  font-size: 14px;
  line-height: normal;
  margin: 0;
}

/* Shared styles for dropdown nav link */
.nav-dropdown__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #007DA5;
  font-weight: 500;
  height: fit-content;
  transition: all 0.3s ease-in-out;
  position: relative;
  width: fit-content;
}

.nav-dropdown__link.bigger {
  font-weight: 700;
  font-size: 16px;
}

.nav-dropdown__main-item-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}


/* Main Item - Active styles */
.nav-dropdown__main-item.active {
  background: #ffffff;
}

.nav-dropdown__main-item.active .nav-dropdown__icon-with-border, 
.nav-dropdown__main-item.active .nav-dropdown__title,
.nav-dropdown__main-item .nav-dropdown__link {
  border-color: #007DA5;
  color: #007DA5;
  text-decoration: none;
}

.nav-dropdown__link:focus {
  outline: none;
}

.nav-dropdown__link:focus::before,
.nav-dropdown__link:hover::before,
.nav-dropdown__inner-submenu-header:hover::before,
.nav-dropdown__inner-submenu-header:focus::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #007DA5;
  animation: grow-width 0.5s forwards;
}

.nav-dropdown__link:hover, .nav-dropdown__link:hover svg path {
  color: #007DA5;
  transition: all 0.3s ease-in-out;
}


.nav-dropdown__main-item.active .nav-dropdown__description {
  color: #1D252C;
}

.nav-dropdown__main-item.active .nav-dropdown__icon-with-border img {
  width: 30px;
  height: 30px;
  filter: brightness(3.2) saturate(3.5) hue-rotate(349deg) sepia(8%) contrast(94%);
}

.nav-dropdown__link {
  transition: opacity 0.3s;
}

.nav-dropdown__main-item:not(.active) .nav-dropdown__link {
  font-size: 14px;
  opacity: 0;
}

.nav-dropdown__main-item.active .nav-dropdown__link, .nav-dropdown__link:focus {
  opacity: 1 !important;
}

.nav-dropdown__main-item.active .nav-dropdown__link svg {
  height: 20px;
}

/* Submenu - Third level */
.nav-dropdown__submenu {
  list-style: none;
  flex: 1;
  padding-right: 32px;
  position: relative;
}

.nav-dropdown__submenu:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(50, 62, 72, 0) 0%, rgba(129, 163, 191, 0.5) 48.5%, rgba(50, 62, 72, 0) 97.5%);
}

/* Shared submenu item styles*/
.nav-dropdown__submenu-item {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  transition: background .3s;
  padding: 18px 20px;
  color: #1D252C;
  position: relative;
}

.nav-dropdown__submenu-item-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-dropdown__submenu-item-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #1D252C;
  margin: 0;
}

.clickable-parent::after {
  content: '';
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}

.nav-dropdown__submenu-item-arrows svg:nth-of-type(1) {
  display: none;
}

.nav-dropdown__submenu-item-arrows svg path {
  stroke: #1D252C;
}

.nav-dropdown__submenu-item.active, 
.nav-dropdown__submenu-item:hover,
.nav-dropdown__submenu-item:focus {
  background: #F2F4F6;
  border-radius: 5px;
  color: #007094;
  outline: none;
}

.nav-dropdown__submenu-item:focus {
  border: 1px solid;
}

.nav-dropdown__submenu-item.active .nav-dropdown__submenu-item-title, 
.nav-dropdown__submenu-item:hover .nav-dropdown__submenu-item-title,
.nav-dropdown__submenu-item:focus .nav-dropdown__submenu-item-title{
  color: #007094;
}

.nav-dropdown__submenu-item.active img, 
.nav-dropdown__submenu-item:hover img,
.nav-dropdown__submenu-item:focus img {
 filter: brightness(3.2) saturate(3.5) hue-rotate(349deg) sepia(8%) contrast(94%);
}

.nav-dropdown__submenu-item.active svg path, 
.nav-dropdown__submenu-item:hover svg path,
.nav-dropdown__submenu-item:focus svg path {
 stroke: #007094;
}

.nav-dropdown__submenu-item.active .nav-dropdown__main-item-arrows svg:nth-of-type(1),
.nav-dropdown__submenu-item.active .nav-dropdown__submenu-item-arrows svg:nth-of-type(1),
.nav-dropdown__submenu-item:focus .nav-dropdown__main-item-arrows svg:nth-of-type(2) {
  display: block;
}

.nav-dropdown__submenu-item.active .nav-dropdown__main-item-arrows svg:nth-of-type(2),
.nav-dropdown__submenu-item.active .nav-dropdown__submenu-item-arrows svg:nth-of-type(2) {
  display: none;
}


/* Submenu Forth level */
.nav-dropdown__inner-submenu {
  flex: 1;
  padding-left: 32px;
  display: none;
}

.nav-dropdown__inner-submenu.active {
  display: block;
}

.nav-dropdown__inner-submenu-item {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in;
  position: relative;
}

.nav-dropdown__inner-submenu-list li:not(:last-of-type) .nav-dropdown__inner-submenu-item {
  border-bottom: 1px solid #475C6D1A;
}

.nav-dropdown__inner-submenu-item-title {
  font-size: 16px;
  color: #1D252C;
  line-height: 1.5;
  font-weight: 400;
}

.nav-dropdown__inner-submenu-item:focus {
  outline: none;
}

.nav-dropdown__inner-submenu-item:hover .nav-dropdown__inner-submenu-item-title,
.nav-dropdown__inner-submenu-item:focus .nav-dropdown__inner-submenu-item-title {
  color: #007DA5;
}

.nav-dropdown__inner-submenu-item:hover svg path,
.nav-dropdown__inner-submenu-item:focus svg path {
  stroke: #007DA5;
}

.nav-dropdown__inner-submenu-list {
  list-style: none;
}

.nav-dropdown__inner-submenu-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  margin-top: 16px;
  position: relative;
  width: fit-content;
}

.nav-dropdown__inner-submenu-header:focus .nav-dropdown__inner-submenu-title,
.nav-dropdown__inner-submenu-header:hover .nav-dropdown__inner-submenu-title {
  outline: none;
}

.nav-dropdown__inner-submenu-title {
  color: #007DA5 !important;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.two-columns-dropdown__content-columns {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.two-columns-dropdown__content-item {
  display: none;
}

.two-columns-dropdown__content-item.active {
  display: block;
}

.gray-separator {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, rgba(50, 62, 72, 0) 1.53%, rgba(129, 163, 191, 0.5) 51.02%, rgba(50, 62, 72, 0) 100%);
}

.main-item__link_mobile {
  display: none;
}

#nav-login-dropdown:hover .nav-login-dropdown__wrapper {
  display: block !important;
}

@keyframes grow-width {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Mobile styles */
@media (max-width: 1024px) {
  .hero-with-top-margin {
    margin-top: 63px;
  }
  
  .header__right-navigation {
    gap: 0px;
  }
  
  .header-black-placeholder {
    top: 64px;
    height: calc(100svh - 64px);
  }
  
  #nav-login-dropdown {
    display: none;
  }
  
  #search-jobs-btn, #hamburger-menu-btn {
    display: flex;
  }
  
  #search-jobs-btn.hidden {
    display: none;
  }
  
  .nav-dropdown__banner.banner-desktop {
    display: none !important;
  }
  
  .right-navigation__item {
    background: transparent;
    padding: 0;
    width: 32px;
    height: 32px;
    margin-left: 12px;
  }
  
  .right-navigation__item:hover,
  .right-navigation__item:focus,
  .right-navigation__item:active {
    background-color: transparent;
  }
  
  .header__menu-wrapper {
    display: none;
    position: absolute;
    right: 0;
    left: 0;
    top: 100%;
    height: fit-content;
    max-height: calc(100svh - 100%);
    overflow-y: auto;
    background: rgba(0, 6, 26, 0.24);
  }
  
  .header__menu-wrapper-content {
    height: fit-content;
    background: #323E48;
    overflow: visible;
    padding: 20px 40px 40px 40px;
    box-shadow: 0px 75px 21px 0px rgba(0, 0, 0, 0.00), 0px 48px 19px 0px rgba(0, 0, 0, 0.01), 0px 27px 16px 0px rgba(0, 0, 0, 0.05), 0px 12px 12px 0px rgba(0, 0, 0, 0.09), 0px 3px 7px 0px rgba(0, 0, 0, 0.10);
  }
  
  .menu-navigation__item-wrapper {
    transition: all 0.3s;
  }
  
 .menu-navigation__list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
  }
  
  .nav-item__dropdown-container {
    display: none !important;
    max-height: none !important;
  }
  
  .menu-navigation__item-wrapper.open .nav-item__dropdown-container {
    display: block !important;
  }

  .menu-navigation__item {
    justify-content: space-between;
    transition: all 0.3s ease-in;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
  }
  
  .menu-navigation__item svg {
    width: 24px;
    height: 24px;
  }
  
  .menu-navigation__item-wrapper.open {
    border-radius: 8px;
    background: #3D4C59;
    padding: 16px 8px;
  }
  
  .menu-navigation__item-wrapper.open .menu-navigation__item, {
    color: #4AC1E0;
  }
  
  .menu-navigation__item-wrapper:hover:not(.open) .menu-navigation__item::before {
    display: none;
  }

  .menu-navigation__item-wrapper.open .menu-navigation__item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #4AC1E0;
    animation: grow-width 0.5s forwards;
  }
  
  .menu-navigation__item-wrapper:hover .menu-navigation__item svg {
    transform: none;
  }

  .menu-navigation__item-wrapper.open .menu-navigation__item svg {
    transform: scaleY(-1);
  }

  .menu-navigation__item-wrapper.open .menu-navigation__item svg path:nth-of-type(2) {
    stroke: #4AC1E0;
  }
  
  .nav-item__dropdown-container {
    position: static;
    width: 100%;
    height: fit-content;
    padding-top: 10px !important;
  }
  
  .nav-item__dropdown-content {
    background: transparent;
    box-shadow: none;
  }
  
  .nav-item__dropdown-col {
    gap: 10px;
  }
  
  .nav-item__dropdown-col .nav-dropdown__main-item {
    display: none;
  }
  
  .main-item__link_mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: inherit;
    width: 100%;
    padding: 8px 6px;
    color: #fff;
  }
  
  .main-item__link_mobile .nav-dropdown__icon-with-border img {
    width: 16px;
    height: 16px;
    filter: invert(100%);
  }
  
  .main-item__content_mobile {
    display: flex;
    gap: 15px;
    color: inherit;
    align-items: center;
  }
  
  .main-item__link_mobile .nav-dropdown__title {
    color: #fff;
  }
  
  .main-item__content_mobile .nav-dropdown__icon-with-border {
    border: 1px solid #425665;
    height: 40px;
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    box-sizing: border-box;
  }
  
  .nav-item__dropdown-col-content {
    display: none;
  }
  
  .main-item__link_mobile:hover, .main-item__link_mobile:hover .nav-dropdown__title {
    color: #4ac1e0;
    text-decoration: none;
  }
  
  .main-item__link_mobile:hover .nav-dropdown__icon-with-border img {
    filter: brightness(5) saturate(3.5) hue-rotate(349deg) sepia(8%) contrast(94%);
  }
  
  .main-item__link_mobile:hover .nav-dropdown__icon-with-border {
    border-color: #4ac1e0;
  }
  
  .two-cols-nav-container {
    display: flex;
  }
  
  .two-cols-nav-container > div:nth-of-type(1) {
    width: 100%;
    max-width: 100%;
  }
  
  .nav-dropdown__submenu-item {
    padding: 8px 6px;
  }
  
  .nav-dropdown__submenu-item:hover {
    background: transparent !important;
  }
  
  .nav-dropdown__submenu-item.active, 
  .nav-dropdown__submenu-item:hover,
  .nav-dropdown__submenu-item:focus {
    color: #4AC1E0;
  }

  .nav-dropdown__submenu-item.active .nav-dropdown__submenu-item-title, 
  .nav-dropdown__submenu-item:hover .nav-dropdown__submenu-item-title,
  .nav-dropdown__submenu-item:focus .nav-dropdown__submenu-item-title{
    color: #4AC1E0;
  }
  
  .nav-dropdown__submenu-item svg path {
    stroke: #fff;
  }

  .nav-dropdown__submenu-item.active svg path, 
  .nav-dropdown__submenu-item:hover svg path,
  .nav-dropdown__submenu-item:focus svg path {
    stroke: #4AC1E0;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 12px 20px;
  }
  
  .hero-with-top-margin {
    margin-top: 55px !important;
  }
  
  .header__menu-wrapper {
    height: calc(100svh - 100%);
  }
  
  .header__menu-wrapper-content {
    min-height: 100%;
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
  }
  
  #nav-login-mobile {
    margin-top: auto;
  }
  
}
/* 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;
  }
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* .hero-image-section>* {
	position: relative;
	z-index: 1;
} */

.hero-image-section>.row-fluid:first-child {
	justify-content: flex-end;
}

.hero-image-section .row-fluid .span6:first-child {
	max-width: 534px;
}

/* .hero-image-section .span6 {
	width: 50% !important;
} */

.hero-image-section::before {
	content: '';
	background-color: #1d252c;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(52.1% 0%, 52.1% 100%, 75% 0);
	z-index: 2;
}

.hero-image-section::after {
	content: '';
	background: linear-gradient(210deg, rgba(29, 37, 44, 0.1) 10%, #1d252c 100%);
	opacity: 0.3;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(100% 0, 80% 100%, 100% 100%);
	z-index: 2;
}

@media(max-width: 1024px) {  
	.hero-image-section::before {
		clip-path: polygon(0 450px, 100% 450px, 100% 100%, 0% 100%);
	}

	.hero-image-section .row-fluid {
		flex-direction: column-reverse;
	}

	.hero-image-section .row-fluid .dnd-column {
		width: 100% !important;
	}

	.hero-image-section::before {
		display: none;
	}

	.hero-image-section .row-fluid .span6:first-child {
		max-width: unset;
	}

	.hero-image-section .row-fluid .span6:nth-child(2) {
		height: 480px;
	}
}

@media(max-width: 560px) {
	.hero-image-section .row-fluid .span6:nth-child(2) {
		height: 360px;
		background-position-y: 10px !important;
	}
}
.section-with-label .dnd-row {
    position: relative;
}
/* @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    */
/*****************************************/
div.charts-section-background {
  background-repeat: no-repeat !important;
  background-position: center bottom 8% !important;
}

/* @media screen and (max-width: 1024px) {
  div.charts-section-background {
    background-position: center bottom 0 !important;
  }
} */