/* 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 */
  scroll-behavior: smooth;
}

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

img{
  max-width:100%;
  height:auto;
}

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




.dnd-section,
.content-wrapper--vertical-spacing {
  padding: 65px 22px;
}

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


.body-wrapper{
  overflow-x:hidden;
}

.content-wrapper {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1200px;
}


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

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

.dnd-section .dnd-column {
  padding: 0 15px;
}

@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;
  background-color:#FFFFFF;
}

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

/* Paragraphs */

p {
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}



html {
  font-size: 16px;
}

body {
  font-family: Lato, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #132b5e;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

/* Paragraphs */

p {
  font-family: Lato, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
}

p:last-child{
  margin-bottom:0;
}
/* Anchors */

a {
  font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #d55317;
}

a:hover,
a:focus {
  font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #ad2b00 !important;
}

a:active {
  font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #fd7b3f;
}

/* Headings */

h1,
.h1 {
  font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  color: #132b5e;
  font-size: 60px;
  text-transform: none;
  line-height:1;
}

h2,
.h2 {
  font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #132b5e;
  font-size: 48px;
  text-transform: none;
  line-height:;
}

h3,
.h3 {
  font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #132b5e;
  font-size: 24px;
  text-transform: none;
  line-height:1.3;
}

h4,
.h4 {
  font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: 500; text-decoration: none;
  color: #132b5e;
  font-size: 24px;
  text-transform: none;
  line-height:1.2;
}

h5,
.h5 {
  font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #132b5e;
  font-size: px;
  text-transform: none;
  line-height:;
}

h6,
.h6 {
  font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #132b5e;
  font-size: 20px;
  text-transform: none;
  line-height:;
}



@media (min-width:768px){
  h1,
  .h1 {
    font-size: 100px;
    line-height:0.9;
  }

  h2,
  .h2 {
    font-size: 60px;
    line-height:1;
  }

  h3,
  .h3 {
    font-size: 48px;
    line-height:1.23;
  }

  h4,
  .h4 {
    font-size: 34px;
    line-height:1.2;
  }

  h5,
  .h5 {
    font-size: 24px;
    line-height:1.2;
  }

  h6,
  .h6 {
    font-size: 20px;
    line-height:1.1;
  }
}


@media (min-width:768px) and (max-width:991px){
  h1,
  .h1 {
    font-size: 60.0px;
  }

  h2,
  .h2 {
    font-size: 36.0px;
  }

  h3,
  .h3 {
    font-size: 28.799999999999997px;
  }
}

/* Custom Font Sizes */
@media (min-width: 992px) {
  .title-font-size-90 {
    font-size: 90px;
  }
  
  .title-font-size-85 {
    font-size: 85px;
  }
  
  .title-font-size-72 {
    font-size: 72px;
  }
}

/* Blockquote */

blockquote {
  border-left-color: #1A695A;
}


/* System pages */
.hs-search-results__title {
  font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  color: #132b5e;
}









   












.header .menu__item--depth-1:last-child a,
.footer #hs_menu_wrapper_widget_1695939899346_ ul li:last-child a,
button,
.button,
.hs-button,
.hs-blog-post-listing__post-button {
  border: 2px solid #132B5E;

  padding-top: 9px;
padding-right: 26px;
padding-bottom: 9px;
padding-left: 26px;

  font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: 500; text-decoration: none;
  background-color: 

  
  
    
  


  rgba(19, 43, 94, 1.0)

;
  border-radius: 30px;
  color: #FFFFFF;
  font-size: 15px;
  text-transform: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-weight:700!important;
}

.header .menu__item--depth-1:last-child a:hover,
button:hover,
button:focus,
.button:hover,
.button:focus,
.hs-button:hover,
.hs-button:focus,
.hs-blog-post-listing__post-button:hover,
.hs-blog-post-listing__post-button:focus {
  color: #FFFFFF;
  background-color: #D55317;
  border-color: #D55317;
}
 
button:active,
.button:active,
.hs-button:active,
.hs-blog-post-listing__post-button:active {
  font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: 500; text-decoration: none;
  background-color: rgba(59, 83, 134, 1.0);
  border-color: #3b5386;
}

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

.button.light,
.footer #hs_menu_wrapper_widget_1695939899346_ ul li:last-child a{
  color:#132B5E;
  background-color:#EFF4FA;
  border-color:transparent;
}
.button.light:hover,
.footer #hs_menu_wrapper_widget_1695939899346_ ul li:last-child a:hover{
  color:#801500;
  background-color:#FFE6D9;
  border-color:transparent;
}

.button.button-secondary{
  color:#132B5E;
  background-color:transparent;
  border-color:#132B5E;
}
.button.button-secondary:hover{
  color:#801500;
  border-color:#801500;
}
.button.button-secondary.light{
  border-color:#EFF4FA;
  color:#EFF4FA;
  background-color:transparent;
}
.button.button-secondary.light:hover{
  border-color:#FFE6D9;
  color:#FFE6D9;
}

.link:not(.link-arrow){
  color:#FFFFFF;
  text-decoration:underline;
}



.link{
  font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: 500; text-decoration: none;
  color: #FFFFFF;
  font-size: 15px;
  font-weight:700!important;
}
.link-arrow svg path{
  filL:

  
  
    
  


  rgba(19, 43, 94, 1.0)

;
}


.link:hover{
  color: #D55317;
}

.link:hover svg path{
  fill: #D55317;
}

.link-arrow:not(.button) {
  color:#132B5E;
  display:flex;
  align-items:center;
}
.link-arrow:not(.button):hover{
  color:#D55317;
}

.link-arrow:not(.button) svg{
  margin-left: 5px;
  margin-top: 2px;
  stroke:#132B5E;
}
.link-arrow:not(.button):hover svg{
  stroke:#1A695A;
}

.link.light,
.link-arrow.light{
  color:#fff;
}
.link-arrow.light svg path{
  fill:#fff;
}

.link.light:hover,
.link-arrow.light:hover{
  color:#FFE6D9;
}
.link-arrow.light:hover svg path{
  fill:#FFE6D9;
}

.link-white{
  color:#fff;
}
.link-white:not(.link-arrow){
  text-decoration:underline;
}
.link-white:hover{
  color:#132B5E
}
.link-white.link-arrow svg{
  stroke:#fff;
}
.link-white.link-arrow:hover svg{
  stroke:#132B5E;
}















































/* Fields */

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

/* Labels */
form{
  position:relative;
  z-index:2;
}
form label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

/* 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: 16px;
  padding: 15px 30px;
  width: 100%;
}


form textarea {
  resize: vertical;
  height:150px;
}

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;
}
form label{
  font-weight:700;
}
form label .hs-form-required{
  color:#FF7A3C;
  margin-left:5px;
}
/* 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: #EE2560;
}

.hs-error-msg {
  color: #EE2560;
  font-size: 12px;
  margin-top: -10px;
  font-weight: 400;
}

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


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

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




form,
.submitted-message {
  font-family: Lato, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  ;
  border-top-left-radius: px;
  border-top-right-radius: px;
  border-bottom-left-radius: px;
  border-bottom-right-radius: px;
  background-color: 

  
  
    
  


  rgba(#null, 1)

;
  ;
}

/* Form title */

.form-title {
  ;
  ;
  ;
  border-top-left-radius: px;
  border-top-right-radius: px;
  border-bottom-left-radius: px;
  border-bottom-right-radius: px;
  font-size: ;
  color: ;
  background-color: 

  
  
    
  


  rgba(#null, 1)

;
}


/* Labels */

form label {
  color: #142A5E;
}

/* Help text */

form legend {
  color: #142A5E;
}

/* 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 {
  border: 1px solid #5E89BC;

  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  color: #142A5E;
  border-radius: 15px;
}

/* Form placeholder text */

::-webkit-input-placeholder {
  color: #142A5E;
}

::-moz-placeholder {
  color: #142A5E;
}

:-ms-input-placeholder {
  color: #142A5E;
}

::placeholder {
  color: #142A5E;
}

/* Inputs - date picker */

.hs-fieldtype-date .input .hs-dateinput:before {
  color: #142A5E;
}

.fn-date-picker td.is-selected .pika-button {
  background: #132B5E;
}

.fn-date-picker td .pika-button:hover {
  background-color: #132B5E !important;
}

.fn-date-picker td.is-today .pika-button {
  color: #132B5E;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  ;
  ;
  ;
  color: ;
  font-size: ;
  background-color: 

  
  
    
  


  rgba(#null, 1)

;
  border-radius: 30px;
  text-transform: none;
}

form input[type=submit]:hover,
form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:focus {
  background-color: 

  
  
    
  


  rgba(#null, 1)

;
  color: ;
  ;
}

form input[type=submit]:active,
form .hs-button:active {
  background-color: rgba(59, 83, 134, 1.0);
  border-color: #3b5386;
}



form fieldset .input{
  margin-right:0!important;
}

form fieldset .hs-input:not([type="checkbox"]){
  width:100%!important;
}


@media (min-width:480px){
 
  form fieldset.form-columns-2 .field{
    width:48.5%!important;
  }
  form fieldset.form-columns-2 .field:nth-child(2){
    float:right!important;
  }
}
















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




/* Table */

table {
  border: 1px solid #142A5E;

  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
}

/* Table cells */

td,
th {
  border: 1px solid #142A5E;

  padding: 18px;

  color: #142A5E;
}

/* Table header */

thead th {
  background-color: 

  
  
    
  


  rgba(19, 43, 94, 1.0)

;
  color: #FFFFFF;
}

/* Table footer */

tfoot td {
  background-color: 

  
  
    
  


  rgba(216, 233, 249, 1.0)

;
  color: #142A5E;
}

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










.menu__link {
  color: #132B5E;
  font-family: Lato;
}
.header__navigation--toggle span{
  background-color:#132B5E;
}

.menu__child-toggle-icon {
  border-top-color: #132B5E;
}

.mega-menu__dropdown{
  background-color:;
  border: 2px solid #132B5E;

}
.mega-menu__dropdown a{
  color:#142A5E;
}

.menu__child-toggle-icon:hover,
.menu__child-toggle-icon:focus {
  border-top-color: #000336;
}

.menu .menu__link:active,
.header__language-switcher-label-current:active,
.header__language-switcher .lang_list_class li a:active {
  color: #3b5386;
}

.menu__child-toggle-icon:active {
  border-top-color: #3b5386;
}

.menu .menu__item--depth-1 > .menu__link--active-link:after {
  background-color: #132B5E;
}

@media (min-width: 767px) {
  .menu .menu__submenu,
  .header__language-switcher .lang_list_class {
    border: 2px solid #132B5E;

    background-color: ;
  }

  .menu__submenu--level-2 > .menu__item:first-child:before {
    border: 2px solid #132B5E;

    background-color: ;
  }
}

.menu__submenu .menu__link,
.menu__submenu .menu__link:hover,
.menu__submenu .menu__link:focus {
  color: #142A5E;
  background-color: ;
}

.header__language-switcher .lang_list_class:before {
  border-bottom-color: #132B5E;
}

.menu__submenu .menu__link:hover,
.menu__submenu .menu__link:focus,
.header__language-switcher .lang_list_class li:hover,
.menu__submenu--level-2 > .menu__item:first-child:hover:before,
.menu__submenu--level-2 > .menu__item:first-child.focus:before {
  background-color: #EFF4FA;
}

.header__language-switcher .lang_list_class.first-active::after {
  border-bottom-color: #EFF4FA;
}

.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {
  font-family: Lato;
}

.header__language-switcher-label-current:after {
  border-top-color: #132B5E;
}


/* Header DND sections */
.header{
  padding:16px 10px;
  position:relative;
  z-index:10;
  background-color: #EFF4FA;
}
.header .dnd-section {
  padding: 0;
}

.active-menu.header{
  background-color:#fff;
}
.active-menu .header__logo--white{
  display:none;
}
.active-menu .header__logo--dark{
  display:block;
}
.active-menu  .header__navigation--toggle span{
  background-color:#362E40;
}

/* Header container */
.header .header__container{
  max-width:1600px;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items:center;
}

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

@media (max-width: 1024px) {

  .header__column {
    position: relative;
  }
}

/* Sticky Header */
header.header {
    position: fixed;
    width: 100%;
    top: 0;
}

.body-wrapper {
    padding-top: 100px;
}

/* 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;
  max-width: 240px;
  overflow: hidden;
  z-index:99;
  position:relative;
}
.header__logo--dark{
  display:none;
}
@media (max-width: 1024px) {
  .header__logo {
    width: 100%;
  }
}

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

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


/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 1024px) {
  .header{
    position:relative;
  }
  .header__navigation{
    opacity:0;
    visibility:hidden;
    width: 100%;
    transition:.3s all ease;
    -webkit-transition:.3s all ease;
    position:fixed;
    top:100%;
    left:0; 
    right:0;
    background-color: #ffff;
    min-height: calc(100vh - 82px);
    padding-bottom:100px;
    top: 0;
    bottom: 0;
    padding-top: 85px;
    background-color: #EFF4FA; 
  }
  
  .header__navigation.open{
    opacity:1;
    visibility:visible;
  }
  
  .header .menu__item--depth-1:last-child{
    padding:20px;
  }
  .header .menu__item--depth-1:last-child a{
    width:100%;
  }
  
  

  .header__navigation--toggle {
    width: 30px;
    height: 25px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index:999;
  }

  .header__navigation--toggle span{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  
  .header__navigation--toggle span:nth-child(1) {
    top: 0px;
  }

  .header__navigation--toggle span:nth-child(2),.header__navigation--toggle span:nth-child(3) {
    top: 11px;
    width: 65%;
  }

  .header__navigation--toggle span:nth-child(4) {
    top: 21px;
  }

  .header__navigation--toggle.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }

  .header__navigation--toggle.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width:100%;
  }

  .header__navigation--toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width:100%;
  }

  .header__navigation--toggle.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }

}

/* Back to top button */

.back-to-top {
  position: fixed; 
  bottom: 20px; 
  left: 10px; 
  text-align: left; 
  z-index: 999;
}

.back-to-top-btn {
  padding: 10px 18px; 
  text-decoration: none; 
  border-radius: 30px;
  background-color: #5caa9b; 
  color: #fff !important;
}

.back-to-top-btn:link,
.back-to-top-btn:visited,
.back-to-top-btn:active,
.back-to-top-btn:hover {
  color: #fff !important;
}

@media (min-width: 768px) {
  .back-to-top {
    display: none;
  }
}






.footer {
  background-color: #132B5E;
  position: relative;
  margin-top: -1px;
}

/* Footer content */

.footer p,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer label,
.footer span,
.footer li,
.footer img {
  color: #FFFFFF;
}

.footer a:not(.button){
  color:#D8E9F9;
}
.footer a:not(.button):hover{
  color:#D8E9F9;
}

.footer .hs-menu-wrapper ul{
  display:flex;
  align-items:center;
  gap:40px;
}
.footer .hs-menu-wrapper ul li a{
  font-size:15px;
  font-weight:700;
}

.footer .row-number-6.dnd-section>.row-fluid {
  justify-content:flex-start;
  align-items: flex-end;
}
.footer .row-number-6.dnd-section>.row-fluid .span6{
  width:auto;
}

.footer #hs_menu_wrapper_widget_1695977831036_ ul li a{
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}
.footer #hs_menu_wrapper_widget_1695977831036_ ul{
  gap:0;
}
.footer #hs_menu_wrapper_widget_1695977831036_ ul li:before{
  content:"|";
  display:inline-block;
  margin-left:20px;
  margin-right:20px;
  font-size:12px;
}


@media (max-width: 767px) {
  .footer .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    align-items: flex-start;
    gap:25px;
  }
  #hs_cos_wrapper_footer-module-2 .social-links {
    justify-content: flex-start!important;
    margin-top:50px;
  }
  .footer .row-number-6.dnd-section > .row-fluid .span6{
    width:100%;
    margin-bottom:3px;
  }
  .footer #hs_menu_wrapper_widget_1695977831036_ ul li:before{
    display:none;
  }
}
/* 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%;
}




.row-fluid-wrapper[data-hs-row-id="dnd_area-row-2"] {
    position: relative;
    z-index: 20;
}

.blog-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 22px;
}

@media (min-width: 1200px) {
  .blog-section {
    padding-top: 140px;
    padding-bottom: 100px;
  }
}

.blog-section__top-icon {
  position: absolute;
  top: -60px;
  right: -50px;
  width: 230px;
  transform: translateX(100%);
}

.blog-section__header {
  margin-bottom: 20px;
  position: relative;
}

.blog-section__header p{
    display: none;
}

.blog-section__header__icon {
  width: 111px;
  height: auto;
  position: absolute;
  top: -10px;
  left: -10px;
  transform: translate(-100%, -100%);
}

.blog-section__icon {
  width: 260px;
  position: absolute;
  top: 100px;
  left: -300px;
}

.blog-section__icon--bottom {
  width: 305px;
  top: auto;
  bottom: 0;
  left: auto;
  right: 20px;
  transform: translateY(-150%);
}

.blog-listing-row {
  display: block;
}

.blog-listing-row__item {
  padding: 0 10px 32px;
}

@media (min-width: 768px) {
  .blog-listing-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
  }
  
  .blog-listing-row__item {
    width: 50%;
    padding: 0 16px 32px;
  }
}

.post-card,
.post-card__link {
  height: 100%;
}

.post-card {
  position: relative;
}

.post-card__icon {
  position: absolute;
  width: 151px;
  height: auto;
  bottom: -105px;
  left: -65px;
}

.post-card__icon--bottom {
  width: 57px;
  height: auto;
  bottom: 0;
  right: 0;
  left: auto;
  transform: translateX(100%);
}

.post-card__link {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
  background-color: #fff;
}

.post-item__image img {
  width: 100%;
}

@media (min-width: 1200px) {
  .post-item__image {
    position: relative;
    overflow: hidden;
  }
  
  .post-item__image img {
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
  }
  
  .post-card__link {
    transform: translate(0, 0);
    transition: transform 0.3s ease-in-out,
                filter 0.3s ease-in-out;
  }
  
  .post-card__link:hover {
    transform: translate(5px, 5px);
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.05));
  }
  
  .post-card__link:hover .post-item__image img {
    transform: scale(1.05);
  }
}

.blog-listing-row .post-body {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-item__image {
  font-size: 0;
}

.post-body h2 {
  font-size: 20px;
  padding-bottom: 0;
  margin-bottom: 10px;
  line-height: 1.3;
}

.post-body p {
  font-size: 15px;
  color: #031A3F;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.post-body .btn {
  font-size: 15px;
  text-transform: uppercase;
  color: #0CC0DF;
  display: inline-block;
  margin-top: auto;
  padding-top: 10px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.blog-pagination {
  text-align: center;
  margin-top: 50px;
}

.blog-listing-wrapper {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.blog-listing__posts,
.blog-listing__sidebar {
  width: 100%;
}

.blog-listing__sidebar {
  margin-top: 50px;
  position: relative;
}

.blog-listing__sidebar__wrapper {
  position: relative;
}

.blog-listing__sidebar__icon {
  position: absolute;
}

.blog-listing__sidebar__icon--top {
  width: 86px;
  position: absolute;
  transform: translateY(-100%);
  top: 30px;
  right: -40px;
  z-index: -1;
}

.blog-listing__sidebar__icon--bottom {
  z-index: -1;
  width: 61px;
  bottom: -50px;
  left: 60px;
}

.blog-listing__sidebar__item:not(:last-child) {
  margin-bottom: 20px;
}

.blog-listing__sidebar__item--recent-posts {
  margin-top: 30px;
}

.blog-listing__sidebar__wrapper {
  padding: 40px 35px;
  background-color: #F0F4FA;
  border-radius: 20px;
}

.blog-listing__sidebar__recent-posts__item:not(:last-child) {
  margin-bottom: 15px;
}

.recent-posts-card__link {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  border-radius: 10px;
  background-color: #fff;
  padding: 15px;
  transition: background 0.25s ease-in-out;
}

@media (min-width: 1200px) {
  .recent-posts-card__link:hover {
    background-color: #132b5d;
  }
  
  .recent-posts-card__link:hover .recent-posts-card__title {
    color: #fff;
  }
  
  .recent-posts-card__title {
    transition: color 0.25s ease-in-out;
  } 
}

.recent-posts-card__image {
  width: 120px;
  height: auto;
  border-radius: 4px;
}

.recent-posts-card__title {
  font-size: 16px;
  font-weight: bold;
  flex: 1;
  padding-left: 20px;
  padding-top: 0;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

@media (min-width: 1200px) {
  .blog-listing-wrapper {
    margin: 0 -20px;
  }
  
  .blog-listing__posts {
    width: 65%;
    padding: 0 20px;
  }
  
  .blog-listing__sidebar {
    width: 35%;
    padding: 0 20px;
    margin-top: 0;
  }
}

.blog-listing__sidebar__heading {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.blog-listing__sidebar__heading > span {
  display: block;
  margin-top: 15px;
  line-height: 0;
}

.blog-listing__field {
  position: relative;
}

.custom-search-form {
  position: relative;
}

.blog-listing__field .custom-search-form input {
  height: 54px;
  padding: 10px 15px;
  border-radius: 50px;
  border: 0;
  width: 100%;
}

.blog-listing__field .custom-search-form input::placeholder {
  color: rgba(3, 26, 63, 0.4);
}

.blog-listing__field button {
  position: absolute;
  padding: 0;
  width: 40px;
  height: 40px;
  right: 7px;
  top: 7px;
}

.blog-listing__field select {
  height: 54px;
  width: 100%;
  border: 0;
  padding: 10px 20px;
  appearance: none;
  border-radius: 50px;
  color: rgba(3, 26, 63, 0.4);
  background-image: url(https://20473267.fs1.hubspotusercontent-na1.net/hubfs/20473267/select-dropdown.png);
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: calc(100% - 7px);
}
}

.blog-listing__field {
  position: relative;
}


.blog-listing__sidebar__heading > span > span,
.blog-listing__sidebar__heading > span:before,
.blog-listing__sidebar__heading > span:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0CC0DF;
  margin-right: 8px;
}

.sidebar-cta {
  background-color: #132b5d;
  background-image: url(https://20473267.fs1.hubspotusercontent-na1.net/hubfs/20473267/sidebar-cta-background.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  margin-top: 80px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
}

.sidebar-cta-2 {
  background-image: url('https://www.phinsec.io/hubfs/bg-pattern.png');
}

.sidebar-cta__element {
  width: 68px;
  position: absolute;
  right: -60px;
  top: 0;
}

.sidebar-cta__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #025CA3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -100px;
  margin: 0 auto -90px;
}

.sidebar-cta__title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}

.blog-listing__pagination__button,
.sidebar-cta .btn {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  background-color: #0CC0DF;
  border: 2px solid #0CC0DF;
  border-radius: 50px;
  display: inline-block;
  padding: 12px 30px;
  transition: background 0.3s ease-in-out,
              color 0.3s ease-in-out;
}

/* Podcast Listing */

.hs-blog-id-112049258123 .dnd_area-row-6-padding + .dnd_area-row-7-padding {
  position: relative;
  z-index: -1;
}

.podcast-section__top-icon {
    position: absolute;
    top: 14px;
    width: 303px;
    right: 186px;
}

.podcast-section__icon {
    width: 260px;
    position: absolute;
    top: 50%;
    left: -300px;
    transform: translateY(-50%);
}

.podcast-section .blog-section__header {
  margin-bottom: 35px;
}

.podcast-section .blog-section__header h3 {
  margin-bottom: 15px;
}

.podcast-listing__sidebar__icon--bottom {
    z-index: -1;
    width: 224px;
    bottom: -113px;
    right: 13px;
}

.sidebar-social-media {
    margin-top: 130px;
}

.sidebar-social-media p {
    text-align: center;
    font-weight: 600;
    font-size: 24px;
}

.social-media-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.social-media-item {
    width: 96px;
    background-color: #031A3F;
    border-radius: 30px;
    display: inline-block;
    height: 92px;
}

.social-media-item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.social-media-item svg {
    fill: #fff;
    width: 36px;
    height: 44px;
}

.sidebar-podcast-bottom__icon{
    position: absolute;
    bottom: -70px;
    width: 151px;
    left: 80px;
    z-index: -1;
}

.sidebar-podcast__coral-icon { 
    width: 68px;
    position: absolute;
    right: -42px;
    bottom: -7px;
    z-index: -1;
}

.sidebar-podcast__cta {
  margin-top: 100px;
}

.footer-coral img {
  width: 100%;
}

.footer-coral .footer-coral__icon {
    position: absolute;
    width: 187px;
    left: 75%;
    transform: translateX(-100%);
    bottom: 68px;
}

ul.podcast-section {
  list-style-type: none;
}
  
ul.podcast-section li {
  position: relative;
  line-height: 34px;
}

ul.podcast-section li > span {
    position: absolute;
    left: -27px;
    top: 3px;
}

ul.podcast-section li > span svg {
    fill: #4BAE4F;
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
  .footer-coral .footer-coral__icon {
    left: 61%;
    bottom: 215px;
  }
}

@media (min-width: 1024px) {
  .footer-coral .footer-coral__icon {
    bottom: 290px;
  }
}

@media (min-width: 1200px) {
  .blog-section.podcast-section {
    padding-top: 60px
  }
  
  .blog-listing__pagination__button:hover,
  .sidebar-cta .btn:hover {
    color: #0CC0DF !important;
    background-color: #fff;
    font-weight: bold !important;
  }
  
  .footer-coral .footer-coral__icon {
    position: absolute;
    width: 187px;
    left: 50%;
    transform: translateX(-100%);
    bottom: 560px;
  }
}

.blog-listing__pagination {
  margin-top: 30px;
  text-align: center;
}

@media (min-width: 1200px) {
  .blog-listing__pagination {
    margin-top: 50px;
  }
}

.blog-listing__pagination__button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
}

.dnd_area-row-0-padding {
  position: relative;
  z-index: 20;
}

.header {
  z-index: 22
}

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










:root{
  --primary-color: #132B5E;
  --secondary-seagrass-color: #1A695A;
  --secondary-neptune-color: #23186A;
  --secondary-coral-color: #801500;
  --secondary-treasure-color: #805000;
  --secondary-seashell-color: #4B4E53;
  --primary-font: DM Sans;
  --secondary-font: Lato;
}


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