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

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
/*! 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));
    }
  
}

.body-container--web {
    margin-top: -185px;
    padding-top: 150px;
  background-color:#eee;
  background-image:url(https://12837.fs1.hubspotusercontent-na1.net/hubfs/12837/Vector@2x.png);
  background-repeat:no-repeat;
  background-position:top right;
  background-size: 20%;
  background-attachment:fixed;
}

.body-container--web img {
      border-radius: 20px;  
}
.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.)
*/

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

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


.site-main ul {
  list-style: none; /* Remove default bullets */
}

.site-main ul li {
  position:relative;  
}

 .site-main ul li:not(.hs-form-radio):not(.logo-list__text-list-item):not(.hs-menu-item):not(.video-banner-certs__list-item):not(.tab-carousel-nav__list-item):not(.image-carousel__thumbnails-list-item):not(.accordian__list-item):not(.blog-listing__item):not(.our-process__list-item):not(.resources__list-item):not(.custom-list__item):not(.certifications__logo-item):not(.certifications__panel-bullet-item):not(.blog-tabs__header li):not(.related-blogs__list-item):not(.blog-listing-pagination__list-item):not(.inputs-list.multi-container .hs-form-checkbox):not(.blog-post-topics__list-item):not(.hs-error-msgs li)::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #19447C; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.site-main ul li:not(.hs-form-radio):not(.logo-list__text-list-item):not(.hs-menu-item):not(.video-banner-certs__list-item):not(.tab-carousel-nav__list-item):not(.image-carousel__thumbnails-list-item):not(.accordian__list-item):not(.blog-listing__item):not(.our-process__list-item):not(.resources__list-item):not(.custom-list__item):not(.certifications__logo-item):not(.certifications__panel-bullet-item):not(.blog-tabs__header li):not(.related-blogs__list-item):not(.blog-listing-pagination__list-item):not(.inputs-list.multi-container .hs-form-checkbox):not(.blog-post-topics__list-item):not(.hs-error-msgs li)::after {
    content: '';
    color: #fff;
    border: 1px solid #19447C;
    border-radius: 100%;
    font-weight: bold;
    display: inline-block;
    width: 1.05em;
    margin-left: -1.145em;
    position: absolute;
    left: 0;
    width: 10px;
    height: 10px;
    top: 9px;
} 

.custom-list{
  list-style: none;
}

.custom-list__item{
   position: relative;
}

.custom-list__item{
   position: relative;
}

.custom-list__item:before,
.custom-list__item:after{
   display: none; 
}

.custom-list__item .icon{
  position: absolute;
  width: 25px;
  height: 25px;
  left: -35px;
  top: 5px;
}
/* button, */
.button,
.button--secondary,
.button--red-outline,
.button--blue,
.button--white,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  border: 1px solid transparent;
}

.button--secondary {
  background-color: white;
  border-color: #b41e4a;
  color: #b41e4a;
}

.button--red-outline {
  background-color: transparent;
  border-color: #b41e4a;
  color: #b41e4a;
}

.button--blue {
  background-color: #1a447d;
  border-color: #1a447d;
  color: white;
}

.button--white {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.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:hover,
.button:focus,
.hs-button:hover,
.hs-button:focus {
  color: #b41e4a;
  background-color: #ffffff;
}

.button:active {
}

.button--secondary:hover,
.button--secondary:focus,
.button--red-outline:hover,
.button--red-outline:focus {
  background-color: #b41e4a;
  border-color: #b41e4a;
  color: #ffffff;
}

.button--secondary:active,
.button--red-outline:active {
}

.button--blue:hover,
.button--blue:focus {
  color: #ffffff;
  background: #b41e4a;
  border-color: #b41e4a;
}

.button--white:hover,
.button--white:focus {
  background-color: #1a447d;
  border-color: #1a447d;
  color: white;
}

.button--white:active {
  background-color: #1a447d;
  border-color: #1a447d;
  color: white;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
}

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

/* 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 > li label{
  display: flex;
  align-items: flex-start;
  font-weight: 500;

}

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

form input[type=checkbox],
form input[type=radio] {
  min-width: 18.9px;
  min-height: 18px;
  cursor: pointer;
  margin-top: 0.3125rem;
  margin-right: 0.875rem;
}

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

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

.hs-error-msg {
  color:#a83232;
  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;
}

.header {  
 position: sticky;
 top: 0;
  z-index: 9999;

}

/* Header container */

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

@media (min-width: 992px) {
  .header__container {
    padding: 25px 0 0;
  }

    .header__column {
    display: flex;
    align-items: flex-end;
  }
}

@media (min-width: 1200px) {
  .header__container {
    position: relative;
  }

  .header {  
    position: relative;
    top: 0;
     z-index: 9999;
   
   }
   
   .header.scrolled{ 
     position: sticky;
     top: -63px;
   }
   
   .header.scrolled .menu--desktop .menu__top{
   display: none;
   }
   
   .header.scrolled  .header__logo{
     max-width: 240px;
   }
   
   .header.scrolled  .header__contact-us .hs-button{
     padding: 20px 26px;
   }
   
   .header.scrolled .header__container{
     padding: 65px 0 0;
   }
}

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

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

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

@media (max-width: 991px) {

  .header .content-wrapper{
    padding-right: 0px

  }

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

  .header__row-2 {
    justify-content: center;
    align-items: flex-end;
    height: 100%
  }
}

/* Navigation skipper */

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

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

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 140px;
  overflow: hidden;
  transition: all .3s ease-in-out;
}

@media (max-width: 991px) {
  .header__logo {
    width: 50%;
    padding-top: 31px;
  }
  
  .header-column{
    width: 50%;
  }
}

@media (min-width: 992px) {
  .header__logo {
    max-width: 200px;

  }
}@media (min-width: 1440px) {
  .header__logo {
    max-width:340px;
  }
}

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

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

/* Search bar */

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




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




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

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

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

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

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

@media (min-width: 991px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
    
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 991px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Navigation */

#nav-toggle {
  display: none;
}


.header__search {
  display: none;
  width: fit-content;
}


.header__search.open {
  background-color: #F8FAFC;
  display: block;
  position: absolute;
  top: 105%;
  right: 20px;
  z-index: 2;
  width:calc(100% - 40px);
  padding: 15px 20px;
  border: 2px solid #B41E4A;
  border-radius: 10px
}

@media (min-width: 992px) {
  .header__search.open {
    right: 10px;
    width: fit-content;
  }
}


.header__search label {
  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 (min-width: 991px) {
  .header__search .hs-search-field__input{
  width: 300px;
}
}



.header__search--toggle { 
  display: block;
  cursor: pointer;
  position: relative; 
  height: 100%;
  padding: 10px 30px;
}

.header__search--toggle  .icon-search{
  width: 20px;
  height: 20px;
}

.header__search--toggle--mobile{
  padding: 0 30px
}

.header__search--toggle--mobile  .icon-search{
  position: absolute;
  fill: #ffffff;
  bottom: 16px;
  right: 50%;
  width: 20px;
  height: 20px;
  transform: translateX(50%);
}

.header__search--toggle--mobile {  background: #B41E4A;
}




/* Mobile toggles */

@media (max-width: 991px) {
  .header__navigation,

  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,

  .header__language-switcher.open {
    overscroll-behavior-y: contain;
    overflow-y: auto;
    background-color: #F8FAFC;
    display: block;
    left: 0;
    height: calc(100vh - 86.39px);
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 2;
    overflow: auto !important;
    padding-bottom: 100px;
  }

  .header__navigation--toggle,

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

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

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



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

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

  .header__navigation--toggle {
    width: 25px;
    height: 20px;
    position: relative;
    margin-bottom: 16px;
    -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;
  }

.header__navigation--toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000000;
    border-radius: 9px;
    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;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  .header__navigation--toggle span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  .header__navigation--toggle span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  .header__navigation--toggle.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
  }
  
  .header__navigation--toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }
  
  .header__navigation--toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 18px;
    left: 4px;
  }




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

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


.header__contact-us{
  display: none;
}

@media (min-width: 1200px) {
  .header__contact-us{
    display: flex;
    align-items: center;
  }

  .header__contact-us .hs-button{
    padding: 32px 53px;
  }

  .header__search--toggle--mobile {  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%;
}

/*
*
* Footer
*
*/

.footer {
  background-color: #0d223f;
}

.footer .footer-main {
  padding-top: 40px;
  padding-bottom: 30px;
}

@media screen and (min-width: 992px) {
  .footer .footer-main {
    padding-top: 64px;
    padding-bottom: 25px;
  }
}

/*
*
* Footer Top
*
*/
.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .footer-top {
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 992px) {
  .footer-top {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}

/*
*
* Footer Info
*
*/

.footer-logo{
   margin-bottom: 20px;
}

.footer-info__list {
  padding: 0 0 0 30px;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-info__list .footer-info__list-item{
  position: relative;
}

.footer-info__list .footer-info__list-item::before{
  content: '';
  width: 20px;
  height: 20px;
  background-size: cover;
  position: absolute;
  left: -30px;
  top: 0;
}

.footer-info__list .footer-info__list-item:first-child::before{
  background-image: url('/hubfs/12837/location%20pin-1.png');
}

.footer-info__list .footer-info__list-item:nth-child(2)::before{
  background-image: url('/hubfs/12837/phone%20%281%29.png');
}

.footer-info__list .footer-info__list-item:nth-child(3)::before{
  background-image: url('/hubfs/12837/fax%20icon.png');
}

.footer-info__list .footer-info__list-item:last-child::before{
  background-image: url('/hubfs/12837/email.png');
}

.footer-info__list a{
  text-decoration: underline;
}

.footer-info__list a:hover,
.footer-info__list a:focus{
  color: #fff;
  text-decoration: underline;
}

.footer-info__list a,
.footer-info__list p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

/*
*
* Footer Nav
*
*/
.footer-nav {
  margin-top: 40px;
}

.footer-nav .hs-menu-wrapper ul {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.footer-nav__heading {
  margin: 0 0 20px;
  font-weight: 600;
  font-size: 25px;
  color: #ffffff;
}

.footer-nav .hs-menu-item a {
  padding: 0;
  margin: 0 0 15px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

@media screen and (min-width: 992px) {
  .footer-nav {
    margin-top: 0px;
  }
}

/*
*
* Footer Sign Up
*
*/

.footer-sign-up {
  position: relative;
  margin-top: 60px;
}

.footer-sign-up .hs_cos_wrapper {
  padding: 0;
  margin: 0 0 20px;
  font-weight: 600;
  font-size: 25px;
  color: #ffffff;
}

.footer-sign-up .hs_email {
  margin-bottom: 20px;
}

.footer-sign-up .hs-form-field label {
  margin: 0 0 10px;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
}

.footer-sign-up .hs-form-field .input {
  margin: 0;
}

.footer-sign-up .hs-form-field input {
  margin: 0;
  padding: 18px 16px 20px;
  background: #eeeeee;
  border-radius: 5px;

  font-weight: 400;
  font-size: 18px;
  color: #6d6d6d;
}

.footer-sign-up ul.no-list.hs-error-msgs.inputs-list {
  padding: 15px;
  background: none;
  border: none;
}

.footer-sign-up ul.no-list.hs-error-msgs.inputs-list label.hs-error-msg {
  color: #c89797;
}

.footer-sign-up .hs-form-field .hs-form-required {
  color: #c89797;
}

.footer-sign-up .hs_recaptcha {
  margin: 0;
  padding: 0;
}

.footer-sign-up .hs-button {
  margin: 20px 0 0;
}
@media screen and (min-width: 768px) {
  .footer-sign-up .hs_recaptcha {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline;
  }
}

@media screen and (min-width: 992px) {
  .footer-sign-up {
    margin: 0px;
    max-width: 450px;
  }
}

/*
*
* Footer Bottom
*
*/

.footer .footer-bottom {
  margin: 60px 0 25px;
  background-color: unset;
}
@media screen and (min-width: 992px) {
  .footer .footer-bottom {
    display:flex; 
    align-items:center;
  }
  
  .footer-bottom__right {
    padding-left:35px;  
  }
}

.footer-bottom__menu ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 20px;
}

.footer-bottom__menu li {
  display: flex;
  align-items: center;
}

.footer-bottom__menu li:not(:last-child):after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background-color: #b41e4a;
}

.footer-bottom__menu a {
  margin: 0 20px 0 0;
  padding: 0;
  font-size: 16px;
  color: #ffffff;
}

.footer-bottom__menu a:hover,
.footer-bottom__menu a:focus {
  color: #b6c6dc;
}

.footer-bottom__blurb {
  max-width: 925px;

  color: #ffffff;
}

.footer-bottom__blurb p {
  font-size: 16px;
  margin: 0;
  font-weight: 300;
}

.footer-bottom__blurb a {
  font-weight: 300;
  color: #ffffff;
  text-decoration: underline;
}

ul.footer__social {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
  display:flex;
}

.footer__social svg {
  fill:#fff;
  width:30px;
  height:30px;
}

.footer__social a {
  display:block;
  margin-right:20px;
}

/*
*
* Footer Copyright
*
*/

.footer__copyright {
  padding: 20px 0;
  border-top: 0.5px solid #ffffff;
}

.footer__copyright p {
  margin: 0;
  font-weight: 400;
  text-align: center;
  font-size: clamp(16px, 2.5vw, 18px);
  color: #dbdbdb;
}

@media screen and (min-width: 768px) {
  .footer__copyright p {
    text-align: left;
  }
}

/*
*
* To Top
*
*/

#toTop {
  background-color: #333;
  border-radius: 4px 4px 0 0;
  bottom: 0;
  opacity: 0;
  height: 35px;
  position: fixed;
  text-align: center;
  width: 48px;
  visibility: hidden;
  z-index: 9;
  transition: all 0.2s ease-in-out 0s;
  line-height: 1;
  right: 75px;
}
#toTop:before {
  line-height: 35px;
  content: "\f106";
  -webkit-font-smoothing: antialiased;
  font-family: icomoon;
  font-size: 22px;
  color: #fff;
  transition-property: color, background-color, border-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}

a#toTop.active {
  opacity: 0.9;
  visibility: visible;
}

a#toTop span {
  display: none !important;
}
lite-youtube {
    background-color: #000;
    position: relative;
    display: block;
    height: 100%;
    /* contain: content; */
    background-position: center center;
    background-size: cover;
    cursor: pointer;
}


/* gradient */

lite-youtube::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
    background-position: top;
    background-repeat: repeat-x;
    height: 60px;
    padding-bottom: 50px;
    width: 100%;
    transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}


/* responsive iframe with a 16:9 aspect ratio
      thanks https://css-tricks.com/responsive-iframes/
  */

lite-youtube::after {
    content: "";
    display: block;
    padding-bottom: calc(100% / (16 / 9));
}

lite-youtube>iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}


/* Post-click styles */

lite-youtube.lyt-activated {
    cursor: unset;
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated>.lty-playbtn {
    opacity: 0;
    pointer-events: none;
}

.lyt-visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
.hero-section,
.homepage-hero-section {
  margin-bottom: 85px;
}

.homepage-hero-section {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 20%,
    #eeeeee 20%,
    #eeeeee 100%
  );
}

.hero-banner {
  position: relative;
  padding: 34px 0 67px 0 !important;
  border-radius: 0px 0px 180px 0px;
}

.hero-banner:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    67.05deg,
    #09172b 24.05%,
    rgba(0, 0, 0, 0) 58.62%
  );
}

.hero-banner > .row-fluid {
  position: relative;
  z-index: 2;
  margin: 0 0 0 auto;
}

.hero-banner > .row-fluid .row-fluid {
   max-width: 1260px;
}

.hero-banner h1 {
  margin: 0 0 18px;
  font-weight: 600;
  font-size: clamp(38px, 2.5vw, 60px);
  color: #ffffff;
}

.hero-banner p {
  margin: 0 0 30px;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .hero-banner {
    position: relative;
    padding: 150px 0 80px 0 !important;
    border-radius: 0px 0px 180px 0px;
  }
}


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

@media (max-width: 767px) {
  body.no-scroll {
    overflow: hidden;
  }
}

/* Templates

*/

/*
*
* Blog Listing Hero
*
*/

.blog-listing-banner {
    background: rgb(226, 226, 226);
    background: linear-gradient( 360deg, rgba(238, 238, 238, 1) 0%, rgba(238, 238, 238, 1) 45%, rgba(255, 255, 255, 1) 45%, rgba(255, 255, 255, 1) 100%);
    
}

.blog-listing-banner__banner {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    /* width: 80%; */
    width: 100%;
    height: 100%;
    background-color: #ccc;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px 0px 180px 0px;
}

.blog-listing-banner .content-wrapper {
    position: relative;
    height: 312px;
}

.blog-listing-banner__content {
    position: relative;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
}

.blog-listing-banner__heading {
    margin: 0 0 18px;
    font-weight: 600;
    font-size: clamp(38px, 2.5vw, 60px);
    color: #FFFFFF;
}

.blog-listing-banner__subheading {
    margin: 0;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
}

@media screen and (min-width: 768px) {
    .blog-listing-banner__banner {
        width: 120%;
    }
    .blog-listing-banner__content {
        max-width: 50%;
    }
}

.blog-header {
  background-color: #eeeeee;
  text-align: center; 
}

.blog-header__inner {
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-header__title {
  font-size: 2rem;
}
.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

.blog-header__author-avatar {
  height: 200px;
  width: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
  margin: 0 auto 1.5rem;
}
.blog-header__author-social-links a {
  display: inline-block;
  position: relative;
  background-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.blog-header__author-social-links a:hover {
  background-color: ;
}
.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/*
*
* featured Blog
*
*/

.featured-blog {
    padding: 70px 0 60px;
    background: #eeeeee;
}

.featured-blog .content-wrapper {
    display: flex;
    gap: 64px 94px;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    .featured-blog {
        padding: 50px 0 100px;
    }
    .featured-blog .content-wrapper {
        flex-direction: row;
    }
}


/*
  *
  * Main Blog
  *
  */

.featured-blog-main {
    display: flex;
    flex-direction: column;
}

.featured-blog-main__heading {
    margin: 0 0 20px;
    font-weight: 600;
    font-size: clamp(25px, 2.5vw, 37px);
}

.featured-blog-main__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.featured-blog-main__image {
    display: block;
    aspect-ratio: 1 / 1;
    max-height: background-color: #ccc;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.featured-blog-main__content {
    display: flex;
    flex-direction: column;
    padding: 40px 30px 30px;
}

.featured-blog-main__date {
    margin: 0 0 10px;
    font-size: 16px;
    color: #b41e4a;
}

.featured-blog-main__title {
    margin: 0 0 13px;
    font-weight: 500;
    font-size: 20px;
    color: #000000;
}

.featured-blog-main__description {
    flex-grow: 1;
    margin: 0 0 50px;
    font-weight: 400;
    font-size: 15px;
    color: #000000;
}

.featured-blog-main__description p {
    margin: 0px;
}

.featured-blog-main__description span {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-blog-main__link {
    font-weight: 500;
    font-size: 15px;
    color: #1a447d;
}

@media screen and (min-width: 768px) {
    .featured-blog-main {
        width: 60%;
    }
    .featured-blog-main__heading {}
    .featured-blog-main__card {
        flex-direction: row;
    }
    .featured-blog-main__image {
        width: 47.39%;
        min-width: 47.39%;
    }
    .featured-blog-main__content {
        padding: 40px 40px 50px;
    }
    .featured-blog-main__date {
        font-size: 18px;
    }
    .featured-blog-main__title {
        margin: 0 0 30px;
        font-size: 26px;
    }
    .featured-blog-main__description {
        margin: 0;
        font-size: 16px;
    }
    .featured-blog-main__link {}
}

@media screen and (min-width: 768px) {
    .featured-blog-main {}
    .featured-blog-main__heading {}
    .featured-blog-main__card {}
    .featured-blog-main__image {}
    .featured-blog-main__content {}
    .featured-blog-main__date {}
    .featured-blog-main__title {}
    .featured-blog-main__description {}
    .featured-blog-main__link {}
}


/*
  *
  * Related Blogs
  *
  */

.related-blogs {}

.related-blogs__heading {
    margin: 0 0 20px;
    font-weight: 600;
    font-size: clamp(20px, 2.5vw, 26px);
    color: #000000;
}

.related-blogs__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.related-blogs__list-item {
    display: flex;
    padding: 20px 0;
    border-top: 1px solid rgba(26, 68, 125, 0.5);
}

.related-blogs__image {
    display: block;
    width: 146px;
    height: 109px;
    min-width: 146px;
    min-height: 109px;
    background-color: #ccc;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.related-blogs__content {
    padding-left: 22px;
}

.related-blogs__title {
    margin: 0 0 10px;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 500;
    color: #000000;
}

.related-blogs__title a {
    margin: 0;
    font-weight: 500;
    color: #000000;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-blogs__date {
    margin: 10px 0 0;
    font-size: clamp(15px, 2.5vw, 16px);
    color: #b41e4a;
}

@media screen and (min-width: 768px) {
    .related-blogs {
        width: 40%;
    }
    .related-blogs__list-item {
        padding: 25px 0;
    }
}


/*
  *
  * Blog Listing
  *
  */

.blog-index {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 0 40px;
}

.blog-index>* {
    width: 100%;
}

.blog-index:after {
    content: "";
    flex: auto;
}

@media screen and (min-width: 768px) {
    .blog-index {
        padding: 100px 0 50px;
    }
}

.blog-listing {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.blog-listing__item {
    background: #ffffff;
    box-shadow: 2px -3px 22px rgba(13, 34, 63, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.blog-listing__image {
    display: block;
    height: 207px;
    /* height: 270px; */
    background-color: #ccc;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-listing__content {
    padding: 20px 20px 30px;
}

.blog-listing__date {
    margin: 0 0 5px;
    font-weight: 400;
    font-size: clamp(14px, 2.5vw, 15px);
    /* text-transform: capitalize; */
    color: #b41e4a;
}

.blog-listing__title {
    margin: 5px 0 12px;
    font-weight: 500;
    font-size: clamp(16px, 2.5vw, 18px);
}

.blog-listing__title a {
    margin: 0;
    font-weight: 500;
    font-size: clamp(16px, 2.5vw, 18px);
    /* text-transform: capitalize; */
    color: #000000;
}

.blog-listing__description {
    margin: 12px 0 15px;
    font-size: 15px;
    /* text-transform: capitalize; */
    color: #000000;
}

.blog-listing__link {
    font-weight: 500;
    font-size: 15px;
    color: #1a447d;
}

@media screen and (min-width: 768px) {
    .blog-listing {
        grid-template-columns: repeat(2, 1fr);
        gap: 44px;
    }
}

@media screen and (min-width: 1200px) {
    .blog-listing {
        grid-template-columns: repeat(3, 1fr);
        gap: 44px;
    }
}


/*
  *
  * Blog Pagination
  *
  */

.blog-listing-pagination-wrapper {
    display: flex;
    justify-content: center;
}

.blog-listing-pagination {
    position: relative;
    margin: 0 0 40px;
    padding: 0 0 52px;
    list-style: none;
    display: inline-flex;
    justify-content: center;
    gap: 10px;
}

.blog-listing-pagination__page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 52px;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: #000000;
    background: #eeeeee;
    border-radius: 5px;
    transition: color 0.2s, background 0.2s;
}

.blog-listing-pagination__list-item--prev {
    position: absolute;
    bottom: 0;
    left: 5%;
}

@media(min-width: 768px){
  .blog-listing-pagination__list-item--next {
    right: 0;
  }
}

.blog-listing-pagination__list-item--next {
    position: absolute;
    bottom: 0;
    right: 5%;
}
@media(min-width: 768px){
  .blog-listing-pagination__list-item--next {
    right: 0;
  }
}

.blog-listing-pagination__page-link.disabled {
    fill: #a1a1a1;
    cursor: auto;
}

.blog-listing-pagination__page-link.disabled:hover,
.blog-listing-pagination__page-link.disabled:focus {
    fill: #a1a1a1;
    background-color: transparent;
}

.blog-listing-pagination__page-link.active,
.blog-listing-pagination__page-link:hover,
.blog-listing-pagination__page-link:focus {
    color: #ffffff;
    background: #1a447d;
}

.blog-listing-pagination__page-link--prev:hover,
.blog-listing-pagination__page-link--next:hover,
.blog-listing-pagination__page-link--prev:focus,
.blog-listing-pagination__page-link--next:focus {
    background-color: transparent;
}

.blog-listing-pagination__page-link--prev,
.blog-listing-pagination__page-link--next {
    background-color: transparent;
}

.blog-listing-pagination__page-link--prev {
    margin: 0 20px 0 0;
}

.blog-listing-pagination__page-link--next {
    margin: 0 0 0 20px;
}

.blog-listing-pagination__page-link--next .icon {
    transform: rotate(180deg);
}

.blog-listing-pagination__page-link .icon {
    width: 12px;
    height: 21px;
}

.blog-listing-pagination__ellipsis {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    margin: 0 5px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}

@media screen and (min-width: 768px) {
    .blog-listing-pagination {
        margin: 0 0 150px;
        padding: 0;
    }
    .blog-listing-pagination__list-item--prev {
        position: static;
    }
    .blog-listing-pagination__list-item--next {
        position: static;
    }
    .blog-listing-pagination__page-link--prev:hover,
    .blog-listing-pagination__page-link--next:hover,
    .blog-listing-pagination__page-link--prev:focus,
    .blog-listing-pagination__page-link--next:focus {
        fill: #eeeeee;
        background-color: #1a447d;
    }
}
.blog-post-wrapper {
}

@media screen and (min-width: 1200px) {
  .blog-post-wrapper {
    background: linear-gradient(
      180deg,
      rgba(238, 238, 238, 1) 0%,
      rgba(238, 238, 238, 1) 25%,
      rgba(255, 255, 255, 1) 25%,
      rgba(255, 255, 255, 1) 100%
    );
  }
}

.blog-post {
  position: relative;
  padding: 0;
  margin-bottom: 80px;
}

.blog-post-hero-wrapper {
  background: #ffffff;
}

.blog-post-hero {
  padding: 88px 0 45px;
  position: relative;
}

.blog-post-hero__banner {
  position: absolute;
  top: 0;
  right: -20px;
  z-index: 1;
  width: 120%;
  height: 100%;
  overflow: hidden;
  border-radius: 0px 0px 110px 0px;
}

@media screen and (min-width: 1200px) {
  .blog-post-hero__banner {
    right: 0;
  }
  .blog-post-hero-wrapper {
    background: #eeeeee;
  }
}

.blog-post-hero__banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-hero__banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    67.05deg,
    #09172b 24.05%,
    rgba(0, 0, 0, 0) 58.62%
  );

  z-index: 2;
  border-radius: 0px 0px 180px 0px;
}

.blog-post-hero__content {
  position: relative;
  z-index: 3;
  max-width: 840px;
}

.blog-post-hero__heading {
  margin: 0 0 20px;
  font-weight: 600;
  font-size: clamp(30px, 2.5vw, 45px);
  color: #ffffff;
}

.blog-post-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-weight: 500;
  font-size: clamp(16px, 2.5vw, 20px);
  color: #fff;
}

.blog-post-info__author,
.blog-post-info__author a {
  display: flex;
  align-items: center;
  margin: 0;
  font-weight: 500;
  font-size: clamp(16px, 2.5vw, 20px);
  color: #ffffff;
}

.blog-post-info__author a {
  text-decoration: underline;
}

.blog-post-info__author-link {
  color: #fff;
  text-decoration: none;
}

.blog-post-info__author-link:hover,
.blog-post-info__author-link:focus {
  color: #6bbfec;
  text-decoration: underline;
  font-weight: 500;
}

.blog-post-info__date {
  font-weight: 500;
  font-size: clamp(16px, 2.5vw, 20px);
  color: #ffffff;
}

.blog-post-socials {
}

.blog-post__social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-post__social-link {
  display: flex;
  align-items: center;
}

.blog-post__social-link .icon {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  transition: fill 0.2s;
}

.blog-post__social-link:hover .icon,
.blog-post__social-link:focus .icon {
  fill: #b41e4a;
}

.blog-post-socials__list-item {
}

.blog-post-socials__link {
}

@media screen and (min-width: 1200px) {
  .blog-post-hero {
    padding: 40px 0 105px;
  }

  .blog-post-hero__heading {
    margin: 0 0 30px;
  }
  .blog-post-hero__banner {
    width: 120%;
  }
  .blog-post-hero__content {
    max-width: 900px;
  }

  .blog-post-info {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .blog-post-info__author:after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 20px;
    margin-left: 30px;
    background-color: #fff;
  }

  .blog-post-info__date {
    margin: 0 30px;
  }
}

.blog-post__body-content {
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 1200px) {
  .blog-post__body-content {
    margin-top: -90px;
    border-bottom: 1px solid #1a447d;
  }
}

@media (min-width: 1200px) and (max-width: 1699px) {
  .blog-post__body-content {
    padding-bottom: 700px;
  }
}

.blog-post__content {
  background: #ffffff;
  max-width: 1320px;
  padding-top: 40px;
}

@media screen and (min-width: 1200px) {
  .blog-post__content {
    border-radius: 51px;
    min-height: 900px;
    padding: 50px 238px 50px 90px;
  }
}

.blog-post-topics {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
}

.blog-post-topics__heading {
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 20px;
  white-space: nowrap;
  color: #000;
}

.blog-post-topics__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-post-topics__list-item {
}

.blog-post-topics__link {
  font-size: 1.125rem;
  text-decoration-line: underline;
  color: #b41e4a;
}

@media screen and (min-width: 768px) {
  .blog-post-topics {
    flex-direction: row;
    margin-top: 130px;
    align-items: flex-start;
  }

  .blog-post-topics__heading {
    margin: 0 30px 0 0;
  }
}

@media (min-width: 1200px) and (max-width: 1699px) {
  .blog-post-topics {
    max-width: 50%;
    max-height: 28px;
  }
}

/* Hiding Blog Post form for now. As per PM */
.blog-post-wrapper .blog-post__form{
  display: none;
}

@media screen and (max-width: 1199px) {
  .blog-post-wrapper .blog-post__form {
    position: static;
    width: unset;
    margin: 40px 0;
    padding: 20px;
  }
}

@media (min-width: 1200px) and (max-width: 1699px) {
  .blog-post-wrapper .blog-post__form {
    left: unset;
    right: 0;
    bottom: 53px;
    width: 50vw;
    transform: translateX(0);
  }
}

.blog-post-wrapper .related-articles {
  margin-top: 80px;
  margin-bottom: 150px;
}

.blog-post-wrapper .related-articles__heading {
  margin: 0 0 40px;
}

.blog-post-wrapper .related-articles .blog-listing__item {
  box-shadow: 0px 4px 20px rgba(13, 34, 63, 0.15);
}

.blog-post-wrapper .related-articles .blog-listing__image {
  height: 260px;
}


/* Sections

*/

.homepage-hero {
  background: rgb(226, 226, 226);
  background: linear-gradient(
    360deg,
    rgba(238, 238, 238, 1) 0%,
    rgba(238, 238, 238, 1) 45%,
    rgba(255, 255, 255, 1) 45%,
    rgba(255, 255, 255, 1) 100%
  );
}

.homepage-hero__banner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  /* width: 80%; */
  width: 100%;
  height: 100%;
  background-color: #ccc;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0px 0px 180px 0px;
}

.homepage-hero .content-wrapper {
  position: relative;
  height: 496px;
}

.homepage-hero__content {
  position: relative;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.homepage-hero__heading {
  margin: 0 0 18px;
  font-weight: 600;
  font-size: clamp(38px, 2.5vw, 60px);
  color: #ffffff;
}

.homepage-hero__subheading {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .homepage-hero__banner {
    width: 120%;
  }
  .homepage-hero__content {
    max-width: 50%;
  }
}