/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

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

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */
html {
  scroll-behavior: smooth;
}

html[lang^="ja"] bod y,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}
 
/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */
body {
  margin: 0;
  color: #1b1b1b;
  background: #fffbf5;
  font: 400 16px/1.52 "Montserrat", sans-serif;
  min-width: 360px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 992px) {
  body {
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  body.nav-active {
    overflow: hidden;
  }
}

.small-text {
  font-size: 14px;
}
@media (min-width: 992px) {
  .small-text {
    font-size: 16px;
  }
}

/* Paragraphs */
p {
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  p {
    margin: 0 0 25px;
  }
}
p:last-child {
  margin-bottom: 0;
}

/* Anchors */
a,
button {
  transition: all 0.4s ease;
  text-decoration: none;
}

.hs_cos_wrapper_type_inline_rich_text a {
  color: #fa6339;
  display: inline-block;
}

.hs_cos_wrapper_type_inline_rich_text a:hover {
  text-decoration: underline;
}

/* Headings */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  line-height: 1.1;
  font-weight: 600;
  color: currentColor;
  margin: 0 0 25px;
}
h1:last-child, .h1:last-child, h2:last-child, .h2:last-child, h3:last-child, .h3:last-child, h4:last-child, .h4:last-child, h5:last-child, .h5:last-child, h6:last-child, .h6:last-child {
  margin-bottom: 0;
}
h1 span, .h1 span, h2 span, .h2 span, h3 span, .h3 span, h4 span, .h4 span, h5 span, .h5 span, h6 span, .h6 span {
  color: #fb6238;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  color: currentColor;
}
h1 a:hover, .h1 a:hover, h2 a:hover, .h2 a:hover, h3 a:hover, .h3 a:hover, h4 a:hover, .h4 a:hover, h5 a:hover, .h5 a:hover, h6 a:hover, .h6 a:hover {
  color: #fb6238;
}

h1, .h1 {
  font-size: 40px;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 60px;
  }
}

h2, .h2 {
  font-size: 30px;
  font-weight: 700;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 50px;
  }
}

h3, .h3 {
  font-size: 25px;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 38px;
  }
}

h4, .h4 {
  font-size: 24px;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 30px;
  }
}

h5, .h5 {
  font-size: 22px;
}
@media (min-width: 1200px) {
  h5, .h5 {
    font-size: 25px;
  }
}

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

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

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

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

/* Code blocks */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

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

/* Horizontal rules */
hr {
  border: none;
  border-bottom: 1px solid #ccc;
}

/* Image alt text */
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.gm-style img {
  max-width: none;
}

/* wrapper style */
.body-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* container */
.container {
  max-width: 1245px;
  margin: 0 auto;
  padding: 0 20px;
}
.dnd-section > .row-fluid {
  max-width: 1245px;
  margin: 0 auto;
}
.dnd-section > .row-fluid .container {
  padding: 0;
}
[class*=full-width-section], [class*=full-width-section] > .row-fluid {
  padding: 0;
}
[class*=full-width-section] > .row-fluid .container {
  padding: 0 20px;
}
[class*=full-width-section] > .row-fluid .dnd-column {
  padding: 0;
}
@media(max-width: 991px) {
  .container {
    padding: 0 20px;
  }
  .dnd-section > .row-fluid {
    padding: 0 15px;
  }
  [class*=full-width-section] > .row-fluid {
    padding: 0;
  }
}

/* sub heading */
.section-tagline {
  font-size: 18px;
  font-weight: 700;
  display: block;
  color: #09dbb4;
  margin: 0 0 10px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .section-tagline {
    font-size: 21px;
    margin: 0 0 15px;
  }
}

.section-tagline.bordered {
  padding: 4px 0 4px 12px;
  border-left: 4px solid #09dbb4;
}
@media (min-width: 1024px) {
  .section-tagline.bordered {
    padding: 6px 0 6px 20px;
    border-left-width: 7px;
  }
}

.section-tagline.white {
  color: #fff;
}

/* section header */
.section-header {
  margin: 0 auto 25px;
  max-width: 950px;
  text-align: center;
  font-weight: 500;
}
.section-header h2 {
  margin-bottom: 20px;
}
.section-header .text {
  margin: 0 auto;
}
@media(min-width: 768px) {
  .section-header {
    margin-bottom: 30px;
  }
}
@media(min-width: 1200px) {
   .section-header {
    margin-bottom: 38px;
  }
}

/* buttons list */
.buttons-wrap {
  margin-top: 30px;
  display: flex;
  flex-flow: row wrap;
  gap: 16px;
}

/* textbox ul style */
.textbox ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
@media (min-width: 768px) {
  .textbox ul {
    margin: 0 0 40px;
  }
}

.textbox ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
.textbox ul li {
    padding-left: 35px;
    margin-bottom: 7px;
  }
}

.textbox ul li:before {
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: 1px;
  transform: translateY(-50%);
  background-size: 80% 80%;
  background-repeat: no-repeat;
  background-image: url('//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/check.png');
}
@media (min-width: 768px) {
  .textbox ul li:before {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 992px) {
  .textbox ul li:before {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 1200px) {
  .textbox ul li:before {
    width: 25px;
    height: 25px;
  }
}

/* slick slider arrows */
.slick-slider .slick-arrow {
  background-color: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  height: 40px;
  width: 40px;
  z-index: 2;
}
.slick-slider .slick-arrow:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 21px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url('//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/left-arrow.png');
}
.slick-slider .slick-arrow.slick-next:before {
  background-image: url('//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/right-arrow.png');
}
.slick-slider .slick-arrow.slick-next {
  right: 0;
  left: auto;
}

/* custom controls style */
.slick-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .slick-controls {
    padding-top: 40px;
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .slick-controls {
    padding-top: 55px;
  }
}
.slick-controls .slick-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
}
@media (min-width: 1024px) {
  .slick-controls .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
.slick-controls .slick-arrow img {
  transform: scale(0.75);
}
@media (min-width: 1024px) {
  .slick-controls .slick-arrow img {
    transform: scale(1);
  }
}
.slick-controls .slick-arrow.slick-next {
  transform: rotate(180deg);
}
.slick-controls .slick-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
}
.slick-controls .slick-arrow.slick-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.slick-controls .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0;
  line-height: 0;
}
@media (min-width: 1024px) {
  .slick-controls .slick-dots {
    gap: 7px;
  }
}
.slick-controls .slick-dots button {
  width: 14px;
  height: 14px;
  transition: 0.3s;
  background: #fff;
  border-radius: 10px;
  border: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .slick-controls .slick-dots button {
    width: 16px;
    height: 16px;
  }
}
.slick-controls .slick-dots button:hover {
  background: #fb6238;
}
.slick-controls .slick-dots .slick-active button {
  width: 40px;
  background: #fb6238;
}
@media (min-width: 1024px) {
  .slick-controls .slick-dots .slick-active button {
    width: 65px;
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #d0d0d0;
  border-color: #d0d0d0;
  color: #e6e6e6;
}

/* primary button style */
.button, .hs-button {
  background: #09dbb4;
  border: 2px solid #09dbb4;
  padding: 12px 30px;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
}

/* .button:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  transform: translateY(100%);
  transition: 0.3s;
} */

/* .button:hover:before {
  transform: none;
} */

.button:hover {
  background-color: transparent;
  color: #09dbb4;
}

/* primary outline button style */
.button.primary_outline {
  background-color: transparent;
  border-color: #09dbb4;
  color: #1b1b1b;
}
.button.primary_outline:hover {
  background-color: #09dbb4;
  color: #fff;
}

/* secondary button style */
.button.secondary {
  background-color: #fb6238;
  border-color: #fb6238;
}
.button.secondary:hover {
  background-color: transparent;
  color: #fb6238;
}

/* secondary outline button style */
.button.secondary_outline {
  background-color: transparent;
  border-color: #fb6238;
  color: #1b1b1b;
}
.button.secondary_outline:hover {
  background-color: #fb6238;
  color: #fff;
}

/* white outline button style */
.button.white_outline {
  background-color: transparent;
  border-color: #fff;
}
.button.white_outline:hover {
  background-color: #fff;
  color: #1b1b1b;
}

/* submit button style */
.button.dark {
  background: #01343e;
  border-color: #01343e;
}
.button.dark:hover {
  background: transparent;
  color: #01343e;
}

/* simple link style */
.text-link {
  padding: 0 0 10px;
  font-weight: 500;
  color: currentColor;
  display: inline-flex;
  text-transform: uppercase;
  border-bottom: 4px solid #09dbb4;
}
@media (min-width: 768px) {
  .text-link {
    border-bottom-width: 5px;
  }
}
@media (min-width: 992px) {
  .text-link {
    font-size: 18px;
    border-bottom-width: 6px;
  }
}
@media (min-width: 1200px) {
  .text-link {
    font-size: 21px;
  }
}
.text-link:hover {
  color: #fa6339;
  border-bottom-color: #fa6339;
}

.text-link.small {
  padding: 0 0 6px;
}
@media (min-width: 1200px) {
  .text-link.small {
    font-size: 18px;
  }
}
.text-link:hover {
  color: #fb6238;
  border-bottom-color: #fb6238;
}
/* Fields */

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */
form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  background-color: transparent;
  border: 2px solid #fa6339;
  font-weight: 500;
  padding: 12px 16px;
  outline: none;
  box-shadow: none;
  width: 100%;
}
@media (min-width: 768px) {
  form input[type=text],
  form input[type=search],
  form input[type=email],
  form input[type=password],
  form input[type=tel],
  form input[type=number],
  form input[type=file],
  form select,
  form textarea {
    padding: 12px 20px;
  }
}
@media (min-width: 1024px) {
  form input[type=text],
  form input[type=search],
  form input[type=email],
  form input[type=password],
  form input[type=tel],
  form input[type=number],
  form input[type=file],
  form select,
  form textarea {
    padding: 15px 30px;
  }
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

.hs-error-msg {
  color: #EF6B51;
  margin: 0;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  background: #01343e;
  border: 2px solid #01343e;
  padding: 12px 30px;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
}


/* form input[type=submit]:before,
form .hs-button:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  transform: translateY(100%);
  transition: 0.3s;
}

form input[type=submit]:hover:before,
form .hs-button:hover:before {
  transform: none;
} */

form input[type=submit].secondary,
form .hs-button.secondary {
  background-color: #fb6238;
  border-color: #fb6238;
}

.hs_error_rollup {
  text-align: center;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

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

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

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
/* Slick slider styles */
.slick-slider {
  position: relative;
  user-select: none;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Components
Specific pieces of UI that are stylized.
*/

/* header styles */
.blank_template .header {
  background: #01343e;
}

.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .header {
    padding: 30px 0;
  }
}
@media (min-width: 1200px) {
  .header {
    padding: 50px 0;
  }
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .header .container {
    gap: 25px;
  }
}

/* logo styles */
.logo {
  display: inline-block;
  flex-shrink: 0;
  width: 150px;
}
@media (min-width: 1200px) {
  .logo {
    width: 179px;
    margin-top: -34px;
  }
}
@media (min-width: 1800px) {
  .logo {
    margin-left: -40px;
  }
}
.logo a {
  display: block;
}
.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.main-nav {
  position: absolute;
  right: 15px;
  top: calc(50% - 24px);
}
@media (min-width: 1200px) {  
  .main-nav {
    position: static;
    padding-left: 50px;
  }
}
@media (min-width: 1440px) {
  .main-nav {
    padding-left: 70px;
  }
}

/* nav drop style */
@media (max-width: 1199px) {
  .nav-drop {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    background: #0d252f;
    transform: translateX(100%);
    transition: 0.4s;
    z-index: 5;
    padding: 0 20px 20px;
    overflow: auto;
  }
  .nav-active .nav-drop {
    transform: none;
  }
  .nav-drop .header-buttons {
    display: flex !important;
    padding: 0;
    margin-top: 20px;
  }
}
.nav-drop .nav-opener {
  margin: 22px -5px 20px auto;
}
@media (min-width: 1200px) {
  .nav-drop .nav-opener {
    display: none;
  }
}
.nav-drop .header-buttons {
    display: none;
  }

/* menu styles */
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-weight: 500;
}
@media (min-width: 992px) {
  .main-nav ul {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .main-nav ul {
    flex-direction: row;
    gap: 50px;
  }
}

.main-nav ul li {
  width: 100%;
  position: relative;
}
@media (min-width: 1200px) {
  .main-nav ul li {
    width: auto;
  }
}
.main-nav ul li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 1200px) {
  .main-nav ul li + li {
    border: 0;
  }
}
.main-nav ul li a {
  display: block;
  color: #fff;
  padding: 12px 5px;
}
@media (min-width: 1200px) {
  .main-nav ul li a {
    padding: 10px 0;
  }
}
.main-nav ul li:hover > a, .main-nav ul li.active > a {
  color: #fa6339;
}
@media (min-width: 768px) {
  .main-nav ul li.visible-mobile {
    display: none;
  }
}
.main-nav ul li .nav-arrow {
  width: 52px;
  height: 52px;
  position: absolute;
  right: -10px;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .main-nav ul li .nav-arrow {
    width: 7px;
    height: 7px;
    margin-top: -5px;
    margin-left: 2px;
    pointer-events: none;
    position: static;
    display: none;
  }
}
.main-nav ul li .nav-arrow:before {
  margin-top: -7px;
  margin-left: -4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
  width: 9px;
  height: 9px;
  border: 1px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  pointer-events: none;
  content: "";
  display: block;
}
@media (min-width: 1200px) {
  .main-nav ul li .nav-arrow:before {
    margin: 0;
    position: static;
  }
}
@media (min-width: 1200px) {
  .main-nav ul li:hover > .hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
    border-color: #858585;
  }
}
@media (max-width: 1199px) {
  .main-nav ul li.active > .nav-arrow:before {
    transform: rotate(225deg);
    margin-top: 0;
  }
}
.main-nav ul .hs-menu-children-wrapper {
  width: 100%;
  list-style: none;
  padding: 5px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1199px) {
  .main-nav ul .hs-menu-children-wrapper {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    height: 0;
    font-size: 14px;
  }
  .main-nav ul li.active .hs-menu-children-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
    height: auto;
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .main-nav ul .hs-menu-children-wrapper {
    display: block;
    width: 220px;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    background: #fff;
    transition: 0.3s;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
  }
}
.main-nav ul .hs-menu-children-wrapper li {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 0;
}
@media (min-width: 1200px) {
  .main-nav ul .hs-menu-children-wrapper li {
    border-top: 0;
  }
}
@media (min-width: 1200px) {
  .main-nav ul .hs-menu-children-wrapper li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.main-nav ul .hs-menu-children-wrapper li:after {
  display: none;
}
.main-nav ul .hs-menu-children-wrapper li a {
  text-transform: none;
  padding: 10px 25px;
  color: #fff;
}
@media (min-width: 1200px) {
  .main-nav ul .hs-menu-children-wrapper li a {
    padding: 12px 16px;
    color: #000;
    text-align: center;
    width: 100%;
  }
}
.main-nav ul .hs-menu-children-wrapper li a:hover {
  color: #fa6339;
}

/* nav opener style */
.nav-opener {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background: #fa6339;
}
@media (min-width: 1200px) {
  .nav-opener {
    display: none;
  }
}
.nav-opener:before, .nav-opener:after,
.nav-opener span {
  width: 20px;
  height: 2px;
  background: #fff;
  content: "";
  border-radius: 3px;
  transition: 0.4s;
  position: relative;
}
.nav-opener.nav-close span {
  display: none;
}
.nav-opener.nav-close:before {
  transform: rotate(45deg);
  top: 3px;
}
.nav-opener.nav-close:after {
  transform: rotate(-45deg);
  bottom: 3px;
}

/* header buttons */
.header-buttons {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-right: 60px;
  margin-left: auto;
  display: none;
}
@media (min-width: 768px) {
  .header-buttons {
    display: flex;
    padding-right: 63px;
    gap: 10px;
  }
}
@media (min-width: 1200px) {
  .header-buttons {
    padding-right: 0;
    gap: 15px;
  }
}

.header-buttons .button {
  padding: 10px 20px;
}
.header-buttons .button.secondary_outline {
  color: #fff;
}
/* post box style */
.post-box {
  color: #1b1b1b;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-box .post-box-holder {
  width: 100%;
  flex-grow: 1;
  min-height: 0;
}
.post-box .post-image {
  position: relative;
}
.post-box .post-image:before {
  content: "";
  display: block;
  padding-top: 58.4%;
}
.post-box .post-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* author info style */
.post-box .author-info {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 10px;
}
@media (min-width: 992px) {
  .post-box .author-info {
    font-size: 16px;
    padding-right: 10px;
  }
}


.post-box .avatar {
  background: #09dbb4;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  overflow: hidden;
}
@media(min-width: 768px) {
  .post-box .avatar {
    height: 60px;
    width: 60px;
  }
}

.post-box .avatar img {
  font-size: 0;
  border-radius: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.post-box .name {
  display: block;
  color: #01343e;
  font-weight: 700;
  max-width: 100px;
}
.post-box .designation {
  display: block;
}

.post-box .post-textbox {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding: 15px;
}
@media (min-width: 1200px) {
  .post-box .post-textbox {
    padding: 25px;
  }
}

.post-box h4 {
  position: relative;
  font-weight: 700;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1200px) {
  .post-box h4 {
    font-size: 30px;
  }
}

.post-box .post-content {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-box .post-content p {
  margin: 0;
  display: inline;
}
.post-box .post-content p a {
  color: #fff;
  color: currentcolor;
}
.post-box .post-content h1, .post-box .post-content h2, .post-box .post-content h3, .post-box .post-content h4, .post-box .post-content h5, .post-box .post-content h6 {
  display: none;
}

.post-box .tags-list {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -5px;
}

.post-box .tags-list li {
  padding: 0 5px 10px;
}

.post-box .subtitle {
  background: #09dbb4;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  padding: 6px 10px;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .post-box .subtitle {
    padding: 6px 15px;
  }
}

.post-box .post-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: auto;
  padding: 15px;
}
@media (min-width: 992px) {
  .post-box .post-foot {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) {
  .post-box .post-foot {
    padding: 25px;
    flex-wrap: nowrap;
  }
}

.post-box .post-foot .logo-box {
  width: 130px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 1640px) {
  .post-box .post-foot .logo-box {
    width: 187px;
  }
}

..post-box .post-foot .text-link.small {
  font-size: 16px;
} 

.post-box .resources-foot img {
  max-width: 100%;
  height: auto;
  display: block;
}

.post-box.tags-post-box {
  box-shadow: -10px 10px 0 0 #fff1e0;
}
@media (min-width: 1640px) {
  .post-box.tags-post-box {
    box-shadow: -17px 17px 0 0 #fff1e0;
  }
}

.post-box.resources-box {
  box-shadow: -10px 10px 0 0 #002228;
}
@media (min-width: 1640px) {
  .post-box.resources-box {
    box-shadow: -17px 17px 0 0 #002228;
  }
}


.post-box.resources-box .author-info {
  position: relative;
  right: 0;
  bottom: 0;
  color: #fff;
  background: #09dbb4;
  padding: 15px 20px;
  width: 100%;
}
@media (min-width: 1024px) {
  .post-box.resources-box .author-info {
    position: absolute;
    width: auto;
    max-width: 320px;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
  }
  .post-box.resources-box:hover .author-info {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 1640px) {
  .post-box.resources-box .author-info {
    font-size: 16px;
    max-width: 355px;
  }
}
/* tabs-item style */
.tab-item {
  opacity: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.tab-item.selected {
  opacity: 1;
  height: auto;
  visibility: visible;
}

.tabs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.363;
  font-weight: 500;
  width: 100%;
  flex-shrink: 0;
  border-top: 3px solid #001d23;
}
@media (min-width: 992px) {
  .tabs-list {
    font-weight: 700;
    width: 30%;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .tabs-list {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .tabs-list {
    font-size: 18px;
    width: 24.836%;
  }
}

.tabs-list li {
  border-bottom: 3px solid #001d23;
}
.tabs-list li a {
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 50px 10px 20px;
  position: relative;
  height: 58px;
}
@media (min-width: 992px) {
  .tabs-list li a {
    height: 80px;
  }
}
@media (min-width: 1024px) {
  .tabs-list li a {
    height: 90px;
  }
}
@media (min-width: 1200px) {
  .tabs-list li a {
    height: 100px;
  }
}

.tabs-list li a:after {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  content: "";
  width: 22px;
  height: 15px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  background-repeat: no-repeat;
  background-size: 80% 80%;
  background-image: url('//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/arrow-next.png');
}
@media (min-width: 992px) {
  .tabs-list li a:after {
    transform: translateY(-50%);
  }
}
@media (min-width: 1640px) {
  .tabs-list li a:after {
    width: 27px;
    height: 19px;
  }
}

.tabs-list li:hover > a, .tabs-list li.selected > a {
  background: #fa6339;
}
.tabs-list li:hover > a:after, .tabs-list li.selected > a:after {
  opacity: 1;
  visibility: visible;
}


.tabs-content {
  width: 100%;
}
@media (min-width: 992px) {
  .tabs-content {
    padding-left: 30px;
    flex-grow: 1;
    min-width: 0;
    width: auto;
  }
}
@media (min-width: 1024px) {
  .tabs-content {
    padding-left: 50px;
  }
}
@media (min-width: 1200px) {
  .tabs-content {
    padding-left: 100px;
  }
}
/* core values style */
.core-values .image-holder {
  position: relative;
}
.core-values .image-holder:before {
  content: "";
  display: block;
  padding-top: 38%;
}
.core-values .image-holder img {
  display: block;
  height: 100% !important;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}
.core-values .textbox {
  background-color: #1b1b1b;
  padding: 60px 20px 30px;
  position: relative;
}
@media(min-width: 768px) {
  .core-values .textbox {
    padding: 40px 30px;
  }
}
@media(min-width: 1200px) {
  .core-values .textbox {
    padding: 60px;
  }
}

.core-values .icon-image {
  height: 80px;
  width: 80px;
  position: absolute;
  top: -15%;
  right: 4%;
  z-index: 1;
}
@media(min-width: 992px) {
  .core-values .icon-image {
    height: 100px;
    width: 100px;
    top: -22%;
  }
}
@media(min-width: 1200px) {
  .core-values .icon-image {
    height: 113px;
    width: 113px;
  }
}
  
@media (max-width: 1023px) {
  .core-values .h2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .core-values .h2 {
    font-size: 30px;
  }
}
.core-values p {
  max-width: 800px;
}
/* reasons style */
.reasons {
  border-bottom: 2px solid #d6dad7;
  text-align: center;
  padding: 20px 0;
  width: 100%;
  position: relative;
}
@media(min-width: 768px) {
  .reasons {
    padding: 20px;
    width: 50%;
  }
  .reasons:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .reasons:nth-child(odd):after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 2px;
    background-color: #d6dad7;
  }
}
@media(min-width: 1200px) {
  .reasons {
    padding: 20px 30px;
  }
}

.reasons .icon, .reasons .title {
  display: block;
}
.reasons .title {
  font-size: 20px;
  font-weight: 700;
}
.reasons .text {
  font-size: 16px;
}
.custom-video {
  position: relative;
}
.custom-video:before {
  content: "";
  display: block;
  padding-top: 71%;
}
.custom-video:after {
  background: #cef5ea;
  bottom: -7%;
  height: 38%;
  left: -3%;
  transform: skewX(-500deg);
  width: 40%;
  content: "";
  position: absolute;
  display: none;
}
@media (min-width: 1024px) {
  .custom-video:after {
    display: block;
  }
}

.custom-video video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.custom-video .pattern {
  position: absolute;
  left: -7%;
  bottom: 25.7%;
  z-index: 1;
  width: 83px;
  height: 50px;
  display: none;
}
@media (min-width: 1024px) {
  .custom-video .pattern {
    display: block;
  }
}

.custom-video .pattern img {
  width: 100%;
  height: auto;
  display: block;
}
.custom-video .button-video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.custom-video .button-video .play-icon {
  width: 50px;
  height: 50px;
}
@media (min-width: 1200px) {
  .custom-video .button-video .play-icon {
    width: 69px;
    height: 69px;
  }
}
@media (min-width: 1200px) {
  .custom-video .button-video .play-icon:before {
    border-width: 14px 0 14px 22px;
    margin-left: 8px;
  }
}

.custom-video.is-playing .button-video {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.custom-video.is-playing .button-video .play-icon {
  gap: 6px;
}
@media (min-width: 1200px) {
  .custom-video.is-playing .button-video .play-icon {
    gap: 10px;
  }
}

.custom-video.is-playing .button-video .play-icon:before, .custom-video.is-playing .button-video .play-icon:after {
  width: 6px;
  height: 24px;
  content: "";
  border: 0;
  position: absolute;
  background: #fff;
  position: static;
  margin: 0;
}
@media (min-width: 1200px) {
  .custom-video.is-playing .button-video .play-icon:before, .custom-video.is-playing .button-video .play-icon:after {
    width: 7px;
    height: 30px;
  }
}
.custom-video.is-playing:hover .button-video {
  opacity: 1;
  visibility: visible;
}
/* search form style */
.search-form {
  max-width: 810px;
  margin: 0 auto;
}

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

.search-form input[type="text"] {
  padding: 12px 16px 12px 40px;
}
@media (min-width: 768px) {
  .search-form input[type="text"] {
    padding: 12px 20px 12px 45px; 
  }
}
@media (min-width: 1024px) {
  .search-form input[type="text"] {
    padding: 15px 30px 15px 55px; 
  }
}
@media (min-width: 1440px) {
  .search-form input[type="text"] {
    padding: 20px 30px 20px 65px;
  }
}

.search-form .icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  max-width: 15px;
  display: inline-block;
  line-height: 0;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .search-form .icon {
    max-width: 20px;
    left: 24px;
  }
}
@media (min-width: 1440px) {
  .search-form .icon {
    max-width: 25px;
  }
}
.button-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 0;
  background: transparent;
}
.button-video:before {
  display: none;
}
.button-video .play-icon {
  width: 42px;
  height: 42px;
  background: #fa6339;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .button-video .play-icon {
    width: 46px;
    height: 46px;
  }
}
@media (min-width: 1200px) {
  .button-video .play-icon {
    width: 50px;
    height: 50px;
  }
}
.button-video .play-icon:before {
  content: "";
  margin-left: 4px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}
/* @media (min-width: 1440px) {
  .button-video .play-icon:before {
    border-width: 12.5px 0 12.5px 20px;
  }
} */
.button-video:hover {
  color: #fa6339;
}

/* Modal Popup Styles */
[data-modal-open] {
  cursor: pointer;
}

.modal-popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: safe center;
  justify-content: safe center;
  padding: 15px;
  z-index: 99;
  overflow: hidden;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.modal-popup.modal-slideup {
  opacity: 1;
  visibility: visible;
}
.modal-popup.modal-slideup .modal-continer {
  transform: none;
}
.modal-popup .modal-close {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  right: 10px;
  top: 10px;
/*   z-index: 1; */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .modal-popup .modal-close {
    width: 48px;
    height: 48px;
    right: 20px;
    top: 20px;
  }
}
.modal-popup .modal-close:before {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
  cursor: auto;
}
.modal-popup .modal-close:hover {
  background: #fff;
}
.modal-popup .modal-continer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
/*   border-radius: 16px; */
  position: relative;
  transform: translateY(100%);
  transition: 0.35s ease-in-out;
/*   padding: 5px; */
}
@media (min-width: 480px) {
  .modal-popup .modal-continer {
/*     padding: 16px; */
    padding-right: 0;
  }
}
.modal-popup .modal-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-height: 90vh;
  overflow: auto;
}
/* @media (min-width: 480px) {
  .modal-popup .modal-content {
    padding-right: 16px;
  }
} */
@media (min-width: 768px) {
  .modal-popup .modal-content {
    max-height: 80vh;
  }
}
.modal-popup .video-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.modal-popup .video-holder:before {
  content: "";
  display: block;
  padding-top: 56.6%;
}
.modal-popup .video-holder video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
/*   border-radius: 16px; */
}
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .custom-checkbox {
    gap: 10px;
  }
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}
.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
  opacity: 1;
  visibility: visible;
}
.custom-checkbox .checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  position: relative;
  vertical-align: middle;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .custom-checkbox .checkmark {
    width: 24px;
    height: 24px;
    border-width: 2px;
  }
}
@media (min-width: 1200px) {
  .custom-checkbox .checkmark {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }
}

.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 12px;
  margin: -7px 0 0 -3px;
  border: solid #fb6238;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: 0.25s;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 768px) {
  .custom-checkbox .checkmark::after {
    width: 9px;
    height: 14px;
    margin: -8px 0 0 -4px;
    border-width: 0 3px 3px 0;
  }
}

@media (min-width: 1200px) {
  .custom-checkbox .checkmark::after {
    width: 10px;
    height: 18px;
    border-width: 0 4px 4px 0;
    margin: -10px 0 0 -4px;
  }
}
/* footer style */
.footer {
  background-color: #1b1b1b;
  color: #fff;
  padding: 50px 0;
}
@media(min-width: 992px) {
  .footer {
    padding: 60px 0;
  }
}
@media(min-width: 1200px) {
  .footer {
    padding: 70px 0;
  }
}

.footer .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.footer .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}

@media(min-width: 992px) {
  .footer .column {
    margin: 0;
  }
  .footer .column:nth-child(1) {
    width: 62%;
  }
  .footer .column:nth-child(2) {
    width: 38%;
  }
}

.footer .footer__holder {
  max-width: 1700px;
  margin: 0 auto;
}
@media(min-width: 1200px) {
  .footer .footer__holder {
    padding-left: 22px;
  } 
}

/* footer top style */
@media(min-width: 992px) {
  .footer .footer__top {
    margin-bottom: 30px;
  }
}

/* footer logo style */
.footer .footer__logo {
  margin-bottom: 22px;
  max-width: 180px;
  display: inline-block;
}
@media(min-width: 992px) {
  .footer .footer__logo {
    margin-bottom: 32px;
    max-width: 220px;
  }
}
@media(min-width: 1200px) {
  .footer .footer__logo {
    max-width: 249px;
  }
}

/* footer text style */
.footer .footer__text {
  margin-bottom: 30px;
  max-width: 680px;
}

/* footer menu style */
.footer .footer__menu {
  margin: 0 -12px 30px;
}
.footer .footer__menu li {
  padding: 0 12px 10px;
  position: relative;
}
.footer .footer__menu li a {
  color: #fff;
  font-weight: 700;
}
@media(min-width: 768px) {
  .footer .footer__menu {
    display: flex;
    flex-flow: row wrap;
  }
  .footer .footer__menu li:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2px;
    height: 22px;
    width: 2px;
    background-color: #fff;
    transform: translateY(-50%);
    margin-top: -5px;
  }
}

/* footer buttons style */
.footer .footer__buttons {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -8px;
}
.footer .footer__buttons li {
  padding: 0 8px 16px;
  position: relative;
}

/* footer form style */
.footer .footer__form .submitted-message {
  margin-bottom: 20px;
  font-size: 20px;
}
@media(min-width: 992px) {
  .footer .footer__form .submitted-message {
    text-align: right;
  }
}

.footer .footer__form form {
  max-width: 360px;
  margin: 0 0 30px;
  position: relative;
}
@media(min-width: 992px) {
  .footer .footer__form form {
    margin: 0 0 30px auto;
  }
}
  
.footer .footer__form form input[type="email"] {
  background-color: #fff;
  border: 2px solid #fff;
  color: #1b1b1b;
  border-radius: 30px;
  padding: 14px 72px 14px 28px;
}
.footer .footer__form form input[type="email"]:focus {
  border-color: #fff;
}
.footer .footer__form form .field {
  position: relative;
}
.footer .footer__form form .hs-button {
  font-size: 0;
  line-height: 0;
  height: 42px;
  width: 42px;
  border-radius: 100%;
  position: absolute;
  top: 6px;
  right: 10px;
  padding: 0;
  background-image: url(//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/arrow-next.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 50% 50%;
}
.footer .footer__form form .hs-button:hover {
  background-color: #01343e;
}

/* footer address style */
.footer .footer__address {
  margin-bottom: 30px;
}
.footer .footer__address a {
  color: var(--white-color);
}
@media(min-width: 992px) {
  .footer .footer__address {
    text-align: right;
  }
}

/* footer social networks style */
.footer .footer__socials {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -8px;
}
.footer .footer__socials li {
  padding: 0 8px 8px;
  position: relative;
}
@media(min-width: 992px) {
  .footer .footer__socials {
    justify-content: flex-end;
  }
}
.footer .footer__socials li img {
  overflow: hidden;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

/* footer middle style */
.footer .footer__middle {
  padding: 0 0 30px;
}
@media(min-width: 992px) {
  .footer .footer__middle {
    padding: 30px 0;
  }
}

.footer .footer__ratings {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 20px;
}
.footer .footer__ratings .title {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
}

.footer .rating__list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 22px;
}
.footer .rating__list li {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-weight: 600;
  gap: 20px;
}
.footer .rating__list span {
  line-height: 1;
}

/* footer dvivider style */
.footer .footer__divider {
  border-top: 3px solid #ada9a9;
}

/* footer bottom style */
.footer .footer__bottom {
  padding: 20px 0;
}
@media(min-width: 992px) {
  .footer .footer__bottom {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

/* footer link style */
.footer .footer__links {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -12px;
}
.footer .footer__links li {
  padding: 0 12px;
  position: relative;
}
.footer .footer__links li:not(:last-child):after {
  content: '';
  position: absolute;
  top: 9px;
  right: -1px;
  height: 16px;
  width: 1px;
  background-color: #ada9a9
}
.footer .footer__links li a {
  color: #ada9a9;
  font-size: 14px;
  font-weight: 500;
}

/* footer copyright style */
.footer .footer__copyright {
  color: #ada9a9;
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
@media(min-width: 992px) {
  .footer .footer__copyright {
    margin: 0;
    text-align: left;
  }
}
.contact-module form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox { 
  padding-bottom: 12px;
  padding-top:12px;
}

/* Modules
Specific pieces of UI that are stylized.
*/
/* hero module style */
.hero-module {
  background: #01343e;
  color: #fff;
  padding: 150px 0 60px;
  position: relative;
  z-index: 1;
}
@media(min-width: 768px) {
  .hero-module {
    padding: 180px 0 80px;
  }
}
@media(min-width: 992px) {
  .hero-module {
    padding-top: 180px;
  }
}
@media(min-width: 1200px) {
  .hero-module {
    padding-top: 220px;
  }
}

.hero-module .bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.hero-module .bg:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(13,36,44,1) 0%,rgba(13,36,44,0) 75%);
}

.hero-module video {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
  z-index: -1;
}
.hero-module video:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(13,36,44,1) 0%,rgba(13,36,44,0) 75%);
}


.hero-module .content {
  max-width: 750px;
}
@media(min-width: 992px) {
  .hero-module .content {
    max-width: 900px;
  }
}

.hero-module h1 {
  margin-bottom: 25px;
}
.hero-module .h3 {
  color: #09dbb4;
  font-weight: 300;
}
.hero-module .text {
  max-width: 680px;
  padding-top: 30px;
}

.hero-module .text p {
  line-height: 1.6;
}
.hero-module .buttons {
  margin-top: 40px;
  display: flex;
  flex-flow: row wrap;
  gap: 16px;
}
@media(min-width: 768px) {
  .hero-module .buttons {
    margin-top: 50px;
  }
}

.hero-module .buttons-wrap {
  margin: 0;
}
.hero-module .buttons-wrap .primary_outline, .hero-module .buttons-wrap .secondary_outline {
  color: #fff;
}
/* hero module style */
.hero-module-02 {
  color: #fff;
  padding: 150px 0 60px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero-module-02 {
    padding: 180px 0 80px;
  }
}
@media (min-width: 1024px) {
  .hero-module-02 {
    padding-top: 180px;
  }
}
@media (min-width: 1200px) {
  .hero-module-02 {
    padding-top: 200px;
  }
}

.hero-module-02.bg-color {
  background: #01343e;
}
.hero-module-02.bg-color:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  content: "";
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  background-image: url("//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/img-boxes.png");
}
.hero-module-02 .bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.hero-module-02 .bg:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(13,36,44,1) 0%,rgba(13,36,44,0) 75%);
}

.hero-module-02 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row wrap;;
  position: relative;
  z-index: 1;
}

.hero-module-02 .section-tagline {
  margin: 0;
}
.hero-module-02 .textbox {
  width: 100%;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .hero-module-02 .textbox {
    width: 54%;
  }
  .hero-module-02 .textbox:only-child {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .hero-module-02 .textbox:only-child {
    width: 62%;
  }
}

.hero-module-02 h1 {
  font-weight: 700;
}
.hero-module-02 .image-holder {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: 40px 0 0;
}
@media (min-width: 992px) {
  .hero-module-02 .image-holder {
    width: 45%;
    margin: 0;
    padding: 15px 0 0;
    justify-content: flex-end;
  }
}

.hero-module-02 .image-wrap {
  position: relative;
}
.hero-module-02 .img-dots {
  position: absolute;
  right: -3%;
  bottom: -17%;
  width: 152%;
  z-index: -1;
}
.hero-module-02 .img-dots img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-module-02 .buttons-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .hero-module-02 .buttons-wrap {
    gap: 20px;
  }
}

.hero-module-02 .buttons-wrap .primary_outline, .hero-module-02 .buttons-wrap .secondary_outline {
  color: #fff;
}
/* hero module style */
.hero-module-03 {
  color: #fff;
  padding: 150px 0 60px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero-module-03 {
    padding: 180px 0;
  }
}
@media (min-width: 1024px) {
  .hero-module-03 {
    padding: 180px 0 100px;
  }
}
@media (min-width: 1200px) {
  .hero-module-03 {
    padding: 200px 0 120px;
  }
}

.hero-module-03.bg-color {
  background: #01343e;
}
.hero-module-03.bg-color:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  content: "";
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  background-image: url("//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/img-boxes.png");
}
.hero-module-03 .bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.hero-module-03 .bg:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(13,36,44,1) 0%,rgba(13,36,44,0) 75%);
}

.hero-module-03 .section-tagline {
  margin: 0 0 20px;
}

.hero-module-03 .textbox {
  margin: 0 auto;
  max-width: 910px;
}

.hero-module-03 h1 {
  font-weight: 700;
}

.hero-module-03 .buttons-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .hero-module-03 .buttons-wrap {
    gap: 20px;
  }
}

.hero-module-03 .buttons-wrap .primary_outline, .hero-module-03 .buttons-wrap .secondary_outline {
  color: #fff;
}

.hero-module-03 .form-holder {
  margin-top: 40px;
}
@media(min-width: 768px) {
  .hero-module-03 .form-holder {
    margin-top: 60px;
  }
}

.hero-module-03 form {
  margin: 0 auto;
  max-width: 700px;
  position: relative;
}
.hero-module-03 form input[type="email"] {
  background-color: #fff;
  border-radius: 10px;
}
@media(min-width: 768px) {
  .hero-module-03 form input[type="email"] {
    border-radius: 16px 30px 30px 16px;
  }
}

.hero-module-03 form .hs-submit {
  margin-top: 20px;
}
@media(min-width: 768px) {
  .hero-module-03 form .hs-submit {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
}

.hero-module-03 form .hs-button {
  background-color: #fb6238;
  border-color: #fb6238;
  padding: 10px 30px;
}

@media(min-width: 1024px) {
  .hero-module-03 form .hs-button {
    padding: 14px 30px;
  }
}
/* about-us module style */
.about-us-module {
  padding: 50px 0;
}
@media(min-width: 768px) {
  .about-us-module {
    padding: 60px 0;
  }
}
@media(min-width: 1200px) {
  .about-us-module {
    padding: 70px 0;
  }
}

.about-us-module .section-header {
  max-width: 100%;
}
.about-us-module .section-header .text {
  max-width: 950px; 
}
@media (min-width: 1200px) {
  .about-us-module .section-header {
    margin-bottom: 70px;
  }
}

.about-us-module .expertise {
  max-width: 1050px;
  margin: 0 auto;
}
@media(min-width: 768px) {
  .about-us-module .expertise {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
}

.about-us-module .expertise__box {
  padding: 20px;
  position: relative;
  text-align: center;
}
@media(min-width: 768px) {
  .about-us-module .expertise__box {
    width: 33.33%;
  }
}
@media(min-width: 1200px) {
  .about-us-module .expertise__box {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 20px;
    text-align: left;
  }
}

.about-us-module .expertise__box:not(:last-child):after {
  content: '';
  position: absolute;
  background-color: #99acad;
  left: 0;
  bottom: 0;
  right: 0;
  height: 2px;
}
@media(min-width: 768px) {
  .about-us-module .expertise__box:not(:last-child):after {
    top: 0;
    left: auto;
    width: 2px;
    height: auto;
  }
}

.about-us-module .icon-holder {
  display: inline-block;
  margin-bottom: 12px;
}
@media(min-width: 1200px) {
  .about-us-module .icon-holder {
    margin-top: 12px;
  }
}

.about-us-module .expertise__box .numbers {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  display: block;
}
@media(min-width: 768px) {
  .about-us-module .expertise__box .numbers {
    font-size: 40px;
    line-height: 48px;
  }
}
@media(min-width: 1200px) {
  .about-us-module .expertise__box .numbers {
    font-size: 54px;
    line-height: 62px;
  }
}

.about-us-module .expertise__box .title {
  color: #09dbb4;
  text-transform: uppercase;
  margin: 0;
  display: block;
}

.about-us-module .buttons-wrap {
  justify-content: center;
}
/* why-us module style */
.why-us-module {
  overflow: hidden;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
@media(min-width: 768px) {
  .why-us-module {
    padding: 60px 0;
  }
}
@media(min-width: 992px) {
  .why-us-module {
    padding-bottom: 80px;
  }
}

.why-us-module .container:before, .why-us-module .container:after {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
  z-index: -1;
}
.why-us-module .container:before {
  left: 0;
  bottom: 0;
  border-width: 280px 0 0 210px;
  border-left-color: #fffbf5;
}
.why-us-module .container:after {
  right: 0;
  top: 0;
  border-width: 0 210px 280px 0;
  border-right-color: #fffbf5;
}

.why-us-module .section-header {
  margin-bottom: 30px;
}
@media(min-width: 768px) {
  .why-us-module .section-header {
    margin-bottom: 40px;
  }
}
@media(min-width: 1200px) {
  .why-us-module .section-header {
    margin-bottom: 56px;
  }
}

.why-us-module .section-tagline {
  color: #fff;
}

.why-us-module .reasons-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .why-us-module .reasons-holder {
    flex-direction: row-reverse;
    flex-wrap: nowrap;
  }
}

.why-us-module .reason-boxes {
  display: flex;
  flex-flow: row wrap;
}
@media(min-width: 1200px) {
  .why-us-module .reason-boxes {
    padding-left: 30px;
    width: 65%;
  }
}
@media(min-width: 1440px) {
  .why-us-module .reason-boxes {
    width: 63%;
  }
}

.why-us-module .image-holder {
  text-align: center;
  margin-top: 50px;
  width: 100%;
}
@media(min-width: 1200px) {
  .why-us-module .image-holder {
    margin-top: 0;
    text-align: left;
    width: 35%;
  }
}

.why-us-module .fancy-image {
  padding-bottom: 10px;
  padding-left: 10px;
  max-width: 567px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .why-us-module .fancy-image {
    padding-bottom: 17px;
    padding-left: 17px;
  }
}

.why-us-module .fancy-image::after {
  background: #cef5ea;
  bottom: -4%;
  content: "";
  display: none;
  height: 25%;
  left: -1%;
  position: absolute;
  transform: skewX(-500deg);
  width: 38%;
  z-index: -1;
}
@media (min-width: 1024px) {
  .why-us-module .fancy-image::after {
    display: block;
  }
}

.why-us-module .fancy-image img {
  box-shadow: -10px 10px 0 0 #fa6339;
}
@media (min-width: 768px) {
  .why-us-module .fancy-image img {
    box-shadow: -17px 17px 0 0 #fa6339;
  }
}

.why-us-module .buttons-wrap {
  justify-content: center;
}


.why-us-module.with_background {
  color: #ffffff;
}
.why-us-module.with_background:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(251, 112, 87, 1);
  z-index: -1;
}
.why-us-module.with_background .container:before {
  border-left-color: #fb6448;
}
.why-us-module.with_background .container:after {
  border-right-color: #fb6448;
}
.why-us-module.with_background .fancy-image img {
  box-shadow: -10px 10px 0 0 #01343e;
}
@media (min-width: 768px) {
  .why-us-module.with_background .fancy-image img {
    box-shadow: -17px 17px 0 0 #01343e;
  }
}
.why-us-module.with_background .fancy-image::after {
  background: rgba(206, 245, 234, 0.5);
}
/* info module style */
.info-module {
  overflow: hidden;
  position: relative;
  background: #fb6238;
  padding: 50px 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .info-module {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  .info-module {
    padding: 70px 0;
  }
}
@media (min-width: 1200px) {
  .info-module {
    padding: 80px 0;
  }
}
.info-module:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(252, 129, 96, 0.8);
  z-index: -1;
}
/* @media (min-width: 1440px) {
  .info-module.small-text {
    font-size: 18px;
  }
}
@media (min-width: 1640px) {
  .info-module.small-text {
    font-size: 20px;
  }
} */
/* .info-module .container {
  max-width: 1700px;
} */
.info-module .container:before, .info-module .container:after {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.info-module .container:before {
  left: 0;
  bottom: 0;
  border-width: 280px 0 0 280px;
  border-left-color: #fb6238;
}
.info-module .container:after {
  right: 0;
  top: 0;
  border-width: 0 280px 280px 0;
  border-right-color: #fb6238;
}
.info-module .info-holder {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  position: relative;
  z-index: 1;
}
.info-module .column {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .info-module .column {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .info-module .column {
    width: 33.333%;
    flex-direction: column;
  }
}
.info-module .box {
  padding: 10px;
  width: 100%;
}

/* additional-box style */
.additional-box {
  height: 100%;
  background: #01343e;
  color: #fff;
  padding: 20px 15px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  font-weight: 500;
  position: relative;
}
@media (min-width: 768px) {
  .additional-box {
    padding: 20px;
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .additional-box {
    height: 400px;
    justify-content: center;
    padding: 20px 15px;
  }
}
@media (min-width: 1200px) {
  .additional-box {
    height: 500px;
  }
}
@media (min-width: 1440px) {
  .additional-box {
    padding: 30px;
  }
}
.additional-box.small-box {
  gap: 20px;
}
@media (min-width: 1024px) {
  .additional-box.small-box {
    height: 280px;
    gap: 25px;
  }
}
@media (min-width: 1440px) {
  .additional-box.small-box {
    padding: 20px;
  }
}
.additional-box .subtitle {
  background: #09dbb4;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  padding: 6px 10px;
  display: inline-block;
  position: relative;
}
@media (min-width: 992px) {
  .additional-box .subtitle {
    padding: 6px 15px;
  }
}
@media (min-width: 1440px) {
  .additional-box .subtitle {
    padding: 6px 20px;
  }
}

.additional-box h4,
.additional-box p,
.additional-box q {
  position: relative;
  display: block;
}
@media (min-width: 1024px) {
  .additional-box h4,
  .additional-box p,
  .additional-box q {
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
}

.additional-box blockquote {
  border: none;
  font-style: normal;
  margin: 0;
  padding: 0;
  width: 100%;
}
.additional-box blockquote q {
  quotes: none;
}
.additional-box .author-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-style: normal;
}
@media (min-width: 1440px) {
  .additional-box .author-info {
    font-size: 18px;
  }
}
.additional-box .author-info .avatar {
  width: 72px;
  height: 72px;
  border-radius: 100%;
  overflow: hidden;
}
.additional-box .author-info .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
  object-position: center;
}
.additional-box .author-info .author-wrap {
  flex-grow: 1;
  min-width: 0;
  flex-basis: 0;
}
.additional-box .author-info .name {
  display: block;
  font-weight: 700;
}
@media (min-width: 768px) {
  .additional-box .author-info .name {
    margin: 0 0 5px;
  }
}
.additional-box .author-info .subtext {
  display: block;
}
.additional-box .image-holder {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.additional-box .image-holder img {
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: center;
}
.additional-box .button-video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.additional-box .caption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1440px) {
  .additional-box .caption {
    padding: 20px;
  }
}
.additional-box .caption:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #01343e;
  opacity: 0.5;
  content: "";
}

/* blockqoute box style */
.blockquote-box {
  padding: 20px 15px;
  text-align: center;
  align-items: center;
  position: relative;
  gap: 20px;
}
@media (min-width: 1440px) {
  .blockquote-box {
    padding: 40px;
    gap: 40px;
  }
}
.blockquote-box:before, .blockquote-box:after {
  position: absolute;
  content: "";
  width: 45px;
  height: 35px;
  background-size: 70% 70%;
  background-repeat: no-repeat;
  background-image: url("//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/quote.png");
}
@media (min-width: 1024px) {
  .blockquote-box:before, .blockquote-box:after {
    width: 65px;
    height: 46px;
  }
}
@media (min-width: 1640px) {
  .blockquote-box:before, .blockquote-box:after {
    width: 85px;
    height: 61px;
  }
}
.blockquote-box:before {
  left: 15px;
  top: 15px;
}
@media (min-width: 1024px) {
  .blockquote-box:before {
    left: 25px;
    top: 35px;
  }
}
@media (min-width: 1640px) {
  .blockquote-box:before {
    left: 30px;
    top: 45px;
  }
}
.blockquote-box:after {
  right: 15px;
  bottom: 15px;
  transform: rotate(180deg);
}
@media (min-width: 1024px) {
  .blockquote-box:after {
    right: 25px;
    bottom: 35px;
  }
}
@media (min-width: 1200px) {
  .blockquote-box blockquote {
    font-size: 22px;
  }
}
@media (min-width: 1640px) {
  .blockquote-box blockquote {
    line-height: 1.35;
    font-weight: 500;
  }
}
.blockquote-box blockquote q {
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .blockquote-box blockquote q {
    -webkit-line-clamp: 6;
    margin: 0 0 30px;
  }
}
@media (min-width: 1440px) {
  .blockquote-box blockquote q {
    margin: 0 0 40px;
  }
}

/* partner box style */
.partner-box {
  background: #fffdfb;
  color: #01343e;
}
.partner-box .partners-holder {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.partner-box .textbox {
  width: 67%;
}
.partner-box p {
  margin: 0 0 20px;
}
@media (min-width: 1024px) {
  .partner-box p {
    -webkit-line-clamp: 4;
  }
}
@media (min-width: 1200px) {
  .partner-box p {
    -webkit-line-clamp: 3;
  }
}
.partner-box .image-logo {
  width: 29.033%;
}

@media (max-width: 767px) {
  .video-box {
    padding: 0;
  }
}
.video-box p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
@media (max-width: 767px) {
  .video-box .image-holder {
    position: static;
    height: 285px;
    width: 100%;
  }
}

.casestudy-box {
  align-items: flex-start;
  justify-content: flex-end;
}
.casestudy-box .image-holder {
  opacity: 0.3;
}
.casestudy-box .text-holder {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .casestudy-box .text-holder {
    padding-bottom: 15px;
  }
}
@media (min-width: 1024px) {
  .casestudy-box .text-holder {
    gap: 30px;
  }
}
.casestudy-box h4 {
  position: relative;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 1024px) {
  .casestudy-box h4 {
    -webkit-line-clamp: 2;
  }
}
.casestudy-box p {
  margin: 0;
}
.casestudy-box .text-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}
.casestudy-box .text-wrap img {
  width: 109px;
  flex-shrink: 0;
}

.story-box {
  background: #fffdfb;
  color: #1b1b1b;
}
.story-box .stats-wrap {
  width: 100%;
}
.story-box .number {
  font-size: 35px;
  line-height: 1;
  margin: 0 0 5px;
  display: block;
}
@media (min-width: 1440px) {
  .story-box .number {
    font-size: 45px;
  }
}
.story-box .substats {
  display: block;
  text-transform: uppercase;
  color: #fb6238;
  font-size: 16px;
  font-weight: 700;
}
.story-box p {
  margin: 0;
}
@media (min-width: 1024px) {
  .story-box p {
    -webkit-line-clamp: 5;
  }
}
@media (min-width: 1200px) {
  .story-box p {
    -webkit-line-clamp: 6;
  }
}

.webinar-box .webinar-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 1024px) {
  .webinar-box .webinar-holder {
    gap: 0;
  }
}
.webinar-box .textbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media (min-width: 1024px) {
  .webinar-box .textbox {
    width: 68%;
  }
}
@media (min-width: 1440px) {
  .webinar-box .textbox {
    width: 70%;
  }
}
.webinar-box .title {
  display: block;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .webinar-box .title {
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
  }
}
@media (min-width: 1200px) {
  .webinar-box .title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .webinar-box .title {
    font-size: 22px;
  }
}
.webinar-box .date {
  display: block;
  position: relative;
  font-size: 12px;
  font-weight: 600;
  padding-left: 20px;
  color: #09dbb4;
  margin: 7px 0;
}
@media (min-width: 1440px) {
  .webinar-box .date {
    font-size: 13px;
  }
}
.webinar-box .date:before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  width: 14px;
  height: 15px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background: url("//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/ico-calendar.svg");
}
.webinar-box .text-link {
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .webinar-box .text-link {
    margin: 0;
  }
}
.webinar-box .author-info {
  width: 100%;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .webinar-box .author-info {
    width: 29.033%;
    align-items: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: center;
    font-size: 11px;
  }
}
@media (min-width: 1200px) {
  .webinar-box .author-info {
    font-size: 12px;
  }
}
@media (min-width: 1440px) {
  .webinar-box .author-info {
    font-size: 13px;
  }
}
.webinar-box .author-info .avatar {
  width: 72px;
  height: 72px;
  overflow: visible;
  border: 3px solid #09dbb4;
  position: relative;
}
@media (min-width: 1024px) {
  .webinar-box .author-info .avatar {
    border-width: 4px;
  }
}
.webinar-box .author-info .avatar:after {
  position: absolute;
  right: -15px;
  bottom: 0;
  content: "";
  width: 42px;
  height: 28px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/pattern.png");
}
@media (min-width: 1024px) {
  .webinar-box .author-info .avatar:after {
    width: 57px;
    height: 34px;
    right: -20px;
  }
}
@media (min-width: 1440px) {
  .webinar-box .author-info .avatar:after {
    right: -30px;
  }
}
.webinar-box .author-info .name {
  line-height: 1.1;
  margin: 0;
}
/* services module style */
.services-module {
  padding: 50px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .services-module {
    padding: 60px 0;
  }
}
@media (min-width: 1200px) {
  .services-module {
    padding: 72px 0;
  }
}

.services-module .services-holder {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .services-module .services-holder {
    flex-wrap: nowrap;
    padding: 30px 0 0;
    flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) {
  .services-module .services-holder {
    padding: 46px 0 0;
  }
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}
@media (min-width: 992px) {
  .services-tabs {
    font-size: 16px;
    font-weight: 600;
    width: 48%;
    margin: 0;
    gap: 16px;
  }
}
@media (min-width: 1200px) {
  .services-tabs {
    font-size: 18px;
  }
}

.services-tabs li {
  width: calc(50% - 4px);
}
@media (min-width: 768px) {
  .services-tabs li {
    width: calc(50% - 8px);
  }
}

.services-tabs li .services-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100px;
  text-align: center;
  border: 2px solid #09dbb4;
  color: #01343e;
  padding: 8px;
}
@media (min-width: 768px) {
  .services-tabs li .services-box {
    padding: 12px;
    height: 125px;
    gap: 6px;
    border-width: 3px;
  }
}
@media (min-width: 1200px) {
  .services-tabs li .services-box {
    height: 156px;
    padding: 15px;
  }
}

.services-tabs li .icon {
  position: relative;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.75);
  margin-top: -5px;
}
@media (min-width: 768px) {
  .services-tabs li .icon {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .services-tabs li .icon {
    transform: scale(1);
  }
}

.services-tabs li .icon .light {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.services-tabs li .text {
  font-weight: 500;
  display: block;
  width: 100%;
  line-height: 1;
}
@media (min-width: 768px) {
  .services-tabs li .text {
    font-weight: 600;
  }
}

.services-tabs li:hover > .services-box, .services-tabs li.selected > .services-box {
  color: #fff;
  background: #01343e;
  border-color: #01343e;
}
.services-tabs li:hover > .services-box:after, .services-tabs li.selected > .services-box:after {
  opacity: 1;
  visibility: visible;
}
.services-tabs li:hover .icon .light, .services-tabs li.selected .icon .light {
  opacity: 1;
}
.services-tabs li:hover .icon .dark, .services-tabs li.selected .icon .dark {
  opacity: 0;
}

.services-content {
  width: 100%;
}
@media (min-width: 992px) {
  .services-content {
    width: 48%;
  }
}

.services-content h3 {
  color: #fb6238;
}
/* services module style */
@media(min-width: 1200px) {
  .services-module.addition {
    padding-bottom: 100px;
  }
}
@media(min-width: 1440px) {
  .services-module.addition {
    padding-bottom: 120px;
  }
}

.services-module.addition .section-header {
  max-width: 1340px;
}
.services-module.addition .section-header .text {
  max-width: 100%;
}
.services-module.addition .services-holder {
  align-items: center;
}
@media (min-width: 992px) {
  .services-module.addition .services-holder {
    flex-direction: inherit;
  }
}
@media (min-width: 1024px) {
  .services-module.addition .services-holder {
    padding-top: 25px;
    flex-direction: row;
  }
}

.services-module.addition .services-tabs {
  margin: 0;
}
@media (max-width: 991px) {
  .services-module.addition .services-tabs {
    width: 100%;
  }
}

.services-module.addition .services-tabs li {
  width: 100%;
}
@media(min-width: 480px) {
  .services-module.addition .services-tabs li {
    width: calc(50% - 4px);
  }
}
@media(min-width: 768px) {
  .services-module.addition .services-tabs li {
    width: calc(50% - 8px);
  }
}


.services-module.addition .services-tabs li .services-box {
  height: 160px;
  position: relative;
  overflow: hidden;
  gap: 10px;
}
@media (min-width: 992px) {
  .services-module.addition .services-tabs li .services-box {
    height: 160px;
  }
}
@media (min-width: 1200px) {
  .services-module.addition .services-tabs li .services-box {
    height: 180px;
  }
}

.services-module.addition .services-tabs li .services-box .text {
  color: #1b1b1b;
  font-weight: 600;
}
.services-module.addition .services-tabs li .services-box:hover .caption, .services-module.addition .services-tabs li.selected .services-box .caption {
  opacity: 1;
  visibility: visible;
}
.services-module.addition .caption {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 15px;
  background: #01343e;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  line-height: 1.38;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
@media (min-width: 768px) {
  .services-module.addition .caption {
    font-size: 16px;
  }
}
@media (min-width: 1640px) {
  .services-module.addition .caption {
    padding: 20px;
  }
}

.services-module.addition .caption .title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (min-width: 768px) {
  .services-module.addition .caption .title {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .services-module.addition .caption .title {
    font-size: 20px;
  }
}

.services-module.addition .caption p {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.services-module.addition .caption .link {
  font-weight: 600;
  display: inline-block;
  color: #fb6238;
}
.services-module.addition .services-content {
  width: 100%;
  margin-top: 35px;
}
@media (min-width: 992px) {
  .services-module.addition .services-content {
    width: 50%;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .services-module.addition .services-content {
    width: 44%;
  }
}



.services-module.addition .image-holder {
  position: relative;
  text-align: center;
}
.services-module.addition .image-holder:before {
  content: "";
  display: block;
  padding-top: 71%;
}
.services-module.addition .image-holder:after {
  background: #cef5ea;
  bottom: -7%;
  height: 38%;
  left: -3%;
  transform: skewX(-500deg);
  width: 40%;
  content: "";
  position: absolute;
  display: none;
}
@media (min-width: 1024px) {
  .services-module.addition .image-holder:after {
    display: block;
  }
}

.services-module.addition .image-holder .image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.services-module.addition .image-holder .pattern {
  position: absolute;
  left: -7%;
  bottom: 25.7%;
  z-index: 1;
  width: 83px;
  height: 50px;
  display: none;
}
@media (min-width: 1024px) {
  .services-module.addition .image-holder .pattern {
    display: block;
  }
}

.services-module.addition .image-holder .pattern img {
  width: 100%;
  height: auto;
  display: block;
}
/* industries module style */
.industry-module {
  padding: 50px 0;
  overflow: hidden;
  color: #fff;
  background: #01343e;
}
@media (min-width: 768px) {
  .industry-module {
    padding: 60px 0;
  }
}
@media (min-width: 1024px) {
  .industry-module {
    padding: 70px 0;
  }
}
@media (min-width: 1200px) {
  .industry-module {
    padding: 80px 0 100px;
  }
}

.industry-module .section-header {
  max-width: 700px;
}
.industry-module .industry-holder {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .industry-module .industry-holder {
    flex-wrap: nowrap;
    padding: 30px 0 0;
  }
}
@media (min-width: 1024px) {
  .industry-module .industry-holder {
    padding: 50px 0 0;
  }
}
@media (min-width: 1200px) {
  .industry-module .industry-holder {
    padding: 66px 0 0;
  }
}

.industry-content .tab-item {
  overflow: visible;
}
.industry-content .image-holder {
  position: relative;
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  .industry-content .image-holder {
    margin-bottom: 75px;
  }
}
@media (min-width: 1200px) {
  .industry-content .image-holder {
    margin-bottom: 90px;
  }
}

.industry-content .image-holder:before, .industry-content .image-holder:after {
  position: absolute;
  content: "";
}
.industry-content .image-holder:before {
  background: #025253;
  width: 42%;
  height: 60%;
  left: 2%;
  bottom: -10%;
  transform: skewX(-500deg);
}
.industry-content .image-holder:after {
  background: rgba(255, 255, 255, 0.04);
  width: 77%;
  right: 0;
  top: -14%;
  bottom: -20%;
  transform: skewX(-500deg);
}
.industry-content .image-holder .image-wrap {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.industry-content .image-holder .image-wrap:before {
  background: #01343e;
  opacity: 0.09;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.industry-content .image-holder img {
  width: 100%;
  height: auto;
  display: block;
}
.industry-content .textbox {
  overflow: hidden;
}
@media (max-width: 1023px) {
  .industry-content .h2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .industry-content .h2 {
    font-size: 30px;
  }
}

.industry-content .links-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 1024px) {
  .industry-content .links-wrap {
    gap: 30px;
  }
}
/* solution module style */
.solutions-module {
  padding: 50px 0 70px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .solutions-module {
    padding: 60px 0 80px;
  }
}
@media (min-width: 1024px) {
  .solutions-module {
    padding: 70px 0 100px;
  }
}
@media (min-width: 1200px) {
  .solutions-module {
    padding: 80px 0 140px;
  }
}

.solutions-module .section-header {
  max-width: 800px;
}
@media(min-width: 1200px) {
  .solutions-module .section-header {
    margin-bottom: 55px;
  }
}

.solutions-module .section-header h2 span {
  font-weight: 300;
  color: currentColor;
}
.solutions-module .solutions-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media(min-width: 992px) {
  .solutions-module .solutions-holder {
    flex-direction: row-reverse;
  }
}

.solutions-module .textbox {
  position: relative;
  z-index: 2;
}

.solutions-module .textbox,
.solutions-module .image-holder {
  width: 100%;
}
@media (min-width: 992px) {
  .solutions-module .textbox,
  .solutions-module .image-holder {
    width: 45%;
  }
}

.solutions-module .textbox h3 {
  font-weight: 300;
}

.solutions-module .image-holder {
  text-align: center;
  position: relative;
  max-width: 599px;
  margin: 40px auto 0;
  z-index: 1;
}
@media (min-width: 992px) {
  .solutions-module .image-holder {
    margin-bottom: 0;
  }
}

.solutions-module .brand-logo {
  display: none;
}
@media(min-width: 768px) {
  .solutions-module .brand-logo {
    display: block;
    max-width: 80px;
    position: absolute;
    top: 50%;
    right: -3%;
    transform: translateY(-50%);
  }
}
@media(min-width: 1440px) {
  .solutions-module .brand-logo {
    max-width: 95px;
    right: -5%;
  }
}

.solutions-module .fancy-image {
  padding: 0 10px 10px 10px;
}
@media (min-width: 768px) {
  .solutions-module .fancy-image {
    padding: 0 17px 17px 17px;
  }
}

.solutions-module .fancy-image img {
  box-shadow: -10px 10px 0 0 #01343e;
}
@media (min-width: 768px) {
  .solutions-module .fancy-image img {
    box-shadow: -17px 17px 0 0 #01343e;
  }
}

.solutions-module .buttons-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .solutions-module .buttons-wrap {
    gap: 20px;
  }
}

.solutions-tabs {
  list-style: none;
  padding: 0;
  margin: 0 auto 25px;
  max-width: 1550px;
  border: 2px solid #80989a;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .solutions-tabs {
    padding: 8px;
    margin-bottom: 35px;
    flex-wrap: nowrap;
    font-weight: bold;
    border-radius: 50px;
    border-width: 3px;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .solutions-tabs {
    font-size: 18px;
    padding: 10px;
    padding: 15px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .solutions-tabs {
    padding: 15px;
    font-weight: bold;
  }
}

.solutions-tabs li {
  width: 50%;
  padding: 5px;
}
@media (min-width: 768px) {
  .solutions-tabs li {
    width: auto;
    padding: 0;
  }
}

.solutions-tabs li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b1b1b;
  padding: 9px 15px;
  border-radius: 30px;
  transition: 0.3s;
  text-align: center;
  height: 100%;
}
@media (min-width: 768px) {
  .solutions-tabs li a {
    padding: 6px 20px;
  }
}
@media (min-width: 1024px) {
  .solutions-tabs li a {
    padding: 9px 25px;
  }
}

.solutions-tabs li:hover > a, .solutions-tabs li.selected > a {
  color: #fff;
  background: #fb6238;
}


.solutions-module.with_background {
  color: #fff;
  background-color: #01343e;
  position: relative;
  z-index: 1;
}
.solutions-module.with_background:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  background-image: url("//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/img-boxes02.png");
}
.solutions-module.with_background .fancy-image img {
  box-shadow: -10px 10px 0 0 #012127;
}
@media (min-width: 768px) {
  .solutions-module.with_background .fancy-image img {
    box-shadow: -17px 17px 0 0 #012127;
  }
}
.solutions-module.with_background .solutions-tabs li a {
  color: #fff;
}
.solutions-module.with_background .textbox h3 {
  color: #09dbb4;
}
.solutions-module.with_background .button.secondary_outline {
  color: #fff;
}
/* resources module style */
.resources-module {
  padding: 50px 0;
  overflow: hidden;
  color: #fff;
  background: #01343e;
}
@media (min-width: 768px) {
  .resources-module {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  .resources-module {
    padding: 70px 0;
  }
}
@media (min-width: 1200px) {
  .resources-module {
    padding: 80px 0;
  }
}

.resources-module .resources-wrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .resources-module .resources-wrap {
    flex-wrap: nowrap;
    padding: 30px 0 0;
  }
}
@media (min-width: 1024px) {
  .resources-module .resources-wrap {
    padding: 50px 0 0;
  }
}

/* resources tabs style */
.resources-tabs {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.363;
  font-weight: 500;
  width: 100%;
  flex-shrink: 0;
  border-top: 3px solid #001d23;
}
@media (min-width: 992px) {
  .resources-tabs {
    font-weight: 700;
    width: 30%;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .resources-tabs {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .resources-tabs {
    font-size: 18px;
    width: 28.836%;
  }
}

.resources-tabs li {
  border-bottom: 3px solid #001d23;
}
.resources-tabs li.title {
  background: #01343e;
  margin-top: -4px;
}
.resources-tabs li a {
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 50px 10px 20px;
  position: relative;
  height: 58px;
}
@media (min-width: 992px) {
  .resources-tabs li a {
    height: 80px;
  }
}
@media (min-width: 1024px) {
  .resources-tabs li a {
    height: 90px;
  }
}
@media (min-width: 1200px) {
  .resources-tabs li a {
    height: 100px;
  }
}

.resources-tabs li a:after {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  content: "";
  width: 22px;
  height: 15px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  background-repeat: no-repeat;
  background-size: 80% 80%;
  background-image: url('//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/arrow-next.png');
}
@media (min-width: 992px) {
  .resources-tabs li a:after {
    transform: translateY(-50%);
  }
}
@media (min-width: 1640px) {
  .resources-tabs li a:after {
    width: 27px;
    height: 19px;
    right: 20px;
  }
}

.resources-tabs li:hover > a, .resources-tabs li.selected > a {
  background: #fa6339;
}
.resources-tabs li:hover > a:after, .resources-tabs li.selected > a:after {
  opacity: 1;
  visibility: visible;
}

.resources-content {
  width: 100%;
}
@media (min-width: 992px) {
  .resources-content {
    padding-left: 30px;
    flex-grow: 1;
    min-width: 0;
    width: auto;
  }
}
@media (min-width: 1024px) {
  .resources-content {
    padding-left: 50px;
  }
}
@media (min-width: 1200px) {
  .resources-content {
    padding-left: 80px;
  }
}
@media (min-width: 1440px) {
  .resources-content {
    padding-left: 120px;
  }
}

.resources-content .tab-item {
  overflow: visible;
}
.resources-content .image-holder {
  position: relative;
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  .resources-content .image-holder {
    margin-bottom: 75px;
  }
}
@media (min-width: 1200px) {
  .resources-content .image-holder {
    margin-bottom: 90px;
  }
}

/* resources slider style */
.resources-slider {
  margin-left: -15px;
}
@media (min-width: 1024px) {
  .resources-slider {
    margin-left: -40px;
  }
}
@media (min-width: 1200px) {
  .resources-slider {
    margin-left: -60px;
  }
}
.resources-slider .slick-track {
  display: flex !important;
}
.resources-slider .slick-list {
  overflow: hidden;
}
@media (min-width: 768px) {
  .resources-slider .slick-list {
    padding-right: 10120px;
    margin-right: -9999px;
  }
}
@media (min-width: 1024px) {
  .resources-slider .slick-list {
    padding-right: 0;
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .resources-slider .slick-list {
    padding-right: 9860px;
    margin-right: -9999px;
  }
}
@media (min-width: 1440px) {
  .resources-slider .slick-list {
    margin-right: -9999px;
  }
}
.resources-slider .slick-slide {
  height: auto !important;
  padding: 0 0 10px 25px;
}
@media (min-width: 1640px) {
  .resources-slider .slick-slide {
    padding: 0 0 17px 37px;
  }
}
/* process module style */
.process-module {
  padding: 50px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .process-module {
    padding: 60px 0;
  }
}
@media (min-width: 1024px) {
  .process-module {
    padding: 70px 0;
  }
}
@media (min-width: 1200px) {
  .process-module {
    padding: 80px 0;
  }
}

.process-module .section-header {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.process-module .process-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .process-module .process-holder {
    flex-direction: row-reverse;
  }
}

.process-module .textbox,
.process-module .image-holder {
  width: 100%;
}
@media (min-width: 992px) {
  .process-module .textbox,
  .process-module .image-holder {
    width: 48%;
  }
}

.process-module .image-holder {
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 992px) {
  .process-module .image-holder {
    margin-bottom: 0;
  }
}

.process-module .buttons-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .process-module .buttons-wrap {
    gap: 20px;
  }
}
/* awards module style */
.awards-module {
  padding: 20px 0 115px;
  position: relative;
  z-index: 1;
}
.awards-module:after {
  content: '';
  position: absolute;
  bottom: 4%;
  right: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 836px;
  height: 190px;
  background-image: url('//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/vector-pattern.png');
}
@media(min-width: 768px) {
  .awards-module:after {
    bottom: 11%;
  }
}

.awards-module .awards-slider {
  padding: 0 15px;
}
@media(min-width: 768px) {
  .awards-module .awards-slider {
    padding: 0 50px;
  }
}
@media(max-width: 767px) {
  .awards-module .awards-slider .slick-arrow {
    left: -22px;
  }
  .awards-module .awards-slider .slick-arrow.slick-next {
    left: auto;
    right: -22px;
  }
}


.awards-module .awards-holder {
  background-color: rgba(37,77,117,0.1);
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 45px 25px;
}
@media(min-width: 768px) {
  .awards-module .awards-holder {
    padding: 55px 44px;
  }
}
@media(min-width: 1200px) {
  .awards-module .awards-holder {
    padding: 55px 44px;
  }
}

.awards-module .image-holder, .awards-module .textbox {
  width: 100%;
}

.awards-module .image-holder {
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .awards-module .textbox {
    width: 52%;
  }
  .awards-module .image-holder{
    padding-left: 30px;
    margin: 0;
    text-align: right;
    width: 48%;
  }
}
/* team module style */
.team-module {
  background: #01343e;
  color: #fff;
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .team-module {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  .team-module {
    padding: 70px 0;
  }
}
@media (min-width: 1200px) {
  .team-module {
    padding: 80px 0;
  }
}

.team-module:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  content: "";
  background: url("../images/img-boxes2.png") no-repeat;
  background-size: 100% 100%;
}
.team-module .container {
  position: relative;
  z-index: 1;
}
.team-module .team-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.team-module .textbox,
.team-module .team-col {
  width: 100%;
  margin: 0 0 45px;
}
@media (min-width: 1024px) {
  .team-module .textbox,
  .team-module .team-col {
    width: 49%;
    margin: 0;
  }
}

.team-module .team-col {
  margin: 0;
}
@media (min-width: 1024px) {
  .team-module .team-col {
    width: 47%;
  }
}
@media (min-width: 1440px) {
  .team-module .team-col {
    width: 45%;
  }
}

.team-module h2 strong {
  font-weight: 700;
  color: #fb6238;
}
@media (min-width: 1440px) {
  .team-module p {
    margin-bottom: 50px;
  }
}

.team-module .textbox .stats-list {
  padding: 0;
  list-style: none;
  margin: 0 0 35px;
  display: flex;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .team-module .textbox .stats-list {
    font-size: 16px;
    margin-bottom: 45px;
  }
}
@media (min-width: 1440px) {
  .team-module .textbox .stats-list {
    margin-bottom: 65px;
  }
}

.team-module .textbox .stats-list li {
  flex: 1;
  padding: 18px 10px !important;
}
@media (min-width: 768px) {
  .stats-list li {
    padding: 25px 15px !important;
  }
}

.stats-list li:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.team-module .textbox .stats-list li:before {
  display: none;
}
.team-module .textbox .stats-list .numbers {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .team-module .textbox .stats-list .numbers {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  .team-module .textbox .stats-list .numbers {
    font-size: 42px;
  }
}

.team-list {
  list-style: none;
  padding: 0;
  margin: 0 -7px 30px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .team-list {
    margin: 0 0 20px;
  }
}
@media (min-width: 1640px) {
  .team-list {
    margin: 0 0 70px;
  }
}

.team-list li {
  width: 50%;
  padding: 0 7px 0 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .team-list li {
    padding: 0 7px 30px;
    width: 33.33%;
  }
}
@media (min-width: 992px) {
  .team-list li {
    padding: 0 7px 30px;
    width: 25%;
  }
}
@media (min-width: 1024px) {
  .team-list li {
    padding: 0 15px 40px;
    width: 50%;
  }
}

.team-list .team-box {
  display: inline-block;
}
.team-list .team-box:hover .caption {
  opacity: 1;
  visibility: visible;
}
.team-list .image-box {
  position: relative;
  overflow: hidden;
  width: 155px;
  height: 155px;
  margin: 0 auto 12px;
}
@media (min-width: 768px) {
  .team-list .image-box {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .team-list .image-box {
    width: 185px;
    height: 185px;
  }
}

.team-list .image-box img {
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: center;
}
.team-list .caption {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #fb6238;
  font-size: 22px;
  line-height: 1.375;
  font-weight: 500;
  padding: 10px;
  text-align: left;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
/*   display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3; */
}
@media (min-width: 768px) {
  .team-list .caption {
    padding: 15px;
  }
}
@media (min-width: 1200px) {
  .team-list .caption {
    font-size: 26px;
    padding: 15px;
  }
}

.team-list .text-info {
  line-height: 1.2;
}
.team-list .name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fb6238;
  margin: 0 0 5px;
}
@media (min-width: 768px) {
  .team-list .name {
    margin: 0;
    font-size: 20px;
  }
}

.team-list .designation {
  font-size: 16px;
  font-weight: 500;
  display: block;
  color: #fff;
}
@media (min-width: 768px) {
  .team-list .designation {
    font-size: 18px;
  }
}

.team-link {
  text-align: center;
}
/* team module style */
.team-module-02 {
  padding: 80px 0;
}

/* team style */
.teams {
  padding-top: 74px;
}
.teams h5, .teams .h5 {
  margin: 0;
  display: block;
}
.teams .team-title {
  border-bottom: 2px solid #01343e;
  padding-bottom: 20px;
  margin-bottom: 35px;
}
@media (min-width: 1024px) {
  .teams .team-title {
    border-width: 3px;
  }
}
@media (min-width: 1200px) {
  .teams .team-title {
    font-size: 30px;
    font-weight: 700;
    border-width: 5px;
  }
  .teams h5, .teams .h5 {
    font-size: 21px;
    font-weight: 700;
  }
}

.teams .teams-holder {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -10px 40px;
}
.teams .teams-holder:last-child {
  margin-bottom: 0;
}
@media(min-width: 1200px) {
  .teams .teams-holder {
    margin-bottom: 50px;
  }
}

.teams .team-col {
  padding: 0 10px;
  margin-bottom: 30px;
  width: 100%;
}
@media(min-width: 576px) {
  .teams .team-col {
    width: 50%;
  }
}
@media(min-width: 1024px) {
  .teams .team-col {
    margin-bottom: 60px;
    width: 33.333%;
  }
}
@media(min-width: 1440px) {
  .teams .teams-holder {
    margin-left: -15px;
    margin-right: -15px;
  }
  .teams .team-col {
    padding: 0 15px;
    width: 25%;
  }
}

.teams .team-member .image {
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.teams .team-member .image:after {
  content: "";
  display: block;
  padding-top: 105%;
}
.teams .team-member .image img {
  display: block;
  height: 100% !important;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}
.teams .team-member p {
  display: -webkit-box;
  -webkit-box-orient: ertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.teams .no-results {
  text-align: center;
  width: 100%;
}


/* search form style */
@media (min-width: 1200px) {
  .team-module-02 .search-form {
    margin: 0 0 0 auto;
  }
}


/* team modal style */
.modal-popup.team-modal .modal-continer {
  max-width: 1040px;
  padding: 0;
}
.modal-popup.team-modal .modal-content {
  justify-content: inherit;
  align-items: center;
  padding: 0;
}
.modal-popup.team-modal .modal-close {
  z-index: 999;
}
.modal-popup.team-modal .modal-close::before {
  display: none;
}

.modal-popup.team-modal .image {
  width: 100%;
}
@media(min-width: 768px) {
  .modal-popup.team-modal .image {
    width: 50%;
  }
}
@media(min-width: 1024px) {
  .modal-popup.team-modal .image {
    width: 46%;
  }
}

.modal-popup.team-modal .content {
  padding: 30px;
  width: 100%;
}
@media(min-width: 768px) {
  .modal-popup.team-modal .content {
    padding: 40px 36px;
    width: 50%;
  }
}
@media(min-width: 1024px) {
  .modal-popup.team-modal .content {
    width: 54%;
  }
}

.modal-popup.team-modal h3 {
  color: #fa6339;
}
.modal-popup.team-modal h4 {
  color: #09dbb4;
}
@media (min-width: 1200px) {
  .modal-popup.team-modal h3, .modal-popup.team-modal .h3 {
    font-size: 50px;
  }
  .modal-popup.team-modal h4, .modal-popup.team-modal .h4 {
    font-size: 35px;
  }
}

.modal-popup.team-modal .text {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-popup.team-modal .image {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 465px;
}
@media(min-width: 768px) {
  .modal-popup.team-modal .image {
    border-radius: 16px 0 0 16px;
  }
}

.modal-popup.team-modal .image:after {
  content: "";
  display: block;
  padding-top: 119.4%;
}
.modal-popup.team-modal .image img {
  display: block;
  height: 100% !important;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}

.modal-popup.team-modal .contact-list {
  display: flex;
  align-items: center;
  margin-top: 35px;
  gap: 20px;
}

.modal-popup.team-modal .button.primary_outline {
  border-radius: 0;
  color: #1b1b1b;
}
@media(min-width: 1200px) {
  .modal-popup.team-modal .button.primary_outline {
    font-size: 20px;
  }
}

.modal-popup.team-modal .button .icon {
  display: inline-block;
  margin-right: 13px;
  max-width: 30px;
}
.modal-popup.team-modal .button .icon .light {
  display: none;
}
.modal-popup.team-modal .button:hover .icon .light {
  display: block;
}
.modal-popup.team-modal .button:hover .icon .dark {
  display: none;
}
/* core-values module style */
.core-values-module {
  padding: 50px 0 80px;
  overflow: hidden;
  color: #fff;
  background: #01343e;
}
@media (min-width: 768px) {
  .core-values-module {
    padding: 60px 0 90px;
  }
}
@media (min-width: 992px) {
  .core-values-module {
    padding: 70px 0 100px;
  }
}
@media (min-width: 1200px) {
  .core-values-module {
    padding: 80px 0 140px;
  }
}

.core-values-module .core-values-holder {
  display: flex;
  align-items: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .core-values-module .core-values-holder {
    flex-wrap: nowrap;
    padding: 30px 0 0;
  }
}


@media (min-width: 1200px) {
  .core-values-module .tabs-list {
    width: 28.136%;
  }
}

@media (min-width: 1600px) {
  .core-values-module .tabs-content {
    padding-left: 140px;
  }
}

.core-values-content .tab-item {
  overflow: visible;
  max-width: 954px;
}
/* partners module style */
.partners-module {
  padding: 50px 0;
}
@media (min-width: 1200px) {
  .partners-module {
    padding: 60px 0;
  }
}

.partners-module .section-header {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .partners-module .section-header {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .partners-module .section-header {
    margin-bottom: 40px;
  }
}

.partners-module .partners-slider {
  padding: 0 50px;
}
@media(min-width: 768px) {
  .partners-module .partners-slider {
    padding: 0 60px;
  }
}
@media(min-width: 1200px) {
  .partners-module .partners-slider {
    padding: 0 70px;
  }
}

.partners-module .partners-slider .slick-track {
  display: flex !important;
  align-items: center;
}
.partners-module .partners-slider .slick-list {
  margin: 0 -20px;
}
.partners-module .partners-slider .slick-slide {
  padding: 0 20px;
  height: inherit !important;
}
.partners-module .partners-slider .slick-arrow {
  left: -15px;
}
.partners-module .partners-slider .slick-arrow.slick-next {
  right: -15px;
  left: auto;
}

.partners-module .partners-slider .image-holder {
  display: flex;
  justify-content: center;
}
.contact-module {
  padding: 50px 0;
  overflow: hidden;
  color: #fff;
  background: #fa6339;
}
@media (min-width: 768px) {
  .contact-module {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  .contact-module {
    padding: 70px 0;
  }
}
@media (min-width: 1200px) {
  .contact-module {
    padding: 80px 0;
  }
}

.contact-module .container {
  max-width: 970px;
}
.contact-module .section-tagline {
  color: currentColor;
}
.contact-module .section-tagline {
  margin: 0 0 20px;
}

.contact-module .form-holder {
  overflow: hidden;
}

.contact-module form .hs-form-field {
  padding-left: 5px;
  padding-right: 5px; 
}
@media (min-width: 768px) {
  .contact-module form .hs-form-field {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.contact-module form .form-columns-2 .hs-form-field {
  width: 100%;
}
@media (min-width: 576px) {
  .contact-module form .form-columns-2 .hs-form-field {
    width: 50%;
  }
}

.contact-module form .hs-input {
  border-radius: 5px;
  color: #1b1b1b;
  background-color: #fff;
  border-color: #fff;
  width: 100% !important;
}
@media (min-width: 768px) {
  .contact-module form .hs-input {
    border-radius: 8px;
  }
}
@media (min-width: 1200px) {
  .contact-module form .hs-input {
    border-radius: 12px;
  }
}

.contact-module form .hs-input::placeholder {
  opacity: 1;
  color: #1b1b1b;
}
.contact-module form .hs-input:focus {
  outline: none;
}
.contact-module form .hs-error-msg {
  color: #fff;
}

.contact-module form .hs-submit {
  width: 100%;
  padding: 30px 0 0;
  text-align: center;
}
.contact-module form .hs-button {
  min-width: 280px;
}
.contact-module form .hs-button:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.contact-module form .hs-fieldtype-checkbox {
  width: 100%;
  padding: 20px 0 0;
}
.contact-module form .hs-fieldtype-checkbox > label {
  font-size: 20px;
  font-weight: 400;
  display: block;
  margin: 0 0 18px;
}
@media (min-width: 768px) {
  .contact-module form .hs-fieldtype-checkbox > label {
    text-align: center;
    margin: 0 0 25px;
  }
}

.contact-module form .hs-fieldtype-checkbox .inputs-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  column-gap: 10px;
}
@media (min-width: 768px) {
  .contact-module form .hs-fieldtype-checkbox .inputs-list {
    column-gap: 20px;
    column-count: 3;
  }
}

.contact-module form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox { 
  margin: 0;
  padding-bottom: 15px;
}

.contact-module form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  padding-left: 40px;
  font-size: 16px;
  margin: 0;
}
@media (min-width: 768px) {
  .contact-module form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display {
    gap: 10px;
  }
}
@media (min-width: 1200px) {
  .contact-module form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .contact-module form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display {
    font-size: 20px;
  }
}

.contact-module form .hs-fieldtype-checkbox .inputs-list input[type=checkbox] {
  display: none;
}
.contact-module form .hs-fieldtype-checkbox .inputs-list input[type=checkbox]:checked + span:after {
  opacity: 1;
  visibility: visible;
}
.contact-module form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display span:before {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  vertical-align: middle;
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .contact-module form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display span:before {
    top: -3px;
    width: 28px;
    height: 28px;
    border-width: 4px;
  }
}
@media (min-width: 1200px) {
  .contact-module form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display span:before {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }
}
.contact-module form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display span:after {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 7px;
  height: 14px;
  margin: -8px 0 0 -7px;
  border: solid #fa6339;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: 0.25s;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 768px) {
  .contact-module form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display span:after {
    width: 9px;
    height: 16px;
    margin: -10px 0 0 -6px;
    border-width: 0 3px 3px 0;
  }
}
@media (min-width: 1200px) {
  .contact-module form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display span:after {
    width: 10px;
    height: 18px;
    border-width: 0 4px 4px 0;
    margin: -12px 0 0 -4px;
  }
}
.contact-module form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox { 
  padding-bottom: 12px;
  padding-top:12px;
}
/* partners module style */
.certifications-module {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .certifications-module {
    padding: 60px 0;
  }
}
@media (min-width: 1200px) {
  .certifications-module {
    padding: 70px 0;
  }
}

.certifications-module .section-header {
  margin-bottom: 0;
}

.certifications-list {
  
}
.certifications-list .image-holder {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 0 30px;
}
.certifications-list .line-box {
	width: 100%;
  padding: 35px 0 0;
	overflow: hidden;
}
.certifications-list .line-box .line-wrap {
	width: 99999px;
	float: left;
  display: flex;
  align-items: center;
}
.touch-device .line-box {
	width: 600px;
}
/* call-to-action style */
.call-to-action {
  background-color: #fa6339;
  color: #fff;
  padding: 50px 0;
}

.call-to-action .holder {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media(min-width: 768px) {
  .call-to-action .holder .textbox {
    padding-right: 30px;
    width: 70%;
  }
  .call-to-action .holder .buttons-wrap {
    width: 30%;
  }
  .call-to-action .holder .buttons-wrap .button {
    margin: 0 0 0 auto;
  }
}
@media(min-width: 992px) {
  .call-to-action .holder .textbox {
    width: 75%;
  }
  .call-to-action .holder .buttons-wrap {
    width: 25%;
  }
}
/* content + image sytle */
.content-with-image {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
@media(min-width: 768px) {
  .content-with-image {
    padding: 60px 0;
  }
}
@media(min-width: 992px) {
  .content-with-image {
    padding: 70px 0;
  }
}
@media(min-width: 1200px) {
  .content-with-image {
    padding: 80px 0;
  }
}

.content-with-image:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 939px;
  height: 191px;
  z-index: 1;
  display: none;
  background-image: url('//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/vector-pattern02.png');
}
@media(min-width: 1200px) {
  .content-with-image:after {
    display: block;
  }
}

@media (min-width: 1440px) {
  .content-with-image .section-header {
    margin-bottom: 88px;
  }
}

.content-with-image .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px;
  
}
.content-with-image .row.left {
  flex-direction: row-reverse;
}
.content-with-image .column {
  padding: 0 15px;
  width: 100%;
}
@media(min-width: 992px) {
  .content-with-image .column {
    width: 50%;
  }
}

.content-with-image .textbox {
  position: relative;
  z-index: 2;
}
@media (min-width: 1440px) {
  .content-with-image .textbox {
    padding: 0 25px;
  }
}

.content-with-image .image-holder {
  margin-top: 30px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.content-with-image .image-holder:after {
  background: #cef5ea;
  bottom: -6%;
  content: "";
  display: none;
  height: 46%;
  left: 3%;
  position: absolute;
  transform: skewX(-500deg);
  width: 47%;
  z-index: -1;
}
@media (min-width: 992px) {
  .content-with-image .image-holder {
    margin: 0;
    text-align: center;
  }
  .content-with-image .image-holder:after {
    display: block;
  }
}
/* features list module style */
.features-list-module {
  padding: 0 0 40px;
}
@media(min-width: 768px) {
  .features-list-module {
    padding-bottom: 60px;
  }
}
@media(min-width: 1200px) {
  .features-list-module {
    padding-bottom: 80px;
  }
}

@media(min-width: 768px) {
  .features-list-module .holder {
    display: flex;
    flex-flow: row wrap;
  }
}

.features-list-module .features {
  padding: 30px 0;
  position: relative;
  width: 100%;
}
@media(min-width: 992px) {
  .features-list-module .features {
    padding: 20px 30px;
    width: 33.33%;
  }
}

.features-list-module .features:not(:nth-child(3n)):after {
  content: '';
  position: absolute;
  background-color: #99acad;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
}
@media(min-width: 992px) {
  .features-list-module .features:not(:nth-child(3n)):after {
    top: 38%;
    left: auto;
    width: 1px;
    height: auto;
  }
}

.features-list-module .features .numbers {
  margin: 0 0 25px -10px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 65px;
  height: 62px;
  z-index: 1;
}
.features-list-module .features .numbers:after {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  background-repeat: no-repeat;
  background-size: 80% 80%;
  display: inline-block;
  width: 77px;
  height: 76px;
  z-index: -1;
  background-image: url("//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/numbers-bg.png");
}

.features-list-module .features h5 {
  font-weight: 700;
}
/* logos module style */
.logos-module {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .logos-module {
    padding: 50px 0;
  }
}
@media (min-width: 1200px) {
  .logos-module {
    padding: 60px 0;
  }
}

.logos-module .section-header {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .logos-module .section-header {
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .logos-module .section-header {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .logos-module .section-header {
    margin-bottom: 55px;
  }
}

.logos-module .logos-slider {
  padding: 0 50px;
}
@media(min-width: 768px) {
  .logos-module .logos-slider {
    padding: 0 60px;
  }
}
@media(min-width: 1200px) {
  .logos-module .logos-slider {
    padding: 0 70px;
  }
}

.logos-module .logos-slider .slick-track {
  display: flex !important;
  align-items: center;
}
.logos-module .logos-slider .slick-list {
  margin: 0 -20px;
}
.logos-module .logos-slider .slick-slide {
  padding: 0 20px;
  height: inherit !important;
}
.logos-module .logos-slider .slick-arrow {
  left: -15px;
}
.logos-module .logos-slider .slick-arrow.slick-next {
  right: -15px;
  left: auto;
}

.logos-module .logos-slider .image-holder {
  display: flex;
  justify-content: center;
}
/* recent tag posts module style */
.recent-tag-post-module {
  background-image: linear-gradient( -85deg, rgb(255,255,255) 0%, rgb(255,247,236) 100%);
  padding: 50px 0;
}
@media (min-width: 768px) {
  .recent-tag-post-module {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  .recent-tag-post-module {
    padding: 70px 0;
  }
}
@media (min-width: 1200px) {
  .recent-tag-post-module {
    padding: 80px 0;
  }
}

.recent-tag-post-module .section-header {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .recent-tag-post-module .section-header {
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .recent-tag-post-module .section-header {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .recent-tag-post-module .section-header {
    margin-bottom: 55px;
  }
}


/* tag posts slider style */
.tags-post-slider .slick-track {
  display: flex !important;
}
.tags-post-slider .slick-list {
  margin: 0 -20px;
  padding-bottom: 20px;
}
.tags-post-slider .slick-slide {
  padding: 0 20px;
  height: inherit !important;
}
.tags-post-slider-wrapper .slick-controls .slick-dots button {
  background-color: #161616;
}
.tags-post-slider-wrapper .slick-controls .slick-dots .slick-active button {
  background: #fb6238;
}
/* recent tag posts module style */
.featured-post-module {
  overflow: hidden;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .featured-post-module {
    padding: 60px 0;
  }
}
@media (min-width: 1024px) {
  .featured-post-module {
    padding: 70px 0 80px;
  }
}

.featured-post-module:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(251, 112, 87, 1);
  z-index: -1;
}

.featured-post-module .container:before, .why-us-module .container:after {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
  z-index: -1;
}
.featured-post-module .container:before {
  left: 0;
  bottom: 0;
  border-width: 400px 0 0 300px;
  border-left-color: #fb6448;
}
.featured-post-module .container:after {
  right: 0;
  top: 0;
  border-width: 0 300px 400px 0;
  border-right-color: #fb6448;
}

.featured-post-module .section-header {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .featured-post-module .section-header {
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .featured-post-module .section-header {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .featured-post-module .section-header {
    margin-bottom: 45px;
  }
}

.featured-post-module .section-header .section-tagline {
  color: #fff;
}


/* featured post slider style */
.featured-post-slider .slick-track {
  display: flex !important;
}
.featured-post-slider .slick-list {
  margin: 0 -20px;
  padding-bottom: 20px;
}
.featured-post-slider .slick-slide {
  padding: 0 20px;
  height: inherit !important;
}
.featured-slider-wrapper .slick-controls {
  padding-top: 17px;
}
.featured-slider-wrapper .slick-controls .slick-dots button {
  background-color: #fff;
}
.featured-slider-wrapper .slick-controls .slick-dots .slick-active button {
  background: #09dbb4;
}


/* featured post style */
.featured-post {
  color: #1b1b1b;
  background: #fff;
  height: 100%;
}

.featured-post .featured-post-holder {
  display: flex;
  flex-flow: row wrap;
  height: 100%;
}
@media(min-width: 992px) {
  .featured-post .featured-post-holder {
    flex-direction: row-reverse;
  }
}
.featured-post .featured-post-image {
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .featured-post .featured-post-image {
    width: 70%;
  }
}

.featured-post .featured-post-image:before {
  content: "";
  display: block;
  padding-top: 60.1%;
}
.featured-post .featured-post-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: center;
}

.featured-post .featured-post-textbox {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding: 30px 20px;
}
@media (min-width: 992px) {
  .featured-post .featured-post-textbox {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .featured-post .featured-post-textbox {
    padding: 25px;
  }
}

.featured-post h4 {
  position: relative;
  font-weight: 700;
  margin: 0;
  font-size: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1200px) {
  .featured-post h4 {
    font-size: 30px;
  }
}

.featured-post .featured-post-content {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-post .featured-post-content p {
  margin: 0;
  display: inline;
}
.featured-post .featured-post-content p a {
  color: currentcolor;
}

.featured-post .featured-post-content h1, .featured-post .featured-post-content h2, .featured-post .featured-post-content h3, .featured-post .featured-post-content h4, .featured-post .featured-post-content h5, .featured-post .featured-post-content h6 {
  display: none;
}

.featured-post .tags-list {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -5px;
}

.featured-post .tags-list li {
  padding: 0 5px 10px;
}

.featured-post .subtitle {
  background: #09dbb4;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  padding: 6px 10px;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .featured-post .subtitle {
    padding: 6px 15px;
  }
}
/* get-in-touch module style */
.get-in-touch {
  background: #fa6339;
  color: #fff;
  overflow: hidden;
  padding: 50px 0;
}
@media (min-width: 768px) {
  .get-in-touch {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  .get-in-touch {
    padding: 70px 0;
  }
}
@media (min-width: 1200px) {
  .get-in-touch {
    padding: 80px 0;
  }
}


.get-in-touch .section-header {
  max-width: 800px;
}
@media(min-width: 992px) {
  .get-in-touch .section-header {
    margin-bottom: 60px;
  }
}

.get-in-touch .section-tagline {
  color: #fff;
}

.get-in-touch .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.get-in-touch .column {
  padding: 0 15px;
  margin-bottom: 40px;
  width: 100%;
}
@media(min-width: 992px) {
  .get-in-touch .row {
    flex-direction: row-reverse;
  }
  .get-in-touch .column {
    margin: 0;
  }
  .get-in-touch .column:nth-child(1) {
    width: 70%;
  }
  .get-in-touch .column:nth-child(2) {
    width: 30%;
  }
}


.get-in-touch .address, .get-in-touch .contact {
  margin-bottom: 50px;
}
.get-in-touch .address h4, .get-in-touch .contact h4, .get-in-touch .email h4 {
  margin-bottom: 5px;
}
.get-in-touch .address a, .get-in-touch .contact a, .get-in-touch .email a {
  color: #fff;
}
.get-in-touch .address a:hover, .get-in-touch .contact a:hover, .get-in-touch .email a:hover {
  text-decoration: underline;
}
.get-in-touch .address .icon, .get-in-touch .contact .icon, .get-in-touch .email .icon {
  display: inline-block;
  margin-bottom: 10px;
}


.get-in-touch form .hs-form-field {
  padding-left: 5px;
  padding-right: 5px; 
}
@media (min-width: 768px) {
  .get-in-touch form .hs-form-field {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.get-in-touch form .form-columns-2 .hs-form-field {
  width: 100%;
}
@media (min-width: 576px) {
  .get-in-touch form .form-columns-2 .hs-form-field {
    width: 50%;
  }
}

.get-in-touch form .hs-input {
  border-radius: 5px;
  color: #1b1b1b;
  background-color: #fff;
  border-color: #fff;
  width: 100% !important;
}
@media (min-width: 768px) {
  .get-in-touch form .hs-input {
    border-radius: 8px;
  }
}
@media (min-width: 1200px) {
  .get-in-touch form .hs-input {
    border-radius: 12px;
  }
}

.get-in-touch form .hs-input::placeholder {
  opacity: 1;
  color: #1b1b1b;
}
.get-in-touch form .hs-input:focus {
  outline: none;
}

.get-in-touch form select {
  padding-right: 40px;
  appearance: none;
  background-repeat: no-repeat;
  background-position: 98% 50%;
  background-image: url('//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/select-arrow.png');
}

.get-in-touch form textarea {
  height: 157px;
  resize: none;
}

.get-in-touch form .hs-error-msg {
  color: #fff;
}

.get-in-touch form .hs_error_rollup {
  text-align: left;
}

.get-in-touch form .richtext {
  font-size: 16px;
}

.get-in-touch form .hs-submit {
  width: 100%;
  padding: 10px 0 0;
}
.get-in-touch form .hs-button {
  min-width: 280px;
}
.get-in-touch form .hs-button:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.get-in-touch form .hs-fieldtype-checkbox {
  width: 100%;
  padding: 20px 0 0;
}
.get-in-touch form .hs-fieldtype-checkbox > label {
  font-size: 20px;
  font-weight: 400;
  display: block;
  margin: 0 0 18px;
}
@media (min-width: 768px) {
  .get-in-touch form .hs-fieldtype-checkbox > label {
    margin: 0 0 25px;
  }
}

.get-in-touch form .hs-fieldtype-checkbox .inputs-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  column-gap: 10px;
}
@media (min-width: 768px) {
  .get-in-touch form .hs-fieldtype-checkbox .inputs-list {
    column-gap: 20px;
    column-count: 3;
  }
}

.get-in-touch form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox { 
  margin: 0;
  padding-bottom: 15px;
}

.get-in-touch form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  padding-left: 40px;
  font-size: 16px;
  margin: 0;
}
@media (min-width: 768px) {
  .get-in-touch form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display {
    gap: 10px;
  }
}
@media (min-width: 1200px) {
  .get-in-touch form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .get-in-touch form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display {
    font-size: 20px;
  }
}

.get-in-touch form .hs-fieldtype-checkbox .inputs-list input[type=checkbox] {
  display: none;
}
.get-in-touch form .hs-fieldtype-checkbox .inputs-list input[type=checkbox]:checked + span:after {
  opacity: 1;
  visibility: visible;
}
.get-in-touch form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display span:before {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  vertical-align: middle;
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .get-in-touch form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display span:before {
    top: -3px;
    width: 28px;
    height: 28px;
    border-width: 4px;
  }
}
@media (min-width: 1200px) {
  .get-in-touch form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display span:before {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }
}
.get-in-touch form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display span:after {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 7px;
  height: 14px;
  margin: -8px 0 0 -7px;
  border: solid #fa6339;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: 0.25s;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 768px) {
  .get-in-touch form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display span:after {
    width: 9px;
    height: 16px;
    margin: -10px 0 0 -6px;
    border-width: 0 3px 3px 0;
  }
}
@media (min-width: 1200px) {
  .get-in-touch form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox-display span:after {
    width: 10px;
    height: 18px;
    border-width: 0 4px 4px 0;
    margin: -12px 0 0 -4px;
  }
}
/* key-points module style */
.key-points-module {
  background-color: #fa6339;
  color: #fff;
  padding: 40px 0;
}
@media(min-width: 768px) {
  .key-points-module {
    padding: 60px 0;
  }
}
@media(min-width: 1200px) {
  .key-points-module {
    padding: 80px 0;
  }
}

.key-points-module h2 {
  color: #fff;
  text-transform: uppercase;
}

@media(min-width: 768px) {
  .key-points-module .holder {
    display: flex;
    flex-flow: row wrap;
  }
}

.key-points-module .key-points {
  padding: 30px 0;
  position: relative;
  width: 100%;
}
@media(min-width: 992px) {
  .key-points-module .key-points {
    padding: 20px 30px;
    width: 33.33%;
  }
}
@media(min-width: 1200px) {
  .key-points-module .key-points {
    padding: 20px 50px;
  }
}

.key-points-module .key-points:not(:nth-child(3n)):after {
  content: '';
  position: absolute;
  background-color: #fff;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
}
@media(min-width: 992px) {
  .key-points-module .key-points:not(:nth-child(3n)):after {
    top: 28%;
    left: auto;
    width: 1px;
    height: auto;
  }
}

.key-points-module .key-points .numbers {
  margin: 0 0 25px -10px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 65px;
  height: 62px;
  z-index: 1;
}
.key-points-module .key-points .numbers:after {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  background-repeat: no-repeat;
  background-size: 80% 80%;
  display: inline-block;
  width: 77px;
  height: 76px;
  z-index: -1;
  background-image: url("//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/numbers-bg-dark.png");
}

.key-points-module .key-points h5 {
  font-weight: 700;
}
/* why-us module style */
.support-module {
  overflow: hidden;
  padding: 50px 0 70px;
  position: relative;
  z-index: 1;
}
@media(min-width: 768px) {
  .support-module {
    padding: 60px 0 80px;
  }
}
@media(min-width: 992px) {
  .support-module {
    padding: 80px 0 100px;
  }
}
@media(min-width: 1200px) {
  .support-module {
    padding-bottom: 120px;
  }
}

.support-module .section-header {
  margin-bottom: 30px;
}
@media(min-width: 768px) {
  .support-module .section-header {
    margin-bottom: 40px;
  }
}
@media(min-width: 1200px) {
  .support-module .section-header {
    margin-bottom: 56px;
  }
}

.support-module .support-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .support-module .support-holder {
    flex-direction: row-reverse;
    flex-wrap: nowrap;
  }
}

.support-module .support-info {
  width: 100%;
}
@media(min-width: 768px) {
  .support-module .support-info {
    width: 45%;
  }
}

.support-module .image-holder {
  text-align: center;
  margin-top: 50px;
  width: 100%;
}
@media(min-width: 768px) {
  .support-module .image-holder {
    width: 45%;
  }
}

.support-module .fancy-image {
  padding-bottom: 10px;
  padding-left: 10px;
  max-width: 567px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .support-module .fancy-image {
    padding-bottom: 17px;
    padding-left: 17px;
  }
}

.support-module .fancy-image::after {
  background: #cef5ea;
  bottom: -4%;
  content: "";
  display: none;
  height: 25%;
  left: -1%;
  position: absolute;
  transform: skewX(-500deg);
  width: 38%;
  z-index: -1;
}
@media (min-width: 1024px) {
  .support-module .fancy-image::after {
    display: block;
  }
}

.support-module .fancy-image img {
  box-shadow: -10px 10px 0 0 #01343e;
}
@media (min-width: 768px) {
  .support-module .fancy-image img {
    box-shadow: -17px 17px 0 0 #01343e;
  }
}

.support-module .email, .support-module .contact {
  margin-bottom: 40px;
}
.support-module .email h4, .support-module .contact h4, .support-module .portal h4 {
  margin-bottom: 5px;
}
.support-module .email .icon, .support-module .contact .icon, .support-module .portal .icon {
  display: inline-block;
  margin-bottom: 10px;
}
.support-module .email p, .support-module .contact p, .support-module .portal p {
  margin-bottom: 15px;
}
.support-module .contact a {
  color: #fb6238;
}
.support-module .contact a:hover{
  text-decoration: underline;
}

/* Template CSS */
/* blog listing style */
.blog-listing {
  padding: 52px 0;
}
.blog-listing .container {
  max-width: 1515px;
}
.blog-listing h2 {
  font-weight: 700;
}
.listing-holder {
  display: flex;
  flex-flow: row wrap;
  gap: 40px;
  padding-top: 50px;
}
@media(min-width: 768px) {
  .listing-holder {
    padding-top: 80px;
  }
}
@media(min-width: 992px) {
  .listing-holder {
    flex-wrap: nowrap;
  }
}
@media(min-width: 1200px) {
  .listing-holder {
    padding-top: 100px;
  }
}

.listing-sidebar {
  width: 100%;
}
@media(min-width: 992px) {
  .listing-sidebar {
    width: 25%;
  }
}
@media(min-width: 1200px) {
  .listing-sidebar {
    width: 20%;
  }
}

.listing-content {
  width: 100%;
}
@media(min-width: 992px) {
  .listing-content {
    width: 72%;
  }
}
@media(min-width: 1200px) {
  .listing-content {
    width: 80%;
  }
}
  
  
.listing-content .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.listing-content .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
  display: none;
}
@media(min-width: 768px) {
  .listing-content .column {
    width: 50%;
  }
}
@media(min-width: 1440px) {
  .listing-content .column {
    width: 33.33%;
  }
}

.listing-content .post-box {
  background-color: #01343e;
  color: #fff;
  padding: 0;
}
.listing-content .post-box .tags-list {
  margin: 0 -5px;
}
.listing-content .post-box .tags-list li {
  padding: 0 5px 10px;
}
.listing-content .post-box .post-textbox {
  padding: 20px 15px;
}
@media(min-width: 768px) {
  .listing-content .post-box .post-textbox {
    padding: 25px;
  }
}

.listing-content .post-box .subtitle {
  font-size: 16px;
  text-transform: capitalize;
}
.listing-content .post-box .post-foot {
  padding: 20px 15px 30px;
}
@media(min-width: 768px) {
  .listing-content .post-box .post-foot {
    padding: 25px 25px 40px;
  }
}

.listing-content .post-box .text-link.small {
  font-size: 18px;
}


@media (min-width: 992px) {
  .listing-content .post-box .subtitle {
    padding: 6px 10px;
  }
}
@media (min-width: 768px) {
  .listing-content .post-box.small-text {
    font-size: 16px;
  }
}

.listing-content .button-holder {
  text-align: right;
}
.listing-content .button-holder a.small-text {
  color: rgba(27,27,27,0.5);
  font-weight: 500;
}


.listing-sidebar .post-type li:first-child a {
  border-top: 3px solid #001d23;
}
.listing-sidebar .post-type li a {
  color: #1b1b1b;
  border-bottom: 3px solid #001d23;
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 58px;
  padding: 10px 50px 10px 20px;
  position: relative;
}
@media (min-width: 768px) {
  .listing-sidebar .post-type li a {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .listing-sidebar .post-type li a {
    height: 80px;
  }
}
@media (min-width: 1024px) {
  .listing-sidebar .post-type li a {
    height: 90px;
  }
}
@media (min-width: 1200px) {
  .listing-sidebar .post-type li a {
    font-size: 18px;
    height: 100px;
  }
}

.listing-sidebar .post-type li a.selected {
  color: #fff;
  background: #fa6339;
}
.listing-sidebar .post-type li.selected a .icon.icon-dark {
  display: none;
}
.listing-sidebar .post-type li.selected a .icon.icon-white {
  transform: rotate(270deg) translateY(50%);
  display: block;
  right: 25px;
  margin-top: -5px;
}
@media(min-width: 992px) {
  .listing-sidebar .post-type li.selected a .icon.icon-white {
    right: 30px;
  }
}

.listing-sidebar .post-type li a .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  transform: rotate(180deg) translateY(50%);
  line-height: 0;
  max-width: 8px;
}
@media(min-width: 992px) {
  .listing-sidebar .post-type li a .icon {
    right: 20px;
  }
}
@media(min-width: 1024px) {
  .listing-sidebar .post-type li a .icon {
    max-width: 9px;
  }
}

.listing-sidebar .post-type li a .icon.icon-dark {
  display: block;
}
.listing-sidebar .post-type li a .icon.icon-white {
  display: none;
}

.listing-sidebar .post-type li .dropdown {
  display: none;
}
.listing-sidebar .post-type li.selected .dropdown {
  display: block;
}

/* custom checkbox style */
.listing-sidebar .post-type .custom-checkbox {
  font-weight: 700;
  height: 58px;
  padding: 10px 20px;
  position: relative;
  gap: 10px;
  border-bottom: 3px solid #001d23;
}
@media (min-width: 768px) {
  .listing-sidebar .post-type .custom-checkbox {
    gap: 16px;
  }
}
@media (min-width: 992px) {
  .listing-sidebar .post-type .custom-checkbox {
    height: 80px;
  }
}
@media (min-width: 1024px) {
  .listing-sidebar .post-type .custom-checkbox {
    height: 90px;
  }
}
@media (min-width: 1200px) {
  .listing-sidebar .post-type .custom-checkbox {
    font-size: 18px;
    height: 100px;
  }
}

.listing-sidebar .post-type .custom-checkbox .checkmark {
  background: transparent;
  border-color: #001d23;
  border-radius: 2px;
  height: 20px;
  width: 20px;
}
@media (min-width: 768px) {
  .listing-sidebar .post-type .custom-checkbox .checkmark {
    border-radius: 2px;
  }
}
@media (min-width: 992px) {
  .listing-sidebar .post-type .custom-checkbox .checkmark {
    height: 24px;
    width: 24px;
  }
}

.listing-sidebar .post-type .custom-checkbox .checkmark::after {
  border-color: #001d23;
}
@media(min-width: 768px) {
  .listing-sidebar .post-type .custom-checkbox .checkmark::after {
    border-width: 0 3px 3px 0;
    height: 16px;
    margin: -9px 0 0 -4px;
    width: 8px;
  }
}
/* blog post banner style */
.blog-post-banner {
  background: #01343e;
  color: #fff;
  padding: 150px 0 60px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .blog-post-banner {
    padding: 180px 0 80px;
  }
}
@media (min-width: 1024px) {
  .blog-post-banner {
    padding: 180px 0 80px;
  }
}
@media (min-width: 1200px) {
  .blog-post-banner {
    padding: 200px 0 100px;
  }
}
@media (min-width: 1440px) {
  .blog-post-banner {
    padding: 186px 0 100px;
  }
}

.blog-post-banner:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  content: "";
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  background-image: url("//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/img-boxes.png");
}

.blog-post-banner .section-header {
  text-align: left;
  max-width: 100%;
}

.blog-post-banner .section-header h1, .blog-post-banner .section-header h1 span  {
  color: #fff;
  font-weight: 700;
}


/* blog post meta style */
@media(min-width: 992px) {
  .blog-post__meta {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 165px;
  }
}

.blog-post__meta .author {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 20px;
}
.blog-post__meta .author .author-image {
  background-color: #09dbb4;
  border-radius: 100%;
  width: 60px;
  height: 60px;
}
.blog-post__meta .author .author-image img {
  font-size: 0;
  border-radius: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.blog-post__meta .author .info span {
  display: block;
}
.blog-post__meta .author .name {
  font-size: 20px;
  font-weight: 600;
}
@media(min-width: 768px) {
  .blog-post__meta .author .name {
    font-size: 22px;
  }
}

.blog-post__meta .author .designation {
  font-size: 18px;
  font-weight: 300;
}
@media(min-width: 768px) {
  .blog-post__meta .author .designation {
    font-size: 20px;
  }
}
@media(min-width: 992px) {
  .blog-post__meta .author .designation {
    font-size: 22px;
  }
}
@media(min-width: 1200px) {
  .blog-post__meta .author .designation {
    font-size: 24px;
  }
}
@media(min-width: 1440px) {
  .blog-post__meta .author .designation {
    font-size: 28px;
  }
}

.blog-post__meta .publish-date {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}
@media(min-width: 992px) {
  .blog-post__meta .publish-date {
    margin: 0;
  }
}

.blog-post__meta .publish-date li {
  position: relative;
  display: flex;
  align-items: center;
}
.blog-post__meta .publish-date li:not(:first-child):before {
  content: '';
  position: absolute;
  top: 50%;
  left: -22px;
  height: 63%;
  width: 3px;
  background-color: #fff;
  transform: translateY(-50%);
}

.blog-post__meta .publish-date time, .blog-post__meta .publish-date .pdf-link {
  font-size: 20px;
  font-weight: 600;
}
@media(min-width: 768px) {
  .blog-post__meta .publish-date time, .blog-post__meta .publish-date .pdf-link {
    font-size: 22px;
  }
}

.blog-post__meta .publish-date .icon {
  max-width: 30px;
  display: inline-block;
  margin-right: 15px;
  position: relative;
  top: -3px;
}

.blog-post__meta .publish-date .pdf-link {
  color: #fb6d53;
  text-transform: uppercase;
}
.blog-post__meta .publish-date .pdf-link:hover {
  text-decoration: underline;
}
.blog-post__meta .publish-date .pdf-link .icon {
  margin: 0 0 0 12px;
  top: 3px;
}

/* blog summary style */
.blog-summary {
  background-color: #fb6448;
  color: #fff;
  padding: 40px 20px;
}
@media(min-width: 768px) {
  .blog-summary {
    padding: 50px 40px;
  }
}
@media(min-width: 1200px) {
  .blog-summary {
    padding: 50px;
  }
}

.blog-summary .heading {
  display: block;
}
@media(min-width: 1440px) {
  .blog-summary .heading {
    font-size: 30px;
  }
}

.blog-summary.case-study {
  background-color: transparent;
  padding: 0;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .blog-summary.case-study {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .blog-summary.case-study {
    margin-bottom: 38px;
  }
  .blog-summary.case-study .text {
    max-width: 590px;
  }
}


/* blog post style */
.blog-post {
  padding: 42px 0 60px;
}
.blog-post .holder {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
  padding-top: 50px;
}
@media(min-width: 992px) {
  .blog-post .holder {
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    padding-top: 75px;
  }
} 
@media(min-width: 1200px) {
  .blog-post .holder {
    padding-top: 96px;
  }
}

.blog-post .sidebar {
  width: 100%;
}
@media(min-width: 992px) {
  .blog-post .sidebar {
    width: 25%;
  }
}

.blog-post .post {
  width: 100%;
}
@media(min-width: 992px) {
  .blog-post .post {
    padding-left: 20px;
    width: 75%;
  }
}
@media(min-width: 1200px) {
  .blog-post .post {
    padding-left: 40px;
  }
}

.blog-post .post p a {
  color: #1b1b1b;
  text-decoration: underline;
}
.blog-post .post h3 {
  color: #fb6448;
}
.blog-post .post img {
  display: block;
}



/* related post style */
.blog-related-posts {
  background-color: #01343e;
  padding: 50px 0;
}
@media (min-width: 768px) {
  .blog-related-posts {
    padding: 60px 0;
  }
}
@media (min-width: 1024px) {
  .blog-related-posts {
    padding: 70px 0;
  }
}
@media (min-width: 1200px) {
  .blog-related-posts {
    padding: 80px 0;
  }
}

/* tag posts slider style */
.related-posts-slider .slick-track {
  display: flex !important;
}
.related-posts-slider .slick-list {
  margin: 0 -20px;
  padding-bottom: 20px;
}
.related-posts-slider .slick-slide {
  padding: 0 20px;
  height: inherit !important;
}
.related-posts-slider-wrapper .slick-controls .slick-dots button {
  background-color: #fff;
}
.related-posts-slider-wrapper .slick-controls .slick-dots .slick-active button {
  background: #fb6238;
}
@media (min-width: 1024px) {
  .related-posts-slider-wrapper .slick-controls {
    padding-top: 62px;
  }
}


/* contents style */
.blog-post .contents {
  background-color: #01343e;
  color: #fff;
  margin-top: 20px;
  padding: 33px 20px;
}
@media(min-width: 992px) {
  .blog-post .contents {
    margin: 0;
  }
}
@media(min-width: 1200px) {
  .blog-post .contents {
    padding: 33px 35px;
  }
}

.blog-post .contents {
  display: none;
  margin-bottom: 20px;
}
.blog-post .contents h4 {
  color: #09dbb4;
}
.blog-post .content-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-post .content-list a {
  color: #fb6448;
  font-size: 20px;
  line-height: 34px;
}
.blog-post .content-list a span {
  color: #fff !important;
  font-weight: 400;
}
.blog-post .content-list a strong {
  font-weight: 400;
}
 .blog-post .content-list li {
  padding: 0 0 20px;
}

/* blog subscription */
.blog-subscription {
  background-color: #01343e;
  color: #fff;
  padding: 15px;
  text-align: center;
  padding: 33px 35px;
}
.blog-subscription .icon {
  display: block;
  margin-bottom: 8px;
}
.blog-subscription .h5 {
  color: #fff;
  text-transform: uppercase;
  display: block;
  margin: 0;
}
.blog-subscription form {
  position: relative;
}
.blog-subscription form input[type="email"] {
  background-color: #fff;
  border-color: #fff;
  border-radius: 20px;
  padding: 11px 45px 11px 15px;
}
.blog-subscription form .hs-button {
  position: absolute;
  top: 11px;
  right: 11px;
  font-size: 0;
  line-height: 0;
  background-color: transparent !important;
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url('//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/submit-arrow.png');
}





/* casestudy-banner style */
.casestudy-banner {
  background: #01343e;
  color: #fff;
  padding: 150px 0 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .casestudy-banner {
    padding: 180px 0 0;
  }
}
@media (min-width: 1024px) {
  .casestudy-banner {
    padding: 180px 0 0;
  }
}
@media (min-width: 1200px) {
  .casestudy-banner {
    padding: 200px 0 0;
  }
}
@media (min-width: 1440px) {
  .casestudy-banner {
    padding: 186px 0 0;
  }
}

.casestudy-banner:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  content: "";
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  background-image: url("//6503958.fs1.hubspotusercontent-na1.net/hubfs/6503958/raw_assets/public/NetCov-theme/images/img-boxes.png");
}

.casestudy-banner .banner-holder {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
@media(min-width: 1245px) {
  .casestudy-banner .banner-holder {
    position: relative;
    margin-right: calc((100vw - 1200px) / -2);
  }
}

.casestudy-banner .content {
  padding: 0 0 50px 0;
  width: 100%;
}
@media(min-width: 1200px) {
  .casestudy-banner .content {
    padding: 0 50px 50px 0;
    width: 60%;
    max-width: 900px;
  }
}

.casestudy-banner .featured-image {
  width: 100%;
  position: relative;
}
@media(min-width: 1200px) {
  .casestudy-banner .featured-image {
    width: 40%;
  }
}

.casestudy-banner .featured-image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.casestudy-banner .featured-image img {  
  display: block;
  height: 100% !important;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}
.casestudy-banner .section-header {
  text-align: left;
  max-width: 100%;
}
.casestudy-banner .section-header h1, .casestudy-banner .section-header h1 span  {
  color: #fff;
  font-weight: 700;
}

.casestudy-banner .tagline-list {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  gap: 40px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .casestudy-banner .tagline-list {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .casestudy-banner .tagline-list {
    margin-bottom: 38px;
  }
}
.casestudy-banner .tagline-list li {
  position: relative;
}
.casestudy-banner .tagline-list li:not(:first-child)::before {
  background-color: #fff;
  content: "";
  height: 65%;
  left: -22px;
  position: absolute;
  top: 4px;
  width: 3px;
}
.casestudy-banner .tagline-list .section-tagline {
  margin: 0;
}
.casestudy-banner .tagline-list .section-tagline.white {
  text-decoration: underline;
}



/* blog post style */
.blog-post.case-study {
  padding: 60px 0;
}
@media(min-width: 992px) {
  .blog-post.case-study {
    padding: 80px 0;
  }
}
@media(min-width: 1200px) {
  .blog-post.case-study {
    padding: 100px 0;
  }
}

.blog-post.case-study .holder {
  padding: 0;
}
.jobs-positions {
  padding: 50px 0;
}
@media(min-width: 768px) {
  .jobs-positions {
    padding: 70px 0;
  } 
}
@media(min-width: 992px) {
  .jobs-positions {
    padding: 80px 0;
  } 
}
@media(min-width: 1200px) {
  .jobs-positions {
    padding: 100px 0;
  } 
}

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

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

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

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

.contact-module form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox { 
  padding-bottom: 12px;
  padding-top:12px;
}
.get-in-touch form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox {
  padding-bottom: 12px;
  padding-top:12px;
}