






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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}



/* CSS variables */

:root {
  --column-gap: 2.13%;
}

/* Mobile layout */

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

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

/* Desktop layout */

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

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

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

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

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

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

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

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

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

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

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

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}
.dnd_area-row-3-margin {
  margin-top: 0 !important;
}

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

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

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




body {
    color: #48525B;
    background: #fff;
    font: 16px/1.4  "aktiv-grotesk", avenir, Calibri, sans-serif;
    min-width: 320px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    color: #041E42;
  }
h1 {
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: left;
  color: #041E42;
}
h2 {
  font-size: 36px;
  margin: 24px 0;
  font-weight: 400;
}

h3 {
    font-size: 30px;
    margin: 16px 0;
  font-weight: 400;
}
h4, h5 {
  font-size: 24px;
  font-weight: 400;
}

.interior-hero h1,
.interior-page-header h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -.01em;
    line-height: 1.2;
    text-align: left;
}

a {
 color: #009BD2;
  text-decoration: none;
  font-weight: 700;
}
a:hover {
 color: #97a3ae;
}

@media screen and (max-width: 1600px) {
  body {
    color: #48525B;
    background: #fff;
    font: 16px/1.25 "aktiv-grotesk", avenir, Calibri, sans-serif;
    min-width: 320px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
  h1, h2, h3, h4, h5, h6 {
    color: #041E42;
  }
.interior-hero h1,
.interior-page-header h1 {
    color: #fff;
    font-size: 40px;
    line-height: 48px;
  }
}



html {
  scroll-behavior: smooth;
}
.header-container-wrapper {
  position: fixed !important;
  width: 100vw;
  top: 0;
  background: #fff;
  z-index: 9999;
  box-shadow: 0px 1px 10px 5px rgba(1, 1, 1, 0.08);
  -webkit-transition: all ease-out .2s;
  -moz-transition: all ease-out .2s;
  -o-transition: all ease-out .2s;
  transition: all ease-out .2s;
}
.event-lp .header-container-wrapper {
  position: absolute !important;
  top: 5px;
}
.header {
  padding: 0 60px;
}
.logo-block .logo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
}
.toplogo {
    display: flex !important;
    align-self: center;
}
  .logo img {
    width: 55px !important;
    padding-top: 20px;
}
.tagline {
   height: 68px;
    font-weight: bold;
    font-size: 12px;
  padding-left: 10px;
  line-height: 3;
  white-space: nowrap;
}
.seismic .tagline,
.wind .tagline,
.well-data .tagline,
.solar .tagline,
.carbon .tagline
 {
  display: none;
}
.seismic .logo:after {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons-header/tagline-icon-seismic.png);
    background-position: 50%;
    background-size: contain;
    content: "";
    height: auto;
    left: 5px;
    position: relative;
    top: -3px;
    width: 160px;
    height: 87px;
    background-repeat: no-repeat;
}
.wind .logo:after {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons-header/tagline-icon-wind.png); 
    background-position: 50%;
    background-size: contain;
    content: "";
    height: auto;
    left: 5px;
    position: relative;
    top: -3px;
    width: 160px;
    height: 87px;
    background-repeat: no-repeat;
}
.well-data .logo:after {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons-header/tagline-icon-well-data.png); 
    background-position: 50%;
    background-size: contain;
    content: "";
    height: auto;
    left: 5px;
    position: relative;
    top: -3px;
    width: 160px;
    height: 87px;
    background-repeat: no-repeat;
}
.solar .logo:after {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons-header/tagline-icon-solar.png); 
    background-position: 50%;
    background-size: contain;
    content: "";
    height: auto;
    left: 5px;
    position: relative;
    top: -3px;
    width: 160px;
    height: 87px;
    background-repeat: no-repeat;
}
.carbon .logo:after {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons-header/tagline-icon-carbon.png); 
    background-position: 50%;
    background-size: contain;
    content: "";
    height: auto;
    left: 5px;
    position: relative;
    top: -3px;
    width: 160px;
    height: 87px;
    background-repeat: no-repeat;
}

.row-fluid .header-menu-products {
    display: flex;
    justify-content: flex-end;
}
.header-menu-products a {
  color: #161616;
}
.header-menu-products .nav-button a:hover {
  background: #041E42;
  font-weight: 900;
}
.header-menu-products {
  position: relative;
}
.header-menu-products a {
  font-size: 16px;
  font-weight: 400;
}
.header-menu-products .hs-menu-wrapper ul {
    padding: 0
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    list-style: none;
    margin: 0
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul {
    display: inline-block;
    margin-top: 16px;
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul:before {
    content: " ";
    display: table
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul:after {
    content: " ";
    display: table;
    clear: both
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1 {
    float: left
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    display: inline-block;
    padding: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none
}
.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-2:first-child {
  border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-2:last-child {
  border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children {
    position: relative;
    margin-top: -2px;
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .4s;
    position: absolute;
    z-index: 10;
    left: 0
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 180px;
    top: 0
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children:hover>ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible
}
.header-menu-products a.nav-button {
  background: #041E42;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  padding: 8px 16px !important;
  margin-top: 8px;
}
.header-menu-products ul.hs-menu-children-wrapper {
  background: #fff;
  text-align: left;
  width: 290px;
}
.header-menu-products li.hs-menu-item.hs-menu-depth-2.hs-item-has-children {
  background: #fff;
}
.header-menu-products .hs-menu-children-wrapper a {
  color: #6E828D;
  padding: 6px 16px !important;
}
.header-menu-products li.hs-menu-item.hs-menu-depth-2:hover {
  background: #E6EBED;
}
.header-menu-products .hs-menu-children-wrapper a:hover {
    color: #161616 !important;
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
  left: 285px;
  top: 0;
  display: none;
}
.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .4s;
  position: absolute;
  z-index: 10000;
  left: 0;
  display: none;
}
.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children:hover ul.hs-menu-children-wrapper {
  display: block;
  visibility: visible;
  opacity: 1;
  border-radius: 8px;
}
.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children:hover ul.hs-menu-children-wrapper {
  display: block;
}
.header-menu-products li.hs-item-has-children.hs-menu-depth-3 ul.hs-menu-children-wrapper {
  display: none !important;
}
.header-menu-products li.hs-item-has-children.hs-menu-depth-3:hover ul.hs-menu-children-wrapper {
  display: block !important;
}
.header-menu-products li a {
  white-space: normal !important;
}
.header-menu-products span.nolink {
  cursor: default;
}
.header-menu-products i.fab.fa-linkedin-in {
  color: #041E42;
  padding: 4px;
  border-radius: 4px;
  margin-top: -3px;
}
.header-menu-products .hs-item-has-children > a:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  margin-left: 4px;
  font-weight: 900;
}
.header-menu-products .hs-menu-depth-2.hs-item-has-children:hover > a:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  margin-left: 4px;
  font-weight: 900;
}

ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-3 a {
  white-space: normal !important;
}

ul.hs-menu-children-wrapper li.hs-menu-depth-3 a {
    margin: 0 !important;
}
/* Override max width on menu links */
.custom-menu-primary .hs-menu-wrapper > ul li a, .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a .custom-menu-primary .hs-menu-wrapper > ul li a, .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    overflow: visible !important;
    max-width: none !important;
    width: auto !important;
}

.top-search .hs-button {
    display: none;
  }
.search-box {
    position: relative;
    top: -2px;
}
  .top-search.mobile {
    display: none;
  }
  .top-search.mobile.open {
    display: flex;
    position: relative;
    top: -78px;
    margin-bottom: -78px;
    right: 35px;
    justify-content: flex-end;
  }
.top-search {
    width: 500px;
  }
  .top-search input#hs-site-search {
    border-radius: 0 !important;
    background: #002d4c !important;
    color: rgba(255, 255, 255, .55) !important;
    border: 1px solid #002d4c !important;
    height: 60px;
  }
  input#hs-site-search::placeholder, input#hs-site-search-mobile::placeholder {
    color: rgba(255, 255, 255, .55) !important;
  }
  
  input#hs-site-search-mobile {
    align-self: flex-end;
    background: #fff;
    border: 1px solid #6e828d;
    border-radius: 8px;
    color: #6e828d;
    height: 56px;
    position: relative;
    top: 0;
    transition: all 1s;
    width: 500px;
    max-width: 100%;
}
.fa-search.open:before {
    content: "X";
    font-family: sans-serif;
}
/* Fix menu disappearing on desktop after toggling mobile menu */
@media screen and (min-width:1301px) {
  .custom-menu-primary .hs-menu-wrapper {
    display: block !important;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
    max-width: 100%;
    padding-right: 7px;
    padding-left: 7px;
    padding-top: 13px;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    margin-bottom: 15px;
  }
}
/* ==========================================================================
      Mobile Menu - Hubspot Standard Toggle Menu
      ========================================================================== */
/**
    * Special Note
    *
    * When the menu is open, a class of .mobile-open is applied to the body. You can 
    * use this for custom styling on any element when the menu is in the open position.                     
    */
.mobile-trigger, .child-trigger {
  display: none; /* Hide button on Desktop */
}
.row-fluid .menu-mobile {
  display: none;
}
.mobile-toolbox-container {
  display: none;
}
@media (max-width: 1350px) {

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
    margin: 14px 0;
    padding: 10px 8px;
}
}
@media (max-width: 1140px) {
  .header {
    padding: 0;
  }
  .custom-menu-primary, .custom-menu-primary .hs-menu-wrapper > ul, .custom-menu-primary .hs-menu-wrapper > ul li, .custom-menu-primary .hs-menu-wrapper > ul li a {
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: transparent;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1;
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
    overflow-y: auto;
    max-height: 100vh;
  }
  .mobile-open .custom-menu-primary, .mobile-open .custom-menu-primary .hs-menu-wrapper > ul {
    background: #fff;
  }
  .header-menu-products {
    display: none !important;
  }
  .mobile-toolbox-container {
    display: flex;
    flex-direction: row;
    width: 54px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .seismic .logo:after,
  .well-data .logo:after,
  .wind .logo:after,
  .solar .logo:after,
  .carbon .logo:after {
    height: 60px;
  }
  .contact-icon {
    position: relative;
    z-index: 3;
    top: 15px;
    right: 10px;
}
   input#hs-site-search-mobile {
    align-self: flex-end;
    background: #fff;
    border: 1px solid #6e828d;
    border-radius: 8px;
    color: #000;
    height: 30px;
    position: absolute;
    top: 80px;
    transition: all 1s;
    width: 80%;
    right: 0;
}
  /* Toggle Button
        ========================================================================== */
  .mobile-trigger {
    display: inline-block !important; /* Show button on mobile */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute; /*******************************************/
    top: 25px; /* Position Button at right of screen  */
    left: 10px; /*******************************************/
    width: auto; /* Button width */
    max-width: 50px;
    height: auto; /* Button height */
    padding: 7px 10px 8px 10px;
    background: transparent; /* Background color */
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #000;
  }
  .mobile-trigger:hover {
    text-decoration: none; /* Removes link text underline on button */
    color: #fff;
    background-color: transparent;
    border-color: transparent;
  }
  /* Change button when menu is open */
  .mobile-open .mobile-trigger {
    right: 16px;
  }
  /* Toggle Button Icon
        ========================================================================== */
  .mobile-trigger i {
    display: inline;
    position: relative;
    top: -4px;
  }
  .mobile-trigger i:before, .mobile-trigger i:after {
    position: absolute;
    content: '';
    transition: ease all 0.4s;
  }
  .mobile-open .mobile-trigger i {
    visibility: hidden;
  }
  .mobile-open .mobile-trigger i:before {
    transform: rotate(-45deg);
    top: 0px;
    opacity: 1;
    visibility: visible;
  }
  .mobile-open .mobile-trigger i:after {
    transform: rotate(45deg);
    top: 0px;
    visibility: visible;
  }
  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after {
    width: 22px; /* Icon line width */
    height: 2px; /* Icon line height */
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: #161616; /* Icon color */
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #14385f;
  }
  .mobile-trigger i:before {
    top: -7px; /* Position top line */
  }
  .mobile-trigger i:after {
    top: 7px; /* Position bottom line */
  }
  .mobile-trigger:hover i, .mobile-trigger:hover i:before, .mobile-trigger:hover i:after, .mobile-open .mobile-trigger i, .mobile-open .mobile-trigger i:before, .mobile-open .mobile-trigger i:after {
    background-color: #14385f; /* Icon color */
  }
  /* Child Toggle Button
        ========================================================================== */
  .child-trigger {
    display: block !important; /* Hide button on Desktop */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55px !important; /* Button width */
    min-width: 55px !important;
    height: 53px !important; /* Button height */
    padding: 0 !important;
  }
  .child-trigger:hover {
    text-decoration: none;
  }
  .child-trigger i {
    position: relative;
    top: 50%; /* Centers icon inside button */
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .child-trigger i:after {
    position: absolute;
    content: '';
  }
  .child-trigger i, .child-trigger i:after {
    width: 10px; /* Icon line width */
    height: 1px; /* Icon line height */
    background-color: #000 ; /* Icon color */
    display: block;
  }
  .child-trigger i:after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .child-trigger.child-open i:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .child-trigger.child-open i {}
  /* Menu Styles on Mobile Devices
     ========================================================================== */
  .custom-menu-primary.js-enabled {}
  /* Hide menu on mobile */
  .custom-menu-primary.js-enabled .hs-menu-wrapper, .custom-menu-primary.js-enabled .hs-menu-children-wrapper {
    display: none;
  }
  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper {
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
  }
  /* Mobile Menu Styles */
  .custom-menu-primary.js-enabled .hs-menu-wrapper {
    width: 100%;
    position: relative; /**************************************************************/
    top: 0; /* Positions the menu to drop from the very top of the screen */
    left: 0; /**************************************************************/
    padding: 0;
    overflow: visible !important;
  }

  /* Level 1 Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    position: relative;
    background: #fff;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li a {
    font-size: 18px; /* Font size of top level list items */
    line-height: 18px;
    overflow: visible;
    display: block;
    padding: 16px 80px 18px 18px !important;
    font-weight: 300;
    color: #161616;
    margin-top: -1px;
  }
  .hs-menu-wrapper > ul > li > a {
    display: block;
    padding: 16px 80px 18px 18px;
  }
  /* Level 1 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul li {
    
  }
  /* Level 2 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul li a {
    font-size: 16px; /* Font size of child lists */
  }
  /* Level 3 and Higher Menu List Styles */
  .custom-menu-primary li.hs-menu-item.hs-menu-depth-4 a:before {
    content: "\25AA";
    color: #00aaab;
    padding-right: 10px;
    ;
  }
  .custom-menu-primary li.hs-menu-item.hs-menu-depth-4 a {
    text-transform: capitalize;
    padding-bottom: 10px !important;
  }
  .row-fluid .toplogo {
    padding: 5px 20px;
    float: left;
  }
  .row-fluid .hs-menu-wrapper.hs-menu-flow-horizontal > ul ul li a:hover {
    color: #041E42 !important;
  }
  .row-fluid .topright {
    margin-left: auto;
    float: left;
  }
  .row-fluid .search-box {
    cursor: pointer;
    position: relative;
    top: 10px;
    transition: background .3s ease;
    right: 15px;
    z-index: 5;
  }
  .row-fluid .header-menu {
    z-index: 9999;
    display: none;
  }
  .row-fluid .header-menu ul li {
    position: static !important;
  }
  .row-fluid .header-menu ul li.hs-menu-item.hs-menu-depth-1 a:before {
    display: none;
    position: absolute;
    content: '';
    top: -45px;
    left: 40px;
    height: 45px;
    width: calc(100% - 25px);
    background: #ebebeb;
    -webkit-transform: skew(-46deg);
    -ms-transform: skew(-46deg);
    transform: skew(-46deg);
  }
  .row-fluid .header-menu ul li a:after {
    display: none;
    position: absolute;
    content: '\f054';
    top: 19px;
    right: 8px;
    color: #818486;
    font-size: 11px;
    line-height: 1.2;
    font-family: fontawesome;
    font-weight: 300;
  }
  .row-fluid .header-menu ul li.hs-menu-item.hs-menu-depth-1:hover a:before {
    display: block;
  }
  .row-fluid .header-menu ul li.hs-menu-item.hs-menu-depth-1:hover a {
    color: #00aaab;
  }
  .row-fluid .header-menu ul li.hs-menu-item.hs-menu-depth-1.active a:before {
    display: block;
  }
  .row-fluid .header-menu ul li.hs-menu-item.hs-menu-depth-1 a.btn-white {
    color: #fff;
  }
  .row-fluid .header-menu ul li.hs-menu-item.hs-menu-depth-1 a.btn-white:before {
    background: #00aaab;
    transform: none;
    left: 0;
    top: 0;
    width: 0;
    display: block;
  }
  .row-fluid .header-menu ul li.hs-menu-item.hs-menu-depth-1 a.btn-white:hover:before {
    width: 100%;
  }
  li.hs-menu-item.hs-menu-depth-2.hs-item-has-children {
    position: relative;
  }
  .row-fluid .header-menu li.hs-menu-item.hs-menu-depth-2.hs-item-has-children a:hover {
    color: #f9a01f !important;
  }
  

 body.mobile-open {
    overflow: hidden !important;
  }
  .row-fluid .menu-text {
    display: none;
  }
  .row-fluid .header-menu {
    display: none !important;
  }
  .row-fluid .menu-mobile {
    display: block;
  }
  .row-fluid .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
    padding: 5px 20px 5px 10px;
  }
  .header > .row-fluid-wrapper > .row-fluid {
    justify-content: space-between;
  }
  .row-fluid .toplogo {
    width: 100%;
    position: relative;
    left: 40px;
    max-width: 350px;
  }
  .row-fluid .topright {
    width: auto;
    display: flex;
    align-items: center;
  }

}
@media(max-width:767px) {
  .row-fluid .header-section {
    padding: 58px 20px;
  }
}
@media (min-width: 1300px) {
  .header-menu .hs-menu-wrapper a {
    color: rgb(23, 171, 171) !important;
  }
}
/* Fix dropdown menu position on desktop*/
@media (min-width: 1300px) {
  .header-menu .hs-menu-depth-1 > a {
    padding-bottom: 10px;
  }
	}

@media (max-width:1600px) {
    .header-menu-products .row-fluid .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li > a {
      display: block;
      padding: 16px;
    }
  .header-menu-products a {
    font-size: 14px;
    font-weight: 400;
}
  }

@media (min-width:1140px) and (max-width:1300px) {
    .header-menu-products a {
		display: block;
		font-size: 14px;
		font-weight: 400;
		padding: 16px 4px;
    }
  .span9.widget-span.widget-type-cell.topright {
    margin-left: 8px;
}
  }
@media (max-width:767px) {
      .row-fluid .header-section {
        padding-left: 20px;
        padding-right: 20px;
      }
  #overlayText.container {
       padding: 20px;
  }
}
@media (max-width:600px) {
.row-fluid .toplogo {
    width: 100%;
    position: relative;
    left: 40px;
    max-width: 250px;
  }
 .logo img {
        max-width: 45px;
        width: 45px;
    }
 .tagline {
     height: 60px;
}
}


/* Transparent Header Overrides */
.transparent-header .header-container-wrapper {
  background: transparent;
  box-shadow: none;
}
.transparent-header .logo img, .transparent-header .mobile-toolbox-container img {
    filter: brightness(0) invert(1);
}
.transparent-header .tagline {
  color: #fff;
}
.transparent-header .header-menu-products .hs-menu-depth-1 a {
  color: #fff;
}
.transparent-header .header-menu-products .hs-menu-depth-2 a {
  color: #161616;
}
.transparent-header .header-menu-products i.fab.fa-linkedin-in {
  color: #fff;
  padding: 4px;
  border-radius: 4px;
}
.transparent-header .header-menu-products a.nav-button {
  background: #fff;
  color: #003660;
  border-radius: 50px;
  font-weight: 600;
  padding: 8px 16px;
}
.transparent-header .mobile-trigger {
  color: #fff;
}
.transparent-header .mobile-trigger i, .transparent-header  .mobile-trigger i:after, .transparent-header  .mobile-trigger i:before{
  background: #fff;
}
#footer {
    float: left;
    width: 100%;
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
}
.footer-holder {
    padding: 0 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer-holder .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 12px;
    line-height: 1;
    color: #415058;
    margin: 0 -8px 0 0;
}
.footer-holder .menu li {
    padding: 0 8px 0 0;
  list-style: none;
}
.footer-holder .menu li a {
  color: #041E42;
  text-decoration: none;
    font-weight: 400;
}
.footer-holder .menu li:hover {
  color: #00aaab;
}
li.aw-icon-social {
    float: left;
    margin: 0 6px;
    color: #041E42;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    width: 45px;
    height: 45px;
  list-style: none;
}
li.aw-icon-social i.fa,
li.aw-icon-social i.fa-brands {
    color: #041E42;
    font-size: 20px;
    position: relative;
    top: -3px;
}
li.aw-icon-social i.fa-brands {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
  font-weight: 900;
}
/* Cookie Policy */
.cookie-popup.show {
  display: block;
}
.cookie-popup {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 90%;
  z-index: 99;
  display: none;
  animation: fade-in-top ease 1.5s forwards;
  -webkit-transition: all .3s;
  -o-transition: all 1s;
  transition: all 1s;
}
.cookie-popup .txt-content {
  position: relative;
  padding: 30px 50px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.cookie-popup .txt-content:after {
  content: '';
  position: absolute;
  right: 100%;
  bottom: 0;
  background: rgba(103, 26, 85, .93);
  height: 100%;
  width: 120%;
  -webkit-transform: skew(-45deg) translateX(-50%);
  -ms-transform: skew(-45deg) translateX(-50%);
  transform: skew(-45deg) translateX(97%);
  z-index: -1;
}
.cookie-popup .txt-content h4 {
  font-weight: bold;
  margin-bottom: 5px;
}
.cookie-popup .txt-content p {
  margin-bottom: 0;
  font-size: 16px;
}
.cookie-popup .txt-content a:not(.close-btn) {
  color: #fff;
}
.cookie-popup .close-btn {
  position: absolute;
  right: 45px;
  top: -10px;
  background: #fff;
  color: #17abab;
  overflow: hidden;
  border-radius: 100%;
  padding: 2px 5px;
  line-height: 1;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
.cookie-popup .btn span {
  position: relative;
  z-index: 2;
  color: #fff;
}
.cookie-popup .btn:before {
  z-index: 1;
}
.cookie-popup .txt-wrapper {
  padding-right: 30px;
}
.cookie-popup .btn-content {
  -ms-flex: 1 0 auto;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (max-width: 1280px) {
  .cookie-popup {
    width: 85%;
  }
}
@media (max-width: 1024px) {
  .cookie-popup {
    width: 80%;
  }
  .cookie-popup .txt-content {
    padding-left: 90px;
  }
  .cookie-popup .txt-content p {
    font-size: 15px;
    line-height: 1.3;
  }
  .footer-holder {
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  .cookie-popup {
    width: 100%;
  }
  .cookie-popup .txt-content {
    display: block;
    padding: 30px 40px;
  }
  .cookie-popup .txt-content p {
    margin-bottom: 15px;
  }
  .cookie-popup .txt-content:after {
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    right: auto;
    left: 0;
  }
  .cookie-popup .txt-wrapper {
    padding-right: 0;
  }
  .cookie-popup .close-btn {
    right: 25px;
  }
}
@media (max-width:1080px) {
  .row-fluid .footer-section {
    padding-left: 26px;
    padding-right: 26px;
  }
  .row-fluid .footer-slider-section {
    margin: 0;
    padding-bottom: 91px;
  }
  .row-fluid .footer-section:before {
    left: -76px;
  }
}
@media(max-width:767px) {

  .row-fluid .footer-section {
    padding: 20px 20px 16px 20px;
  }
  .footer-holder .menu {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
  .footer-holder .menu li {
    list-style: none;
    padding: 8px;
    text-align: center;
}
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper.mega-menu-container {
  width: 950px;
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
}
.meganarrow .header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper.mega-menu-container {
  width: 750px;
}
.meganarrow .header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper.mega-menu-container.technology {
  width: 400px;
}
.meganarrow .header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper.mega-menu-container.data-library {
    width: 860px;
}
.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children:hover ul.hs-menu-children-wrapper.mega-menu-container {
    display: flex !important;
}
.mega-menu-container .col-1, .mega-menu-container .col-2 {
    width: calc(50% - 10px);
  flex-direction: column;
  padding: 0 16px;
}
ul.hs-menu-children-wrapper.mega-menu-container:before {
    content: 'Data & Insights';
    display: block;
    flex-basis: 100%;
  font-weight: 700;
    margin-bottom: 32px;
    border-bottom: 1px solid #F5F8F9;
    padding: 8px 16px;
}
ul.hs-menu-children-wrapper.mega-menu-container.technology {
  padding: 0 16px;
}
ul.hs-menu-children-wrapper.mega-menu-container.technology:before {
    content: 'Technology';
}
ul.hs-menu-children-wrapper.mega-menu-container.data-library {
  padding: 0 16px;
}
ul.hs-menu-children-wrapper.mega-menu-container.data-library:before {
    content: 'Data Library';
}

span.short-desc {
    padding: 0 16px;
    display: block;
}

.mega-menu-container li.hs-menu-depth-2 {
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.mega-menu-container .text-container {
    margin-left: 60px;
}
.mega-menu-container .text-container:hover {
  cursor: pointer;
}
.mega-menu-container li span.short-desc {
  margin-left: auto;
  margin-right: 10px;
  font-size: 14px;
  margin-bottom: 8px;
}
.mega-menu-container li.hs-menu-depth-2 .text-container:before {
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
    content: "";
    height: 50px;
    left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
}


.mega-ad-slot {
    width: 100%;
    background: #f5f8f9;
    color: #041E42;
    border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
    padding:0 16px;
  position: relative;
  pointer-events: all;
}
.mega-ad-slot a {
    color: #041E42 !important;
      width: 100%;
}
.mega-ad-slot a:hover {
    color: #fff !important;
}
.mega-ad-slot:hover {
    width: 100%;
    background: #041E42;
    color: #f5f8f9;
}

.mega-ad-slot:after {
    content: '\f0da';
  font-family: FontAwesome;
  color: #041E42;
    position: absolute;
    right: 20px;
  top: 40%;
}
.mega-ad-slot:hover:after {
  color: #fff;
}
.header-menu-products .hs-menu-children-wrapper .mega-ad-slot a {
    color: #041E42 !important;
}
.header-menu-products .hs-menu-children-wrapper .mega-ad-slot a:hover {
    color: #fff !important;
}
.mega-menu-container li.seismic-link .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/seismic-icon-24.svg);
}
.mega-menu-container li.well-data-link .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/well-data-icon-24.svg);
}
.mega-menu-container li.wind-link .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/wind-icon-24.svg);
}
.mega-menu-container li.solar-link .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/solar-icon-24.svg);
}
.mega-menu-container li.carbon-link .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/carbon-icon-24.svg);
}

.mega-menu-container li.acquisition-link .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/acquisitions_reversed.png);
}
.mega-menu-container li.imaging-link .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/imaging_reversed.png);
}
.mega-menu-container li.digital-link .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/digital_reversed.png);
}

.mega-menu-container li.interactive-map-link .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/data-library-menu_interactive-map_icon.png);
}
.mega-menu-container li.data-regions-link .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/data-library-menu_data-regions_icon.png);
}
.mega-menu-container li.mc-hotspots-link .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/data-library-menu_multiclient-hotspot_icon.png);
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.seismic-link.hs-item-has-children ul.hs-menu-children-wrapper {
    position: relative;
}
.hs-menu-depth-2.seismic-link:hover ul.hs-menu-children-wrapper {
   display: flex !important;
  left: 60px !important;
  background: transparent;
  flex-direction: row;
  flex-wrap: wrap;
  width: calc(100% - 60px);
}
.mega-menu-container li.seismic-link.hs-menu-depth-2:hover .text-container:before {
  top: 19.8%;
  background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/seismic-icon-24-hover.svg);
}
.data-insights.mega-menu-container li.seismic-link.hs-menu-depth-2:hover .text-container:before {
  top: 50%;
}
.mega-menu-container li.well-data-link:hover .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/well-data-icon-24-hover.svg);
}
.mega-menu-container li.wind-link:hover .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/wind-icon-24-hover.svg);
}
.mega-menu-container li.solar-link:hover .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/solar-icon-24-hover.svg);
}
.mega-menu-container li.carbon-link:hover .text-container:before {
    background-image: url(//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/carbon-icon-24-hover.svg);
}
 .mega-menu-container li.acquisition-link:hover .text-container:before {
    opacity: 0.4;
}

.mega-menu-container li.imaging-link:hover .text-container:before {
    opacity: 0.4;
}

.mega-menu-container li.digital-link:hover .text-container:before {
    opacity: 0.4;
}
.mega-menu-container li.interactive-map-link:hover .text-container:before {
    opacity: 0.4;
}
.mega-menu-container li.data-regions-link:hover .text-container:before {
    opacity: 0.4;
}
.mega-menu-container li.mc-hotspots-link:hover .text-container:before {
    opacity: 0.4;
}
.hs-menu-depth-2.seismic-link ul.hs-menu-children-wrapper li {
  flex-basis: 50%;
}
.seismic-link ul.hs-menu-children-wrapper li.hs-menu-depth-3 a {
   font-size: 14px;
  padding: 8px !important;
}
.mega-menu-container li.hs-menu-item.hs-menu-depth-2:hover {
    background: #f5f8f9;
    border-radius: 16px !important;
}

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

.mega-menu-container .text-container {
    margin-left: 60px;
}
  }
/* MegaMenu Adjustments
--------------------------------------
This section styles the Mega Menu with responsive adjustments for various viewports.
-------------------------------------- */

.meganarrow .header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper.mega-menu-container.data-library {
    width: 900px;
    overflow: hidden;
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    display: flex !important;
    left: 0;
    flex-direction: column;
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children.data-regions-link ul.hs-menu-children-wrapper,
.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children.mc-hotspots-link ul.hs-menu-children-wrapper {
    display: flex !important;
    left: 65px;
    top: 100px;
    width: 100%;
  flex-direction: row;
}
.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children.mc-hotspots-link ul.hs-menu-children-wrapper {
     top: 84px;
}

.data-library .col-1 {
    min-height: 440px;
    width: calc(40% - 10px);
}

.data-library .col-2 {
    width: calc(60% - 10px);
}

.mega-menu-container.data-library li span.short-desc {
    font-size: 14px;
    margin-bottom: 8px;
    margin-left: auto;
    margin-right: 0;
}

span.short-desc {
    display: block;
    padding: 0 8px 0 16px;
}

.hs-menu-children-wrapper .subcol {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    padding: 0;
}

.transparent-header .header-menu-products .hs-menu-depth-3 a {
    color: #48525B;
}

.header-menu-products .hs-menu-children-wrapper .subcol a:hover {
    color: #009BD2 !important;
}

.header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper.data-library li.hs-menu-depth-3 a:after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    margin-left: 4px;
    font-weight: 900;
}

li.hs-menu-item.hs-menu-depth-3 a {
    font-weight: 400;
}

.mega-menu-container li.hs-menu-depth-2 .text-container:before {
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
    content: "";
    height: 50px;
    left: 10px;
    position: absolute;
    top: 0;
    width: 50px;
    transform: translateY(10%);
}

ul.hs-menu-children-wrapper.mega-menu-container:before {
    border-bottom: 1px solid #f5f8f9;
    content: "Data & Insights";
    display: block;
    flex-basis: 100%;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 8px 16px;
    font-size: 20px;
}
.data-insights.mega-menu-container li.seismic-link.hs-menu-depth-2:hover .text-container:before {
    top: 0;
}
.header-menu-products .hs-menu-depth-2 a {
    color: #161616 !important;
    font-weight: bold;
    margin-top: 0 !important;
}

.header-menu-products .hs-menu-depth-3 a {
    font-weight: normal;
}

/* Responsive Adjustments (max-width: 1350px) */
@media (max-width: 1350px) {
    .header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
        margin: 14px 0 0;
        padding: 10px 8px;
    }

    .header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children.data-regions-link ul.hs-menu-children-wrapper,
    .header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children.mc-hotspots-link ul.hs-menu-children-wrapper {
        top: 95px;
        left: 60px;
    }

    .meganarrow .header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper.mega-menu-container.data-library {
        width: 750px;
    }

    .meganarrow .header-menu-products .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper.mega-menu-container {
        width: 670px;
    }

    .data-library .col-1 {
        min-height: 440px;
        width: calc(45% - 10px);
    }

    .data-library .col-2 {
        min-height: 440px;
        width: calc(55% - 10px);
    }
}
/* End MegaMenu Adjustments */
.blog-post .main-column {
  margin-bottom: 80px;
}
.search-form-articles input[type=text] {
    margin-bottom: 0!important;
    min-width: 360px;
}
.search-form-articles button[type=submit] {
    margin-left: 0.5em;
    margin-top: 0!important;
    display: none;
}
.blog-post-header h1 {
  text-align: center;
}
.post-header .post-item-content {
    width: 100%;
}
.blog-content .row-fluid,
.blog-post .main-column .row-fluid,
.blog-post .main-column .row-fluid-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2%;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
}
span#hs_cos_wrapper_post_body {
  max-width: 100%;
}
.blog-post .body-container {
    max-width: 1440px;
    margin: 0 auto;
  padding: 0 2%;
}
.post-content {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.text-section {
    max-width: 1000px;
}
.text-section h1, .text-section p {
    color: #fff;
    text-align: center;
}
.post-item {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2%;
}
.pdf-link {
    margin: 32px 0;
}
.blog-post-header .pdf-link {
    margin: 32px auto;
    width: 160px;
    text-align: center;
}
.post-header {
    display: flex;
    gap: 16px;
  border-bottom: 1px solid #97A3AE;
  padding-bottom: 10px !important;
  margin-bottom: 40px;
  clear: both;
  min-height: 165px;
}
.well-intel .post-header {
  flex-direction: column;
}
.post-header-download {
  display: flex;
   flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.post-header-download h3,
.post-header-download h2 {
  flex: 0 0 85%;  
  text-align: center;
  font-size: 24px;
  text-align: left;
  margin: 0;
}

.post-header-download h3 a,
.post-header-download h2 a {
    color: #041E42 !important;
}

.post-item .feature-image img {
  max-width: 200px;
}
.well-intel .post-item .feature-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.author-tags {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    margin: 4px 0;
  gap: 8px;

}
.author-tags a {
  color: #009BD2;
}
.author-tag-post,
.author-tag-post a {
  font-weight: normal;
  color: #fff;
  font-size: 14px;
  position: relative;
  margin-bottom: 16px;
  display: inline-block;
  text-transform: capitalize;
}
.tech-tags {
  display: flex;
  gap: 5px;
}
.blog-post .breadcrumbs a  {
   color: #bbc1c3;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    text-transform: capitalize;
  margin-right: 16px;
}
.blog-post .breadcrumbs a:last-child {
    margin-right: 0;
}
.blog-post .breadcrumbs a:hover, 
.blog-post .breadcrumbs a:last-child {
    color: #009BD2;
}
.blog-post .breadcrumbs a:after {
    content: "\f105";
    font-family: FontAwesome;
    left: calc(100% + 7px);
    position: absolute;
    top: -3px;
}
.blog-post .breadcrumbs a:last-child:after {
    content: '';
}
.hs-blog-id-61063883017 .paper-summary {
  display: none;
}
.tech-links {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.blog-post-header {
  text-align: center;
  max-width: 1140px;
}
.blog-category {
  color: #fff;;
  display: inline-block;
  margin-bottom: 5px;
  text-align: center;
}
.blog-post .main-column img {
    max-width: 100% !important;
}

.tech-download.article-type,
.hs-blog-post-listing__post-button-wrapper.article-type {
  margin-bottom: 0;
  }
.tech-item .post-body {
    max-width: 75%;
}
.author-block .hs_cos_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}
.author-block h2,
.aside-feature h3 {
  margin: 0;
}
.press-releases .author-tag-post {
    display: none;
}
.author-block .hs_cos_wrapper .contact-list {
 flex-basis: 50%;
    flex-grow: 1;
    margin: 0 auto;
    text-align: center;
}
.author-block .img-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.author-block .hs_cos_wrapper .aside-feature {
    flex-basis: 50%;
    flex-grow: 1;
    margin: 0 auto;
    text-align: left;
    padding: 16px;
    background: rgba(245, 248, 249, 1) !important;
    border-radius: 16px;
}
.contact-list.aside-contact {
    background: #ffffff;
    padding: 16px;
    max-width: fit-content;
}
.aside-contact .contact-item {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    max-width: fit-content;
    flex-direction: column;
    margin: 0 auto;
}
.contact-list.aside-contact:before {
    content: "About The Author";
    font-size: 32px;
    width: 100%;
    display: block;
    text-align: left;
    margin-bottom: 10px;
}
.contact-image img,
.contact-list .contact-image img {
  max-width: 200px !important;
  border-radius: 100px;
}
.contact-details p.name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0px;
}
.aside-feature li {
    margin-bottom: 8px;
}
.financial-reports .post-listing {
    max-width: 1140px;
    margin: 0 auto;
}
.financial-reports .search-form-results .hs_row_ {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.financial-reports .post-item {
    width: 33%;
}
.financial-reports .post-item-content {
    display: flex;
    flex-direction: column;
}
.financial-reports .post-header-download h3,
.financial-reports .post-header-download h2 {
    flex: 100%;
    font-size: 24px;
    margin: 0;
    text-align: left;
}
.financial-reports .post-header.tech-item {
    border: none;
    background: #f2f2f2;
    padding: 16px;
    border-radius: 8px;
}

.financial-reports .author-tags {
    flex-direction: column !important;
    align-items: flex-start !important;
      flex-grow: 1;
}
.financial-reports .post-item-content {
    display: flex;
    flex-direction: column;
    min-height: 155px;
}
.filter-bar {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 2%;
}
.filter-bar select {
  width: 100%;
  border-radius: 8px;
  padding: 12px 16px;
  background: #f2f2f2;
  border: none;
}
.blog-pagination {
    margin: 0 auto 80px;
    text-align: center;
}

.blog-pagination__number-link {
  background-color: #f2f2f2;
  color: #041E42;
  border-radius: 4px;
  padding: 8px 18px;
  margin: 0 5px;
}
.blog-pagination__number-link:hover {
  background-color: #041E42;
  color: #fff;
}

.blog-pagination__link--active {
  background-color: #041E42;
  color: #fff;
}
.blog-pagination__link--active:hover {
  background-color: #041E42;
  color: #fff;
}
a.blog-pagination__link.blog-pagination__next-link {
    position: relative;
    top: 3px;
    left: 20px;
}
a.blog-pagination__link.blog-pagination__prev-link {
    position: relative;
    top: 3px;
    right: 20px;
}
@media (min-width: 992px) {
  .author-tags {
    flex-direction: row;
      max-width: 85%;
  }
}

.contain-img {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.tech-item img {
  margin-bottom: 4px !important;
}
.articles .tech-item .feature-image {
    max-width: 150px;
    float: left;
    margin-right: 10px;
    margin-bottom: 22px;
}

@media (max-width: 992px) {
  .post-header-download h3,
  .post-header-download h2{
    margin-bottom: 20px;
  }
  .tech-download a {
    border: 1px solid #00ABAB;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 4px;
    padding-bottom: 4px;
  }  
}

  .aw-tag-hag {
    margin-left: 12px;
    margin-right: 12px;
  }

.addthis-wrap {
  padding-top: 10px;
  margin-bottom: -22px;
}
@media (max-width: 768px) {
.tech-item .post-body {
    max-width: 100%; 
}
  .post-item .feature-image img {
    max-width: 100%;
}
  .post-header.tech-item {
    flex-direction: column;
}
  .post-header-download h3,
  .post-header-download h2 {
    flex: 1;
  }
  .financial-reports .post-item {
    width: 50%;
}
}
@media (max-width: 600px) {
  .financial-reports .post-item {
    width: 100%;
}
}
.button-container {
    display: block;
    margin: 24px 0px;
}
.button {
   background: #f5f8f9;
    border-radius: 100px;
    color: #041E42;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none!important;
    text-shadow: none!important;
    white-space: nowrap;
    display: flex;
    max-width: fit-content;
}
.span6 a.button {
    padding: 12px 16px;
    display: flex;
    max-width: fit-content;
}
.button:hover {
    background: #009BD2;
    color: #fff;
}
.button:active, 
.button:active,
.button:target {
  background: #009BD2;
  color: #fff;
}

.button.secondary {
    background: #041E42;
    color: #fff;
}

.button.secondary:hover {
    background: #009BD2;
    color: #fff;
}

.button.secondary:active, 
.button.secondary:active,
.button.secondary:target {
  background: #041E42;
  color: #fff;
}

.button.tertiary {
    background: #FFFFFF;
    color: #041E42;
  border: 2px solid rgba(7, 34, 69, 1)
}

.button.tertiary:hover {
  background: linear-gradient(0deg, #041E42, #041E42),
linear-gradient(0deg, #009BD2, #009BD2);
    color: #fff;
  border: 2px solid #041E42;
}

.button.tertiary:active, 
.button.tertiary:active,
.button.tertiary:target {
  background: linear-gradient(0deg, #041E42, #041E42),
linear-gradient(0deg, #146F72, #146F72);
  color: #fff;
}

.circle.button {
    align-items: center;
    background-color: #041E42;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    outline: none;
    overflow: hidden;
    padding: 10px 20px;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    width: 48px;
    margin: 0 auto;
    justify-content: center;
}
.circle.button:hover {
    background-color: #009BD2;
}
.circle.button:before {
  content: url('//2478981.fs1.hubspotusercontent-na1.net/hubfs/2478981/raw_assets/public/2023-tgs-main/images/icons/right-caret.svg');
    filter: invert(100%) sepia(16%) saturate(0%) hue-rotate(355deg) brightness(103%) contrast(103%);
    position: relative;
    top: 3px;
    width: 25px;    
}

.circle.button[aria-hidden] {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.button-container.right-align {
    text-align: right !important;
}
.right-align .button,
.right-align.button {
    margin: 0 0 0 auto;
    display: flex;
    justify-content: center;
    max-width: fit-content;
}
.left-align .button,
.left-align.button{
    margin: 0 auto 0 0;
    display: flex;
    justify-content: center;
    max-width: fit-content;
}
.center-align .button,
.center-align.button {
    margin: 0 auto;
    text-align: center;
    display: flex;
  justify-content: center;
}
.show-hide-link {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-align: left;
  text-decoration: none;
}

.button.triangle_right {
    background: none;
    padding: 0px 20px 0 0 !important;
    position: relative;
    text-align: left;
    max-width: 100% !important;
    justify-content: flex-start;
  color: #041E42;
}
.button-container.triangle-btn {
  margin: 12px 0;
}

/* Triangle using :after pseudo-element */
.triangle_right:after {
    content: "";
    position: absolute;
    right: 0;  /* Align to the right */
    top: 50%;  /* Center vertically */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8.7px;  /* Adjust size of the triangle */
    border-color: transparent transparent transparent #041E42;  /* Triangle color */
    transform: translateY(-50%);
}
/* Solar Buttons */

.solar .button,
.solar .pop-btn {
    background: #F9762B;
  color: #fff;
}
.solar .button:hover,
.solar .pop-btn:hover {
    background: #80A9C5;
    color: #041E42;
}
.solar .button:active,
.solar .button:target,
.solar .pop-btn:active,
.solar .pop-btn:target {
  background: #80A9C5;
  color: #041E42;
}

.solar .button.secondary,
.solar .pop-btn.secondary {
    background: #FCD67A;
    color: #fff;
}

.solar .button.secondary:hover,
.solar .pop-btn.secondary:hover {
    background: #80A9C5;
  color: #041E42;
}

.solar .button.secondary:active,
.solar .button.secondary:target,
.solar .pop-btn.secondary:active,
.solar .pop-btn.secondary:target {
  background: #80A9C5;
  color: #041E42;
}

.solar .button.tertiary,
.solar .pop-btn.tertiary {
    background: #FFFFFF;
    color: #041E42;
  border: 2px solid #041E42;
}

.solar .button.tertiary:hover,
.solar .pop-btn.tertiary:hover {
  background: #F9762B;
    color: #fff;
  border: 2px solid #F9762B;
}

.solar .button.tertiary:active,
.solar .button.tertiary:target,
.solar .pop-btn.tertiary:active,
.solar .pop-btn.tertiary:target {
  background: #F9762B;
    color: #fff;
  border: 2px solid #F9762B;
}

/* Carbon Buttons */

.carbon .button,
.carbon .pop-btn {
    background: #C3ED80;
  color: #041E42;
}
.carbon .button:hover,
.carbon .pop-btn:hover {
    background: #A4B8BF;
    color: #041E42;
}
.carbon .button:active,
.carbon .button:target,
.carbon .pop-btn:active,
.carbon .pop-btn:target {
  background: #A4B8BF;
  color: #041E42;
}

.carbon .button.secondary,
.carbon .pop-btn.secondary {
    background: #355B50;
    color: #fff;
}

.carbon .button.secondary:hover,
.carbon .pop-btn.secondary:hover {
  background: #A4B8BF;
  color: #041E42;
}

.carbon .button.secondary:active,
.carbon .button.secondary:target,
.carbon .pop-btn.secondary:active,
.carbon .pop-btn.secondary:target{
  background: #A4B8BF;
  color: #041E42;
}

.carbon .button.tertiary,
.carbon .pop-btn.tertiary {
    background: #FFFFFF;
    color: #041E42;
  border: 2px solid #041E42;
}

.carbon .button.tertiary:hover,
.carbon .pop-btn.tertiary:hover {
  background: #A4B8BF;
    color: #041E42;
  border: 2px solid #F9762B;
}

.carbon .button.tertiary:active,
.carbon .button.tertiary:target,
.carbon .pop-btn.tertiary:active,
.carbon .pop-btn.tertiary:target {
  background: #A4B8BF;
    color: #041E42;
  border: 2px solid #F9762B;
}
.wind .button.tertiary,
.wind .pop-btn.tertiary {
    background: #f7d45e;
    color: #041E42;
  border: 2px solid #f7d45e;
}
.wind .button.tertiary:hover,
.wind .pop-btn.tertiary:hover {
  background: #041E42;
    color: #f7d45e;
  border: 2px solid #041E42;
}
.wind .button.tertiary:active,
.wind .button.tertiary:target,
.carbon .pop-btn.tertiary:active,
.carbon .pop-btn.tertiary:target {
  background: #041E42;
    color: #f7d45e;
  border: 2px solid #041E42;
}
.interior-hero-wrapper {
  display: flex;
    position: relative;
    width: 100%;
    z-index: 1;
  min-height: 790px;
}
.interior-page-header h1 .interior-hero-wrapper h1,
.interior-hero .interior-hero-wrapper h1,
.interior-page-header .interior-hero-wrapper-1 h1,
.interior-hero .interior-hero-wrapper-1 h1 {
  color: #fff;
}

.interior-page-header .interior-hero-wrapper,
.interior-hero .interior-hero-wrapper,
.interior-page-header .interior-hero-wrapper-1,
.interior-hero .interior-hero-wrapper-1 {
  min-height: 550px;
  display: flex;
  align-items: center;
}
.interior-page-header .row-fluid,
.interior-hero .row-fluid {
  margin: 0 auto;
  max-width: 1440px;
  display: flex;
}

.interior-page-header .row-fluid .dnd-column:first-child,
.interior-hero .row-fluid .dnd-column:first-child {
    width: calc(60% - var(--column-gap)*.25);
}
.interior-page-header .row-fluid .dnd-column:nth-child(2),
.interior-hero .row-fluid .dnd-column:nth-child(2) {
    width: calc(40% - var(--column-gap)*.25);
}
.interior-hero-wrapper .span12.dnd-column {
    max-width: 1000px;
    margin: 0 auto;
}
.interior-hero-wrapper>.row-fluid:first-child,
.interior-hero-wrapper-1>.row-fluid:first-child {
    position: relative;
    z-index: 3;
}
.interior-hero-wrapper:after {
  content: "";
  display: inline-block;
  /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#22497B",endColorstr="#95B5DE00",GradientType=0); */
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #041E42 -19%, #041E42 201.5%);
  opacity: .8;
  z-index: 1;
}
.interior-hero-wrapper-1 { 
  background: linear-gradient(90deg, rgba(0,23,58,.8) -19%, rgba(0,23,58,.8) 201.5%);
}
.seismic .hero-gradient-overlay:after {
  background: linear-gradient(90deg, #041E42 -19%, #041E42 201.5%); /* standard syntax */
  opacity: .8;
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.solar .interior-hero-wrapper-1 { 
  background: linear-gradient(90deg, rgba(249,118,43,.8) -70%,transparent 137.5%);
  opacity: 1;
}

.solar .hero-gradient-overlay:after,
.solar .interior-hero-wrapper:after {
  background: linear-gradient(90deg, #F9762B -70%,transparent 137.5%); /* standard syntax */
  opacity: .8;
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.carbon .hero-gradient-overlay:after,
.carbon .interior-hero-wrapper:after {
  background: linear-gradient(90deg, #355B50 -70%,#7AA550 137.5%); /* standard syntax */
  opacity: .8;
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.carbon .interior-hero-wrapper-1 { 
  background: linear-gradient(90deg, rgba(53,91,80,.8) -70%,rgba(122,165,80,.8) 137.5%);
  opacity: 1;
}
.lease-round-page .interior-hero-wrapper-1 {
    background: linear-gradient(89.16deg, rgba(2, 29, 65, 0.95) 1.52%, rgba(7, 34, 69, 0.4275) 99.28%);
  opacity: .9;
}

.interior-hero .span6 a.button {
    padding: 12px 24px;
}

.multi-client .interior-hero-wrapper-1 img.hs-image-widget,
.multi-client .tab-image img {
  /* opacity: 0.8; */
    max-height: 500px;
  filter: hue-rotate(21.11deg);
}

.imaging-processing .interior-page-header img {
    border: 5px solid #009BD2;
    max-height: 375px;
    border-radius: 32px;
}
.blog-header {
    display: flex;
    flex-direction: column;
    padding: 120px 80px;
    align-items: center;
    position: relative; /* Add position relative */
    z-index: 2; /* Add z-index */
  margin-bottom: 40px;
  background-repeat: no-repeat;
    background-size: cover;
}
.blog-header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}
.blog-header-wrapper:after {
  background: linear-gradient(90deg,#041E42 -19%,#041E42 201.5%);
    content: "";
    display: inline-block;
    height: 100%;
    left: 0;
    opacity: .8;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.blog-header-wrapper .row-fluid-wrapper {
    position: relative;
    z-index: 2;
}
@media (max-width: 1600px) {
.interior-page-header .row-fluid,
.interior-hero .row-fluid {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
}
}
@media (max-width: 1280px) {
.interior-page-header .row-fluid,
.interior-hero .row-fluid {
  margin: 0 auto;
  max-width: 1140px;
  display: flex;
}
}
@media (max-width: 768px) {

.interior-page-header .interior-hero-wrapper,
.interior-page-header .interior-hero-wrapper-1,
.interior-hero .interior-hero-wrapper-1 {
  align-items: center;
}
 .interior-hero .interior-hero-wrapper {
      align-items: center;
  }
  .interior-hero .row-fluid .dnd-column:first-child, .interior-page-header .row-fluid .dnd-column:first-child,
  .interior-hero .row-fluid .dnd-column:nth-child(2), .interior-page-header .row-fluid .dnd-column:nth-child(2) {
    width: calc(100%);
}
}
/* Team Page */

.team-wrapper {
  padding: 40px 15vw;
}
.team-listing {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  margin: 0 -40px;
}
.team-listing .team-item {
  overflow: hidden!important;
  cursor: pointer;
  -ms-flex: 0 0 33.333%;
  -webkit-flex: 0 0 33.333%;
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 40px;
  margin-bottom: 90px;
  -webkit-transition: margin-bottom .1s;
  -o-transition: margin-bottom .1s;
  transition: margin-bottom .1s;
}
.team-item-content-wrapper, .team-item-content-wrapper img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.team-item-content-wrapper, .team-item-content-wrapper .img-desc-wrap, .team-item-content-wrapper .img-desc {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}
.team-listing .team-item.active {
  margin-bottom: 40px;
}

.team-item .team-item-content-wrapper .img-wrapper {
  position: relative;
  overflow: hidden;
}
.team-item .team-item-content-wrapper .img-wrapper img {
  width: 100%;
}
.team-item .team-item-content-wrapper .img-wrapper .img-desc-wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background: #f5f8f9;
    bottom: 0;
    color: #041E42;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    width: 100%;
}
.team-item .team-item-content-wrapper .img-wrapper .img-desc {
  width: 100%;
  padding: 20px;
}
.team-item .team-item-content-wrapper .img-wrapper .img-desc h3 {
  font-size: 20px;
  line-height: 1;
  color:#041E42;
  margin-bottom: 5px;
  position: relative;
  padding-right: 20px;
}
.team-item .team-item-content-wrapper .img-wrapper .img-desc h3.name:after {
  content: '\f107';
  font-size: 20px;
  position: absolute;
  right: 0;
  font-family: 'FontAwesome';
  color:#041E42;
  top: 0;
}
.team-item .team-item-content-wrapper .img-wrapper .img-desc h4 {
  margin: 0;
  font-size: 16px;
  color:#041E42;
  font-weight: 300!important;
}
.team-item .team-item-content-wrapper .desc-wrapper {
  position: absolute;
  left: 40px;
  background: #f5f8f9;
  margin-top: 30px;
  width: calc(100% - 80px);
  padding: 32px;
  color: #041E42;
  text-align: left;
  display: none;
  border-radius: 16px;
}
.team-item.active .team-item-content-wrapper .desc-wrapper {
  display: block;
}

.team-item .team-item-content-wrapper .desc-wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}
.team-item .team-item-content-wrapper .desc-wrapper h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
  font-style: italic;
}
.team-item .team-item-content-wrapper .desc-wrapper p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 50px;
  font-weight: 300;
}

.team-item .arrow-up {
  position: relative;
  width: 100%;
  margin-left: -6px;
  display: none;
}
.team-item.active .arrow-up {
  display: block;
}

.team-item .btn {
  border-color: #fff;
  color: #041E42;
  min-width: inherit;
  padding: 12px 20px;
}
.team-item .btn:hover {
  color:#009BD2!important;
}
.team-item .btn:hover svg {
  fill: #009BD2!important;
}

.close {
  display: inline-block;
  width: 28px;
  height: 28px;
  overflow: hidden;
  z-index: 2;
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.close:before,
.close:after {
  content: "";
  position: absolute;
  height: 2.2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -2px;
  background: #041E42;
}
.close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 1700px) {
  .team-listing {
    margin: 0 -30px;
  }
  .team-listing .team-item {
    padding: 0 30px;
    margin-bottom: 60px;
  }
  .team-item .team-item-content-wrapper .desc-wrapper {
    width: calc(100% - 60px);
    left: 30px;
    padding: 50px 100px;
  }

}

@media (max-width: 1500px) {

}

@media (max-width: 1366px) {

  .team-wrapper {
    padding: 80px 60px;
  }

  .team-item .team-item-content-wrapper .desc-wrapper {
    width: calc(100% - 60px);
    left: 30px;
  }
}

@media (max-width: 1024px) {

  .team-listing .team-item {
    -ms-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .team-item .team-item-content-wrapper .desc-wrapper {
    width: calc(100% - 40px);
    left: 20px;
    padding: 50px 100px;
  }
  .team-item .team-item-content-wrapper .img-wrapper .img-desc-wrap {
    width: calc(100% + 10px);
  }
  .team-item .arrow-up:after {
    top: -20px;
  }
  .team-item .team-item-content-wrapper .desc-wrapper {
    padding: 30px;
  }
  .team-item .team-item-content-wrapper .desc-wrapper h3 {
    font-size: 38px;
  }
  .team-item .team-item-content-wrapper .desc-wrapper h4 {
    font-size: 20px;
  }
  .team-item .team-item-content-wrapper .img-wrapper .img-desc {
    padding: 15px;
  }

  .close {
    width: 20px;
    height: 20px;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    transform: translate(-50%,0);
  }
}
@media (max-width: 768px) {
  .team-wrapper {
    padding: 30px 50px;
  }
  .team-item .team-item-content-wrapper .desc-wrapper {
    width: calc(100% - 40px);
    left: 20px;
  }
}
@media (max-width: 575px) {
  .team-wrapper {
    padding: 50px 30px;
  }
  .team-listing .team-item {
    -ms-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .team-item .team-item-content-wrapper .desc-wrapper {
    font-size: 16px;
    padding: 30px;
  }
  .team-item .team-item-content-wrapper .img-wrapper .img-desc h3 {
    font-size: 20px;
  }
}
/* Menu Item Styles */
.dnd-section.*-full-width-section .dnd-column {
    padding: 0 !important;
} 
.navigation-primary {
  background: #041E42;
  color: #fff;
  text-align: center;
  clear: both;
  position: relative;
  z-index: 5;
}
.sticky-fixed {
    position: fixed !important;
    width: 100%;
    z-index: 5;
  transition: top 1s ease-in-out; /* add transition effect */
}
.drop-icon {
  float: none;
}
.navigation-primary a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 16px;
  font-size: 18px;
  border-bottom: 4px solid #041E42;
  border-left: 1px solid #6E828D;
  font-weight: 500;
}
.navigation-primary li:first-child a {
  border-left: none;
}
.navigation-primary a:hover,
.navigation-primary a:focus {
  border-bottom: 4px solid #009BD2;
}

.navigation-primary a.active-item {
  border-bottom: 4px solid #009BD2;
}

.wind .navigation-primary a:hover,
.wind .navigation-primary a:focus,
.wind .navigation-primary a.active-item {
  border-bottom: 4px solid #f7d45e;
}


.solar .navigation-primary {
  background: #80A9C5;
  color: #fff;
  text-align: center;
  clear: both;
  position: relative;
  z-index: 5;
}
.solar .navigation-primary a {
  display: block;
  color: #fff;
  border-bottom: 4px solid #80A9C5;
  border-left: 1px solid #fff;
  font-weight: 700;
}
.solar .navigation-primary a:hover,
.solar .navigation-primary a:focus,
.solar .navigation-primary a.active-item {
  border-bottom: 4px solid #FCD67A;
}

/* Carbon Menu */
.carbon .navigation-primary {
  background: #F2F2F2;
  color: #355B50;
  text-align: center;
  clear: both;
  position: relative;
  z-index: 5;
}
.carbon .navigation-primary a {
  display: block;
  color: #355B50;
  border-bottom: 4px solid #F2F2F2;
  border-left: 1px solid #fff;
  font-weight: 700;
}
.carbon .navigation-primary a:hover,
.carbon .navigation-primary a:focus,
.carbon .navigation-primary a.active-item {
  border-bottom: 4px solid #C3ED80;
}
/* Active Menu Item Styles */

.navigation-primary a.active-item {
  position: relative;
}

.navigation-primary ul li {
  list-style-type: none;  
}
.main-column .span8 .navigation-primary ul li {
    padding: 5px 40px;
}
.main-column .span8 .navigation-primary ul li:after {
    content: '';
    background: none;
    width: 0;
    height: 0;
    position: relative;
    left: 0;
    top: 0;
}
#tm {
    display: none;
}
@media only screen and (max-width: 1600px) {
.navigation-primary a {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1140px) {
#toggle-menu, #menu label.drop-icon {
    display: none;
}
  ul.level-1  li.has-submenu a.menu-link:after {
    content: '\f0d9';
    font-family: 'FontAwesome';
    margin-left: 10px;
}
   ul.level-1  li.has-submenu:hover a.menu-link:after {
    content: '\f0d7';
    font-family: 'FontAwesome';

    margin-left: 12px;
}
   ul.level-2 li.no-submenu a.menu-link:after {
    content: '' !important;
    font-family: 'FontAwesome';
    font-size: 17px;
    margin-left: 10px;
}
}
@media (max-width: 1140px) {
  .navigation-primary .submenu.level-1 > li > a.active-item:after {
    display: none;
  }
  label#toggle-menu {
    padding: 16px;
    display: block;
    text-align: center;
}
  .navigation-primary {
  text-align: left;
}
    .navigation-primary li {
    background: #BBC1C3;
  }
  .navigation-primary a {
    background: #BBC1C3;
  border-bottom: none;
  border-left: none;
  font-weight: 700;
    text-align: center;
}
  .navigation-primary a:hover,
.navigation-primary a:focus {
    background: rgba(7, 34, 69, 0.75);
  border-bottom: none;
}
  .navigation-primary li:hover,
.navigation-primary li:focus {

}

.navigation-primary a.active-item {
  border-bottom: none;
}
}

/* Menu */

.submenu {
  float: none;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

@media (max-width: 1140px) {
  .submenu, .submenu.level-1 {
    display: none;
  }

  input[type='checkbox']:checked ~ .submenu, input[type='checkbox']:checked ~ .submenu.level-1 {
    display: block;
  }

  .submenu > .has-submenu {
    position: relative;
  }

  .submenu > li > a {
    display: block;
    width: 100%;
  }

  .submenu > .has-submenu > a {
    width: 80%;
  }
  .main-column .span8 .navigation-primary ul li {
    padding: 0px;
}
}

/* Top Level Menu */

/* .submenu.level-1 {
  display: inline-block;
} */

.submenu.level-1>li {
    margin-right: 0;
    position: relative;
    flex: 1;
}

.submenu.level-1 > li:last-child {
  margin-right: 0;
}

/* @media screen and (min-width: 768px) and (max-width: 1100px) {
  .submenu.level-1 > li {
    margin-right: 20px;
  }
} */

@media (max-width: 1140px) {
  .submenu.level-1 {
    width: 100%;
  }

  .submenu.level-1 > li {
    display: block;
    margin-right: 0.7rem 0;
    padding: 0;
    width: 100%;
  }

  .submenu.level-1 > li > a {
    padding: 10px 30px;
  }
}

/* Child Menus */

.submenu.level-2 {
  background-color: #eaeaea;
  border: 1px solid #eaeaea;
  box-shadow: 0 23px 50px -14px rgba(0, 0, 0, 0.21);
  left: -9999px;
  opacity: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 2;
}

.submenu.level-1 > li:hover .submenu.level-2,
.submenu.level-1 > li.focus .submenu.level-2 {
  left: 0;
  opacity: 1;
  z-index: 100;
}

.submenu.level-2 .menu-item {
  margin: 0;
  position: relative;
}

.submenu.level-2 .menu-link {
  display: block;
  padding: 1em 1.5em;
  color: #466889;
  transition: background-color 0.3s;
  text-align: left;
}

.submenu.level-2 .menu-link:hover,
.submenu.level-2 .menu-link:focus {
  background-color: white;
  color: #444;
  cursor: pointer;
  transition: background-color 0.3s;
}

@media (max-width: 767px) {
  .submenu.level-2 {
    border: none;
    box-shadow: none;
    opacity: 1;
    position: static;
    visibility: visible;
    width: 100%;
  }

  .submenu.level-2 .menu-link {
    padding: 10px 50px;
    transition: none;
  }

  .submenu.level-2 .menu-link:hover {
    background-color: inherit;
  }

  .submenu.level-2 .menu-link:hover,
  .submenu.level-2 .menu-link:focus {
    transition: none;
  }
}

@media (min-width: 1140px) {
  .submenu.level-3 {
    background-color: #fff;
    left: -9999px;
    opacity: 0;
    position: absolute;
    top: 5%;
    width: 100%;
  }

  .submenu.level-2 .menu-item:hover .submenu.level-3,
  .submenu.level-2 .menu-item.focus .submenu.level-3 {
    left: 100%;
    opacity: 1;
    z-index: 1;
  }

  /* prettier-ignore */
  .submenu.level-1 > li:hover:last-child .submenu.level-2 .menu-item:hover .submenu.level-3,
  .submenu.level-1 > li.focus:last-child .submenu.level-2 .menu-item.focus .submenu.level-3 {
    left: auto;
    right: 100%;
  }
}

.submenu.level-3 .menu-link {
  padding-left: 30px;
}

@media (max-width: 767px) {
  .submenu.level-3 .menu-link {
    padding: 10px 70px;
  }
}

/* Mobile Navigation Toggles */

.submenu-toggle,
#nav-toggle,
.header__navigation-toggle,
.menu-child-toggle-icon {
  display: none;
}

@media screen and (max-width: 1140px) {
  .header__navigation-toggle,
  .menu-child-toggle-icon {
    cursor: pointer;
    display: block;
  }

  .header__navigation-toggle svg,
  .menu-arrow svg {
    fill: #00c6ab;
  }

  #nav-toggle:checked ~ .header__navigation {
    display: block;
  }

  .header__mobile-menu-open-icon {
    display: block;
  }

  .header__mobile-menu-close-icon {
    display: none;
  }

  /* prettier-ignore */
  #nav-toggle:checked+.header__navigation-toggle .header__mobile-menu-open-icon {
    display: none;
  }

  /* prettier-ignore */
  #nav-toggle:checked+.header__navigation-toggle .header__mobile-menu-close-icon {
    display: block;
  }

  .menu-arrow {
    border: none;
    cursor: pointer;
    padding: 10px 30px;
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
  }

  input[type='checkbox']:checked ~ .menu-arrow svg {
    transform: rotate(180deg);
    transform-origin: 50% 50%;
    transition: transform 0.4s;
  }
}

/* HubSpot Editor Styles */

.hs-inline-edit .submenu.level-1 > li.has-submenu:hover .submenu.level-2,
.hs-inline-edit > li.has-submenu.focus .submenu.level-2 {
  visibility: hidden;
}

/* WDP Customizations */
.wdp .main-column .span8 .navigation-primary ul li {
    padding: 5px 35px;
}
/* Forms styles */

.widget-type-form {
  background: #fff;
    padding: 32px;
    border-radius: 16px;
}

#main fieldset {
  max-width: 100%;
}
#main form {
  padding: 0!important;
  margin: 0!important;
}
#main h3.form-title {
    font-weight: 600;
    font-size: 30px;
}

#main form input[type="text"],
#main form input[type="tel"],
#main form input[type="email"],
#main form textarea,
#main form select {
    background-color: #fff !important;
    border: 1px solid #BBC1C3;
    border-radius: 8px!important;
    box-sizing: border-box;
    height: inherit;
    margin-bottom: 16px;
    max-width: inherit;
    padding: 8px 16px;
    width: 100%;
}
fieldset.form-columns-2 {
    display: flex;
    gap: 16px;
}
#main form select {
  font-size: 16px;
  margin-bottom: 0px !important;
  color: rgba(0,0,0,.55);
}
#main form textarea {
  font-size: 16px !important;
  margin-bottom: 0px !important;
  color: rgba(0,0,0,.55);
}

    

#main form textarea {
  min-height: 125px;
  font: 300 20px/22px "DINWebPro", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

#main form input[type="submit"],
#main form button {
    background: #041E42 !important;
    box-shadow: none;
    border: none;
  text-align: center;
    color: #fff;
    padding: 12px 16px;
    margin: 8px auto;
    width: 100%;
    max-width: 100%;
    font-weight: bold;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border-radius: 50px !important;
}

#main form input[type="submit"]:hover,
#main form button:hover {
  background:#009BD2 !important;
}
.submitted-message h1, 
.submitted-message h2, 
.submitted-message h3, 
.submitted-message h4, 
.submitted-message h5, 
.submitted-message h6, 
.submitted-message p {
  color: #041E42;
}
/* hides label but allows screen readers to read it 
#main form label {
  position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
*/
/*  Old label style - comment out above and uncomment this to display labels
 * */
#main form label {
    color: #474747;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
}
 

/* Hubspot form update */
#main form label span[class="hs-form-required"] {
  color:#DF2121;	
}
#main form .field {
  margin-bottom: 0;
}

#main form ul.inputs-list label {
  font-size: 16px;
}

#main form ul.hs-error-msgs.inputs-list {
  display: block;
  margin-left: 0;
  padding-left: 0;
  margin-top: -20px;
}
#main form ul.hs-error-msgs.inputs-list li {
  padding-left: 0!important;
  margin-bottom: 0!important;
}
#main form ul.hs-error-msgs.inputs-list li:after {
  display: none!important;
}
#main form ul.hs-error-msgs.inputs-list li label {
  font-weight: normal!important;
  font-size: 14px!important;
  margin-bottom: 0!important;
  color: #DF2121 !important;
}
.inputs-list li.hs-form-checkbox input {
    margin-right: 10px;
}

/*Select Styles*/
#main form .hs-fieldtype-select .input {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
#main form .input {
  margin-right: 0;
}

#main form select::-ms-expand {
  display: none;
}

ul.inputs-list li {
    list-style: none;
}
.legal-consent-container p,
.legal-consent-container .hs-richtext{
    font-size: 11px;
  margin: 0;
}
.legal-consent-container .hs-form-booleancheckbox-display input {
    float: left;
    margin-top: 6px;
}
.grecaptcha-badge, .grecaptcha-logo {
    height: 1px !important;
    text-indent: -9999999px;
    box-shadow: none !important;
    border: 0;
    text-shadow: none;
}

label[id^="label-firstname"], 
label[id^="label-lastname"],
label[id^="label-company"],
label[id^="label-email"],
label[id^="label-phone"], 
label[id^="label-job_title"],
label[id^="label-message"],
label[id^="label-jobtitle"],
label[id^="label-department"],
label[id^="label-address"],
label[id^="label-city"],
label[id^="label-state"],
label[id^="label-country"],
label[id^="label-area_of_interest2"],
label[id^="label-zip"],
label[id^="label-do_you_have_any_dietary_requirements"],
label[id^="label-what_day_and_time_would_you_like_to_meet"],
label[id^=label-additional_information],
.hs_department legend {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
/* select field adjustments */

.hs-fieldtype-select legend {
    margin-bottom: 8px;
}

.hs-fieldtype-select label {
    margin-bottom: 0 !important;
}

label[id^="label-message"] {
  margin-bottom: 8px !important;
}
table {
    width: 100%;
    table-layout: fixed;
    line-height: 1.2;
  border-spacing: 0;
}
table thead tr th:first-child {
  border-top-left-radius: 16px;
}
table thead tr th:last-child {
  border-top-right-radius: 16px;
}
table thead tr th:first-child,table tbody tr td:first-child {
  padding-left: 10px;

}
thead tr {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

tbody tr:last-child {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}
tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}
table tr th,table tr td {
    padding: 16px 8px;
    vertical-align: middle;
    text-align: center;
    word-wrap: break-word
}

table table {
    border: 0;
    margin: 0;
    margin-top: -14px
}
table thead tr th,table thead tr th a {
    font-weight: 400;
}

@media(max-width: 767px) {
    table {
        line-height:1.1;
        font-size: 15px
    }
}

.table-scroll {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px
}

.table-wrap {
    width: 100%;
    overflow: auto
}

.table-scroll table {
    width: 100%;
    table-layout: fixed;
    overflow: hidden
}

.table-scroll tbody tr:nth-child(odd) {
    background: #fff;
}
.table-scroll tbody tr:nth-child(even) {
    background: #D6DBDF;
}

.clone {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none
}

.clone th,.clone td {
    visibility: hidden;
    background: #fff
}

.clone tbody th {
    visibility: visible
}

.clone .fixed-side {
    visibility: visible
}

.clone thead,.clone tfoot {
    background: transparent
}

@media(max-width: 767px) {
    .table-scroll th,.table-scroll td {
        width:150px
    }

    .table-scroll thead tr th:first-child,.table-scroll tbody tr td:first-child {
        width: 100px;
        -webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.3);
        -moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.3);
        box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.3);
        text-align: center
    }
}
/* Callout Block */

img.hs-image-widget {
    border-radius: 16px;
}
.hs-video-widget, .hs-video-widget img, .hs-video-container, .hs-video-widget iframe {
    border-radius: 16px;
}
.callout-block-container {
  position: relative;
}
.callout-block-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(174.25deg, rgba(0, 0, 0, 1) 4.58%, rgba(0, 0, 0, 0) 101.11%), linear-gradient(103.02deg, rgba(31, 85, 139, 1) 32.78%, rgba(76, 167, 170, 1) 107.58%);
    opacity: .9;
    z-index: 1;
}

.callout-block-container .row-fluid {
    position: relative;
    z-index: 3;
  max-width: 1440px
}

.callout-block-container .span5.widget-span.widget-type-cell {
  border-radius: 16px;
}
.callout-block-container .row-fluid-wrapper .widget-span {
    border-radius: 16px;
}
/* Home News Section */
.home-news-section .btn.white:hover {
	border-color: #00aaab;
}
.news-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.home-news-list {
	font-size: 18px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
  padding: 2% 0;
}

.home-news-list li {
	padding: 0 16px;
	width: 33.3%;
	margin: 0 0 64px;
  list-style: none;
}

.home-news-list .holder {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  background: #F5F8F9;
  border-radius: 16px;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.home-news-list .date {
  color: #000;
  margin: 0;
  font-size: 14px;
  line-height: .9;
  font-weight: 700;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
}


.home-news-list .text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background: #f5f8f9;
  border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
}

p.news-info  {
	margin: 0 0 25px;
  color: #041E42;
}

.home-news-list h3 {
    font-weight: 700 !important;
    color: #041E42;
  font-size: 24px;
  line-height: 1.25;
  text-decoration: none;
  margin: 16px 0;
}
.home-news-list h3 a {
  color: #041E42;
}
.home-news-list .text p {
    flex: 1;
    display: flex;
}
.home-news-list a.btn {
    color: #041E42;
    font-size: 12px;
}

.home-news-section .title-block {
		position: static;
		padding: 0 0 11px;
	}

	.home-news-section .holder {
		position: static;
    height: 100%;
	}

	.home-news-section .btn-holder {
		position: absolute;
		bottom: 5px;
		left: 20px;
		right: 20px;
		text-align: center;
	}
	.home-news-section .btn {
		display: block;
	}
	.home-news-section {
    display: block;
    max-width: 1440px;
    margin: 0 auto;
	}
	.home-news-list li {
		width: 100%;
		padding: 0;
		margin: 0 0 23px;
	}
	.home-news-list .date .day-num {
		font-size: 28px;
	}  
  .home-news-list .month {
    font-size: 28px;
  }
	.home-news-list {
		margin: 0;
		font-size: 16px;
	}
.article-type {
    margin-bottom: 16px;
  display: flex;
}
.article-type a {
    background: #009BD2;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 16px;
    color: #fff;
}
.view-all a {
    color: #041E42;
    text-decoration: none;
    font-weight: 700;
}
.news .home-news-section .description-block h2 {
    color: #041E42;
    font-weight: 400;
    text-align: left;
}
.home-news-list li {
  padding: 0 16px;
  width: 100%;
  margin: 0 0 30px;
}
.home-news-section .title-block:before {
  background: transparent;
}
.home-news-section .btn.pink:before {
  background: #A82173;
}
.home-news-section .btn.pink:hover {
  border-color: #A82173;
  color: #A82173;
  background-color: #fff;
}
.home-news-section .btn.pink {
  color: #ffffff;
  border-color: #A82173;
  background-color: #A82173;
  transition: color .3s, border-color .3s;
}
.home-news-section .title-block {
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  padding: 40px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.site-search-results {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 16px;
}
@media (max-width: 1300px) {
.home-news-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
  .home-news-list li {
    padding: 0 25px;
    width: 50%;
    margin: 0 0 30px;
  }
}

@media (max-width: 600px) {
.home-news-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
  .home-news-list li {
    padding: 0;
    width: 100%;
    margin: 0 0 30px;
  }
}
/* Contact Block */
.contact-block-container {
  position: relative;
}
.contact-block-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg,#041e42 -19%,#041e42 201.5%);
  transform: matrix(-1, 0, 0, 1, 0, 0);
    opacity: .7;
    z-index: 1;
}
.wind-price-table-wrapper {
  background-image: url('https://www.tgs.com/hubfs/pricing-table-bkg.jpeg');
}
.wind-pricing-table.contact-block-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(270deg, rgba(58, 105, 166, 0.85) -33.5%, rgba(7, 34, 69, 0.85) 119.5%);
    opacity: .7;
    z-index: 1;
}
.wind-pricing-table .dnd-column.widget-span.span6 {
  background: #fff;
  border-radius: 16px;
  border: 4px solid #f5f8f9;
  display: flex;
  flex-direction: column;
}
.wind-pricing-table .span6 div:nth-child(2) {
    flex-grow: 1;
}
.wind-pricing-table.contact-block-container .row-fluid {
    gap: 64px;
}
.wind-pricing-table ul {
  list-style-type: none;
}
.wind-pricing-table p:last-child {
    margin-bottom: 16px;
}

.wind-pricing-table p {
    margin: 5px;
}
.wind-pricing-table h3 {
    margin: 16px 0 0;
}
.wind-pricing-table .button-container {
    display: block;
    margin: 18px 0 36px;
}
.wind-pricing-table .dnd-column.widget-span.span6:nth-of-type(2) {
    border-color: #f7d45e; /* Replace #newColor with your desired border color */
}
.wind-pricing-table .dnd-column.widget-span.span12 {
  padding: 0;
}
.wind-pricing-table li {
    line-height: 1.8;
}
.event-lp .contact-block-container:before {
  background-image: linear-gradient(90deg, rgba(9, 27, 46, 0.8) -19%, rgba(137, 217, 239, 0.24) 201.5%);
  opacity: .8;
}
.carbon .contact-block-container:before {
  background-image: linear-gradient(90deg, #355B50 -70%,#7AA550 137.5%);
}
.solar .contact-block-container:before {
  background-image: linear-gradient(90deg, #F9762B -70%,transparent 137.5%);
}
.contact-block-container .row-fluid {
    position: relative;
    z-index: 3;
}

.contact-block-container .row-fluid h2, 
.contact-block-container .row-fluid p {
  color: #fff;
}
.contact-block-container .row-fluid .submitted-message h2, 
.contact-block-container .row-fluid .submitted-message p {
  color: #041E42;
}
.contact-block-container .row-fluid form p {
    color: unset;
}
.seismic .contact-block-container:before {
  background: linear-gradient(90deg, rgba(9, 27, 46, 0.8) -19%, rgba(137, 217, 239, 0.24) 201.5%);
  content: "";
  height: 100%;
  left: 0;
  opacity: .7;
  position: absolute;
  top: 0;
  transform: matrix(-1,0,0,1,0,0);
  width: 100%;
  z-index: 1;
}
.apps-block-container {
    max-width: 1440px;
    margin: 0 auto;
}
.apps-block-container .dnd-column {
   display: flex;
  flex-direction: column;
}
.apps-block-container .dnd-column .row-fluid-wrapper:nth-child(2) {
    flex-grow: 1;
  padding: 0;
}
.apps-block-container .dnd-column .row-fluid-wrapper:last-child {
  padding: 0 0 16px;
}
.apps-block-container .dnd-column {
  border-radius: 16px;
}
.apps-block-container .dnd-column img {
  border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.apps-block-container a {
  color: #041E42;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-align: left;
  text-decoration: none;
}
.apps-header {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px;
  margin: 0 auto;
}
.apps-header h2 {
    margin: 0;
}
.view-all a {
    color: #041E42;
    font-weight: 700;
    text-decoration: none;
}
.col-block-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 16px;
}
.col-block-container .hs_cos_wrapper_type_linked_image {
    display: flex;
  height: 376px;
  max-height: 376px;
    width: 100%;
}
.col-block-container .imgvert .hs_cos_wrapper_type_linked_image {
    display: flex;
  height: auto;
   max-height: 100%;
    width: 100%;
  max-width: 600px;
  text-align: center;
}
.col-block-container .imgwide .hs_cos_wrapper_type_linked_image {
    display: flex;
  height: auto;
   max-height: 100%;
    width: 100%;
}
.imgwide, .imgvert {
    text-align: center;
}
.imgvert img {
    max-width: 470px;
  margin: 0 auto;
}
.image-caption {
  font-size: 14px;
  font-style: italic;
  margin: 16px 0;
}
.imgvert .image-caption {
  max-width: 470px;
  margin: 16px auto;
}
.col-block-container .dnd-column img.hs-image-widget {
    border-radius: 16px;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.col-block-container .span6.widget-span.widget-type-cell.dnd-column {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}
.article-type a {
  background: #009BD2;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 700;
}

.feature-block-bkg {
  max-width: 1440px;
  margin: 80px auto;
  border-radius: 16px;
}
.feature-block-bkg .span12.widget-span.widget-type-cell.dnd-column {
    padding: 40px;
}
.feature-block-bkg .row-fluid {
   /* margin-bottom: 16px !important; */
}
.apps-header-container,
.sub-region-blocks {
  max-width: 1440px;
  margin: 0 auto;
}
.sub-region-blocks .dnd-column {
    border-radius: 16px;
  margin-bottom: 16px;
}
.sub-region-blocks h3 a {
  color: #009BD2;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0em;
  text-align: left;
  text-decoration: none;
}

.sub-region-blocks h3 a::after {
  content: " >";
  color: #009BD2;
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0em;
  float: right;
}
iframe.mytgs-map-embed {
    border-radius: 16px;
}
.app-grid,
.lr-photo-grid {
  max-width: 1140px;
  margin: 0 auto;
}
.app-grid .row-fluid, 
.lr-photo-grid .row-fluid {
    gap: 20px !important;
}
.app-grid .dnd-column {
    background: #f2f2f2;
    border-radius: 16px;
    margin: 10px auto;
    padding: 0;
    display: flex;
    flex-direction: column;
  max-width: 353px;
}

.app-grid .dnd-column .dnd-row:nth-child(2) {
    flex: 1;
}
.app-grid .hs_cos_wrapper_widget {
    width: 100%;
}
.app-grid .hs_cos_wrapper_type_linked_image {
    display: flex;
    height: 215px;
    width: 100%;
}
.app-grid .dnd-column img.hs-image-widget {
    border-radius: 16px 16px 0 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.app-grid .dnd-column .widget-type-rich_text {
  padding: 16px;
}
.app-grid .dnd-column .button-container {
        padding: 8px;
    margin: 16px;
}
.app-grid.four-col {
  max-width: 1440px;
  margin: 0 auto;
}
.app-grid.four-col .dnd-column .dnd-row:first-child {
    flex: 1;
}
.app-grid.four-col .dnd-column .dnd-row:nth-child(2) {
    flex: 0;
}
.lr-photo-grid .span4.widget-span.widget-type-cell.dnd-column {
    padding: 0;
}
.lr-photo-grid img.hs-image-widget {
    max-width: 100%;
    height: auto;
}
.icon-card-container {
  max-width: 1440px;
  margin: 0 auto;
}
.icon-card-container .dnd-column {
    background: #f5f8f9;
    border-radius: 16px;
    margin: 10px auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.icon-card-container img {
  max-width: 32px !important;
}
.regional-nav-block, .accordion-section, .contact-block-container .row-fluid, .error-fourofour-banner {
  max-width: 1440px;
  margin: 0 auto;
}
.wind .span3.tab-image {
    display: none;
}
.wind .span8.tab-text {
    width: 100%;
}
.interior-container {
    background: rgb(255, 255, 255);
    padding: 16px;
  margin-bottom: 32px;
    border-radius: 16px;
}
.interior-container img.hs-image-widget {
    border-radius: 16px;
    max-height: 300px;
    margin: 0 auto;
    align-self: center;
    display: flex;
}
a.works-with-button.bid-developer,
button.sm-works-with.bid-developer {
    background: #041E42;
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
  border: 1px solid #041E42;
}
a.works-with-button.explorer,
button.sm-works-with.explorer {
    background: #F7D45E;
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    color: #041E42;
  border: 1px solid #F7D45E;
}
a.works-with-button.lease-developer,
button.sm-works-with.lease-developer {
    background: #FFF;
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    color: #041E42;
  border: 1px solid #041E42;
}
.acquisition-obn .tab-title:before {
    content: "\f0da";
    font-family: FontAwesome;
    margin-right: 10px;
}
.error-fourofour-banner {
    display: block;
    margin: 100px auto 50px;
}
@media (max-width: 1600px) {
  .apps-block-container, 
  .col-block-container, 
  .feature-block-bkg, 
  .apps-header-container, 
  .sub-region-blocks, 
  .apps-header,
  .app-grid, 
  .app-grid.four-col, 
  .icon-card-container, 
  .regional-nav-block, 
  .callout-block-container .row-fluid,
  .accordion-section,
  .contact-block-container .row-fluid,
  .home-news-section,
  .error-fourofour-banner,
  .lr-photo-grid {
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
  }
}
@media (max-width: 1280px) {
  .apps-block-container, 
  .col-block-container, 
  .feature-block-bkg, 
  .apps-header-container, 
  .sub-region-blocks, 
  .app-grid, 
  .apps-header, 
  .app-grid.four-col, 
  .icon-card-container, 
  .regional-nav-block, 
  .callout-block-container .row-fluid,
  .accordion-section,
  .contact-block-container .row-fluid,
  .home-news-section,
  .error-fourofour-banner,
  .lr-photo-grid {
    margin: 0 auto;
    max-width: 1140px;
    display: flex;
  }
}
@media (max-width: 768px) {
.apps-block-container .dnd-column {
    margin: 16px 0;
}
  .contact-sub-section {
    margin-bottom: 24px;
}
}




















 





