/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */











































/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


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

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

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

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

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


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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: hidden;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

.banner-area .dnd-section, .banner-area .dnd-section > .row-fluid {
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.dnd-section > .row-fluid, .content-wrapper, .page-center {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 90px;
  padding-right: 90px;
}

@media only screen and (min-width: 690px) and (max-width: 1000px){
  .dnd-section > .row-fluid, .content-wrapper, .page-center {
    padding-left: 0;
    padding-right: 0;
  }


}

@media only screen and (max-width: 690px){
  .dnd-section > .row-fluid, .content-wrapper, .page-center {
    padding-left: 10px;
    padding-right: 10px;
  }

}

@media only screen and (min-width: 480px) and (max-width: 690px){
  .dnd-section > .row-fluid, .content-wrapper, .page-center {
    padding-left: 0;
    padding-right: 0;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */


@font-face { 
  font-family: "FontAwesome";
  src: url("https://f.hubspotusercontent30.net/hubfs/1553939/QMENTA_March2021/Fonts/fontawesome-webfont.eot") format("embedded-opentype"),
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/FontAwesome/fontawesome-webfont.svg) format("svg"),
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/FontAwesome/fontawesome-webfont.woff) format("woff"), 
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/FontAwesome/fontawesome-webfont.ttf) format("truetype");
  font-style: normal; 
  font-weight: normal; 
}

@font-face { 
  font-family: "Open Sans"; 
  src: url("https://f.hubspotusercontent30.net/hubfs/1553939/QMENTA_March2021/Fonts/OpenSans-Regular-webfont.eot") format("embedded-opentype"), 
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/OpenSans/OpenSans-Regular-webfont.woff) format("woff"), 
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/OpenSans/OpenSans-Regular-webfont.ttf) format("truetype"), 
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/OpenSans/OpenSans-Regular-webfont.svg) format("svg");
  font-style: normal;
  font-weight: 400; 
}
@font-face {
  font-family: "icomoon";
  src: url("https://f.hubspotusercontent30.net/hubfs/1553939/QMENTA_March2021/Fonts/icomoon.eot") format("embedded-opentype"), 
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/Icomoon/icomoon.woff) format("woff"),
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/Icomoon/icomoon.ttf) format("truetype"), 
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/Icomoon/icomoon.svg) format("svg");
  font-style: normal;
  font-weight: normal; 
}

@font-face { 
  font-family: "iconsmind"; 
  src: url("https://f.hubspotusercontent30.net/hubfs/1553939/QMENTA_March2021/Fonts/iconsmind.eot") format("embedded-opentype"),
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/iconsmind.ttf) format("truetype"),
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/iconsmind.woff) format("woff"), 
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/iconsmind.svg) format("svg"); 
  font-style: normal;
  font-weight: normal; 
}

@font-face { 
  font-family: steadysets; 
  src: url("https://f.hubspotusercontent30.net/hubfs/1553939/QMENTA_March2021/Fonts/steadysets.eot") format("embedded-opentype"),
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/steadysets/steadysets.ttf) format("truetype"),
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/steadysets/steadysets.woff) format("woff"),
    url(//f.hubspotusercontent30.net/hubfs/1553939/raw_assets/public/QMENTA_March2021/Fonts/steadysets/steadysets.svg) format("svg");
  font-style: normal;
  font-weight: 400; 
}



body {
  font-family: Muli, sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.563;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

p {
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  padding-bottom: 27px;
}

/* Anchor Links */
a {
  color: #2ca895;
  text-decoration: none;
  transition: color 0.2s;
  -webkit-transition: color 0.2s;
}
a:hover, a:focus {
  color: inherit;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: Muli, sans-serif;
  color: #333333;
  word-break: break-word;
  letter-spacing: 0px;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 7px;
}

h2 {
  margin-top: 10px;
  margin-bottom: 7px;
  font-size: 1.75rem;
  line-height: 1.5;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 8px;
  margin-top: 10px;
}

h4 {
  margin-bottom: 8px;
  margin-top: 10px;
  font-size: 1.250rem;
  line-height: 1.5;
}

h5 {
  margin-bottom: 7px;
  margin-top: 10px;
  font-size: 1.125rem;
  line-height: 1.5;
}

h6 {
  margin-bottom: 7px;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

.bold, strong, b {
  font-weight: 600;
}

code {
  vertical-align: bottom;
}

ol, ul {
  padding: 0;
  margin: 0;
  border: 0;
  list-style: none;
}
ul, ol {
  margin-left: 30px;
  margin-bottom: 30px;
}
ul li {
  list-style: disc;
  list-style-position: outside;
}
ol li {
  list-style: decimal;
  list-style-position: outside;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  padding: 0;
  margin: 0;
  border: 0;
  padding-left: 0px;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  font-size: 19px;
  line-height: 25px;
  font-weight: 300;
}

/* Horizontal Rules */
hr {
  height: 1px;
  border: none;
}

/* TODO */
small {

}

/* TODO */
mark {

}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

:focus {
  outline: none;
  outline-color: black;
}

.disable-focus-styles :focus {
  outline: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */


.hs_cos_wrapper_type_password_prompt,
.hs_cos_wrapper_type_email_simple_subscription,
.hs_cos_wrapper_type_form,
.hs_cos_wrapper_type_blog_subscribe,
.widget-type-google_search,
#comment-form,
.section.post-footer,
.hs-search-field,
.hs_cos_wrapper_type_member_login,
.hs_cos_wrapper_type_password_reset,
.hs_cos_wrapper_type_password_reset_request,
.hs_cos_wrapper_type_member_register{
  max-width: 767px;
  display: block;
  float: none;
  width: 100%;
  padding: 5%;
  border-radius: 3px;
  box-shadow: 0 10px 50px rgb(0 0 0 / 8%), 0 13px 45px rgb(0 0 0 / 8%);
  background-color: #f9f9f9;
}

.hs_cos_wrapper_type_password_prompt:hover,
.hs_cos_wrapper_type_email_simple_subscription:hover,
.hs_cos_wrapper_type_form:hover,
.hs_cos_wrapper_type_blog_subscribe:hover,
.widget-type-google_search:hover,
#comment-form:hover,
.section.post-footer:hover,
.hs-search-field:hover,
.hs_cos_wrapper_type_member_login:hover,
.hs_cos_wrapper_type_password_reset:hover,
.hs_cos_wrapper_type_password_reset_request:hover,
.hs_cos_wrapper_type_member_register:hover{
  background-color: #ffffff;
}

form {
  font-family: Noto Sans, sans-serif;
}

.hs-button {
  margin: 0;
  display: inline-block;
  width: auto;
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: Noto Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  background-color: #00758c;
  text-align: center;
  padding: 16px 32px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  box-shadow: none;
  -ms-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  border-style: solid;
  border-width: 1px;
  border-color: #00758c;
  text-decoration: none;
  white-space: normal;
}

.hs-button:hover, .hs-button:focus {
  background-color: #004d64;
  border-color: #004d64;
  
  color: #fff;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}

.hs-button:active {
  background-color: #289db4;
  border-color: #289db4;
}


.hs-form label {
  font-family: Muli;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.hs-form .hs-error-msgs label, .hs-error-msgs label {
  color: #292929;
  font-size: 1em;
  font-weight: normal;
  display: block;
  background: none repeat scroll 0 0 #fff;
  top: -3px;
  padding: 2px 6px;
  border: 0px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
  -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
}

.hs-input, input[type="password"] {
  box-sizing: border-box;
  font: 400 13.3333px Arial;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  font-family: inherit;
  line-height: 24px;
  color: #555;
  display: block;
  position: relative;
  margin: 5px 0;
  background-color: transparent;
  border: 1px solid #ccc;
  box-shadow: none;
  -webkit-box-shadow: none;
  font-size: 16px;
  -o-box-shadow: none;
  padding: 16px;
  width: 100%;
  max-width: 100%;
}

input[type="password"] {
  margin: 0 0 15px !Important;
  height: auto !important;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
  display: inline-block;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  color: #666666;
}

.hs-input::-webkit-input-placeholder {
  color: #666666;
}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
}

textarea.hs-input {
  height: 70px;
  margin: 5px 0;
  resize: none;
}

select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}
fieldset {
  max-width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #cccccc;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #bccc554d;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

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

.field, .hs-form-field, div#hs-search-module .hs-input {
  margin-bottom: 27px;
}

.hs-field-desc {
  color: #666666;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}
ul.no-list li {
  list-style: none;
}
.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 1rem;
  color: #292929;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

.hs-menu-wrapper ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.hs-menu-item a {
  text-decoration: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */

/**************************************************** Full Width **************************************************/
html {
  overflow-x: hidden;
}
.main-content-area .hs_cos_wrapper_type_header {
  text-align: center;
  display: block;
}
.main-content-area .hs_cos_wrapper_type_header h1 {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 8px;
  line-height: 30px;
  font-weight: 600;
  font-size: 29px;
  text-align: center;
}
.main-content-area .hs_cos_wrapper_type_rich_text {
  padding-bottom: calc(100vw * 0.05);
  display: block;
}
.main-content-area .hs_cos_wrapper_type_rich_text p:last-child {
  padding-bottom: 0px;
}
.main-content-area .hs_cos_wrapper_type_header h2 {
  margin: 0;
  color: #333333;
  margin-bottom: 43px;
  line-height: 30px;
  font-size: 30px;
  text-align: center;
  font-family: Muli;
  font-weight: 400;
  font-style: normal;
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.03);
}
.main-content-area h4{
  margin-top: 0;
}
.main-content-area ul:last-child {
  margin-bottom: 0px;
}


table {
  font-family: Muli;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  margin: 0 0 20px;
  padding: 0;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
  border-top: 1px solid #ececec;
}
table tr:nth-child(2n+1) {
  background-color: #fcfcfc;
}
caption, th, td {
  font-weight: normal;
  text-align: left;
}
td {
  border-color: #ececec;
  border-left: none;
  border-style: none solid solid none;
  border-top: medium none;
  border-width: medium 1px 1px medium;
  font-size: 13px;
  padding: 10px;
}
tr th:first-child, tr td:first-child {
  border-left-style: solid;
  border-left-width: 1px;
  border-color: #ececec;
}
tr th:first-child, tr td:first-child {
  border-left-style: solid;
  border-left-width: 1px;
}
.main-content-area table tr td {
  background: none;
}

/********************************* Webinar Page *************************************/

.webinarLists .dnd-section {
}
.webinarLists h2 {
}
.webinarLists p:last-child {
}
.webinarLists .hs-button {
  display: inline-block;
  line-height: 20px;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  letter-spacing: 2px;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 12px;
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
  box-shadow: none;
  -ms-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  margin-top: 10px;
  margin-bottom: 10px;
  visibility: visible;
  border: none;
}
/**.webinarLists .hs-button:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);**/
}
.webinarLists img {
  margin-bottom: 25px;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  max-width: 75%;
  width: auto;
  margin-top: 15px;
  backface-visibility: hidden;
}
.webinarLists hr {
}
.webinarLists .hs-responsive-embed-inner-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  padding-bottom: 0 !important;
  overflow: visible !important;
}
.webinarLists .hs-responsive-embed-wrapper.hs-responsive-embed {
  position: relative;
  width: 80% !important;
  margin: 0 auto;
  min-width: initial !important;
  max-width: 100% !important;
  min-height: initial !important;
  margin-top: 30px !important;
  margin-bottom: 34px !important;
  max-height: initial !important;
  overflow: visible !important;
}
.webinarLists .span6.dnd-column + .dnd-column .dnd-module {
  display: block !important;
}
.webinarLists .span6.dnd-column + .dnd-column {
  text-align: center;
}
.webinarLists .span6.dnd-column + .dnd-column .dnd-module:not(.span12) {
  width: auto !important;
  margin: 0 8px !important;
  float: none !important;
  display: inline-block !important;
}
.webinarLists .dnd-section:last-child {
  padding-top: calc(100vw * 0.02);
}
.webinarLists .span6.dnd-column:not(:last-child) .hs-button {
  margin-top: 20px;
}


/************************************** Qmenta Inner Page **************************************/

.qmenta-inner-page {
  padding-bottom: 40px;
  background-color: #ffffff;
}
.clinical_trials .span4.dnd-column {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  box-sizing: border-box;
}
.clinical_trials .span4.dnd-column:first-child {
  margin-left: 0;
}
.clinical_trials img {
  vertical-align: middle;
}
.clinical_trials .hs_cos_wrapper_type_rich_text {
  display: block;
}
.counter_section .dnd-section {
  position: relative;
}
.clinical_trials p:last-child {
  padding-bottom: 0px;
}

.two_col_section .dnd-section {
  width: 100%;
}
.two_col_section .span5.dnd-column, .two_col_section .span7.dnd-column {
  position: relative;
  min-height: 1px;
  box-sizing: border-box;
  float: left;
  width: 100%;
}
.two_col_section .span5.dnd-column {
}
.two_col_section .dnd-column:first-child{
} 
.two_col_section img {
  position: relative;
  max-width: 100%;
  height: auto;
  transform: translateX(-75px);
  -webkit-transform: translateX(-75px);
  padding-right: 30px;
  margin: 0 auto;
  display: inline-block;
  transform: translate(0px, 0px);
}
.two_col_section h2 {
  margin: 0;
  font-family: Muli;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #3c73b8;
  text-align: left;
}
.two_col_section .span7.dnd-column .hs_cos_wrapper_type_rich_text {
  padding-right: 10%;
  display: block;
}
.two_col_section ul:last-child {
  margin-bottom: 0px;
}
.qmenta_bottom_pane .dnd-section > .row-fluid {
  padding: 0;
}
.bottom_content_area .dnd-section {
  padding-top: calc(100vw * 0.03);
  padding-bottom: calc(100vw * 0.01);
}
.bottom_content_area ol:last-child {
  margin-bottom: 0px;
}
.ai_reader .dnd-section {
}
.ai_reader hr {
}
.clinical_trials h4 {
  margin-top: 0;
}


/*******************************Qmenta Labs *********************************/

.qmenta-labs .ai_reader .dnd-section {
}
.qmenta-labs .clinical_trials .span4.dnd-column:last-child {
}
.qmenta-labs .ai_reader hr {
}
.counter_section .hs_cos_wrapper_type_header h2 {
  margin: 0;
  font-family: Muli;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  text-align: center;
}
.qmenta-labs .span6.dnd-column {
  padding: 4%;
}
.qmenta-labs .counter_section .dnd-section > .row-fluid > .dnd-column {
}
.qmenta-labs .counterCard .symbol-wrap {
  position: static;
  transform: none;
  display: inline-block;
}
.qmenta-labs .counterCard .counterNember {
  font-size: 0;
  line-height: 0;
}
.qmenta-labs .counterCard .counterNember h2 {
  font-size: 62px;
  line-height: 62px;
}
.qmenta-labs .counter_section .dnd-section {
}
.qmenta-labs .two_col_section .dnd-section {
}
.qmenta-labs .two_col_section .dnd-section + .dnd-section {
}
.qmenta-labs .meetingPane .meetingPaneInner {
}
.qmenta-labs .bottom_content_area .dnd-section {
}
.two_col_section p:last-child {
}
.qmenta-inner-page.qmenta-trials {
}
.qmenta-trials .advencedBanner .advencedContainer {
}
.qmenta-trials .advencedBanner .advencedContainer .advencedText h4 {
  font-weight: 600;
}
.qmenta-trials .advencedBanner .advencedContainer .advencedImage img {
  max-width: 100%;
  margin-top: -50px;
}
.qmenta-trials .advencedBanner .advencedContainer .advencedColumnRight {
  padding: 2%;
}
.qmenta-trials .clinical_trials .hs_cos_wrapper_type_header {
  display: block;
}
.qmenta-trials .clinical_trials .hs_cos_wrapper_type_header h2 {
  margin: 0;
  margin-bottom: 7px;
  color: #333333;
  font-family: Muli;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
}
.qmenta-trials .clinical_trials .span4.dnd-column {
}
.qmenta-trials .how_ite_works {
  margin-left: 0;
}
.qmenta-trials .ai_reader .dnd-section {
}
.qmenta-trials .clinical_trials .dnd-section + .dnd-section {
}
.qmenta-trials .how_ite_works_inner {
}

.qmenta-trials .counter_section .dnd-section {
}
.qmenta-trials .counter_section .dnd-section > .row-fluid > .dnd-column {
}
.qmenta-trials .counter_section hr {
}
.qmenta-trials .span3.dnd-column {
  padding: 4%;
  text-align: center;
}
.qmenta-trials .counterCard .symbol-wrap {
  position: static;
  transform: none;
  display: inline-block;
}
.qmenta-trials .counterCard .counterNember {
  font-size: 0;
  line-height: 0;
}
.qmenta-trials .counterCard .counterNember h2 {
  font-size: 62px;
  line-height: 62px;
}
.qmenta-trials .bottom_content_area .dnd-section {
}



/************************************************ Solution ***************************************/

.solutions .bannerArea .banner-container {
}
.solutions .bannerArea .banner_svg {
  height: 200px;
}
.solutions .bannerArea .bannerColumn2 {
  display: none;
}
.solutions .bannerArea .bannerColumn8 {
  margin-left: 0;
  text-align: left;
}
.solutions .bannerArea .divider50 {
  display: none;
}
.solutions .bannerArea .bannerTitle {
  text-align: left;
}
.solutions .bannerArea .bannerTitle h1 {
  margin-bottom: 0;
}
.solutions .bannerArea .divider20 {
  display: none;
}
.solutions .bannerArea h4 {
  margin: 0;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: Muli;
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  line-height: 36px;
  text-align: left;
}
.solutions .bannerArea .divider30 {
  display: none;
}
.solutions .body-container__website {
}
.solutions .body-container__website .dnd-section {
}
.solutionTexts {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.sdk-contact-page {
  padding-top: 40px;
  padding-bottom: 40px;
}
.sdk-contact-page .bannerArea .banner-container {
}
.sdk-contact-page .bannerArea .banner_svg {
  height: 80px;
}
.sdk-contact-page .bannerArea .divider50,
.sdk-contact-page .bannerArea .divider20,
.sdk-contact-page .bannerArea .divider30{
  display: none;
}
.sdk-contact-page .bannerArea .bannerTitle {
  margin: 0 !important;
}
.sdk-contact-page h3 {
  margin: 0;
}
.sdk-contact-page .bannerArea .banner_svg svg path {
  opacity: 1 !Important;
}
.sdk-contact-page .bannerArea .banner-image {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.sdk-contact-page h3 em {
  font-family: Muli;
  font-weight: 400;
  font-style: italic;
  font-size: inherit;
}
.sdk-contact .hs_cos_wrapper_type_form{
  max-width: 100%;
  width: 65.95744680199999%;
  margin: 0 auto;
  padding: 0;
  box-shadow: none;
  background: none;
  border-radius: 0;
  border: none;
  position: relative;
  z-index: 999;
  padding-bottom: calc(100vw * 0.10);
}
.sdk-contact .hs_cos_wrapper_type_form form {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 20px 37px rgb(0 0 0 / 1%), 0 1px 26px rgb(0 0 0 / 14%);
  transition: opacity 0.6s cubic-bezier(0.15,0.84,0.35,1.25),background-color 0.35s cubic-bezier(.65,0,.35,1);
  -webkit-transition: opacity 0.6s cubic-bezier(0.15,0.84,0.35,1.25),background-color 0.35s cubic-bezier(.65,0,.35,1);
  -webkit-backface-visibility: hidden;
  padding: 0;
  transform: scale(1, 1);
  opacity: 1;
}
.sdk-contact .dnd-section {
  padding: 0;
}
.sdk-contact span.hs-form-required {
  display: none;
}
.sdk-contact .hs-input {
  border: 1px solid #f3eeee;
}
.sdk-contact .hs-form-field {
  margin-bottom: 31px;
}
.sdk-contact .hs-form-field > label {
  margin-left: 0;
}
.sdk-contact input.hs-button.primary.large {
  border: 0;
  -webkit-font-smoothing: subpixel-antialiased; 
}
.sdk-contact-page .hs_submit.hs-submit {
  padding-top: 8px;
}
.sdk-contact-page .bannerArea .banner-image .using-image {
  background-position: center bottom;
}
.container-fluid.sdk-contact {
  margin-bottom: 140px;
}
.support-page .dnd-section:first-child {
}
.support-page .hs_cos_wrapper_type_rich_text {
  padding-top: 20px;
  padding-bottom: 0px;
  display: block;
  text-align: center;
}
.support-page .hs_cos_wrapper_type_rich_text {
  margin-top: 20px;
  padding-bottom: 0px;
  display: block;
  text-align: center;
  padding: 3%;
  padding-bottom: 0px;
}
.support-page .hs_cos_wrapper_type_rich_text a i {
  color: #2ca895;
  background: linear-gradient(to bottom right,#2ca895,#3c73b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  border-radius: 0!important;
  text-align: center;
}
.support-page .hs_cos_wrapper_type_rich_text a {
  display: inline-block;
  margin-bottom: 26px;
}
.fa-user-plus:before {
  content: "\f234";
}
.support-page .hs_cos_wrapper_type_rich_text a i:before {
  line-height: inherit;
  vertical-align: top;
}
.support-page .hs_cos_wrapper_type_rich_text h3 {
  margin: 0;
  font-family: Muli;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}
.support-page .hs_cos_wrapper_type_rich_text p {
  padding-right: 13% !important;
  padding-left: 13% !important;
  color: rgba(10,10,10,0.65);
  text-align: center;
  font-family: Lato;
  font-weight: 400;
  font-style: normal;
}
.support-page .hs_cos_wrapper_type_rich_text p:last-child {
  padding-bottom: 0px;
}
.support-page .hs_cos_wrapper_type_form {
  max-width: 100%;
  box-shadow: none;
  background: #fff !important;
  margin: 0 auto;
  border-radius: 0;
  padding: 4%;
  margin-top: 10px;
  margin-bottom: calc(100vw * 0.09);
}
.support-page span.hs-form-required {
  display: none;
}
.support-page .hs-form-field {
  margin-bottom: 31px;
}
.support-page .actions {
  padding-top: 10px;
}
.support-page .hs_cos_wrapper_type_form form {
  margin-bottom: 34px;
}
.body-container-wrapper.support-page {
  padding-bottom: 40px;
}
.support-page input.hs-button.primary.large {
  border: 0;
  -webkit-font-smoothing: subpixel-antialiased; 
}
.support-page .hs-form-field > label {
  color: #333333;
  -webkit-font-smoothing: subpixel-antialiased;
}



/********************************** Plateform Page **************************************/

.qmenta-platform-page .bannerArea .banner-container {
}
.qmenta-platform-page .bannerArea .banner-image .using-image {
  background-position: center bottom;
}
.qmenta-platform-page .bannerTitle h1 {
  line-height: 50px;
}
.qmenta-platform-page .bannerArea .divider20 {
  display: none;
}
.qmenta-platform-page .bannerArea .bannerTitle {
  margin: 0 !important;
}
.qmenta-platform-page .bannerArea h2 {
  line-height: 36px;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 7px;
  text-align: center;
}
.qmenta-platform-page .bannerArea .divider30 {
  height: 50px;
}
.qmenta-platform-page .bannerArea .banner_svg svg path:nth-child(1) {
  opacity: 0.1;
}
.qmenta-platform-page .bannerArea .banner_svg svg path:nth-child(2) {
  opacity: 0.12;
}
.qmenta-platform-page .bannerArea .banner_svg svg path:nth-child(3) {
  opacity: 0.18;
}
.qmenta-platform-page .bannerArea .banner_svg svg path:nth-child(4) {
  opacity: 0.33;
}
.what-we-do .dnd-section {
}
.what-we-do .span6.dnd-column {
}
.what-we-do h3 {
  margin: 0;
  margin-bottom: 33px;
  font-family: Muli;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: rgba(0,0,0,0.75);
  text-align: left;
}
.what-we-do a.hs-button {
  display: inline-block;
  line-height: 20px;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  padding: 10px 15px;
  opacity: 1;
  transition: all .45s cubic-bezier(0.25,1,0.33,1)!important;
  -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1)!important;
  font-weight: 700;
  font-family: Muli;
  font-size: 12px;
  padding-top: 9px;
  padding-bottom: 9px;
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
  box-shadow: none;
  border: 2px solid rgba(0,0,0,0.15);
  border-color: rgba(44, 168, 149, 0.75);
  color: rgb(44, 168, 149);
  visibility: visible;
  background-color: transparent;
  margin-top: 25px;
}
/**.what-we-do a.hs-button:hover {
  background-color: #2ca895!important;
  border-color: #2ca895!important;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  opacity: 1!important;
  color: #000;
}**/
.what-we-do img {
  margin: 0 auto;
  display: block;
  max-width: 75%;
  width: auto;
  height: auto;
}
.data-collection {
  position: relative;
}
.data-collection:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: ' ';
  z-index: 2;
  backface-visibility: hidden;
  background-color: rgb(241 241 241);
  opacity: 0.3;
}
.dataContainer {
  padding: 0 4%;
  opacity: 1;
  padding-top: calc(100vw * 0.06);
  padding-bottom: calc(100vw * 0.01);
  position: relative;
  z-index: 999;
}
.dataContainer .dnd-section > .row-fluid {
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.data-collection .hs_cos_wrapper_type_header h2 {
  margin: 0;
  margin-bottom: 7px;
  font-weight: 600;
  font-family: Muli;
  font-size: 24px;
  color: #2ca895;
  line-height: 36px;
  text-align: left;
}
.data-collection .hs_cos_wrapper_type_rich_text {
  display: block;
}
.data-collection .hs_cos_wrapper_type_rich_text img {
  display: block;
  margin-bottom: 25px;
}
.data-collection .hs_cos_wrapper_type_rich_text h4 {
  margin-top: 0;
  margin-bottom: 15px;
}
.data-collection .span6.dnd-column {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin: 0;
}
.data-collection .hs_cos_wrapper_type_rich_text p:last-child {
  padding: 0;
}
.data-collection a.hs-button {
  display: inline-block;
  line-height: 20px;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  padding: 10px 15px;
  opacity: 1;
  transition: all .45s cubic-bezier(0.25,1,0.33,1)!important;
  -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1)!important;
  font-weight: 700;
  font-family: Muli;
  font-size: 12px;
  padding-top: 9px;
  padding-bottom: 9px;
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
  box-shadow: none;
  border: 2px solid rgba(0,0,0,0.15);
  border-color: rgba(44, 168, 149, 0.75);
  color: rgb(44, 168, 149);
  visibility: visible;
  background-color: transparent;
  margin-top: 27px;
}
/**.data-collection a.hs-button:hover {
  background-color: #2ca895!important;
  border-color: #2ca895!important;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  color: #000;
}**/
.testimonial-section .dnd-section {
}
.bottom-section .dnd-section {
}
.bottom-section .span7.dnd-column {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin: 0;
  padding-left: 15%;
}
.bottom-section h3 {
  margin: 0;
  color: #333333;
  margin-bottom: 8px;
  font-size: 25px;
  line-height: 27px;
  text-align: left;
  font-family: Muli;
  font-weight: 400;
  font-style: normal;
}
.bottom-section .span5.dnd-column {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin: 0;
  text-align: right;
}
.bottom-section .span5.dnd-column a {
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  opacity: 1;
  line-height: 20px;
  background-color: #27CFC3;
  display: inline-block;
  letter-spacing: 2px;
  color: #FFF;
  padding: 10px 15px;
  padding-left: 42px;
  padding-right: 42px;
  font-weight: 700;
  font-family: Muli;
  font-size: 12px;
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
  box-shadow: none;
  -ms-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  background-color: rgb(22, 170, 173);
  visibility: visible;
}
.bottom-section .span5.dnd-column a span {
  left: 0px;
  display: inline-block;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: opacity .45s cubic-bezier(0.25,1,0.33,1),transform .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: opacity .45s cubic-bezier(0.25,1,0.33,1),-webkit-transform .45s cubic-bezier(0.25,1,0.33,1);
  position: relative;
}
.bottom-section .span5.dnd-column a i {
  background-image: none;
  background-position: 0% 0%;
  background-repeat: repeat;
  word-spacing: 1px;
  text-align: center;
  vertical-align: middle;
  max-width: 100%;
  height: 32px;
  border-radius: 999px 999px 999px 999px;
  -webkit-border-radius: 999px 999px 999px 999px;
  color: #fff;
  display: inline-block;
  font-family: 'icomoon'!important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  line-height: 18px;
  width: 18px;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -9px;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  transition: all .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1);
  background-color: transparent!important;
  font-size: 16px;
}
.bottom-section .span5.dnd-column a:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  background-color: rgb(22, 170, 173);
  visibility: visible;
}
.bottom-section .span5.dnd-column a:hover span {
  -ms-transform: translateX(-18px);
  -webkit-transform: translateX(-18px);
  transform: translateX(-18px);
}
.bottom-section .span5.dnd-column a:hover i {
  opacity: 1!important;
  -ms-filter: "alpha(opacity=100)";
  -ms-transform: translateX(6px);
  -webkit-transform: translateX(6px);
  transform: translateX(6px)!important;
}
.qmenta-platform-page .bannerColumn2 {
  display: none !Important;
}
.qmenta-platform-page .bannerColumn8 {
  width: 100% !Important;
  margin: 0 !Important;
}
.qmenta-trials .span3.dnd-column:last-child {
  padding-left: 0;
  padding-right: 0;
}

/******************************************************** Home Page *********************************************/


.ourSolution .dnd-section {
  padding-top: calc(100vw * 0.04);
  padding-bottom: calc(100vw * 0.04);
}
.ourSolution .solutionWrapper .solutionItem {
  padding: 6%;
}
.ourSolution .solutionWrapper .solutionTexts {
  display: block;
}
.ourSolution .solutionWrapper .solutionTextsInner {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  flex-direction: column;
}
.ourSolution .solutionWrapper .solutionItem:last-child a.solutionButton {
  margin-top: 100px;
}
.meetinfSec .dnd-section {
  padding-top: calc(100vw * 0.04);
  padding-bottom: calc(100vw * 0.13);
  position: relative;
}
.meetinfSec .dnd-section:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: ' ';
  z-index: 2;
  backface-visibility: hidden;
  background: linear-gradient( 90deg,rgba(44,168,149,0.94) 0%,#3c73b8 100%);
  opacity: 0.95;
}

.meetinfSec .dnd-column {
  position: relative;
  z-index: 999;
}
.meetinfSec .span6.dnd-column + .dnd-column {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
  text-align: center;
  padding: 5%;
  padding-top: 0!important;
  padding-bottom: 0!important;
}
.meetinfSec img {
  position: relative;
  height: auto;
  margin: 0 auto;
  display: block;
  max-width: 75%;
  width: auto;
}
.meetinfSec h2 {
  margin-bottom: 7px;
  margin-top: 0;
  color: #fff;
}
.meetinfSec a.hs-button {
  display: inline-block;
  line-height: 20px;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  font-family: Muli;
  font-size: 14px;
  padding: 15px 22px;
  background-color: transparent!important;
  box-shadow: none!important;
  -webkit-box-shadow: none!important;
  opacity: 1!important;
  transition: all .45s cubic-bezier(0.25,1,0.33,1)!important;
  -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1)!important;
  border-width: 2px!important;
  padding-top: 13px;
  padding-bottom: 13px;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
  border-color: rgba(255, 255, 255, 0.75);
  color: rgb(255, 255, 255);
  visibility: visible;
  margin-top: 30px;
}
/**.meetinfSec a.hs-button:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.75);
  color: rgb(255, 255, 255);
  visibility: visible;
}**/
.meetinfSec .span6.dnd-column:first-child > .dnd-row {
  padding: 5%;
}
.meetinfSec .span6.dnd-column:first-child > .dnd-row:first-child {
  padding-bottom: 0;
}
.meetinfSec .span6.dnd-column:first-child > .dnd-row + .dnd-row {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 20px;
}
.meetinfSec .span12.dnd-column .hs_cos_wrapper_type_rich_text {
  z-index: 3;
  transform: translateZ(0);
  right: 0;
  position: absolute;
  top: auto;
  bottom: 0;
  margin-left: -50vw;
  left: 50%;
  width: 100vw;
  height: 140px;
  display: block;
}
.meetinfSec .span12.dnd-column .hs_cos_wrapper_type_rich_text svg {
  width: 100%;
  left: 0;
  bottom: -1px;
  height: 100%;
  position: absolute;
  fill: #fff;
}
.home-testimonial .dnd-section {
  padding: 0;
}
.home-testimonial .testimonialSlider, .home-testimonial .testimonialSlider:hover{
  box-shadow: none !important;
  padding: 0 !important;
  transform: none !important;
}
.home-testimonial .testimonialSlider .testimonialTitle h2 {
  font-size: 30px;
  color: #5e5e5e;
  line-height: 45px;
  text-align: center;
  font-family: Muli;
  font-weight: 300;
  font-style: normal;
}
.home-testimonial .testimonialSlider .testimonialDivider {
  width: 20%;
  background: linear-gradient(to right,#2ca895,#3c73b8);
  transform-origin: center;
  -webkit-transform-origin: center;
  margin: 25px auto;
  margin-top: 15px;
  height: 3px;
  margin-bottom: 15px;
}
.home-testimonial .testimonialSlides {
  padding-top: 25px;
}
.trusted-by .dnd-section {
  background-color: #f9f9f9;
  padding-top: calc(100vw * 0.03);
  padding-bottom: calc(100vw * 0.03);
}
.home-testimonial .testimonialSlider {
  margin-bottom: 60px;
}
.home-testimonial .slider__counter {
  position: static;
  line-height: 25px;
  margin-top: 40px;
}
.home-testimonial .testimonialSlider button.slick-arrow {
  margin-top: -8px!important;
}
.cta_section .dnd-section {
  padding-top: calc(100vw * 0.06);
  padding-bottom: calc(100vw * 0.04);
}
.cta_section .span6.dnd-column {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin: 0;
  padding-left: 7%;
}
.cta_section .span3.dnd-column {
  width: 16.5%;
  padding-top: 20px;
  float: left;
}
.cta_section a.cta_button {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  opacity: 1;
  line-height: 20px;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  opacity: 1;
  line-height: 20px;
  color: #FFF;
  font-weight: 700;
  font-family: Muli;
  font-size: 14px;
  padding: 15px 22px;
  padding-left: 42px;
  padding-right: 42px;
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
  box-shadow: none;
  -ms-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  background-color: rgb(24, 151, 186);
  visibility: visible;
  box-sizing: border-box !IMPORTANT;
  letter-spacing: 2px;
}
.cta_section a.cta_button span {
  left: 0px;
  display: inline-block;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: opacity .45s cubic-bezier(0.25,1,0.33,1),transform .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: opacity .45s cubic-bezier(0.25,1,0.33,1),-webkit-transform .45s cubic-bezier(0.25,1,0.33,1);
  position: relative;
}
.cta_section a.cta_button i {
  font-family: 'icomoon'!important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  line-height: 18px;
  width: 18px;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -9px;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  transition: all .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1);
  font-size: 19px;
  background-color: transparent!important;
}

/**.cta_section a.cta_button:hover{
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  opacity: 0.87;
  color: #fff;
}**/
.cta_section a.cta_button.contactbtn{
  background-color: rgb(56, 157, 170);
  visibility: visible;
}
/**.cta_section a.cta_button:hover span {
  -ms-transform: translateX(-18px);
  -webkit-transform: translateX(-18px);
  transform: translateX(-18px);
}
.cta_section a.cta_button:hover i {
  opacity: 1!important;
  -ms-filter: "alpha(opacity=100)";
  -ms-transform: translateX(6px);
  -webkit-transform: translateX(6px);
  transform: translateX(6px)!important;
}**/
.cta_section .span3.dnd-column {
  width: 16.5%;
  margin-left: 2.1%;
}
.cta_section h3 {
  margin-bottom: 8px;
  font-family: Muli;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-top: 0;
}
.cta_section h3 + h3 {
  padding-top: 10px;
  margin-bottom: 58px;
}
.container-fluid.subscribe_sec {
  position: relative;
}
.container-fluid.subscribe_sec:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: ' ';
  z-index: 2;
  backface-visibility: hidden;
  background: linear-gradient( 90deg,#00736e 0%,#0075b2 100%);
  opacity: 0.95;
}
.subscribe_sec .hs_cos_wrapper_type_rich_text {
  display: block;
  margin-bottom: 0;
  padding-top: 5%;
  padding-bottom: 24px;
}
.subscribe_sec .hs_cos_wrapper_type_rich_text h3 {
  letter-spacing: 0px;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: Muli;
  font-size: 22px;
  color: #ffffff;
  line-height: 32px;
  text-align: center;
  margin-top: 40px;
  padding-left: 12%;
  padding-right: 12%;
}
.subscribe_sec .dnd-column {
  position: relative;
  z-index: 99;
}
.subscribe_sec .hs_cos_wrapper_type_form {
  box-shadow: none !important;
  padding: 0 !important;
  background: none !important;
  max-width: 100% !important;
  padding-bottom: 3% !important;
}
.subscribe_sec .dnd-section {
    padding-bottom: calc(100vw * 0.04) !important;
}

.subscribe_sec form {
    position:relative;
}
.subscribe_sec .hs_email.hs-email {
  width: 60%;
  margin: 0;
  float: left;
}
.subscribe_sec .hs_submit.hs-submit {
    width: 40%;
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 36px;
    right: 0;
}
.subscribe_sec .hs-input input {
    text-align:left !important;
    border-radius: 4px !important;
    margin-top: 3px !important;
    padding-bottom: 9px !important;
}
.subscribe_sec .hs_email.hs-email .hs-input {
  background-color: #fff;
  color: #333;
  font-weight: 100;
  border: 1px solid #fff;
  padding-bottom: 7px !important;
  text-align: left;
}
.subscribe_sec input.hs-button.primary.large {
  cursor: pointer;
  border: none;
  width: 162px;
  height: 51px;
  font-family: Muli;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  background-color: #fff!important;
  color: #333;
  margin: 10px;
  min-width: 200px;
  text-align: center;
  padding: 15px 22px!important;
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
  box-shadow: none;
  -ms-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
}

/**.subscribe_sec input.hs-button.primary.large:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  opacity: 0.85;
}**/
.subscribe_sec .hs-fieldtype-booleancheckbox {
  margin: 0;
  padding-top: 3px;
}
.subscribe_sec .hs-fieldtype-booleancheckbox ul.inputs-list {
  display: inline-block;
  margin: 0em 0 0 0em;
  padding: 0;
  
}
.subscribe_sec .hs-fieldtype-booleancheckbox ul.inputs-list .hs-input {
  background-color: initial;
  cursor: default;
  appearance: auto;
  box-sizing: border-box;
  margin: 3px 3px 3px 4px;
  padding: initial;
  border: initial;
  width: 18px;
  height: 20px;
  margin-right: 10px;
}

.subscribe_sec .legal-consent-container  {
    margin-top: 1em;
    clear: both;
    display: inline-block;
}

.subscribe_sec .legal-consent-container .hs-form-booleancheckbox-display p {
	    padding-bottom: 0;
}


.subscribe_sec .legal-consent-container .hs-form-booleancheckbox-display>span {
    margin-left:35px;
}

.subscribe_sec .hs-form .hs-error-msgs label, .hs-error-msgs label {
	box-shadow: none;
	background: none;
	padding: 2px 6px 10px;

}
.subscribe_sec .hs-error-msg {
	color:#fff;
	background: none;
}

.subscribe_sec .hs-fieldtype-booleancheckbox ul.inputs-list .hs-input + span:before {
  content: " ";
}
.subscribe_sec .hs-fieldtype-booleancheckbox ul.inputs-list .hs-input + span, 
.subscribe_sec .hs-fieldtype-booleancheckbox ul.inputs-list .hs-input + span a {
  color: #fff;
}
.subscribe_sec .hs_email.hs-email > label {
  color: #fff;
}
.subscribe_sec span.hs-form-required,
.subscribe_sec .hs_recaptcha.hs-recaptcha.field.hs-form-field {
    display: none;
}

.subscribe_sec .hs_cos_wrapper_type_form form:after {
  clear: both;
  display: table;
  content: "";
}
.cta_section .span3.dnd-column + .dnd-column {
  margin-left: -3px;
}
.home-page .solutionWrapper a.solutionButton {
  width: auto;
  max-width: 171px;
}

@media(max-width:700px){
  .subscribe_sec .hs_submit.hs-submit {
      position: relative;
      margin-bottom:2em !important
  }
  .subscribe_sec .hs_submit input[type="submit"]{
      margin-left:0;   
  }
}


/*******************************************Team Page ******************************************/
.team-page .bannerTitle h3 {
  margin: 0;
  margin-bottom: 9px;
  font-weight: 600;
  font-size: 24px;
  color: #ffffff;
  line-height: 55px;
  text-align: center;
}
.team-section .dnd-section {
  padding-top: 30px;
  padding-bottom: 0px;
  margin-bottom: 35px;
  position: relative;
}
.team-section .hs_cos_wrapper_type_header h1 {
  margin: 0;
  letter-spacing: 0px;
  margin-bottom: 0;
  line-height: 30px;
  font-weight: 600;
  font-family: Muli;
  font-size: 35px;
  color: #262626;
  text-align: center;
}
.team-section hr {
  width: 20% !important;
  background: linear-gradient(to right,#2ca895,#3c73b8);
  transform-origin: center;
  -webkit-transform-origin: center;
  margin: 25px auto !important;
  margin-top: 30px !important;
  height: 1px;
  margin-bottom: 30px !important;
  transform: scale(1, 1);
  visibility: visible;
  border: 0 !important;
}
.team-section .span3.dnd-module {
  width: 100%;
  float: none;
  display: block;
  position: relative;
  min-height: 1px;
  box-sizing: border-box;
}
.team-section.leadership .dnd-section {
  padding-top: calc(100vw * 0.07);
  padding-bottom: calc(100vw * 0.01);
}
.directors .dnd-section > .row-fluid > .dnd-column {
  padding-left: 7%;
  padding-right: 7%;
}
.directors .span4.dnd-module {
  width: 100%;
  display: block;
  position: relative;
  min-height: 1px;
  margin: 0;
}


.bottomSec .dnd-section {
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.05);
  position: relative;
}
.bottomSec .dnd-section:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: ' ';
  z-index: 2;
  backface-visibility: hidden;
  /**background: linear-gradient( 90deg,#2ca895 0%,#3c73b8 100%);**/
  opacity: 0.95;
}
.bottomSec .dnd-section > .row-fluid {
  position: relative;
  z-index: 9;
  opacity: 1;
}
.bottomSec h2 {
  margin: 0;
  margin-bottom: 7px;
  font-size: 20px;
  color: #ffffff;
  line-height: 22px;
  text-align: center;
  font-family: Muli;
  font-weight: 400;
  font-style: normal;
}
.bottomSec .hs_cos_wrapper_type_rich_text {
  display: block;
  padding-bottom: 50px;
}
.bottomSec a.hs-button {
  display: inline-block;
  line-height: 20px;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  padding: 10px 15px;
  font-weight: 700;
  font-family: Muli;
  font-size: 12px;
  background-color: transparent!important;
  box-shadow: none!important;
  -webkit-box-shadow: none!important;
  opacity: 1!important;
  transition: all .45s cubic-bezier(0.25,1,0.33,1)!important;
  -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1)!important;
  padding-top: 9px;
  padding-bottom: 9px;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
  visibility: visible;
  color: rgb(255, 255, 255);
  border-color: rgba(255, 255, 255, 0.75);
}
/**.bottomSec a.hs-button:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  border: 2px solid rgba(255,255,255,1);
}**/





.newsletter-form .dnd-section {
  padding-top: calc(100vw * 0.12);
  padding-bottom: calc(100vw * 0.12) !important;
}
.newsletter-form .hs_cos_wrapper_type_rich_text {
  padding: 0;
  margin: 0;
}
.newsletter-form .hs_cos_wrapper_type_rich_text h1 {
  margin: 0;
  margin-bottom: 7px;
  font-weight: 600;
  line-height: 48px;
  font-family: Muli;
  font-size: 36px;
  color: #ffffff;
  text-align: center;
  padding-bottom: 50px;
}
.newsletter-form .hs_cos_wrapper_type_rich_text h2 {
  margin: 0;
  margin-bottom: 7px;
  font-weight: 600;
  line-height: 48px;
  font-family: Muli;
  font-size: 24px;
  color: #ffffff;
  text-align: center;
  padding-bottom: 25px;
}

.newsletter-form input.hs-button.primary.large {
  background-color: #2ca895!important;
  color: #fff;
  padding: 15px 22px !important;
  width: auto !important;
  min-width: unset !important;
  font-family: Muli;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: initial;
  height: auto;
}
.newsletter-form .hs_cos_wrapper_type_form form {
  width: 100% !Important;
}
.newsletter-form .hs_email.hs-email .hs-input {
  border: 1px solid #ccc;
}
.newsletter-form .hs_email.hs-email .hs-input:focus {
  border-color: #92cbd2!important;
}
.subscribe_sec .hs_error_rollup {
  float: left;
  display:none
}
.container-fluid.newsletter-form:before {
  background: linear-gradient( 90deg,#2ca895 0%,#3c73b8 100%);
  opacity: 0.8;
}
.paris-page-sec .hs_cos_wrapper_type_rich_text h3 {
  margin-top: 0;
}
@media(max-width:690px){
  .newsletter-form.subscribe_sec .hs-fieldtype-booleancheckbox ul.inputs-list {
    margin-left: 0;
  }
}


/**************************************  Advisory Page *********************************************/

.advisory-banner .bannerArea .banner-container {
  padding-top: calc(100vw * 0.16);
  padding-bottom: calc(100vw * 0.16);
}
/**.advisory-banner .bannerArea .banner-bg-overlay {
  opacity: 0.8;
  background: linear-gradient( 135deg,#2ca895 0%,#3c75b8 100%) !important;
}**/
.advisory-banner .bannerArea h2 {
  margin-top: 0;
  margin-bottom: 7px;
  line-height: 36px;
  font-weight: 600;
  font-size: 22px;
  text-align: center;
}
.advisory-banner .bannerArea .bannerTitle h2 {
  margin: 0;
  line-height: 36px;
  font-weight: 600;
  font-size: 33px;
  text-align: center;
  margin-bottom: 7px;
}
.advisory-banner .bannerArea .bannerTitle {
  margin: 0 !important;
}
.advisory-banner .bannerColumn.bannerColumn8 {
  padding: 1%;
}
.advisory-banner .bannerArea .divider30 {
  display: none;
}
.advisors-sec .dnd-section {
  padding-top: 0px;
  padding-bottom: calc(100vw * 0.17);
  position: relative;
}
.advisors-sec .dnd-section:first-child {
  padding-top: calc(100vw * 0.08);
  padding-bottom: calc(100vw * 0.15);
}



/********************************************** uploader Page ***********************************/


.operating-systems .dnd-section {
  padding-top: calc(100vw * 0.14) !important;
}
.operating-systems .hs_cos_wrapper_type_header h4 {
  padding: 0;
  margin: 0;
  border: 0;
  text-align: center;
  font-family: Muli;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: #333333;
}
.operating-systems .span4.dnd-module {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin: 0;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
  padding-top: 2%;
  padding-bottom: 2%;
}
.operating-systems .span4.dnd-module:first-child {
  margin-left: 0;
}
.operating-systems .span4 .hs_cos_wrapper_type_rich_text {
}
.operating-systems .span4 .hs_cos_wrapper_type_rich_text > div {
  border-width: 2px;
}
.operating-systems .span4 .hs_cos_wrapper_type_rich_text h2 {
  margin-bottom: 7px;
  margin-top: 0;
}
.operating-systems .span4 .hs_cos_wrapper_type_rich_text i {
  color: #2ca895;
  background: linear-gradient(to bottom right,#2ca895,#3c73b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  border-radius: 0!important;
  text-align: center;
}
.operating-systems .span4 .hs_cos_wrapper_type_rich_text i:before {
  line-height: inherit;
  vertical-align: top;
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-linux:before {
  content: "\f17c";
}
.operating-systems .span4.dnd-module .widget-type-rich_text {
  text-align: center;
}
.operating-systems .span4 .hs_cos_wrapper_type_rich_text > div {
  border-width: 2px;
  margin-bottom: 24px;
  margin-left: 25px;
  display: inline-block;
}
.operating-systems .span12.dnd-module .hs_cos_wrapper_type_rich_text {
  display: block;
  text-align: center;
  padding-top: 50px;
}
.operating-systems .span12.dnd-module .hs_cos_wrapper_type_rich_text p {
  padding-bottom: 50px;
}

/******************************************************** Event Page ********************************************************/

.events-page .bannerArea .banner-container {
  padding-top: calc(100vw * 0.09);
  padding-bottom: calc(100vw * 0.06);
}
.events-page .bannerArea .divider50 {
  display: none;
}
.events-page .bannerArea h1 {
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 32px;
  font-size: 32px;
  text-align: center;
}
.events-page .bannerArea .divider20 {
  display: none;
}
.events-page .bannerArea h4 {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  line-height: 36px;
  text-align: center;
  margin-top: 0;
}
.events-page .bannerArea .bannerTitle {
  margin: 0 !important;
}
.events-page .bannerArea .divider30 {
  display: none;
}
.events-section .dnd-section {
  padding-top: calc(100vw * 0.03);
  padding-bottom: calc(100vw * 0.05);
}
.events-section .dnd-section:first-child {
  padding-bottom: calc(100vw * 0.04);
}
.events-section .span6.dnd-column {
  display: block;
  float: left;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  min-height: 1px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.events-section img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  padding-right: 30px;
  margin: 0 auto;
}
.events-section h5 {
  margin: 0;
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  line-height: 32px;
  text-align: left;
}
.events-section h2 {
  margin: 0;
  margin-bottom: 7px;
  letter-spacing: 0px;
  font-family: Muli;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: #2ca895;
  text-align: left;
}
.events-section hr {
  display: block;
  margin: 25px 0;
  transform-origin: left;
  -webkit-transform-origin: left;
  background: linear-gradient(to right,#2ca895,#3c73b8);
  margin-top: 30px;
  width: 120px;
  height: 1px;
  margin-bottom: 30px;
  transform: scale(1, 1);
  visibility: visible;
  border: 0;
}
.events-section section {
  padding-right: 10%;
  margin-bottom: 50px;
}
.events-section a.mbtn {
  display: inline-block;
  line-height: 20px;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  color: #FFF;
  background-color: transparent!important;
  border-width: 3px;
  border-style: solid;
  -moz-border-image: -moz-linear-gradient(top right,#2ca895 0,#3c73b8 100%);
  -webkit-border-image: -webkit-linear-gradient(top right,#2ca895 0,#3c73b8 100%);
  border-image: linear-gradient(to bottom right,#2ca895 0,#3c73b8 100%);
  border-image-slice: 1;
  font-weight: 700;
  font-family: Muli;
  font-size: 12px;
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
  box-shadow: none;
  -ms-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  padding: 5px 14px;
}
.events-section a.mbtn:after {
  position: absolute;
  content: ' ';
  top: -2%;
  left: -1%;
  width: 101.5%;
  height: 104%;
  transform-origin: right;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform: scale(0,1);
  -webkit-transform: scale(0,1);
  -ms-transform: scale(0,1);
  -ms-transition: transform 0.38s cubic-bezier(.2,0.95,.4,0.95),background-size 0.38s ease;
  transition: transform 0.38s cubic-bezier(.2,0.95,.4,0.95),background-size 0.38s ease;
  -webkit-transition: transform 0.38s cubic-bezier(.2,0.95,.4,0.95),background-size 0.38s ease;
  z-index: -1;
  transform: scale(1,1);
  -webkit-transform: scale(1,1);
  -ms-transform: scale(1,1);
  transform-origin: left;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  background-size: 100% 100%!important;
  background-position: left!important;
  background: linear-gradient(to bottom right,#2ca895,#3c73b8);
}
.events-section a.mbtn span {
  left: 0px;
  display: inline-block;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: opacity .45s cubic-bezier(0.25,1,0.33,1),transform .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: opacity .45s cubic-bezier(0.25,1,0.33,1),-webkit-transform .45s cubic-bezier(0.25,1,0.33,1);
  position: relative;
  z-index: 100;
}
.events-section a.mbtn span.start {
  -ms-transition: transform 0.38s cubic-bezier(.2,0.95,.4,0.95),opacity 0.38s cubic-bezier(.2,0.95,.4,0.95);
  transition: transform 0.38s cubic-bezier(.2,0.95,.4,0.95),opacity 0.38s cubic-bezier(.2,0.95,.4,0.95);
  -webkit-transition: transform 0.38s cubic-bezier(.2,0.95,.4,0.95),opacity 0.38s cubic-bezier(.2,0.95,.4,0.95);
  animation: gradientTextHoverHover 0.38s;
  animation-timing-function: cubic-bezier(.2,0.9,.4,0.9);
  animation-fill-mode: forwards;
  display: inline-block!important;
}
.events-section a.mbtn span.hover {
  -ms-transition: transform 0.38s cubic-bezier(.2,0.95,.4,0.95),opacity 0.38s cubic-bezier(.2,0.95,.4,0.95);
  transition: transform 0.38s cubic-bezier(.2,0.95,.4,0.95),opacity 0.38s cubic-bezier(.2,0.95,.4,0.95);
  -webkit-transition: transform 0.38s cubic-bezier(.2,0.95,.4,0.95),opacity 0.38s cubic-bezier(.2,0.95,.4,0.95);
  position: absolute;
  display: inline;
  left: 0;
  animation: gradientTextHoverOff 0.38s;
  animation-timing-function: cubic-bezier(.2,0.9,.4,0.9);
  animation-fill-mode: forwards;
  text-align: center;
  width: 100%;
  opacity: 0;
  z-index: 0;
  background: linear-gradient(to bottom right,#2ca895,#3c73b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: initial;
}
.events-section a.mbtn:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}
.events-section a.mbtn:hover span.start {
  animation: gradientTextHoverOff 0.38s;
  animation-timing-function: cubic-bezier(.2,0.9,.4,0.9);
  animation-fill-mode: forwards;
}
.events-section a.mbtn:hover span.hover {
  animation: gradientTextHoverHover 0.38s;
  animation-timing-function: cubic-bezier(.2,0.9,.4,0.9);
  animation-fill-mode: forwards;
}
.events-section a.mbtn:hover:after {
  transform: scale(0,1);
  -webkit-transform: scale(0,1);
  -ms-transform: scale(0,1);
  transform-origin: right;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  background-size: 225% 100%!important;
  background-position: right!important;
}
.events-section {
  padding-bottom: 40px;
}
.events-section .dnd-section:last-child {
  padding-bottom: calc(100vw * 0.04);
  padding-top: 0px;
}




/*********************************** Partnership ********************************/

.partnership-banner .bannerArea .banner-container {
  padding-top: calc(100vw * 0.09);
  padding-bottom: calc(100vw * 0.06);
}
.partnership-banner .bannerArea .bannerColumn8 {
  padding: 1%;
}
.partnership-banner .bannerArea .divider50 {
  display: none;
}
.partnership-banner .bannerArea .bannerTitle {
  margin: 0 !important;
}
.partnership-banner .bannerTitle h1 {
  margin: 0;
  line-height: 36px;
  font-weight: 600;
  font-family: Muli;
  margin-bottom: 32px;
  font-size: 38px;
  text-align: center;
}
.partnership-banner .bannerArea .divider20 {
  display: none;
}
.partnership-banner .bannerArea h2 {
  margin: 0;
  margin-bottom: 7px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  font-family: Muli;
  font-weight: 400;
  font-style: normal;
}
.partnership-banner .bannerArea .divider30 {
  display: none;
}
.partnership-banner .bannerArea .banner_svg {
  height: 90px;
}
.partnership-banner .bannerArea .banner-image .using-image {
  background-position: left top;
  background-repeat: no-repeat;
}
.partnership-sec .span12.dnd-module img {
  position: relative;
  height: auto;
  margin: 0 auto;
  display: block;
  max-width: 75%;
  width: auto;
}

.partnership-sec .span12.dnd-module .hs_cos_wrapper_type_rich_text {
  display: block;
  width: 100%;
  position: relative;
  min-height: 1px;
}
.partnership-sec .span12.dnd-module {
  margin-bottom: 24px;
  padding-top: 5%;
}
.partnership-sec .dnd-section {
  padding: 0;
  margin-bottom: 35px;
}
.partnership-sec .dnd-row + .dnd-row {
  padding-top: 2%;
  padding-bottom: 2%;
  margin-bottom: 24px;
}
.partnership-sec .span6.dnd-module {
  width: 100%;
  display: block;
  float: none;
  position: relative;
  min-height: 1px;
}
.partnership-sec .span6.dnd-module + .dnd-module {
  margin-left: 2.1%;
  padding-left: 8%;
  margin-top: 80px;
  padding-right: 8%;
}
.partnership-sec .span6.dnd-module img {
  position: relative;
  height: auto;
  margin: 0 auto;
  display: block;
  max-width: 100%;
  border-radius: 20px;
  width: auto;
}

.partnership-sec .span6.dnd-module + .dnd-module .hs_cos_wrapper_type_rich_text {
  width: 150%;
  display: block;
  margin-left: -25%;
}
.partnership-sec h2 {
  margin: 0;
  margin-bottom: 7px;
  line-height: 36px;
  font-size: 22px;
  text-align: left;
  font-family: Muli;
  font-weight: 400;
  font-style: normal;
}
.partnership-sec section {
  padding-right: 10%;
  margin: 27px 0 40px;
  line-height: 25px;
}
.partnership-sec section p:last-child {
  padding-bottom: 0;
}
.partnership-sec h4 > span {
  position: relative;
  text-decoration: inherit;
  speak: none;
}
.partnership-sec h4 > span > a {
  position: relative;
  display: inline-block;
  color: inherit;
  padding-right: 38px;
}
.partnership-sec h4 > span > a .circle {
  content: ' ';
  display: block;
  pointer-events: none;
  -ms-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  top: 50%;
  position: absolute;
  border-radius: 100px;
  border: none;
  z-index: -1;
  height: 27px;
  width: 27px;
  right: -1px;
  margin-top: -14px;
  transform: scale(0.85);
}
.partnership-sec h4 > span > a .arrow {
  letter-spacing: 0!important;
  color: #fff;
  overflow: hidden;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -14px;
  height: 25px;
  line-height: 28px;
  width: 24px;
  border-radius: 50px;
  transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
}
.partnership-sec h4 > span > a .arrow:before {
  -ms-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  top: 50%;
  text-align: center;
  font-size: 14px;
  position: absolute;
  right: 0;
  font-family: 'Fontawesome'!important;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  content: "\f105";
  border-color: inherit;
  margin-top: -14px;
  height: 28px;
  line-height: 28px;
  width: 25px;
  padding-left: 1px;
  box-sizing: border-box;
  color: #fff;
}
.partnership-sec h4 > span > a:after {
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.3);
  height: 25px;
  width: 25px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -14px;
  content: ' ';
  display: block;
  pointer-events: none;
  -ms-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  border-color: inherit!important;
  background-color: inherit;
  border: none;
}
.partnership-sec h4 > span > a:before {
  content: ' ';
  display: block;
  pointer-events: none;
  -ms-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  top: 50%;
  position: absolute;
  border-radius: 100px;
  box-shadow: 0px 9px 20px;
  opacity: 0.29;
  border: none;
  z-index: -1;
  height: 27px;
  width: 27px;
  right: -1px;
  margin-top: -14px;
  transform: scale(0.84);
}
.partnership-sec h4 > span > a:hover:before {
  transform: scale(1);
}
.partnership-sec h4 > span > a:hover .circle {
  transform: scale(1);
}
.partnership-sec h4 > span > a:hover .arrow {
  transform: scale(1);
}
.partnership-sec .dnd-row + .dnd-row + .dnd-row .dnd-module {
  padding: 0;
  margin: 0;
}
.partnership-sec hr {
  width: 20% !important;
  background: linear-gradient(to right,#2ca895,#3c73b8);
  transform-origin: center;
  -webkit-transform-origin: center;
  margin: 25px auto !important;
  height: 1px !important;
  margin-bottom: 12px !important;
  margin-top: 0 !important;
  border: 0 !important;
}
.partnership-sec2 .span12.dnd-module img {
  max-width: 100%;
}
.partnership-sec2 .span12.dnd-module {
  padding-top: 2%;
}
.partnership-sec2 .span6.dnd-module + .dnd-module {
  margin-top: 0;
}
.partnership-sec2 .span6.dnd-module + .dnd-module .hs_cos_wrapper_type_rich_text {
  margin-left: -37.5%;
  width: 175%;
}
.partnership-sec3 .dnd-section {
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.07);
}
.partnership-sec3 .span12.dnd-module {
  padding-top: 2%;
  padding-bottom: 5%;
}
.partnership-sec3 .span12.dnd-module .hs_cos_wrapper_type_rich_text {
  padding-left: 5%;
  padding-right: 5%;
}
.partnership-sec3 .span12.dnd-module img {
  max-width: 100%;
}
.partnership-sec3 .span6.dnd-module + .dnd-module {
  padding: 7%;
  margin-top: 0;
}
.partnership-sec3 .span6.dnd-module + .dnd-module .hs_cos_wrapper_type_rich_text {
  width: 100%;
  margin: 0;
}
.bottom-sec .dnd-section {
  padding: 0;
  position: relative;
}
.partnership-sec3 .dnd-row + .dnd-row {
  padding-bottom: 0;
  margin: 0;
}
.paneButton a:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}
.team-page .bannerArea.fullWidthBanner .banner-container {
  padding-top: calc(100vw * 0.04);
  padding-bottom: calc(100vw * 0.02);
}
.team-page .bannerArea .bannerContent {
  padding: 5%;
}
.advencedBanner.qmenta_labs .advencedContainer {
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.03);
}
.advencedBanner.qmenta_labs .advencedColumnLeft {
  padding-top: 3%;
}
.advencedBanner.qmenta_labs .advencedColumnRight {
  margin-bottom: 100px!important;
}
.advencedBanner.qmenta_labs .advencedContainer .advencedImage img {
  max-width: 100%;
  margin: 0;
}
.webinarBanner .bannerArea.fullWidthBanner .banner-container {
  padding-top: calc(100vw * 0.06);
  padding-bottom: calc(100vw * 0.04);
}
.webinarBanner .bannerArea.fullWidthBanner h1 {
  line-height: 3;
}

.qmenta-labs .how_ite_works .how_ite_works_inner {
  padding-top: 3%;
}
.subscribe_sec .submitted-message {
  text-align: center;
  color: #fff;
}
.partnership-sec .span12.dnd-module img {
  backface-visibility: hidden !important;
}

/************************************************ Our Mission **********************************/
.mission-banner .bannerArea.fullWidthBanner .banner-container {
  padding-top: calc(100vw * 0.07);
  padding-bottom: calc(100vw * 0.06);
}
.mission-banner .bannerArea .banner_svg {
  height: 30px;
}
.mission-banner .bannerArea.fullWidthBanner .divider50 {
  height: 0;
  display: block;
}
.mission-banner .bannerArea h2 {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 32px;
  line-height: 1;
  text-align: center;
  font-family: Muli;
  font-weight: 400;
  font-style: normal;
}
.mission-banner .bannerArea.fullWidthBanner .divider20 {
  height: 10px;
  display: block;
}
.mission-banner .bannerArea .banner-image .using-image {
  background-position: left top;
  background-repeat: no-repeat;
}
.mission-sec .dnd-section {
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.05);
}
.mission-sec .span6.dnd-column {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin: 0;
}
.mission-sec img {
  position: relative;
  height: auto;
  margin: 0 auto;
  display: block;
  width: auto;
  max-width: 50%;
}
.storage-section.mission-sec img {
  max-width: 75%;
}
.mission-sec figure {
  margin: 0;
}
.storage-section .span6.dnd-column {
  padding-left: 5%;
  padding-right: 5%;
}
.storage-section .span6.dnd-column + .dnd-column {
  padding-left: 8%;
  padding-right: 8%;
}
.mission-sec .hs_cos_wrapper_type_rich_text h2 {
  margin: 0;
  margin-bottom: 7px;
  color: #333333;
  font-size: 23px;
  line-height: 25px;
  text-align: left;
  font-family: Muli;
  font-weight: 400;
  font-style: normal;
}
.mission-sec .hs_cos_wrapper_type_rich_text section {
  padding-top: 30px;
}
.mission-sec .hs_cos_wrapper_type_rich_text section p:last-child {
  padding-bottom: 0;
}
.our-vision .dnd-section {
  padding-top: calc(100vw * 0.04);
  padding-bottom: calc(100vw * 0.04);
}
.our-vision .span6.dnd-column {
  padding-left: 12%;
  padding-right: 12%;
}
.our-vision .span6.dnd-column + .dnd-column {
  padding: 4%;
}
.our-mission .dnd-section {
  padding-top: calc(100vw * 0.03);
  padding-bottom: calc(100vw * 0.03);
}
.our-mission .span6.dnd-column {
  padding: 5%;
}
.our-mission .span6.dnd-column + .dnd-column {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 10%;
  padding-right: 10%;
}
.plateform .dnd-section {
  padding-top: calc(100vw * 0.03);
  padding-bottom: calc(100vw * 0.03);
}
.plateform .span6.dnd-column {
  padding-left: 7%;
  padding-right: 7%;
}
.plateform .span6.dnd-column + .dnd-column {
  padding: 5%;
}
.why-qmenta .dnd-section {
  padding-top: calc(100vw * 0.04);
  padding-bottom: calc(100vw * 0.04);
}
.why-qmenta .span6.dnd-column {
  padding: 5%;
}
.why-qmenta .span6.dnd-column + .dnd-column {
  padding: 0 8%;
}
.abcde-values .dnd-section {
  padding-top: calc(100vw * 0.07);
  padding-bottom: calc(100vw * 0.05);
  position: relative;
}
.abcde-values .dnd-section:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: ' ';
  z-index: 2;
  backface-visibility: hidden;
  opacity: 0.95;
}
.abcde-values .dnd-section > .row-fluid {
  position: relative;
  z-index: 9;
}
.abcde-values .hs_cos_wrapper_type_header {
  display: block;
  text-align: center;
}
.abcde-values .hs_cos_wrapper_type_header h1 {
  margin: 0;
  margin-bottom: 7px;
  font-size: 32px;
  color: #ffffff;
  line-height: 37px;
  text-align: center;
  font-family: Muli;
  font-weight: 300;
  font-style: normal;
}
.abcde-values .span4.dnd-column {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin: 0;
  text-align: center;
  padding: 3%;
}
.abcde-values .span2.dnd-column {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin: 0;
  text-align: center;
  padding: 3%;
}
.abcde-values .hs_cos_wrapper_type_rich_text figure {
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
  padding: 20px;
  border-width: 2px;
}
.abcde-values .hs_cos_wrapper_type_rich_text figure i {
  font-family: 'iconsmind' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff!important;
  font-size: 50px;
  line-height: 50px;
  height: 50px;
  width: 50px;
}
.abcde-values .hs_cos_wrapper_type_rich_text figure i:before {
  line-height: inherit;
}
.iconsmind-Wifi-2:before {
  content: "\f0fe";
}
.abcde-values .hs_cos_wrapper_type_rich_text h3 {
  margin: 0;
  margin-bottom: 15px;
  color: #fff;
  font-family: Muli;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
.abcde-values .hs_cos_wrapper_type_rich_text address {
  font-style: normal;
  padding-top: 15px;
  color: #fff;
}
.abcde-values .hs_cos_wrapper_type_rich_text address p:last-child {
  padding-bottom: 0px;
}
.iconsmind-Scale:before {
  content: "\ec34";
}
.iconsmind-Chacked-Flag:before {
  content: "\ec05";
}
.iconsmind-Worker:before {
  content: "\ebfa";
}
.iconsmind-Medal-3:before {
  content: "\ea60";
}
.button-section .dnd-section {
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.05);
}
.button-section .hs_cos_wrapper_type_rich_text h2 {
  margin-bottom: 57px;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  font-family: Muli;
  font-weight: 400;
  font-style: normal;
}
.button-section a.hs-button {
  display: inline-block;
  line-height: 20px;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  padding: 10px 15px;
  font-weight: 700;
  font-family: Muli;
  font-size: 12px;
  background-color: transparent!important;
  box-shadow: none!important;
  -webkit-box-shadow: none!important;
  opacity: 1!important;
  padding-top: 9px;
  padding-bottom: 9px;
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
  border: 2px solid rgba(0,0,0,0.15);
  visibility: visible;
  color: rgb(0, 0, 0);
  border-color: rgba(0, 0, 0, 0.75);
}
/**.button-section a.hs-button:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}**/
.bottom_section .dnd-section:first-child {
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.01);
  margin-bottom: 35px;
}
.bottom_section figure {
  width: 30.4%;
  margin: 0 auto;
}
.bottom_section figure img {
  max-width: 100%;
}
.bottom_section p:last-child {
  padding-bottom: 0;
}
.bottom_section .dnd-section + .dnd-section {
  padding-top: 0px;
  padding-bottom: calc(100vw * 0.02);
}
.our-mission-page {
  padding-bottom: 40px;
}
.bottom_section p {
  margin-top: 25px;
  margin-bottom: 25px;
}

/************************************************ Publication *****************************************/

.publications .bannerArea .banner-container {
  padding-top: calc(100vw * 0.08);
  padding-bottom: calc(100vw * 0.06);
}
.publications .bannerArea .bannerColumn8 {
  width: 100%;
  margin: 0;
}
.publications .bannerArea h2 {
  margin-top: 0;
  margin-bottom: 7px;
  font-family: Muli;
  font-size: 32px;
  line-height: 48px;
  color: #ffffff;
  text-align: center;
}
.publications .bannerArea .divider50 {
  display: none;
}
.publications .bannerArea h4 {
  width: 48.93617020799999%;
  margin: 0 auto;
  padding-top: 1%;
  margin-bottom: 5px;
}
.publications .bannerArea .divider20 {
  height: 16px;
}
.publications .bannerArea .divider30 {
  display: none;
}

body em {
  font-family: Muli;
  font-weight: 400;
  font-style: italic;
}
.main-content-area a {
  word-break: break-word;
}











@media all and (-ms-high-contrast:none) {

  .videoBanner a.nectar_video_lightbox span.play span.inner-wrap{
    display: flex;
  }
  .home-page .solutionWrapper a.solutionButton{
    max-width: 171px;
  }

}
@-moz-document url-prefix() {
  .home-page .solutionWrapper a.solutionButton{
    max-width: 171px;
  }


}







@media (min-width: 1000px){
  .clinical_trials .span4.dnd-column {
    width: 31.914893614%;
  }
  .two_col_section .span5.dnd-column, .two_col_section .span7.dnd-column {
    width: 48.93617020799999%;
    float: left;
  }
  .qmenta-labs .counter_section .dnd-section > .row-fluid > .dnd-column {
    width: 82.97872339599999%;
    margin: 0 auto;
    float: none;
  }
  .qmenta-trials .advencedBanner .advencedContainer .advencedText {
    width: 74.468085099%;
  }

  .qmenta-trials .counter_section .dnd-section > .row-fluid > .dnd-column {
    width: 82.97872339599999%;
    margin: 0 auto;
    float: none;
  }
  .solutions .bannerArea .bannerColumn8 {
    width: 48.93617020799999%;
  }
  .solutions .bannerContentInner {
    width: 74.468085099%;
  }
  .support-page .hs_cos_wrapper_type_form {
    width: 65.95744680199999%;
  }
  .data-collection .span6.dnd-column {
    width: 48.93617020799999%;
  }
  .data-collection .span6.dnd-column + .dnd-column {
    margin-left: 2.1%;
  }
  .bottom-section .span7.dnd-column {
    width: 48.93617020799999%;
  }
  .bottom-section .span5.dnd-column {
    margin-left: 2.1%;
    width: 23.404255317%;
  }
  .qmenta-trials .span3.dnd-column {
    width: 23.404255317%;
  }
  .qmenta-trials .span3.dnd-column:not(:first-child) {
    margin-left: 2.1%;
  }
  .meetinfSec .span6.dnd-column {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    margin: 0;
  }
  .meetinfSec .span6.dnd-column {
    width: 48.93617020799999%;
  }
  .cta_section .span6.dnd-column {
    width: 48.93617020799999%;
  }
  .subscribe_sec .hs_cos_wrapper_type_form form {
    width: 65.95744680199999%;
    margin: 0 auto;
  }
  .team-page .bannerArea .bannerColumn8 {
    width: 82.97872339599999%;
    margin: 0 auto;
    float: none;
  }
  .managementTeam .span4.dnd-module {
    width: 31.914893614%;
  }
  .managementTeam .span1.dnd-column {
    width: 6.382978723%;
  }
  .managementTeam .span2.dnd-column {
    margin-left: 2.1%;
    width: 14.89361702%;
  }
  .advisoryBoard .span3.dnd-module {
    margin-left: 2.1%;
    width: 23.404255317%;
  }
  .operating-systems .span4.dnd-module {
    width: 31.914893614%;
    float: left;
  }
  .events-page .bannerArea .bannerColumn2 {
    width: 23.404255317%;
  }
  .events-page .bannerArea .bannerColumn8 {
    width: 48.93617020799999%;
  }
  .events-section .span6.dnd-column {
    width: 48.93617020799999%;
  }
  .events-section .span6.dnd-column + .dnd-column {
    margin-left: 2.1%;
  }
  .partnership-sec .span12.dnd-module .hs_cos_wrapper_type_rich_text {
    width: 31.914893614%;
    margin: 0 auto;
  }
  .partnership-sec .span6.dnd-module {
    width: 48.93617020799999%;
    float: left;
  }
  .team-section .span3.dnd-module:not(:first-child) {
    margin-left: 2.1%;
  }
  .team-section .span3.dnd-module {
    float: left;
    width: 23.404255317%;
  }
  .directors .span4.dnd-module {
    float: left;
    width: 31.914893614%;
  }
  .directors .span4.dnd-module:not(:first-child) {
    margin-left: 2.1%;
  }
  .mission-sec .span6.dnd-column {
    width: 48.93617020799999%;
  }
  .mission-sec .span6.dnd-column + .dnd-column {
    margin-left: 2.1%;
  }
  .abcde-values .hs_cos_wrapper_type_header {
    width: 48.93617020799999%;
    margin: 0 auto;
  }
  .abcde-values .span4.dnd-column {
    width: 31.914893614%;
  }
  .abcde-values .span4.dnd-column:not(:first-child) {
    margin-left: 2.1%;
  }
  .abcde-values .span2.dnd-column {
    width: 14.89361702%;
  }
  .abcde-values .span2.dnd-column:not(:first-child) {
    margin-left: 2.1%;
  }
  .button-section .hs_cos_wrapper_type_rich_text {
    width: 48.9362%;
    margin: 0 auto;
    display: block;
  }
  .webinarLists .span6.dnd-column {
    width: 48.93617020799999%;
  }
  .webinarLists .span6.dnd-column + .dnd-column {
    margin-left: 2.1%;
  }




}


@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .clinical_trials h4 {
    font-size: 18px;
    line-height: 27px;
    margin-top: 0;
  }
  .two_col_section h2 {
    font-size: 20.4px;
    line-height: 30.6px;
  }
  .counter_section .hs_cos_wrapper_type_header h2 {
    font-size: 20.4px;
    line-height: 30.6px;
  }
  .qmenta-trials .clinical_trials .hs_cos_wrapper_type_header h2 {
    font-size: 20.4px;
    line-height: 30.6px;
  }
  .solutions .bannerArea .bannerTitle h1 {
    font-size: 24px;
    line-height: 36px;
  }
  .sdk-contact-page h3 {
    font-size: 17px;
    line-height: 25.5px;
  }
  .support-page .hs_cos_wrapper_type_rich_text h3 {
    font-size: 17px;
    line-height: 25.5px;
  }
  .what-we-do h3 {
    font-size: 17px;
    line-height: 25.5px;
  }
  .managementTeam .hs_cos_wrapper_type_header h2,
  .advisoryBoard .hs_cos_wrapper_type_header h2{
    line-height: 25.5px;
  }
  .managementTeam .dnd-section {
    margin-bottom: 35px;
  }
  .advisoryBoard hr, .managementTeam hr {
    margin-top: 27px !important;
  }
  .newsletter-form .hs_cos_wrapper_type_rich_text h1 {
    line-height: 36px;
  }
  .newsletter-form .hs_cos_wrapper_type_rich_text h2 {
    line-height: 36px;
  }
  .paris-page-sec .hs_cos_wrapper_type_rich_text h3 {
    font-size: 17px;
    line-height: 25.5px;
  }
  .advisory-banner .bannerArea .bannerTitle h2 {
    line-height: 30.6px;
  }
  .advisory-banner .bannerArea h2 {
    line-height: 30.6px;
  }
  .events-page .bannerArea h1 {
    line-height: 30.6px;
  }
  .events-section h2 {
    font-size: 20.4px;
    line-height: 30.6px;
  }
  .partnership-banner .bannerTitle h1 {
    line-height: 30.6px;
  }
  .partnership-sec h2 {
    line-height: 30.6px;
  }
  .team-section .hs_cos_wrapper_type_header h1 {
    line-height: 25.5px;
  }
  .webinarBanner .bannerArea.fullWidthBanner h1 {
    font-size: 32px;
  }
  .abcde-values .hs_cos_wrapper_type_rich_text h3 {
    font-size: 17px;
    line-height: 25.5px;
  }
  .publications .bannerArea h2 {
    font-size: 24px;
    line-height: 36px;
  }






}




@media only screen and (max-width: 1000px) and (min-width: 690px){
  .webinarLists h2 {
    font-size: 19.2px!important;
    line-height: 28.8px!important;
  }
  .qmenta-trials .clinical_trials .hs_cos_wrapper_type_header h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .qmenta-trials .cascading-image1 .bg_color {
    height: 30vw;
  }
  .qmenta-trials .span3.dnd-column {
    width: 48%!important;
    margin-bottom: 2%;
    padding: 6%;
    margin-left: 0;
    float: left;
  }
  .solutions .bannerArea .bannerTitle h1 {
    font-size: 22.4px;
    line-height: 33.6px;
  }
  .sdk-contact-page h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .qmenta-platform-page .bannerTitle h1 {
    font-size: 22.4px!important;
    line-height: 33.6px!important;
  }
  .qmenta-platform-page .bannerArea h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .what-we-do h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .advisoryBoard .span3.dnd-module {
    padding: 15px;
    float: left;
    width: 48%!important;
    margin-bottom: 2%;
  }
  .advisoryBoard .span3.dnd-module:nth-child(2n + 1) {
    clear: both;
  }
  .team-section .span3.dnd-module {
    width: 48%!important;
    padding: 15px;
    float: left;
    margin: 0;
    margin-bottom: 2%;
  }



}


@media(max-width: 1000px){
  .webinarLists .dnd-section > .row-fluid {
    display: block !important;
  }
  .webinarLists .dnd-section .span6.dnd-column {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .webinarLists .dnd-section .span6.dnd-column:first-child {
    margin-bottom: 25px;
  }
  .webinarLists img {
    margin-bottom: 15px;
  }
  .clinical_trials .span4.dnd-column {
    width: 100%;
    margin-left: 0px;
    margin-bottom: 25px;
    padding: 3%;
  }
  .clinical_trials .dnd-section > .row-fluid {
    display: block !important;
  }
  .clinical_trials h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }
  .clinical_trials .span4.dnd-column:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .ai_reader hr {
    margin-bottom: 37px !important;
  }
  .counter_section .dnd-row > .row-fluid {
    display: block !important;
  }
  .counter_section .span6.dnd-column {
    width: 100%;
    margin-left: 0 !important;
  }
  .counter_section .span6.dnd-column:first-child {
    margin-bottom: 25px;
  }
  .two_col_section .dnd-section > .row-fluid {
    display: block !important;
  }
  .two_col_section .dnd-column {
    margin-bottom: 25px !important;
    margin-left: 0 !important;
  }
  .two_col_section img {
    padding-right: 0;
    vertical-align: middle;
  }
  .two_col_section h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .two_col_section .dnd-column:last-child {
    margin-bottom: 0 !important;
  }
  .qmenta-labs .ai_reader hr {
    margin-bottom: 75px !important;
  }
  .counter_section .hs_cos_wrapper_type_header h2 {
    margin-top: 26px;
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .qmenta-labs .span6.dnd-column {
    padding: 6%;
  }
  .qmenta-labs .span6.dnd-column:last-child {
    padding-bottom: 0;
  }
  .qmenta-labs .meetingPane .meetingContent {
    margin: 0 auto;
  }
  .solutions .bannerArea .bannerContent {
    margin-bottom: 50px;
  }
  .solutions .bannerArea .banner_svg svg {
    height: 75%;
  }
  .sdk-contact-page .bannerArea .banner_svg svg {
    height: 75%;
  }
  .sdk-contact-page .bannerArea .bannerColumn:first-child {
    margin-bottom: 25px;
  }
  .sdk-contact-page .bannerArea .bannerColumn8 {
    margin-left: 0;
    margin-bottom: 25px;
    text-align: center;
  }
  .sdk-contact .hs_cos_wrapper_type_form {
    width: 100%;
    margin-top: 26px;
    margin-bottom: 25px;
  }
  .sdk-contact .hs_cos_wrapper_type_form form {
    transform: scale(1, 1)!important;
    -webkit-transform: scale(1, 1)!important;
    padding: 10%;
  }
  .support-page .hs_cos_wrapper_type_rich_text {
    padding: 6%;
    padding-bottom: 0px;
  }
  .support-page .hs_cos_wrapper_type_rich_text h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .support-page .hs_cos_wrapper_type_form {
    padding: 6%;
    margin-top: 36px;
  }
  .support-page .hs_cos_wrapper_type_form form {
    margin-bottom: 58px;
  }
  .qmenta-platform-page .bannerArea .banner_svg svg {
    height: 75%;
  }
  .what-we-do .span6.dnd-column {
    width: 100%;
    margin: 0;
  }
  .what-we-do .dnd-section > .row-fluid {
    display: block !important;
  }
  .what-we-do .span6.dnd-column:not(:last-child) {
    margin-bottom: 25px;
  }
  .data-collection .hs_cos_wrapper_type_header h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .data-collection .hs_cos_wrapper_type_rich_text h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }
  .data-collection .span6.dnd-column:not(:last-child) {
    margin-bottom: 25px;
  }
  .bottom-section .dnd-section > .row-fluid {
    display: block !important;
  }
  .bottom-section .span7.dnd-column {
    padding: 0;
    margin-bottom: 25px;
  }
  .bottom-section h3 {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
  .bottom-section .span5.dnd-column {
    text-align: center;
    margin-bottom: 2%;
    padding: 15px;
  }
  .qmenta-trials .span3.dnd-column:not(:first-child) {
    margin-left: 0;
  }
  .qmenta-trials .span3.dnd-column:last-child {
    padding: 15px;
    margin-bottom: 0;
    padding-top: 55px;
  }
  .meetinfSec h2 {
    font-size: 19.2px !important;
    line-height: 28.8px !important;
  }
  .meetinfSec .span6.dnd-column:first-child > .dnd-row {
    padding: 6%;
  }
  .cta_section .span6.dnd-column {
    width: 100%;
    padding: 0;
    margin-bottom: 25px;
  }
  .cta_section .dnd-section > .row-fluid {
    display: block !important;
  }
  .cta_section h3 {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .cta_section .span3.dnd-column {
    width: 33.33%;
    margin-left: 0 !important;
  }
  .subscribe_sec .hs_cos_wrapper_type_rich_text h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .subscribe_sec .hs_cos_wrapper_type_form {
    margin-top: 26px;
    margin-bottom: 25px;
  }
  .meetinfSec .span12.dnd-column .hs_cos_wrapper_type_rich_text svg {
    height: 75%;
  }
  .team-page .bannerArea h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .team-page .bannerArea .bannerContent {
    padding: 6%;
  }
  .team-page .bannerArea .bannerColumn {
    margin-left: 0;
    margin-bottom: 25px;
    margin-top: 26px;
  }
  .team-page .bannerArea .banner_svg svg {
    height: 75%;
  }
  .managementTeam .hs_cos_wrapper_type_header h2, .advisoryBoard .hs_cos_wrapper_type_header h2 {
    font-size: 16px!important;
    line-height: 24px!important;
  }

  .managementTeam hr, .advisoryBoard hr {
    margin-top: 26px !important;
    margin-bottom: 55px !important;
  }
  .managementTeam .dnd-row:nth-child(3) > .row-fluid {
    padding-left: 6%;
    padding-right: 6%;
    padding-top: 6%;
    margin-left: 0;
  }
  .managementTeam .span4.dnd-module {
    margin-left: 0 !important;
    margin-bottom: 25px;
  }
  .managementTeam .span4.dnd-module:last-child{
    margin-bottom: 0;
  }
  .managementTeam .dnd-row:nth-child(4) > .row-fluid {
    padding-left: 6%;
    padding-right: 6%;
    padding-bottom: 6%;
    margin-left: 0;
    display: block !important;
  }
  .managementTeam .span1.dnd-column, .managementTeam .span1.dnd-column * {
    min-height: 1px;
  }
  .managementTeam .span2.dnd-column, .managementTeam .span2.dnd-column * {
    min-height: 1px;
  }
  .managementTeam .span1.dnd-column, .managementTeam .span2.dnd-column{
    margin-bottom: 25px;
    margin-left: 0 !important;
  }
  .managementTeam .span1.dnd-column:last-child {
    margin-bottom: 0;
  }
  .managementTeam .dnd-section {
    margin-bottom: 35px;
  }
  .advisoryBoard .span12.dnd-module .hs_cos_wrapper_type_rich_text {
    width: 100%;
    margin: 35px auto 60px;
  }
  .advisoryBoard .span12.dnd-module .hs_cos_wrapper_type_rich_text h3 {
    font-size: 16px!important;
    line-height: 24px!important;
  }
  .bottomSec h2 {
    font-size: 19.2px!important;
    line-height: 28.8px!important;
  }
  .bottomSec .dnd-section > .row-fluid {
    margin: 26px auto;
  }
  .newsletter-form .hs_cos_wrapper_type_rich_text h1 {
    font-size: 22.4px;
    line-height: 33.6px;
  }
  .newsletter-form .hs_cos_wrapper_type_rich_text h2 {
    font-size: 22.4px;
    line-height: 33.6px;
  }
  .newsletter-form .hs_cos_wrapper_type_form {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0 !important;
  }

  .paris-page-sec .hs_cos_wrapper_type_rich_text h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .advisory-banner .bannerArea .bannerTitle h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .advisory-banner .bannerArea h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .advisory-banner .bannerColumn.bannerColumn8 {
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: 0;
  }
  .advisory-banner .bannerArea .banner_svg svg {
    height: 75%;
  }
  .operating-systems .span4.dnd-module {
    margin-left: 0;
    margin-bottom: 25px;
  }
  .operating-systems .span4 .hs_cos_wrapper_type_rich_text h2 {
    font-size: 19.2px!important;
    line-height: 28.8px!important;
  }
  .operating-systems .span4.dnd-module:last-child {
    margin-bottom: 0;
  }
  .events-page .bannerArea h1 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .events-page .bannerArea .bannerColumn {
    margin-left: 0;
    margin-bottom: 25px;
  }
  .events-page .bannerArea .banner_svg svg {
    height: 75%;
  }
  .events-page .bannerArea .bannerColumn:last-child {
    margin-bottom: 0;
  }
  .events-section .dnd-section > .row-fluid {
    display: block !important;
  }
  .events-section img {
    padding-right: 0;
  }
  .events-section .span6.dnd-column:first-child {
    margin-bottom: 25px;
  }
  .events-section .span6.dnd-column {
    margin-left: 0;
  }
  .events-section h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .partnership-banner .bannerTitle h1 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .partnership-banner .bannerArea .bannerColumn8 {
    margin-left: 0;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .partnership-banner .bannerArea h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .partnership-banner .bannerArea .banner_svg svg {
    height: 75%;
  }
  .partnership-sec .span12.dnd-module .hs_cos_wrapper_type_rich_text {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .partnership-sec h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .partnership-sec h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }
  .partnership-sec .span6.dnd-module + .dnd-module .hs_cos_wrapper_type_rich_text {
    margin: 0!important;
    max-width: 100%!important;
  }
  .partnership-sec .span6.dnd-module + .dnd-module {
    margin-left: 0;
  }
  .partnership-sec .span6.dnd-module:first-child {
    padding-bottom: 25px;
  }
  .partnership-sec3 .span6.dnd-module + .dnd-module {
    padding: 14%;
  }
  .team-page .bannerArea.fullWidthBanner .bannerColumn8 {
    margin-left: 0;
    margin-bottom: 34px;
    margin-top: 25px;
  }
  .team-page .bannerArea.fullWidthBanner .banner-container {
    padding-top: calc(100vw * 0.06);
    padding-bottom: calc(100vw * 0.02);
  }
  .team-section .hs_cos_wrapper_type_header h1 {
    font-size: 16px;
    line-height: 24px;
  }
  .directors .span4.dnd-module:not(:last-child) {
    margin-bottom: 25px;
  }
  .team-section .span3.dnd-module:last-child {
    margin-bottom: 0px!important;
  }
  .ourSolution .solutionWrapper .solutionItem {
    padding: 12%;
  }
  .mission-banner .bannerArea h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .mission-sec .dnd-section > .row-fluid {
    display: block !important;
  }
  .mission-sec .span6.dnd-column:not(:last-child) {
    margin-bottom: 25px;
  }
  .mission-sec .hs_cos_wrapper_type_rich_text h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .our-vision .span6.dnd-column + .dnd-column {
    padding: 6%;
  }
  .our-mission .span6.dnd-column:not(:last-child) {
    padding: 6%;
  }
  .plateform .span6.dnd-column + .dnd-column {
    padding: 6%;
  }
  .why-qmenta .span6.dnd-column:not(:last-child) {
    padding: 6%;
  }
  .abcde-values .hs_cos_wrapper_type_header h1 {
    font-size: 22.4px;
    line-height: 33.6px;
  }
  .abcde-values .hs_cos_wrapper_type_header {
    padding: 25px 0;
  }
  .abcde-values .dnd-row > .row-fluid {
    display: block !important;
  }
  .abcde-values .span4.dnd-column {
    padding: 6%;
  }
  .abcde-values .span4.dnd-column:not(:last-child) {
    margin-bottom: 25px;
  }
  .abcde-values .hs_cos_wrapper_type_rich_text h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .abcde-values .span2.dnd-column {
    padding: 6%;
  }
  .abcde-values .span2.dnd-column:not(:last-child) {
    margin-bottom: 25px;
  }
  .abcde-values .span2.dnd-column:last-child {
    padding: 0;
  }
  .abcde-values .span4.dnd-column:last-child {
    padding-bottom: 0;
  }
  .button-section .dnd-section > .row-fluid {
    margin: 25px auto !important;
  }
  .bottom_section figure {
    width: 31.2%;
  }
  .bottom_section  .dnd-section + .dnd-section figure {
    position: relative;
    left: 3.1%;
    margin-bottom: 25px;
  }
  .publications .bannerArea h2 {
    font-size: 22.4px;
    line-height: 33.6px;
  }
  .publications .bannerArea h4 {
    width: 100%;
    margin: 25px 0 30px;
  }
  .publications .bannerArea .banner_svg svg {
    height: 75%;
  }
  .main-content-area .hs_cos_wrapper_type_header h1 {
    font-size: 16px;
    line-height: 24px;
  }
  .body-container-wrapper.advisors-page {
    position: relative;
    z-index: 99;
  }




}




@media only screen and (max-width: 767px){
  .migration .dnd-section .dnd-module {
    margin-bottom: 30px;
  }
  .banner-area .dnd-section .dnd-module, 
  .main-content-area .dnd-section .dnd-module {
    margin-bottom: 0;
  }
  .main-content-area h4 {
    font-size: 18px;
    line-height: 1.5;
  }
  .qmenta-labs .ai_reader hr {
    margin-bottom: 0 !important;
  }
  .qmenta-labs .ai_reader .dnd-row:first-child {
    margin-bottom: 46px;
  }
  .qmenta-labs .cascading-image1 .bg_color {
    height: 32vw;
  }

  .managementTeam .dnd-module, .advisoryBoard .dnd-module {
    float: left;
    width: 100%;
  }



}
/* 
@media only screen and (max-width: 767px) and (min-width: 691px){
.managementTeam .dnd-module {
float: left;
width: 100%;
}




} */






@media only screen and (max-width: 690px){
  .main-content-area .hs_cos_wrapper_type_header h1 {
    font-size: 14px;
    line-height: 21px;
  }

  .main-content-area h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }
  .main-content-area .hs_cos_wrapper_type_header h2 {
    font-size: 14px;
    line-height: 21px;
  }
  .webinarLists h2 {
    font-size: 16.8px!important;
    line-height: 25.2px!important;
  }
  .how_ite_works_title h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .two_col_section h2 {
    font-size: 16.8px;
    line-height: 25.2px;
    margin: 0;
    padding-bottom: 20px;
  }
  .qmenta-trials .clinical_trials .hs_cos_wrapper_type_header h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .how_ite_works_title h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .qmenta-trials .cascading-image1 .bg_color {
    height: 26vw;
  }
  .counter_section .hs_cos_wrapper_type_header h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .qmenta-trials .span3.dnd-column {
    padding: 6%;
    margin-bottom: 25px;
  }
  .qmenta-trials .counter_section hr {
    margin: 0 auto!important;
  }
  .qmenta-trials .counter_section .dnd-row:nth-child(2) {
    margin: 50px 0 30px;
  }
  .qmenta-trials .span3.dnd-column:last-child {
    margin: 0;
    padding: 0;
    margin-top: 60px;
  }
  .solutions .bannerArea .bannerTitle h1 {
    font-size: 22.4px;
    line-height: 33.6px;
  } 
  .solutions .bannerArea .banner_svg svg {
    height: 33%;
  }
  .sdk-contact-page h3 {
    font-size: 14px;
    line-height: 21px;
  }
  .sdk-contact-page .bannerArea .banner_svg svg {
    height: 33%;
  }
  .support-page .hs_cos_wrapper_type_rich_text h3 {
    font-size: 14px;
    line-height: 21px;
  }
  .qmenta-platform-page .bannerTitle h1 {
    font-size: 22.4px;
    line-height: 33.6px;
  }

  .qmenta-platform-page .bannerArea h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .qmenta-platform-page .bannerArea .banner_svg svg {
    height: 33%;
  }
  .what-we-do h3 {
    font-size: 14px;
    line-height: 21px;
  }
  .data-collection .hs_cos_wrapper_type_header h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .bottom-section h3 {
    font-size: 14px;
    line-height: 21px;
  }

  .bottom-section .span5.dnd-column {
    margin-bottom: 25px;
    padding: 0;
  }
  .qmenta-trials .span3.dnd-column {
    width: 100%;
  }
  .qmenta-trials .span3.dnd-column:last-child {
    padding: 0;
    margin: 0;
    padding-top: 40px;
  }
  .meetinfSec .span12.dnd-column .hs_cos_wrapper_type_rich_text svg {
    height: 33.33%;
  }
  .meetinfSec h2 {
    font-size: 16.8px!important;
    line-height: 25.2px!important;
    text-align: center!important;
  }
  .meetinfSec .dnd-module {
    display: block !important;
    text-align: center;
  }
  .meetinfSec .span6.dnd-column + .dnd-column {
    margin-top: 25px;
    margin-left: 0;
  }
  .meetinfSec a.hs-button {
    margin-bottom: 30px;
  }
  .cta_section .span3.dnd-column {
    width: 100% !important;
  }
  .cta_section .span6.dnd-column {
    float: none;
  }
  .cta_section .span3.dnd-column + .dnd-column {
    padding-top: 0;
  }
  .subscribe_sec .hs_cos_wrapper_type_rich_text h3 {
    font-size: 14px!important;
    line-height: 21px!important;
  }
  .subscribe_sec .actions {
    margin-bottom: 25px;
  }
  .cta_section h3 {
    font-size: 14px!important;
    line-height: 21px!important;
  }
  .subscribe_sec .actions {
    margin-bottom: 0;
  }
  .subscribe_sec .hs_submit.hs-submit, .subscribe_sec .hs_email.hs-email {
    clear: both;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1em;
  }
  .team-page .bannerArea .banner_svg svg {
    height: 33.33%;
  }
  .team-page .bannerArea h3 {
    font-size: 14px!important;
    line-height: 21px!important;
  }
  .managementTeam .hs_cos_wrapper_type_header h2, .advisoryBoard .hs_cos_wrapper_type_header h2 {
    font-size: 14px!important;
    line-height: 21px!important;
  }
  .managementTeam hr, .advisoryBoard hr {
    margin-top: 23px !important;
  }
  .advisoryBoard .span12.dnd-module .hs_cos_wrapper_type_rich_text h3 {
    font-size: 14px!important;
    line-height: 21px!important;
  }
  .advisoryBoard .span3.dnd-module:not(:last-child) {
    margin-bottom: 25px;
  }
  .bottomSec h2 {
    font-size: 16.8px!important;
    line-height: 25.2px!important;
  }
  .newsletter-form .actions {
    margin-top: 15px;
  }
  .newsletter-form input.hs-button.primary.large {
    margin-left: 0;
  }
  .paris-page-sec .hs_cos_wrapper_type_rich_text h3 {
    font-size: 14px;
    line-height: 21px;
  }
  .advisory-banner .bannerArea h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .advisory-banner .bannerArea .bannerTitle h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .advisory-banner .bannerArea .banner_svg svg {
    height: 33%;
  }
  .events-page .bannerArea h1 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .events-page .bannerArea .banner_svg svg {
    height: 33%;
  }
  .events-section h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .partnership-banner .bannerTitle h1 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .partnership-banner .bannerArea h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .partnership-banner .bannerArea .banner_svg svg {
    height: 33%;
  }
  .partnership-sec h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .team-section .hs_cos_wrapper_type_header h1 {
    font-size: 14px;
    line-height: 21px;
  }
  .team-section .span3.dnd-module:not(:last-child) {
    margin-bottom: 25px;
    float: left;
  }
  .operating-systems .span4 .hs_cos_wrapper_type_rich_text h2 {
    font-size: 16.8px!important;
    line-height: 25.2px!important;
  }
  .mission-banner .bannerArea h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .mission-sec .hs_cos_wrapper_type_rich_text h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  } 
  .abcde-values .hs_cos_wrapper_type_rich_text h3 {
    font-size: 14px;
    line-height: 21px;
  }

  .bottom_section figure {
    width: 48%;
    margin: 0 auto;
    position: static !important;
  }
  .publications .bannerArea .banner_svg svg {
    height: 33%;
  }





}


















@keyframes gradientTextHoverHover {
  0% {
    transform: translateX(0px);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(0px)!important;
    opacity: 1;
  }

}

@keyframes gradientTextHoverOff {
  0% {
    transform: translateX(0px);
    opacity: 1;
  }

  70% {
    opacity: 0;
  }
  100% {
    transform: translateX(0px)!important;
    opacity: 0;
  }

}
















/**
* Simple fade transition,
*/
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out; 
  -moz-transition: all 0.15s ease-out; 
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out; 
  -moz-transition: all 0.15s ease-out; 
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}







/*================================================================ Insights page ========================================================*/

.expertise-banner .bannerArea .banner-container {
  padding-top: calc(100vw * 0.10);
  padding-bottom: calc(100vw * 0.07);
}

.expertise-banner .divider50,
.expertise-banner .divider30,
.expertise-banner .divider20 {
  display: none;
}
.expertise-banner .bannerArea .bannerTitle h2 {
  margin: 0;
  font-size: 32px;
  color: #ffffff;
  text-align: center;
  line-height: 36px;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 7px;
}

.expertise-banner .bannerArea .bannerColumn {
  margin: 0;
  width: 100%;
}

.expertise-banner .bannerContent {
  padding-left: 2%;
}

.banner-section.expertise-banner {
  line-height: 25px;
}

.expertise-banner .bannerContent .bannerColumn2 {
  display: none;
}
.hs-expertise-page .dnd-section {
  padding: 0;
}

body [class^="icon-"].icon-default-style {
  line-height: 34px!important;
  height: 34px;
  width: 34px;
  margin-right: 0px;
  font-size: 34px;
  color: #27CFC3;
  background-color: transparent!important;
}

[class^="icon-"], i[class*=" icon-"] {
  background-color: #27CFC3;
  border-radius: 999px 999px 999px 999px;
  -webkit-border-radius: 999px 999px 999px 999px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  height: 32px;
  line-height: 32px;
  max-width: 100%;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 32px;
  top: -2px;
  word-spacing: 1px;
}

.icon-salient-m-user:before {
  content: "\e074";
}

.icon-salient-m-user {
  font-family: 'icomoon'!important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.hs-expertise-page {
  padding-bottom: 40px;
}
.hs-expertise-page .dnd-section>.row-fluid > div {
  margin: 0;
}

@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .expertise-banner .bannerArea .bannerTitle h2 {
    line-height: 30.6px;
  }
}



@media only screen and (max-width: 1000px) and (min-width: 690px){
  .expertise-banner .bannerArea .bannerTitle h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
}

@media only screen and (max-width: 1000px){
  .expertise-banner .bannerArea .banner_svg svg {
    height: 75%;
  }
  .expertise-banner .bannerArea .bannerContent {
    padding-left: 0;
  }
}

@media only screen and (max-width: 690px){
  .expertise-banner .bannerArea .bannerTitle h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }

  .expertise-banner .bannerArea .banner_svg svg {
    height: 33%;
  }
  .hs-expertise-page .dnd-section > .row-fluid {
    padding: 0;
  }
}
body.hasBanner {
  overflow-x: hidden;
}

/*================================================================ Insights page ========================================================*/
.hs-press-release-page .page-center:before,
.hs-press-release-page .page-center:after {
  display: block;
  content: "";
  clear: both;
}

.press-release-content {
  margin-top: 30px;
  padding-right: 20px;
  position: relative;
  display: block;
  float: left;
}

.press-release-sidebar {
  margin-top: 30px;
  margin-right: 0;
}

.hs-press-release-page .dnd-section,
.hs-press-release-page .dnd-section>div {
  padding: 0;
}
.press-release-heading {
  padding-top: calc(100vw * 0.01);
  padding-bottom: 0px;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  box-sizing: content-box!important;
  -moz-box-sizing: content-box!important;
  -webkit-box-sizing: content-box;
  width: 100%;
}

.press-release-heading h2 {
  font-size: 32px;
  text-align: left;
  line-height: 36px;
  font-weight: 600;
  font-family: Muli;
  color: #333333;
  margin: 0;
  margin-bottom: 7px;
}

.press-release-sidebar {
  position: relative;
  display: block;
  float: left;
}

.press-release-heading .divider-wrap > div {
  margin: 25px 0;
  margin-top: 5px;
  width: 78px;
  height: 1px;
  margin-bottom: 5px;
  transform: scale(1, 1);
  visibility: visible;
  background: linear-gradient(to right,#2ca895,#3c73b8);
}

.hs-press-release-page .post-by-tag-wrapper {
  padding:0;
}
.hs-press-release-page .hs-post-by-tag{
  padding-top: calc(100vw * 0.02);
  padding-bottom: calc(100vw * 0.05);
}

.hs-press-release-page .post-by-tag-wrapper .post-inner-column {
  padding: 0;
  padding-bottom: 24px;
  background: transparent;
  transform: unset !important;
  box-shadow: unset !important;
}

.hs-press-release-page .blog-recent-container {
  display: block !important;
}

.hs-press-release-page .blog-recent-container .blog-recent-item {
  width: 100%!important;
  margin: 0;
  float: none;
  margin-bottom: 2%;
  padding: 20px;
}

.hs-press-release-page .post-by-tag-wrapper .inner-wrap {
  box-shadow: unset;
  padding: 0;
  overflow: visible;
}

.hs-press-release-page .post-by-tag-wrapper .post-featured-img {
  display: none;
}

.hs-press-release-page .post-by-tag-wrapper .article-content-wrap {
  padding: 0;
}

.hs-press-release-page .post-by-tag-wrapper .post-header {
  margin-bottom: 12px;
  font-size: 11px;
  color: #888;
}

.hs-press-release-page .post-by-tag-wrapper .meta-category {
  display: none;
}
.hs-press-release-page .post-header .meta {
  display: none;
}

.hs-press-release-page .post-by-tag-wrapper .post-inner-column:hover {
  background: transparent;
  transform: unset !important;
  box-shadow: unset !important;
}

.hs-press-release-page .post-by-tag-wrapper .author-wrap a {
  color: inherit!important;
}

.hs-press-release-page .post-by-tag-wrapper .author-wrap {
  margin-bottom: 13px;
  display: block !important;
  width: 100%;
}
.hs-press-release-page .post-by-tag-wrapper .article-excerpt {
  color: #333333;
}

.hs-press-release-page .post-by-tag-wrapper .post-meta {
  display: none;
}

.hs-press-release-page .post-by-tag-wrapper .tag-read-more {
  display: block;
  font-family: Muli;
  font-size: 14px;
  font-weight: 700;
  color: #2ca895;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hs-press-release-page .post-by-tag-wrapper .tag-read-more .icon-button-arrow {
  background-color: transparent!important;
  color: inherit;
  height: auto;
  font-size: 15px;
  width: 23px;
  top: 0px;
  transition: transform .33s cubic-bezier(.75,0,.18,1);
  -webkit-transition: transform .33s cubic-bezier(.75,0,.18,1);
  font-family: 'icomoon'!important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.icon-button-arrow:before {
  content: "\e909";
}

.hs-press-release-page .blog-recent-container .blog-recent-item:hover .icon-button-arrow {
  transform: translateX(7px);
  -webkit-transform: translateX(7px);
}
.hs-press-release-page {
  padding-bottom: 40px;
  position: relative;
}

.press-release-content .widget-type-rich_text h6 {
  text-align: right;
  font-family: Muli;
  text-transform: uppercase;
  margin: 0;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #191919;
}

.press-release-content .post-by-tag-area .widget-type-rich_text {
  padding-top: 20px;
}

.press-release-content .widget-type-rich_text h6 .link_text {
  padding-right: 36px;
  position: relative;
  display: inline-block;
  color: inherit;
}

.press-release-content .widget-type-rich_text h6 .link_wrap {
  position: relative;
  text-decoration: inherit;
  speak: none;
}

.press-release-content .widget-type-rich_text h6 .arrow:before {
  font-family: 'Fontawesome'!important;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  content: "\f105";
  color: #000;
  line-height: 30px;
  font-size: 14px;
  position: absolute;
  right: 0;
  width: 26px;
  text-align: center;
  height: 30px;
  top: 50%;
  margin-top: -16px;
  -ms-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  color: inherit;
  border-color: inherit;
}

.press-release-content .widget-type-rich_text h6 .arrow:after {
  color: inherit;
  border-color: inherit;
  position: absolute;
  content: '';
  border-bottom: 1px solid #000;
  height: 1px;
  width: 22px;
  right: 12px;
  top: 50%;
  margin-top: -1px;
  -ms-transform: scale(0,1) translateX(0px);
  -ms-transform-origin: left;
  transform: scale(0,1) translateX(0px);
  transform-origin: left;
  -webkit-transform: scale(0,1) translateX(0px);
  -webkit-transform-origin: left;
  pointer-events: none;
  transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
}

.press-release-content .widget-type-rich_text h6 .link_text:after {
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.3);
  height: 25px;
  width: 25px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -14px;
  content: ' ';
  display: block;
  pointer-events: none;
  -ms-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  border-color: inherit!important;
  box-sizing: content-box;
}

.hs-press-release-page .post-by-tag-wrapper .post-inner-column {
  margin-bottom: 24px;
}

.press-release-content .widget-type-rich_text h6 .link_wrap:hover:after {
  border: 0;
}

.press-release-content .widget-type-rich_text h6 .link_wrap:hover .link_text:after {
  -ms-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

.press-release-content .widget-type-rich_text h6 .link_wrap:hover .arrow:after {
  -ms-transform: scale(1,1) translateX(9px);
  -webkit-transform: scale(1,1) translateX(9px);
  transform: scale(1,1) translateX(9px);
}

.press-release-content .widget-type-rich_text h6 .link_wrap:hover .arrow:before {
  -ms-transform: scale(1,1) translateX(9px);
  -webkit-transform: scale(1,1) translateX(9px);
  transform: scale(1,1) translateX(9px);
}

@media (min-width: 690px){
  .press-release-content{
    width: 74.5%;
    margin-right: 2%;

  }
  .press-release-sidebar{

    width: 23.5%;
  }
}

@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .press-release-heading h2{
    line-height: 30.6px;
  }
}
@media only screen and (max-width: 1000px) and (min-width: 690px){
  .press-release-heading h2{
    font-size: 19.2px;
    line-height: 28.8px;
  }
}


@media only screen and (min-width: 1px) and (max-width: 1000px){
  .press-release-content {
    width: 100%;
    padding-right: 0px!important;
    margin-bottom: 0px;
  }
  .press-release-sidebar,.press-release-content {
    width: 100%;
    float: none;
  }
}

@media only screen and (max-width: 690px){
  .press-release-heading h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }

  .press-release-content .dnd-section .dnd-module {
    margin: 0;
  }

  .hs-press-release-page .post-by-tag-wrapper .post-header {
    font-size: 10px;
  }
  .hs-press-release-page .page-center {
    padding: 0;
  }

  .hs-press-release-page .press-release-heading,
  .press-release-content .widget-type-rich_text h6 {
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }


}

/*================================================================ Biomarkers page ========================================================*/

.biomarkers-banner .bannerArea h2 {
  font-size: 32px;
  text-align: center;
  line-height: 36px;
  font-weight: 600;
  font-family: Muli;
  margin-top: 0;
}

.biomarkers-banner .bannerArea .banner-container {
  padding-top: calc(100vw * 0.09);
  padding-bottom: calc(100vw * 0.07);
}

.biomarkers-banner .bannerArea .divider50, 
.biomarkers-banner .bannerArea .divider30,
.biomarkers-banner .bannerArea .divider20 {
  display: none;
}

.biomarkers-banner .bannerArea .divider-wrap > div {
  margin: 25px auto;
  height: 1px;
  margin-bottom: 30px;
  margin-top: 30px;
  background-color: rgba(255,255,255,0.6);
  width: 20%;
}

.biomarkers-banner .bannerArea .bannerContentInner p {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  font-family: Muli;
  font-weight: 400;
  font-style: normal;
  margin: 0 !important;
  padding-bottom: 0;
  margin-bottom: 7px !important;
}

.biomarkers-banner .bannerArea {
  line-height: 25px;
}

.biomarkers-banner .bannerArea .bannerTitle {
  margin: 0 !important;
}

/**.biomarkers-banner .bannerArea .banner-bg-overlay {
  background: linear-gradient( 135deg ,#2ca895 0%,#3c73b8 100%) !important;
  opacity: 0.95;
}**/
.hs-biomarkers-page .dnd-section,
.hs-biomarkers-page .dnd-section> div {
  padding: 0;
}
.icon-button-arrow:before {
  content: "\e909";
}
.bio-bottom-content-area .span1:last-child, 
.bio-bottom-content-area .span10 {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.bio-bottom-content-area .span10 {
  text-align: left;
  padding: 0 2%;
}

.bio-bottom-content-area p {
  font-size: 14px;
  color: #000000;
  line-height: 20px;
  text-align: justify;
  padding:0;
}
.bio-bottom-content-area {
  padding-top: calc(100vw * 0.02);
  padding-bottom: calc(100vw * 0.02);
}
.bio-bottom-content-area p {
  padding-top: 10px;
}
.hs-neuropsychiatric .biomarkers-wrapper .biomarkers-title,
.hs-oncology .biomarkers-wrapper .biomarkers-title,
.hs-stroke .biomarkers-wrapper .biomarkers-title,
.hs-parkinsons .biomarkers-wrapper .biomarkers-title {
  padding: 0;
}

.hs-neuropsychiatric .biomarkers-wrapper .biomarkers-item .column-bg-overlay,
.hs-oncology .biomarkers-wrapper .biomarkers-item .column-bg-overlay,
.hs-stroke .biomarkers-wrapper .biomarkers-item .column-bg-overlay{
  background-color: rgba(0,0,0,0.7);
}

.hs-neuropsychiatric .biomarkers-wrapper .biomarkers-heading,
.hs-oncology .biomarkers-wrapper .biomarkers-heading,
.hs-stroke .biomarkers-wrapper .biomarkers-heading,
.hs-parkinsons .biomarkers-wrapper .biomarkers-heading{
  padding: 0;
}
.hs-oncology .biomarkers-wrapper .biomarkers-parent:first-child .biomarkers-inner,
.hs-stroke .biomarkers-wrapper .biomarkers-parent:first-child .biomarkers-inner{
  min-height: 400px;
}
.hs-oncology .biomarkers-wrapper .biomarkers-parent:last-child,
.hs-stroke .biomarkers-wrapper .biomarkers-parent:last-child,
.hs-parkinsons .biomarkers-wrapper .biomarkers-parent:last-child{
  margin-bottom: 2% !important;
}
.hs-parkinsons .biomarkers-wrapper .biomarkers-parent:first-child .biomarkers-inner,
.hs-ms .biomarkers-wrapper .biomarkers-parent:first-child .biomarkers-inner{
  min-height: 500px;
}

.hs-stroke .biomarkers-wrapper {
  padding-top: calc(100vw * 0.07);
  padding-bottom: calc(100vw * 0.07);
}
.hs-ms .biomarkers-wrapper .biomarkers-inner {
  min-height: 250px;
}
.hs-ms .biomarkers-wrapper .biomarkers-parent:last-child .biomarkers-inner {
  min-height: 300px;
}

.bannerArea .bannerContentInner p {
  -webkit-font-smoothing: antialiased;
}



@media (min-width: 1000px){
  .bio-bottom-content-area .span1{
    float: left;
    width: 14.89361702%;
  }
  .bio-bottom-content-area .span10{
    width: 65.95744680199999%;
    float: left;
  }
}



@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .biomarkers-banner .bannerArea h2 {
    line-height: 30.6px;
  }

}
@media only screen and (max-width: 1000px) and (min-width: 690px){
  .biomarkers-banner .bannerArea h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }

  .biomarkers-banner .bannerArea .bannerColumn8 {
    margin-bottom: 25px;
    margin-left: 0;
  }

  .biomarkers-banner .bannerArea .bannerColumn2 {
    margin-bottom: 25px;
  }

  .biomarkers-banner .bannerArea .bannerColumn2:last-child {
    margin-bottom: 0;
  }

  .biomarkers-banner .bannerArea .bannerContentInner p {
    font-size: 19.2px;
    line-height: 28.8px;
  }

}
@media only screen and (max-width: 1000px){
  .bio-bottom-content-area .widget-span {
    width: 100%;
    min-height: 0;
    float: none;
  }

  .bio-bottom-content-area .dnd-section>div {
    display: block !important;
  }

  .bio-bottom-content-area .span1:first-child {
    margin-bottom: 25px;
  }
  .bio-bottom-content-area .span10 {
    margin-bottom: 25px;
    margin-left: 0;
  }

}

@media only screen and (max-width: 690px){
  .biomarkers-banner .bannerArea h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }

  .biomarkers-banner .bannerArea .bannerColumn:first-child {
    margin-bottom: 25px;
  }

  .biomarkers-banner .bannerArea .bannerColumn {
    margin-left: 0;
  } 

  .biomarkers-banner .bannerArea .bannerContentInner p {
    font-size: 16.8px;
    line-height: 25.2px;
  }

  .biomarkers-banner .bannerArea .bannerColumn8 {
    margin-bottom: 25px;
  }
  .bio-bottom-content-area p {
    word-break: break-all;
  }
  .particles-banner .particles-heading h1 {
    position: relative;
    top: 2px;
  }


}

/*================================================================ imaging-biomarkers page ========================================================*/

.imaging-biomarkers-banner .bannerArea .bannerColumn8 {
  padding: 1%;
}

.imaging-biomarkers-banner .bannerArea h2 {
  font-size: 38px;
  text-align: center;
}

.imaging-biomarkers-banner .bannerArea .banner-image .using-image {
  background-position: left top;
}

.product_items-area .dnd-section {
  padding-top: calc(1vw);
  padding-bottom: 0;
}

.hs-imaging-biomarkers-page .dnd-section > .row-fluid,
.hs-imaging-biomarkers-page .bottom-pane-area .dnd-section{
  padding: 0;
}

@media only screen and (max-width: 1000px) and (min-width: 690px){
  .imaging-biomarkers-banner .bannerArea h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
}

@media only screen and (max-width: 1000px){
  .imaging-biomarkers-banner .bannerArea .banner_svg svg {
    height: 75%;
  }
}


@media only screen and (max-width: 690px){
  .imaging-biomarkers-banner .bannerArea h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .imaging-biomarkers-banner .bannerArea .banner_svg svg {
    height: 33%;
  }
}

/*================================================================ Contact page ========================================================*/

.contact-banner .bannerArea .bannerTitle p {
  margin: 0 !important;
  font: inherit;
  line-height: 25px;
}

.contact-banner .bannerArea {
  line-height: 25px;
}

.bannerArea .divider30 {
  height: 30px;
}
.contact-left-col .dnd-section>.row-fluid {
  padding: 0;
}

.contact-left-col .dnd-section {
  padding: 0;
}

.hs-contact-page .hs-body-content:before,
.hs-contact-page .hs-body-content:after {
  content: "";
  display: block;
  clear: both;
}

.contact-left-col {
  text-align: center;
  padding: 3%;
}
.hs-body-content {
  padding-top: calc(100vw * 0.06);
  padding-bottom: calc(100vw * 0.04);
}

.contact-right-col {
  float: left;
  background-color: rgba(249,249,249,1.0);
  padding: 5%;
  border-radius: 3px;
  box-shadow: 0 10px 50px rgb(0 0 0 / 8%), 0 13px 45px rgb(0 0 0 / 8%);
  margin-left: 2.1%;
}

.contact-form-area .hs_cos_wrapper_type_form {
  max-width: 100%;
  width: 100%;
  padding: 0;
  border-radius: 0;
  box-shadow: unset;
}

.contact-form-area .dnd-section>.row-fluid {
  padding: 0;
}

.contact-form-area .dnd-section {
  padding: 0;
}
.contact-body-area h4 {
  font-family: Muli;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  margin: 0;
  color: #333333;
}

.hs-contact-page {
  line-height: 25px;
}

.divider-wrap .divider-small-border {
  margin: 25px auto;
  margin-top: 15px;
  width: 80px;
  height: 1px;
  margin-bottom: 15px;
  background: linear-gradient(to right,#2ca895,#3c73b8);
}

.contact-body-area .widget-type-rich_text {
  padding-bottom: 65px;
}

.contact-form-area .hs-richtext {
  margin: 0 !important;
}

.contact-form-area .form-top-header:before,
.contact-form-area .form-top-header:after {
  display: block;
  content: "";
  clear: both;
}

.contact-form-area .nectar_icon {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  height: 62.8px;
  border-width: 2px;
  padding: 10px;
}

.contact-form-area .vc_custom_heading {
  padding-top: 5%;
  min-height: 1px;
  margin-left: 2.1%;
}

.contact-form-area form h2 {
  font-size: 20px;
  text-align: left;
  font-family: Muli;
  font-weight: 400;
  font-style: normal;
  line-height: 36px;
  margin: 0;
  margin-bottom: 7px;
  color: #333333;
}
.contact-form-area .nectar_icon i:before {
  vertical-align: top;
  line-height: inherit;
}

.fa-wechat:before, .fa-weixin:before {
  content: "\f1d7";
}

.contact-form-area .nectar_icon i {
  font-size: 34px;
  line-height: 40.8px;
  height: 40.8px;
  text-align: center;
  display: inline-block;
  color: #2ca895;
  background: linear-gradient(to bottom right,#2ca895,#3c73b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 43px;
}
.contact-form-area form p {
  color: #303030;
  text-align: left;
  line-height: 25px;
  margin-bottom: -15px;
}

.contact-form-area form .form-top-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
}

.contact-form-area form .hs-form-required {
  display: none;
}

.contact-form-area .hs_cos_wrapper_type_form:hover {
  background: transparent !important;
}

.contact-right-col:hover {
  background-color: #ffffff;
}

.contact-form-area .hs_cos_wrapper_type_form {
  background: transparent !important;
}

.contact-right-col {
  transition: background-color 0.45s cubic-bezier(0.25, 1, 0.33, 1),opacity 0.45s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: background-color 0.45s cubic-bezier(0.25, 1, 0.33, 1),opacity 0.45s cubic-bezier(0.25, 1, 0.33, 1);
}
.contact-form-area form .field {
  margin-bottom: 32px;                                                                                                                  
  line-height: 25px;
}

.contact-form-area form .hs-button {
  border: 0;
  margin-top: 6px;
}
.contact-body-area .hs-button {
  border-color: rgba(18, 153, 170, 0.75);
  color: rgb(18, 153, 170);
  visibility: visible;
  border: 2px solid rgba(0,0,0,0.15);
  padding-left: 33px;
  padding-right: 33px;
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: transparent;
  font-size: 12px;
  font-family: Muli;
  font-weight: 700;
  letter-spacing: 2px;
  border-color: rgba(18, 153, 170, 0.75);
}
.contact-body-area .hs-button span,
.contact-pane-area .hs-button span{
  left: 0px;
  display: inline-block;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: opacity .45s cubic-bezier(0.25,1,0.33,1),transform .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: opacity .45s cubic-bezier(0.25,1,0.33,1),-webkit-transform .45s cubic-bezier(0.25,1,0.33,1);
  position: relative;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-body-area .hs-button i,
.contact-pane-area .hs-button i{
  font-family: 'icomoon'!important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  color: rgb(18, 153, 170);
  background-color: transparent!important;
  line-height: 16px;
  right: 26px;
  width: 18px;
  position: absolute;
  margin-top: -9px;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  transition: all .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1);
  top: 50%;
  font-size: 16px;
}

.contact-body-area .hs-button {
  position: relative;
  line-height: 20px;
  margin-bottom: 10px;
}

/**.contact-body-area .hs-button:hover span,
.contact-pane-area .hs-button:hover span{
  -ms-transform: translateX(-14px);
  -webkit-transform: translateX(-14px);
  transform: translateX(-14px);
}

.contact-body-area .hs-button:hover {
  background: transparent;
  color: #1299aa;
}

.contact-body-area .hs-button:hover i,
.contact-pane-area .hs-button:hover i{
  -ms-transform: translateX(10px);
  -webkit-transform: translateX(10px);
  transform: translateX(10px)!important;
  opacity: 1;
}**/

.icon-button-arrow:before {
  content: "\e909";
}
.hs-body-content {
  margin-bottom: 35px;
}

.contact-pane-area .dnd-section:before {
  opacity: 0.95;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-pane-area .dnd-section {
  position: relative;
  background-position: center center !important;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
  padding: 0;
}
.contact-pane-area .span12.dnd-column {
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.05);
}

.contact-pane-area .span12.dnd-column > div > .row-fluid {
  display: block !important;
  position: relative;
}

.contact-pane-area .span12.dnd-column > div > .row-fluid:before,
.contact-pane-area .span12.dnd-column > div > .row-fluid:after {
  display: block;
  content: "";
  clear: both;
}

.contact-pane-area .span9,.contact-pane-area .span3 {
  display: block !important;
}

.contact-pane-area .span3 {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.contact-pane-area h2 {
  font-size: 20px;
  text-align: left;
  color: #ffff;
  line-height: 36px;
  font-weight: 600;
  font-family: Muli;
  margin: 0;
  margin-bottom: 7px;
  padding-bottom: 20px;
}

.contact-pane-area h2 + p {
  padding: 0;
}

.contact-pane-area .hs-button {
  border: 2px solid rgba(255,255,255,0.75);
  margin-top: 60px;
  visibility: visible;
  color: rgb(255, 255, 255);
  border-color: rgba(255, 255, 255, 0.75);
  padding-left: 33px;
  padding-right: 33px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: Muli;
  letter-spacing: 2px;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  line-height: 20px;
  display: inline-block;
  background: transparent;
}
/**.contact-pane-area .hs-button:hover {
  background: transparent !important;
  color: rgb(255, 255, 255);
  border-color: rgba(255, 255, 255, 0.75);
}**/

.contact-pane-area .hs-button i {
  color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 16px;
  right: 26px;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  transition: all .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1);
}

.icon-button-arrow:before {
  content: "\e909";
}



@media (min-width: 1000px){
  .contact-left-col{
    width: 48.93617020799999%;  
    float: left;
  }
  .contact-right-col{
    width: 48.93617020799999%;
  }
  .contact-form-area .nectar_icon{
    float: left;
    width: 23.404255317%;
  }
  .contact-form-area .vc_custom_heading{  
    float: left;
    width: 74.468085099%;
  }
  .contact-pane-area .span9{
    float: left;
    width: 65.95744680199999%;
  }
  .contact-pane-area .span3{
    float: left;
    width: 31.914893614%;
  }
}

@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .contact-form-area form h2,
  .contact-pane-area h2{
    line-height: 30.6px;
  }
  .contact-body-area h4{
    font-size: 18px;
    line-height: 27px;
  }

}


@media only screen and (min-width: 1px) and (max-width: 1000px){
  .contact-banner .bannerArea .bannerColumn8 {
    margin: 0;
    width: 100%;
    margin: 25px 0;
  }

  .contact-banner .bannerArea .banner_svg svg {
    height: 75%;
  }

  .contact-left-col {
    padding: 6%;
    margin-bottom: 28px;
  }

  .contact-body-area h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }

  .contact-right-col {
    padding: 6%;
    margin-left: 0;
  }

  .contact-form-area .nectar_icon {
    width: 79px;
    margin-bottom: 25px;
  }

  .contact-form-area .vc_custom_heading {
    margin-left: 0;
  }

  .contact-form-area form h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .contact-body-area .widget-type-rich_text {
    padding-bottom: 64px;
  }
  .contact-pane-area .span9, .contact-pane-area .span3 {
    width: 100%;
    margin-left: 0;
  }

  .contact-pane-area .span9 {
    margin-bottom: 25px;
  }

  .contact-pane-area h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }

  .contact-pane-area .hs-button {
    margin-top: 44px;
  }


}


@media only screen and (max-width: 690px){
  .contact-banner .bannerArea .banner_svg svg {
    height: 33%;
  }

  .contact-body-area h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }

  .contact-form-area form h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }

  .contact-pane-area h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }

}
/*=================================================================================== Covid19 page ===============================================================*/
.hs-covid19-pandemic .covid19-topContent-area .dnd-section>.row-fluid {
  position: relative;
}

.hs-covid19-pandemic .covid19-topContent-area .span10 {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.hs-covid19-pandemic .covid19-topContent-area .span1:last-child {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}
.hs-covid19-pandemic .covid19-topContent-area .dnd-section {
  padding-bottom: 0;
  padding-top: 25px;
}

.covid19-topContent-area h2 {
  font-family: Muli;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 7px;
  margin-top: 0;
}
.covid19-topContent-area h2:last-child{
  margin:0;
}
.covid19-utility-of-imaging-banner .COVID-19_PupupBanner h1 {
  padding-bottom: 0;
  line-height: 2;
}

.covid19-utility-of-imaging-banner .COVID-19_PupupBanner .pupupBanner-inner {
  padding-top: calc(100vw * 0.02);
  padding-bottom: calc(100vw * 0.10);
}

.hs-covid19-layout .widget-type-cell {
  min-height: 0;
}

.covid19-bottomContent .dnd-section {
  padding-top: calc(100vw * 0.04);
  padding-bottom: calc(100vw * 0.04);
}

.covid19-bottomContent .dnd-section .dnd-row > div {
  display: block !important;
}

.covid19-bottomContent .span9,
.covid19-bottomContent .span1,
.covid19-bottomContent .span8{
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.covid19-bottomContent h3 {
  margin-top: 0;
  color: #3c73b8;
  text-align: left;
  font-family: Muli;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 8px;
}
.covid19-bottomContent p:last-of-type {
  padding: 0;
}
.covid19-bottomContent h4 {
  color: #3c73b8;
  text-align: left;
  font-family: Muli;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 0;
}
.covid19-bottomContent p + h5 {
  color: #2ca895;
  font-family: Muli;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 7px;
  text-align: right;
  margin-top: 10px;
  margin-bottom: 24px;
}

.covid19-bottomContent h5 span.link_wrap {
  position: relative;
  text-decoration: inherit;
  speak: none;
}

.covid19-bottomContent h5 span.link_wrap .link_text {
  border-color: #2ca895;
  color: inherit;
  position: relative;
  display: inline-block;
  transition: color 0.2s;
  -webkit-transition: color 0.2s;
}

.covid19-bottomContent h5 span.link_wrap .link_text:after {
  right: 0;
  border: 1px solid rgba(0,0,0,0.3);
  margin-top: 0;
  top: auto;
  border-top: none;
  border-right: none;
  bottom: -1px;
  border-left: none;
  border-bottom: 2px solid #000;
  border-radius: 0!important;
  background-color: transparent!important;
  transition: transform 0.45s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.12,0.75,0.4,1);
  animation: none;
  transform-origin: left;
  z-index: 1;
  border-color: inherit;
  display: block;
  content: '';
  position: absolute;
  opacity: 0.8;
  left: 0;
  backface-visibility: hidden;
  pointer-events: none;
  width: 100%;
  height: 2px;
}

.covid19-bottomContent h5 span.link_wrap .link_text:hover:after {
  animation: none;
  transform: scaleX(0);
  transform-origin: right;
}
.covid19-bottomContent p img {
  margin: 15px auto;
  display: block;
  margin-bottom: 0px;
  max-width: 100%;
  height: auto;
}
.covid19-bottomContent .widget-type-linked_image {
  width: 100%;
  text-align: center;
}

.covid19-bottomContent .widget-type-linked_image img {
  display: inline-block;
  vertical-align: middle;
}

.covid19-bottomContent .hs_cos_wrapper_type_linked_image {
  display: block;
}
.hs-covid19-layout {
  line-height: 25px;
}
.mfp-close-btn-in .mfp-close {
  font-family: 'icomoon'!important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-size: 0;
}
.hs-covid19-layout .widget-type-rich_text p:last-of-type {
  padding: 0;
}
.covid19-bottomContent h2 {
  margin: 0;
  font-family: Muli;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
}
.covid19-bottomContent iframe {
  max-width: 100%;
  width: 100% !important;
}
.COVID-19_PupupBanner {
  overflow: hidden;
}
.hs-covid19-develop .dnd-section {
  padding: 0;
}

.hs-covid19-develop .span12.dnd-column {
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.05);
}

.hs-covid19-develop .covid19-topContent-area .span1:first-child {
  padding: 5%;
  position: relative;
  min-height: 1px;
  box-sizing: border-box;
  margin-left: 0;
}

.hs-covid19-develop .covid19-topContent-area .span1 {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}
.hs-covid19-develop .covid19-topContent-area .span4,
.hs-covid19-develop .covid19-topContent-area .span6 {
  padding: 3%;
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
  display: block !important;
}

.hs-covid19-develop .covid19-topContent-area .span4 {
  box-shadow: 0 10px 50px rgb(0 0 0 / 8%), 0 13px 45px rgb(0 0 0 / 8%);
  border-radius: 3px;
  overflow: hidden;
  background-color: #f2f2f2;
}

.covid19-topContent-area .hs_cos_wrapper_type_form {
  background: transparent;
  padding: 0;
  max-width: 100%;
  box-shadow: unset;
  display: block;
}

.covid19-topContent-area h3.form-title,
.covid19-middleContent h3.form-title{
  font-family: Muli;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.covid19-topContent-area form .hs-form-required {
  display: none;
}
.covid19-topContent-area form .field,
.covid19-middleContent form .field{
  margin-bottom: 32px;
}
.covid19-topContent-area .span6 > div,
.covid19-topContent-area .span6 > div > div, 
.covid19-topContent-area .dnd-module, 
.covid19-topContent-area .hs_cos_wrapper,
.hs-covid19-patients_ms-table .covid19-middleContent .span5 > div,
.hs-covid19-patients_ms-table .covid19-middleContent .span5 > div > div,
.hs-covid19-patients_ms-table .covid19-middleContent .span5 .dnd-module{
  height: 100%;
}
.hs-covid19-patients_ms-table .covid19-middleContent .span5 {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}
.covid19-topContent-area .hs_cos_wrapper_type_form:hover {
  background: transparent;
}

.hs-covid19-develop .covid19-bottomContent .dnd-section>.row-fluid {
  padding-top: calc(100vw * 0.08);
  padding-bottom: calc(100vw * 0.08);
}

.covid19-bottomContent h5 {
  font-family: Muli;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #3c73b8;
  margin-top: 0;
}
.covid19-topContent-area .hs-button,
.covid19-middleContent .hs-button{
  border: 0;
  margin-top: 6px;
}

.banner-section .widget-type-cell {
  min-height: 0;
}

.hs-covid19-qmenta .covid19-bottomContent h3 {
  color: #333333;
}

.covid19-bottomContent .widget-type-rich_text table {
  margin: 0 0 20px;
  padding: 0;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fcfcfc;
  border-top: 1px solid #ececec;
  font-family: Muli;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
}

.covid19-bottomContent .widget-type-rich_text table td {
  background-color: initial;
}
.covid19-patients_ms-table-banner .covid19Banner-wrapper {
  padding: 0;
  background: rgba(242, 242, 242, 1);
}

.covid19-patients_ms-table-banner .covid19Banner-wrapper .covid19Banner-container {
  padding-top: calc(100vw * 0.03);
  padding-bottom: calc(100vw * 0.02);
}

.covid19-patients_ms-table-banner .covid19Banner-wrapper .covid19Banner-content {
  padding-bottom: 4%;
}

.hs-covid19-patients_ms-table .covid19-topContent-area .dnd-section {
  padding-top: calc(100vw * 0.02);
  padding-bottom: 0px;
}

.covid19-patients_ms-table-banner .covid19Banner-wrapper svg path:nth-child(3) {
  fill: rgba(242, 242, 242, 1);
}
.hs-table {
  padding: 3%;
  color: #333333;
  box-shadow: 0 10px 50px rgb(0 0 0 / 8%), 0 13px 45px rgb(0 0 0 / 8%);
  overflow: hidden;
  border-radius: 15px;
  text-align: center;
  position: relative;
  min-height: 1px;
  background-color: #ffffff;
}

.hs-covid19-patients_ms-table .covid19-topContent-area .widget-type-rich_text {
  padding-top: 3%;
  padding-bottom: 6%;
  position: relative;
}
.hs-table h3 {
  font-size: 28px;
  color: #333333;
  line-height: 2;
  text-align: center;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 0;
}

.hs-table h3 + p {
  padding-bottom: 20px !important;
}

.hs-table table {
  font-family: Muli;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
}

.hs-table {
  line-height: 25px;
}

.hs-table table tr th {
  border-style: none solid solid none;
  border-top: medium none;
  border-width: medium 1px 1px medium;
  font-weight: bold;
  padding: 10px;
  text-align: left;
}

.hs-table table tr td {
  border-style: none solid solid none;
  border-top: medium none;
  border-width: medium 1px 1px medium;
  font-size: 13px;
  padding: 10px;
}

table tr:nth-child(2n+1) td {
  background: initial;
}
.covid19-middleContent h2 {
  font-size: 28px;
  color: #333333;
  text-align: center;
  line-height: 36px;
  font-weight: 600;
  font-family: Muli;
  margin-top: 0;
}

.covid19-middleContent .dnd-section {
  padding-top: calc(100vw * 0.04);
  padding-bottom: 0px;
}

.hs-covid19-patients_ms-table .covid19-middleContent .span1:not(:first-child) {
  margin-left: 2.1%;
}

.hs-covid19-patients_ms-table .covid19-middleContent .span1 {
  position: relative;
  min-height: 1px;
  box-sizing: border-box;
}

.hs-covid19-patients_ms-table .covid19-middleContent .span5:nth-child(2) {
  background-color: #f2f2f2;
  box-shadow: 0 10px 50px rgb(0 0 0 / 8%), 0 13px 45px rgb(0 0 0 / 8%);
}

.covid19-middleContent .hs_cos_wrapper_type_form {
  background-color: transparent !important;
  padding: 0;
  margin: 0;
  box-shadow: unset !important;
  max-width: 100%;
}

.hs-covid19-patients_ms-table .covid19-middleContent .span5 {
  padding: 3%;
  color: #333333;
  margin-top: 20px;
}

.covid19-middleContent .hs-form-required {
  display: none;
}
.covid19-patients_ms-table-banner .covid19Banner-wrapper .covid19Banner-content h1 {
  text-align: center;
  font-family: Muli;
  font-weight: 400;
  font-style: normal;
}

















@media (min-width: 1000px){
  .hs-covid19-pandemic .covid19-topContent-area .span10{
    float: left;
    width: 82.97872339599999%;
  }
  .hs-covid19-pandemic .covid19-topContent-area .span1,
  .hs-covid19-develop .covid19-topContent-area .span1{
    float: left;
    width: 6.382978723%;
  }
  .covid19-bottomContent .span3,
  .covid19-bottomContent .span1,
  .hs-covid19-patients_ms-table .covid19-middleContent .span1{
    width: 14.89361702%;
    float: left;
  }
  .covid19-bottomContent .span9{
    width: 82.97872339599999%;
    float: left;
  }
  .covid19-bottomContent .span8{
    float: left;
    width: 65.95744680199999%;
  }
  .hs-covid19-develop .covid19-topContent-area .span4,
  .hs-covid19-patients_ms-table .covid19-middleContent .span5{
    float: left;
    width: 31.914893614%;
  }
  .hs-covid19-develop .covid19-topContent-area .span6{
    float: left;
    width: 40.425531911%;
  }
  .covid19-patients_ms-table-banner .covid19Banner-wrapper .covid19Banner-content h1 {
    font-size: 32px;
    line-height: 3;
    text-align: center;
    font-family: Muli;
    font-weight: 400;
    font-style: normal;
  }.covid19-patients_ms-table-banner .covid19Banner-wrapper .covid19Banner-content h1 {
    font-size: 32px;
    line-height: 3;
    text-align: center;
    font-family: Muli;
    font-weight: 400;
    font-style: normal;
  }
}

@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .covid19-topContent-area h2,
  .covid19-bottomContent h2,
  .cs-bottom-pane h2{
    font-size: 20.4px;
    line-height: 30.6px;
  }
  .covid19-bottomContent h3 {
    font-size: 17px;
    line-height: 25.5px;
  }
  .covid19-topContent-area h3.form-title,
  .covid19-middleContent h3.form-title{
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .covid19-middleContent h2{
    line-height: 30.6px;
  }
}

@media(max-width: 1000px){
  .covid19-topContent-area h2,
  .covid19-bottomContent h2{
    font-size: 20.4px;
    line-height: 30.6px;
  }

  .hs-covid19-pandemic .covid19-topContent-area .span10 {
    margin: 0;
    width: 100%;
    float: none;
  }

  .hs-covid19-pandemic .covid19-topContent-area .span1 {
    width: 100%;
    float: none;
  }

  .hs-covid19-pandemic .covid19-topContent-area .dnd-section>.row-fluid {
    display: block !important;
  }

  .covid19-topContent-area h2,
  .covid19-topContent-area h3.form-title,
  .covid19-middleContent h3.form-title{
    font-size: 19.2px;
    line-height: 28.8px;
  }

  .hs-covid19-pandemic .covid19-topContent-area .dnd-section {
    padding-top: 22px;
  }
  .covid19-bottomContent .span3{
    width: 31.2%;
  }
  .covid19-utility-of-imaging-banner .COVID-19_PupupBanner h1 {
    font-size: 22.4px;
    line-height: 33.6px;
  }

  .covid19-bottomContent .span9 {
    margin-left: 0;
    width: 100%;
    float: none;
  }

  .covid19-bottomContent h3,
  .hs-table h3{
    font-size: 16px;
    line-height: 24px;
  }
  .covid19-bottomContent .span3 {
    margin-bottom: 25px;
  }

  .covid19-bottomContent h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }
  .hs-covid19-develop .covid19-topContent-area .span1:first-child {
    width: 100%;
    margin-bottom: 25px;
  }

  .hs-covid19-develop .span12.dnd-column > div > div {
    display: block !important;
  }

  .hs-covid19-develop .covid19-topContent-area .widget-span {
    min-height: 1px;
  }

  .hs-covid19-develop .covid19-topContent-area .span1:first-child,
  .hs-covid19-develop .covid19-topContent-area .span4,
  .hs-covid19-develop .covid19-topContent-area .span6 {
    padding: 6% !important;
  }

  .hs-covid19-develop .covid19-topContent-area .span4,
  .hs-covid19-develop .covid19-topContent-area .span6 {
    width: 100%;
    margin-left: 0;
    margin-bottom: 25px;
  }

  .hs-covid19-develop .covid19-topContent-area .span1 {
    width: 100%;
    margin: 0;
  }
  .covid19-topContent-area .hs-button {
    border: 0;
    margin-top: 6px;
  }

  .hs-covid19-develop .covid19-bottomContent .dnd-section>.row-fluid {
    display: block !important;
  }

  .hs-covid19-layout .widget-span {
    min-height: 1px;
  }
  .hs-covid19-layout .covid19-bottomContent .span1:last-child {
    margin-bottom: 25px;
  }
  .hs-table {
    padding: 6%;
  }
  .covid19-middleContent .span12.dnd-column > div > div {
    display: block !important;
  }

  .hs-covid19-patients_ms-table .covid19-middleContent .span1 {
    width: 100%;
    margin-bottom: 25px;
  }

  .hs-covid19-patients_ms-table .covid19-middleContent .span5 {
    padding: 6%;
    width: 100%;
    margin-bottom: 25px;
    margin-left: 0;
  }


}


@media only screen and (max-width: 1000px) and (min-width: 690px){
  .covid19-bottomContent h2,
  .covid19-middleContent h2{
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .covid19-bottomContent .span3 {
    width: 100%;
  }

  .covid19-bottomContent .span9,
  .covid19-bottomContent .span1,
  .covid19-bottomContent .span8 {
    margin-left: 0;
    width: 100%;
  }
  .hs-table {
    overflow: auto;
  }
  .hs-covid19-patients_ms-table .covid19-middleContent .span5:nth-child(2) {
    margin-top: 44px;
  }
  .hs-covid19-patients_ms-table .covid19-middleContent .span12.dnd-column > .dnd-row:first-child {
    padding-bottom: 42px;
  }
}

@media(max-width:690px){
  .hs-covid19-patients_ms-table .covid19-middleContent .span12.dnd-column > .dnd-row:first-child {
    padding-bottom: 42px;
  }
  .hs-table {
    overflow: auto;
  }
  .covid19-topContent-area h2,
  .covid19-topContent-area h3.form-title,
  .covid19-middleContent h2,
  .letestCovid-news-wrap h2,
  .covid19-middleContent h3.form-title{
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .covid19-bottomContent .span3 {
    width: 48%;
  }

  .covid19-bottomContent h3,
  .hs-table h3{
    font-size: 14px;
    line-height: 21px;
  }

  .covid19-bottomContent h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }
  .covid19-bottomContent .span9, 
  .covid19-bottomContent .span1,
  .covid19-bottomContent .span8 {
    margin-left: 0;
  }
}

/*=================================================================================== Jobs page ===============================================================*/

.job_post_wrapper {
  padding-top: calc(100vw * 0.10);
  padding-bottom: calc(100vw * 0.08);
}
.job-banner-area .dnd-section {
  padding: 0;
}
.job_post_inner:before,.job_post_inner:after {
  display: block;
  content: "";
  width: 100%;
  float: left;
}
.job_post_inner:before{
  position: relative;
  min-height: 1px;
  box-sizing: border-box;
}
.job_post_inner-wrap{
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}
.job_post_wrapper:after,
.job_post_wrapper:before,
.job_post_top_wrap:before,
.job_post_top_wrap:after,
.job-description-inner:after,
.job-description-inner:before{
  display: block;
  content: "";
  clear: both;
}

.job_column_left h3 {
  font-family: Muli;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-top: 0;
}

.job_column_right {
  padding: 1%;
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
  border-radius: 3px;
  text-align: center;
  background-color: #f2f2f2;
}

.job_column_left p {
  padding-bottom: 0px;
}

.job_column_right h6 {
  text-align: center;
  font-family: Muli;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  color: #333333;
  margin: 0;
  word-break: normal;
}

.job_column_right h6 em {
  font-family: Muli;
  font-weight: 400;
  font-style: italic;
}
.job_post_top_wrap {
  margin-bottom: 24px;
}

.job_column_left {
  margin-bottom: 50px;
}

.job-description-inner {
  padding-bottom: 45px;
  margin-bottom: 24px;
}

.custom-description {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.custom-heading h5 {
  color: #232323;
  text-align: left;
  font-family: Muli;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 7px;
  margin-top: 0;
  word-break: normal;
}

.custom-description p {
  font-weight: 400;
}

.custom-description p:last-child {
  padding-bottom: 0;
}
.job-description-inner.hs-responsibilities {
  padding: 0;
}

.custom-description ul:last-child {
  margin-bottom: 0px;
}
.job-description-inner.hs_desired_skills_experience {
  padding-bottom: 40px;
}
.job-description-wrapper:last-child .job-description-inner {
  padding-bottom: 40px;
  margin-bottom: 0px;
}
.custom-description h4 {
  font-family: Muli;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333333;
  margin-top: 0; 
  word-break: normal;
}

.custom-description span {
  font-weight: 400;
}
.job-bottom-pane {
  padding-top: 0px;
  padding-bottom: calc(100vw * 0.05);
}

.job_post_container {
  padding-bottom: 40px;
}

.job-bottom-pane:before,.job-bottom-pane:after {
  display: block;
  content: "";
  clear: both;
}

.job-bottom-pane .job-bottom-right {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.job-bottom-left h4 {
  text-align: center;
  font-family: Muli;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.job-bottom-left .job-bottom-left-inner {
  margin-bottom: 20px;
}

.job-bottom-pane-btn a {
  padding: 10px 15px;
  background-color: rgb(22, 170, 173);
  visibility: visible;
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
  box-shadow: none;
  -ms-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  font-size: 12px;
  font-family: Muli;
  font-weight: 700;
  padding-left: 42px;
  padding-right: 42px;
  letter-spacing: 2px;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  opacity: 1;
  line-height: 20px;
  color: #FFF;
  display: inline-block;
}

.job-bottom-pane-btn a span {
  left: 0px;
  display: inline-block;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: opacity .45s cubic-bezier(0.25,1,0.33,1),transform .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: opacity .45s cubic-bezier(0.25,1,0.33,1),-webkit-transform .45s cubic-bezier(0.25,1,0.33,1);
  position: relative;
}

.job-bottom-pane-btn a i {
  font-size: 16px;
  background-color: transparent;
  line-height: 18px;
  width: 18px;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -9px;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  transition: all .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1);
  font-family: 'icomoon'!important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.job-bottom-pane-btn a:hover span {
  -ms-transform: translateX(-18px);
  -webkit-transform: translateX(-18px);
  transform: translateX(-18px);
}

.job-bottom-pane-btn a:hover i {
  opacity: 1;
  -ms-filter: "alpha(opacity=100)";
  -ms-transform: translateX(6px);
  -webkit-transform: translateX(6px);
  transform: translateX(6px);
}

.icon-button-arrow:before {
  content: "\e909";
}

.job-bottom-pane-btn a:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  color:#fff;
}
.job-description-wrapper:last-child .job-description-inner{
  padding-bottom:0;
}
.hs-jobssales-executive-us .job-description-wrapper:last-child .job-description-inner {
  padding-bottom: 40px;
}
.hs-jobsfull-stack-developer .job-description-inner.hs-responsibilities {
  padding-bottom: 40px;
}
.hs-jobsmarketing-manager .job-description-inner.hs-responsibilities {
  padding-bottom: 40px;
  margin-bottom: 24px;
}

.hs-jobsmarketing-manager .job-description-inner.hs_desired_skills_experience {
  padding-bottom: 0px;
}
.hs-jobsmarketing-manager .custom-description p a {
  text-decoration: underline;
}

.hs-jobsmarketing-manager .job-bottom-pane {
  padding-bottom: 0px;
}

.hs-jobsmarketing-manager .job-bottom-left h4 {
  font-size: 16px;
  line-height: 25px;
}

.hs-jobsmarketing-manager .job-bottom-pane-btn a i {
  display: none;
}

.hs-jobsmarketing-manager .job-bottom-pane-btn a {
  padding: 10px 15px;
  background-color: #2ca895;
}

.hs-jobsmarketing-manager .job-bottom-pane-btn a:hover {
  opacity: 0.87;
  color: #fff;
}

.hs-jobsmarketing-manager .job-bottom-pane-btn a:hover span {
  transform: unset;
}
.job-heading .dnd-section {
  padding: 0;
}

.job-heading .dnd-section > div > div {
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.01);
}

.job-heading h3 {
  font-family: Muli;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin: 0;
  padding: 1%;
}
.job-tow-column .dnd-section {
  padding: 0;
}

.job-tow-column .dnd-section > div > div {
  padding-top: 0px;
  padding-bottom: calc(100vw * 0.04);
}

.job-tow-column .span6 {
  padding: 1%;
}

.job-tow-column .span6:last-child {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.job-tow-column .span12.dnd-column > div > div {
  display: block !important;
}

.job-tow-column .jobs-btn {
  padding-top: 30px;
}

.job-tow-column p:last-of-type {
  padding: 0;
}

.job-tow-column .jobs-btn h5 {
  font-family: Muli;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #212121;
  margin-bottom: 7px;
  margin-top: 0;
}

.job-tow-column .jobs-btn .link_wrap,
.openings-link .link_wrap{
  position: relative;
  text-decoration: inherit;
  speak: none;
}

.job-tow-column .jobs-btn .link_wrap .link_text,
.openings-link .link_wrap .link_text{
  color: inherit;
  padding-right: 36px;
  position: relative;
  display: inline-block;
}

.job-tow-column .jobs-btn .link_wrap .link_text:after,
.openings-link .link_wrap .link_text:after{
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.3);
  height: 27px;
  width: 27px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -14px;
  content: ' ';
  display: block;
  pointer-events: none;
  -ms-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  border-color: inherit;
}

.job-tow-column .jobs-btn .link_wrap .arrow:before,
.openings-link .link_wrap .arrow:before{
  line-height: 30px;
  font-size: 14px;
  position: absolute;
  right: 0;
  width: 26px;
  text-align: center;
  height: 30px;
  top: 50%;
  margin-top: -16px;
  -ms-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  font-family: 'Fontawesome'!important;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  content: "\f105";
  color: inherit;
  border-color: inherit;
}

.job-tow-column .jobs-btn .link_wrap .arrow:after,
.openings-link .link_wrap .arrow:after{
  position: absolute;
  content: '';
  border-bottom: 1px solid #000;
  height: 1px;
  width: 22px;
  right: 12px;
  top: 50%;
  margin-top: -1px;
  -ms-transform: scale(0,1) translateX(0px);
  -ms-transform-origin: left;
  transform: scale(0,1) translateX(0px);
  transform-origin: left;
  -webkit-transform: scale(0,1) translateX(0px);
  -webkit-transform-origin: left;
  pointer-events: none;
  transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  -webkit-transition: all 0.33s cubic-bezier(0.12,0.75,0.4,1);
  color: inherit;
  border-color: inherit;
}

.job-tow-column .jobs-btn .link_wrap:hover .link_text:after,
.openings-link .link_wrap:hover .link_text:after{
  -ms-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

.job-tow-column .jobs-btn .link_wrap:hover .arrow:before,
.openings-link .link_wrap:hover .arrow:before{
  -ms-transform: scale(1,1) translateX(9px);
  -webkit-transform: scale(1,1) translateX(9px);
  transform: scale(1,1) translateX(9px);
}

.job-tow-column .jobs-btn .link_wrap:hover .arrow:after,
.openings-link.link_wrap:hover .arrow:after{
  -ms-transform: scale(1,1) translateX(9px);
  -webkit-transform: scale(1,1) translateX(9px);
  transform: scale(1,1) translateX(9px);
}
.current-openings-wrapper {
  background-color: #f2f2f2;
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.05);
}

.current-openings-wrapper .dnd-section {
  padding: 0;
}

.current-openings-wrapper .openings-heading {
  padding-bottom: 24px;
}

.openings-heading .dnd-section>.row-fluid {
  max-width: 100% !important;
  padding: 0;
}

.openings-heading h3 {
  font-family: Muli;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #333333;
  text-align: center;
  margin-top: -8px;
  margin-bottom: 8px;
}

.current-openings h5 {
  font-size: 19px;
  text-align: left;
  font-family: Lato;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  margin-top: 55px;
  margin-bottom: 20px;
  color: #333333;
}

.current-openings .nectar-hor-list-item {
  font-family: Muli;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.14);
  padding: 22px;
  margin-bottom: 0;
  -webkit-transition: all .4s cubic-bezier(0.2,0,0.15,1);
  -ms-transition: all .4s cubic-bezier(0.2,0,0.15,1);
  transition: all .4s cubic-bezier(0.2,0,0.15,1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.current-openings .nectar-hor-list-item:before {
  height: 100%;
  opacity: 0;
  bottom: 0;
  left: 0;
  content: '';
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-transform: perspective(1000px) rotateX( 90deg );
  -ms-transform: perspective(1000px) rotateX(90deg);
  transform: perspective(1000px) rotateX( 90deg );
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition: all .4s cubic-bezier(0.2,0,0.15,1);
  -ms-transition: all .4s cubic-bezier(0.2,0,0.15,1);
  transition: all .4s cubic-bezier(0.2,0,0.15,1);
  background-color: #2ca895;
}

.current-openings .nectar-list-item:nth-child(1) {
  width: 50%;
}

.current-openings .nectar-list-item:nth-child(2) {
  width: 25%;
}

.current-openings .nectar-list-item:nth-child(3) {
  width: 25%;
  text-align: right;
}

.current-openings .nectar-list-item {
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: color .4s cubic-bezier(0.2,0,0.15,1);
  -ms-transition: color .4s cubic-bezier(0.2,0,0.15,1);
  transition: color .4s cubic-bezier(0.2,0,0.15,1);
}

.current-openings .nectar-list-item-btn {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  font-weight: 700;
  font-family: Muli;
  padding: 8px 12px;
  display: inline-block;
  border: 2px solid rgba(0,0,0,0.3);
  font-size: 14px!important;
  line-height: 12px;
  color: #000;
  margin: 3px 3px;
  -webkit-transition: border-color .45s cubic-bezier(0.25,1,0.33,1),color .45s cubic-bezier(0.25,1,0.33,1);
  -ms-transition: border-color .45s cubic-bezier(0.25,1,0.33,1),color .45s cubic-bezier(0.25,1,0.33,1);
  transition: border-color .45s cubic-bezier(0.25,1,0.33,1),color .45s cubic-bezier(0.25,1,0.33,1);
}
.current-openings .nectar-hor-list-item:hover:before {
  opacity: 1;
  -webkit-transform: perspective(1000px) rotateX(0);
  -ms-transform: perspective(1000px) rotateX(0);
  transform: perspective(1000px) rotateX(0);
  z-index: 1;
}

.current-openings .nectar-hor-list-item {
  position: relative;
}

.current-openings .nectar-list-item {
  position: relative;
  z-index: 50;
}

.current-openings .nectar-hor-list-item:hover .nectar-list-item {
  color: #fff;
}

.current-openings .nectar-hor-list-item:hover .nectar-list-item-btn {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.current-openings .nectar-list-item-btn:hover {
  border-color: #fff !important;
}

.current-openings .nectar-list-item-btn {
  position: relative;
  z-index: 555;
}
.openings-link .dnd-section>.row-fluid {
  padding: 0;
}
.current-openings {
  padding-bottom: 60px;
  margin-bottom: 24px;
}

.openings-link h6 {
  font-family: Muli;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 7px;
  margin-top: 0;
}

.openings-link .link_wrap .link_text:after {
  border: 1px solid rgba(0,0,0,0.3);
}

.openings-link .link_wrap:hover .arrow:after {
  -ms-transform: scale(1,1) translateX(9px);
  -webkit-transform: scale(1,1) translateX(9px);
  transform: scale(1,1) translateX(9px);
}
.hs-jobsquality-regulatory-director-software-devices-ai .job-description-inner.hs-responsibilities {
  padding-bottom: 40px;
}

.hs-jobsquality-regulatory-director-software-devices-ai .custom-description p a {
  word-break: normal;
}







@media (min-width: 1000px){
  .job_post_inner-wrap,
  .job-bottom-pane .job-bottom-left{
    float: left;
    width: 65.95744680199999%;
  }
  .job_post_inner:before, 
  .job_post_inner:after,
  .custom-heading{
    float: left;
    width: 14.89361702%;
  }
  .job_post_inner:after{
    position: relative;
    min-height: 1px;
    margin-left: 2.1%;
    box-sizing: border-box;
  }
  .job_column_left{
    width: 65.95744680199999%;
    float: left;
  }
  .job_column_right,
  .job-bottom-pane .job-bottom-right{
    float: left;
    width: 31.914893614%;
  }
  .custom-description{
    float: left;
    width: 82.97872339599999%;
  }
  .job-tow-column .span6{
    width: 48.93617020799999%;
    float: left;
  }
}



@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .job_column_left h3,
  .job-heading h3,
  .openings-heading h3{
    font-size: 17px;
    line-height: 25.5px;
  }
  .current-openings h5{
    line-height: 24px;
  }
}
@media(max-width:1000px){
  .job_post_inner-wrap {
    margin: 25px 0;
  }

  .job_column_left h3,
  .openings-heading h3,
  .job-heading h3{
    font-size: 16px;
    line-height: 24px;
  }

  .job_column_left {
    padding-bottom: 25px;
  }

  .job_column_right {
    margin: 0;
  }

  .custom-heading {
    width: 31.2%;
    margin-bottom: 32px;
  }

  .custom-description {
    margin: 0;
  }

  .custom-description h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }

  .job-bottom-left {
    margin-bottom: 45px;
  }

  .job-bottom-left h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }

  .job-bottom-pane .job-bottom-right {
    margin: 0;
  }

  .job-bottom-pane {
    padding-top: 1px;
  }
  .hs-jobsmarketing-manager .job-bottom-left .job-bottom-left-inner {
    margin: 0;
  }

  .hs-jobsmarketing-manager .job-bottom-left {
    margin-bottom: 25px;
  }
  .current-openings h5{
    line-height: 24px;
  }
  .job-tow-column .span6 {
    width: 100%;
  }

  .job-tow-column .span6:last-child {
    margin-left: 0;
  }

  .job-tow-column .span6:first-child {
    margin-bottom: 25px;
  }

  .current-openings .nectar-list-item:nth-child(1),
  .current-openings .nectar-list-item:nth-child(2) {
    width: 100%;
  }

  .current-openings .nectar-list-item:nth-child(3) {
    width: 100%;
    display: block;
    position: static;
  }

  .current-openings .nectar-hor-list-item {
    display: block;
    padding-right: 135px;
    vertical-align: baseline;
    letter-spacing: normal;
  }

  .current-openings .nectar-list-item-btn {
    position: absolute;
    right: 22px;
    top: 25px;
  }

  .current-openings-wrapper {
    line-height: 25px;
  }

}


@media only screen and (max-width: 690px){
  .job_column_left h3,
  .job-heading h3,
  .openings-heading h3{
    font-size: 14px;
    line-height: 21px;
  }
  .custom-heading {
    width: 48%;
  }
  .current-openings .nectar-hor-list-item {
    padding-right: 0;
  }

  .current-openings .nectar-list-item-btn {
    position: relative;
    right: 0;
    top: 0;
  }
  .custom-description p {
    word-break: break-word;
  }

}

/*=================================================================================== Covid 19 Patients page ===============================================================*/

.patients_top_content {
  background-color: #f2f2f2;
  padding-top: calc(100vw * 0.02);
}

.patients_top_content .dnd-section,.patients_top_content .dnd-section > div {
  padding: 0;
}

.patient-cards {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.patient-cards:before,.patient-cards:after {
  display: block;
  content: "";
  clear: both;
}

.patient-card {
  padding: 6%;
  color: #ffffff;
  box-shadow: 0 30px 80px rgb(0 0 0 / 14%), 0 20px 70px rgb(0 0 0 / 12%);
  border-radius: 15px;
  text-align: center;
  overflow: hidden;
}

.patient-card-one {
  opacity: 1;
  background-color: #00736e;
}

.patient-card-two {
  opacity: 1;
  background-color: #0075b2;
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.patient-card h3 {
  font-size: 28px;
  text-align: center;
  line-height: 30px;
  font-weight: 600;
  font-family: Muli;
  margin-bottom: 8px;
  margin-top: 0;
  color: #fff;
}

.patient-card a {
  display: inline-block;
  font-family: Muli;
  font-weight: 700;
  font-size: 14px;
  padding: 15px 22px;
  border: 2px solid rgba(255,255,255,0.75);
  border-width: 2px;
  padding-top: 13px;
  padding-bottom: 13px;
  margin-top: 30px;
  margin-bottom: 1px;
  border-color: rgba(255, 255, 255, 0.75);
  color: rgb(255, 255, 255);
  visibility: visible;
  background-color: transparent;
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
  box-shadow: none;
  -ms-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  line-height: 20px;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  letter-spacing: 2px;
}

.patient-card a:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  background: #fff;
  color: #000;
}
.patients-for-registries-area .dnd-section:before,
.patients-for-registries-area .dnd-section:after {
  display: block;
  content: "";
  clear: both;
}

.patients-for-registries-area .dnd-section>.row-fluid:before {
  content: "";
  display: block;
  position: relative;
  min-height: 1px;
  box-sizing: border-box;
}

.patients-for-registries-area .dnd-section>.row-fluid:after {
  content: "";
  display: block;
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.patients-for-registries-area .dnd-section>.row-fluid {
  display: block !important;
}

.patients-for-registries-area .dnd-section>.row-fluid> div,
.patients-weekly-update-area .dnd-section>.row-fluid >div{
  padding: 3%;
  box-shadow: 0 10px 50px rgb(0 0 0 / 8%), 0 13px 45px rgb(0 0 0 / 8%);
  border-radius: 15px;
  text-align: center;
  overflow: hidden;
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
  background: #fff;
}

.patients-for-registries-area h3 {
  font-size: 28px;
  color: #333333;
  font-weight: 600;
  line-height: 2;
  text-align: center;
  font-family: Muli;
  margin-bottom: 8px;
  margin-top: 0;
}

.patients-for-registries-area h5 {
  color: #333333;
  line-height: 1.5;
  text-align: center;
  font-family: Muli;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 0;
}

.patients-for-registries-area hr {
  margin: 25px auto;
  height: 1px;
  margin-bottom: 20px;
  margin-top: 20px;
  background-color: #666666;
  width: 20%;
}

.patients-for-registries,
.patients-weekly-update {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.patients-bottom-content {
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
}
.patients-weekly-update-area .dnd-section>.row-fluid >div,
.patients-general-enquiries-area .span1{
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.patients-weekly-update-area .hs-table {
  box-shadow: unset;
  background: transparent;
  padding: 0;
}

.hs-table table tr th {
  background: #f2f2f2;
}
.hs-table table tr th span {
  font-size: 13px;
  font-weight: normal;
}

.hs-table p {
  padding: 0;
}
.hs-table table tr td,.hs-table table tr th {
  color: #000000;
}

.hs-table strong {
  color: #000000;
}

.patients-bottom-content ul {
  margin-left: 0;
  list-style: none;
}

.patients-bottom-content ul li {
  list-style: none;
  position: relative;
  padding-left: 38px;
  font-weight: 400;
}

.patients-bottom-content ul li i.icon-default-style {
  line-height: 25px !important;
  font-size: 16px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  color: #2ca895;
}

.icon-ok:before {
  content: "\f00c";
}

.patients-general-enquiries-area h2 {
  font-size: 28px;
  color: #333333;
  text-align: center;
  line-height: 36px;
  font-weight: 600;
  font-family: Muli;
  margin-top: 0;
}

.patients-general-enquiries-area .row-fluid {
  display: block !important;
}

.patients-general-enquiries-area .span1:first-child {
  margin-left: 0;
}

.patients-general-enquiries-area .span5 {
  padding: 3%;
}

.patients-general-enquiries-area .span5:nth-child(2) {
  box-shadow: 0 10px 50px rgb(0 0 0 / 8%), 0 13px 45px rgb(0 0 0 / 8%);
  border-radius: 3px;
  overflow: hidden;
  background-color: #f2f2f2;
}

.patients-general-enquiries-area .hs_cos_wrapper_type_form {
  background: transparent !important;
  padding: 0;
  box-shadow: unset;
  max-width: 100%;
}

.patients-general-enquiries-area h3.form-title {
  font-family: Muli;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.patients-general-enquiries-area .hs-form-required {
  display: none;
}

.patients-general-enquiries-area .dnd-section {
  padding-top: calc(100vw * 0.04);
  padding-bottom: 0px;
}

.patients-general-enquiries-area .span5 {
  margin-top: 20px;
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.patients-general-enquiries-area form .field {
  margin-bottom: 32px;
  line-height: 25px;
}

.patients-general-enquiries-area form .hs-button {
  border: 0;
}

.patients-general-enquiries-area .row-fluid {
  display: block !important;
}
.patients-general-enquiries-area .divider-small-border {
  background: #ddd;
  width: 20%;
}
.patient-card-two {
  border-radius: 10px;
}
.conquercovid-banner .patients-banner h1 {
  font-size: 28px;
  color: #ffffff;
  line-height: 2;
  text-align: left;
  font-family: Muli;
  font-weight: 400;
  font-style: normal;
}

.conquercovid-banner .patients-banner {
  padding-top: calc(100vw * 0.07);
  padding-bottom: calc(100vw * 0.02);
}
.conquercovid-banner .patients-banner .patients-right-column {
  padding: 4%;
  border: 4px solid rgba(255, 255, 255, 0);
  border-color: #3c73b8;
}
.hs-conquercovid .patients-for-registries {
  padding: 0;
  margin: 0;
}

.hs-conquercovid .patient-card h3 {
  font-family: Muli;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
.iconsmind-Triangle-ArrowRight:before {
  content: "\f0cc";
}

.hs-conquercovid .patients-weekly-update {
  padding-top: 10px;
  padding-bottom: 50px;
  margin-bottom: 0;
}

.hs-conquercovid .patients-bottom-content {
  padding: 0;
  margin: 0;
}

.hs-conquercovid .patients-general-enquiries-area .dnd-section {
  padding-top: calc(100vw * 0.03);
  padding-bottom: 0px;
}

/* .patients-general-enquiries-area h3.form-title {
text-transform: capitalize;
} */
.covid19-patients_ms-banner .patients-banner .right-column-content {
  margin: 0;
  padding: 0;
}

.covid19-patients_ms-banner .patients-banner .column-bg-overlay {
  display: none;
}
.patients-general-enquiries-area .span5 {
  display: block !important;
}

.hs-conquercovid .patients-general-enquiries-area form .hs-button {
  margin-top: 6px;
}
.hs-conquercovid .letestCovid-news-wrap {
  padding-top: calc(100vw * 0.01);
  padding-bottom: calc(100vw * 0.03);
  margin-top: 15px;
}

.hs-conquercovid .patients-general-enquiries-area .divider-small-border {
  margin-bottom: 15px;
  margin-top: 25px;
}

.patients-for-registries-area p:last-child {
  padding: 0;
}




@media (min-width: 1000px){
  .patient-card{
    float: left;
    width: 48.93617020799999%;
  }
  .patients-for-registries-area .dnd-section>.row-fluid:after,
  .patients-for-registries-area .dnd-section>.row-fluid:before,
  .patients-weekly-update-area .dnd-section>.row-fluid:before,
  .patients-weekly-update-area .dnd-section>.row-fluid:after,
  .patients-general-enquiries-area .span1{
    float: left;
    width: 14.89361702%;
  }
  .patients-for-registries-area .dnd-section>.row-fluid> div,
  .patients-weekly-update-area .dnd-section>.row-fluid >div,
  .conquercovid-banner .patients-banner .patients-left-column{
    float: left;
    width: 65.95744680199999%;
  }
  .patients-general-enquiries-area .span5,
  .conquercovid-banner .patients-banner .patients-right-column{
    float: left;
    width: 31.914893614%;
  }

}

@media(min-width:1200px){
  .conquercovid-banner .patients-banner .patients-left-column{
    float: left;
    width: 65.95744680199999%;
  }
  .conquercovid-banner .patients-banner .patients-right-column{
    margin-left: 2.1%;
    float: left;
    width: 31.914893614%;
  }
}

@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .patient-card h3{
    line-height: 25.5px;
  }
  .patients-for-registries-area h5{
    font-size: 17px;
  }
  .patients-general-enquiries-area h2{
    line-height: 30.6px;
  }
  .hs-conquercovid .patient-card h3{
    font-size: 17px;
    line-height: 25.5px;
  }
  .patient-card h3 {
    font-size: 17px;
    line-height: 25.5px;
  }
  .patients-general-enquiries-area h3.form-title{
    font-size: 16.8px;
    line-height: 25.2px;
  }


}


@media(max-width:1200px){
  .conquercovid-banner .patients-banner .patients-right-column {
    margin-left: 0;
  }
}


@media(max-width:1000px){
  .patient-card {
    padding: 10%;
  }

  .patient-card h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .patient-card-one {
    margin-bottom: 25px;
  }

  .patient-card-two {
    margin-left: 0;
  }

  .patients-for-registries-area .dnd-section>.row-fluid> div, 
  .patients-weekly-update-area .dnd-section>.row-fluid >div {
    margin-left: 0;
    margin: 25px 0;
    padding: 6%;
  }
  .patients-for-registries-area h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .patients-for-registries-area h5,
  .hs-conquercovid .patient-card h3{
    font-size: 16px;
    line-height: 24px;
  }
  .patients-general-enquiries-area h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }

  .patients-general-enquiries .patients-general-enquiries-area .row-fluid {
    display: block !important;
  }

  .patients-weekly-update-area .dnd-section>.row-fluid >div, 
  .patients-general-enquiries-area .span1 {
    margin-left: 0;
    margin-bottom: 25px;
    width: 100%;
  }

  .patients-general-enquiries-area .span5 {
    width: 100%;
    margin-left: 0;
    margin-bottom: 25px;
    padding: 6%;
  }

  .patients-general-enquiries-area .span1:first-child {
    padding-top: 25px;
  }

  .patients-general-enquiries-area h3.form-title {
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .conquercovid-banner .patients-banner h1 {
    font-size: 22.4px!important;
    line-height: 33.6px!important;
  }

  .conquercovid-banner .patients-banner .patients-banner-heading {
    margin-bottom: 32px;
  }

  .conquercovid-banner .patients-banner .patients-left-column {
    padding-bottom: 4%;
  }

  .conquercovid-banner .patients-banner .patients-right-column {
    padding: 12%;
    z-index: 50;
  }

  .conquercovid-banner .patients-banner .patients-banner-content {
    padding-bottom: 0;
  }


}

@media only screen and (max-width: 690px){
  .patient-card h3,
  .patients-for-registries-area h3,
  .patients-for-registries-area h5,
  .hs-conquercovid .patient-card h3{
    font-size: 14px;
    line-height: 21px;
  }
  .patients-general-enquiries-area h2,
  .patients-general-enquiries-area h3.form-title {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .hs-covid19-qmenta .covid19-bottomContent h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
}


/*=================================================================================== Covid 19 Share page ===============================================================*/

.covid19-share-banner .covid19Banner-wrapper {
  padding: 0;
}

.topContent-area:nth-child(odd) .dnd-section {
  padding-top: calc(100vw * 0.10);
  padding-bottom: calc(100vw * 0.05);
}

.topContent-area .span6 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.topContent-area .dnd-section>.row-fluid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.topContent-area .dnd-section>.row-fluid:before,
.topContent-area .dnd-section>.row-fluid:after {
  display: none;
}

.topContent-area:nth-child(odd) .span6:last-child,
.topContent-area:nth-child(even) .span6:last-child{
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.topContent-area:nth-child(odd) .span6:first-child,
.topContent-area:nth-child(even) .span6:last-child{
  padding: 0 2%;
}

.topContent-area:nth-child(odd) .widget-type-linked_image {
  margin-left: -75%;
  width: 175%;
  display: block;
  max-width: unset;
}

.topContent-area .hs_cos_wrapper_type_linked_image {
  display: block;
  width: 100%;
}
.topContent-area:nth-child(odd) .widget-type-linked_image img {
  max-width: 100%;
  width: auto;
  padding-right: 30px;
  display: block;
}
.topContent-area .widget-type-linked_image img {
  max-width: 100%;
  width: auto;
  display: block;
}
.topContent-area:nth-child(odd) .widget-type-rich_text,
.topContent-area:nth-child(even) .widget-type-rich_text{
  padding-right: 10%;
}

.topContent-area h5 {
  font-size: 16px;
  color: #000000;
  line-height: 32px;
  text-align: left;
  font-weight: 600;
  font-family: Muli;
  margin-top: 0;
}

.topContent-area h2 {
  color: #3c73b8;
  font-family: Muli;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  text-align: left;
  margin-top: 0;
}

.topContent-area .divider-small-border {
  margin: 25px 0;
  margin-top: 50px;
  width: 120px;
  height: 8px;
  margin-bottom: 50px;
  transform: scale(1, 1);
  visibility: visible;
  background: #ddd;
}

.topContent-area .hs-button {
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 700;
  font-family: Muli;
  padding-left: 42px;
  padding-right: 42px;
  letter-spacing: 2px;
  color: #FFF;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  opacity: 1;
  line-height: 20px;
  display: inline-block;
  border: 0;
}

.topContent-area p:last-child {
  padding-bottom: 0;
}
.topContent-area .hs-button{
  margin-top: 20px;
}
.topContent-area .hs-button span {
  left: 0px;
  display: inline-block;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: opacity .45s cubic-bezier(0.25,1,0.33,1),transform .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: opacity .45s cubic-bezier(0.25,1,0.33,1),-webkit-transform .45s cubic-bezier(0.25,1,0.33,1);
  position: relative;
}

.topContent-area .hs-button i {
  font-family: 'icomoon'!important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  background-color: transparent!important;
  font-size: 16px;
  line-height: 18px;
  width: 18px;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -9px;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  transition: all .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1);
}

/**.topContent-area .hs-button:hover span {
  -ms-transform: translateX(-18px);
  -webkit-transform: translateX(-18px);
  transform: translateX(-18px);
}

.topContent-area .hs-button:hover i {
  opacity: 1!important;
  -ms-filter: "alpha(opacity=100)";
  -ms-transform: translateX(6px);
  -webkit-transform: translateX(6px);
  transform: translateX(6px)!important;
}

.topContent-area .hs-button:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  opacity: 0.87;
  color: #fff;
  background-color: #2ca895!important;
}**/
.topContent-area2 .dnd-section {
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.10);
}

.topContent-area:nth-child(even) .widget-type-linked_image {
  width: 175%;
  display: block;
  max-width: unset;
  margin-right: -75%;
}
.cs-bottom-pane .dnd-section>.row-fluid {
  position: relative;
  z-index: 50;
}

.cs-bottom-pane .dnd-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cs-bottom-pane .dnd-section:after {
  content: "";
  background-color: #3c73b8;
  opacity: 0.95;
  width: 100%;
  min-height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.cs-bottom-pane h2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 24px;
}

.cs-bottom-pane p:last-child {
  padding: 0;
}

.cs-bottom-pane .span7,.cs-bottom-pane .span4 {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.cs-bottom-pane p {
  color: #fff;
  opacity: 0.95;
}

.cs-bottom-pane .hs-button {
  padding-left: 42px;
  padding-right: 42px;
  border: 4px solid rgba(255,255,255,0.75);
  border-color: rgba(255, 255, 255, 0.75);
  color: rgb(255, 255, 255);
  visibility: visible;
  background-color: transparent;
  padding-top: 21px;
  padding-bottom: 21px;
  font-size: 18px;
  font-weight: 700;
  font-family: Muli;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  opacity: 1;
  line-height: 20px;
  letter-spacing: 2px;
  display: inline-block;
}

.cs-bottom-pane .hs-button span {
  left: 0px;
  display: inline-block;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: opacity .45s cubic-bezier(0.25,1,0.33,1),transform .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: opacity .45s cubic-bezier(0.25,1,0.33,1),-webkit-transform .45s cubic-bezier(0.25,1,0.33,1);
  position: relative;
}

.cs-bottom-pane .hs-button i {
  font-family: 'icomoon'!important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  color: rgb(0, 0, 0);
  background-color: transparent!important;
  font-size: 19px;
  line-height: 18px;
  width: 18px;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -9px;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  transition: all .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1);
}

/**.cs-bottom-pane .hs-button:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  background-color:#fff;
  border-color: rgba(255, 255, 255, 0.75);
  color: rgb(0, 0, 0);
}

.cs-bottom-pane .hs-button:hover span {
  -ms-transform: translateX(-18px);
  -webkit-transform: translateX(-18px);
  transform: translateX(-18px);
}

.cs-bottom-pane .hs-button:hover i {
  opacity: 1!important;
  -ms-filter: "alpha(opacity=100)";
  -ms-transform: translateX(6px);
  -webkit-transform: translateX(6px);
  transform: translateX(6px)!important;
}**/
.hs-covid19-share .covid19-bottomContent .dnd-section {
  padding-top: calc(100vw * 0.08);
  padding-bottom: calc(100vw * 0.08);
}
.covid19-middleContent .divider-small-border {
  width: 20%;
  background: #ddd;
}

.hs-covid19-patients_ms-table .covid19-bottomContent .dnd-section {
  padding: 0;
}
.icon-globe:before {
  content: "\f0ac";
}
.clear {
  clear: both;
}


@media (min-width: 1000px){
  .topContent-area .span6,
  .cs-bottom-pane .span4{
    float: left;
    width: 48.93617020799999%;
  }
  .cs-bottom-pane .span7{   
    float: left;
    width: 40.425531911%;
  }
  .cs-bottom-pane .span1{
    float: left;
    width: 6.382978723%;
  }    
}

@media only screen and (max-width: 1300px) and (min-width: 1000px){
  .topContent-area h2 {
    font-size: 20.4px;
    line-height: 30.6px;
  }
}

@media only screen and (max-width: 1000px){
  .topContent-area .span6 {
    width: 100%;
    margin-bottom: 25px;
  }

  .topContent-area:nth-child(odd) .widget-type-linked_image img {
    padding-right: 0;
  }

  .topContent-area:nth-child(odd) .widget-type-linked_image {
    margin-left: 0;
    width: 100%;
  }

  .topContent-area:nth-child(odd) .span6:last-child,
  .topContent-area:nth-child(even) .span6:last-child {
    margin-left: 0;
  }

  .topContent-area h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }

  .topContent-area .span6:last-child {
    margin-bottom: 0;
  }

  .topContent-area:nth-child(even) .widget-type-linked_image {
    margin-right: 0;
    width: 100%;
  }
  .cs-bottom-pane .dnd-section>.row-fluid {
    display: block !important;
  }

  .cs-bottom-pane .span7, .cs-bottom-pane .span4 {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
    margin-left: 0;
  }

  .cs-bottom-pane .span1 {
    width: 100%;
    margin-bottom: 25px;
  }

  .cs-bottom-pane .span4 {
    margin-bottom: 0;
  }

  .cs-bottom-pane h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }

  .cs-bottom-pane .span4 .widget-span {
    align-items: center !important;
  }

  .hs-covid19-share .covid19-bottomContent .dnd-section > .row-fluid {
    display: block !important;
  }
  .hs-covid19-share .covid19-bottomContent .span8 > .dnd-row:last-child {
    margin-bottom: 25px;
  }

}



@media only screen and (max-width: 690px){
  .topContent-area h2,
  .cs-bottom-pane h2{
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .hs-table {
    overflow: auto;
  }
  .hs-covid19-share .covid19-bottomContent .dnd-section > .row-fluid {
    margin-bottom: 25px;
  }
}


.irontract-page .dnd-section,
.irontract-page .page-center .dnd-section>.row-fluid,
.sdk-page .dnd-section,
.sdk-page .page-center .dnd-section>.row-fluid{
  padding: 0;
}

.irontract-content-with-iframe .page-center {
  padding-top: calc(100vw * 0.04);
  padding-bottom: calc(100vw * 0.01 + 35px);
}

.irontract-content-with-iframe .page-center>div {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin-left: 2.1%;
}

.irontract-content-with-iframe .page-center>div:first-of-type {
  margin-left: 0;
  padding-bottom:10px;
}

iframe.iframe-embed, iframe {
  max-width: 100%;
}

.irontract-content-with-iframe .irontact-iframe-wrapper {
  width: 80%;
  position: relative;
  margin: 10px auto 34px;
}

.irontract-content-with-iframe .irontract-iframe-area {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

.irontract-content-with-iframe .irontact-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


.irontract-page p:last-child {
  padding-bottom: 0px;
}

.irontract-useful-links .dnd-section {
  padding-top: calc(100vw * 0.01);
  padding-bottom: calc(100vw * 0.01);
  text-align:center;
}

.irontract-useful-links p {
  padding-bottom:15px;
}

.irontract-useful-links a {
  position: relative;
  text-transform: uppercase;
  top: -3px;
  line-height: 20px;
  display: inline-block;
  padding: 10px 15px;
  letter-spacing: 2px;
  color: #FFF;
  font-family: Muli;
  font-weight: 700;
  font-size: 12px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  box-shadow: none;
  transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  background-color: #2ca895;
  margin: 10px 8px;
}

.irontract-useful-links a:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  color:#fff;
}

.irontract-content-with-background .dnd-section {
  padding-top: calc(100vw * 0.03);
  padding-bottom: calc(100vw * 0.03);
}

.irontract-content-with-background h4 {
  color:#fff;
  text-align:center;
  margin:0 0 8px;
}

.irontract-content-with-background h4 span {
  font-weight:400;
}

.irontract-about-top-content {
  padding-top: 5%;
  padding-bottom: 2%;
  margin-bottom: 24px;
}

.irontract-about-top-content h2 {
  font-size: 28px;
  margin:0 0 7px;
  line-height: 36px;
}

.irontract-about-top-content p {
  padding:0;
}

.irontract-about-columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  margin-bottom: 35px;
}

.irontract-about-columns .irontract-about-column {
  position: relative;
  min-height: 1px;
  float: left;
  width: 100%;
  padding: 2%;
  margin-left: 2.1%;
  border: 1px solid #2ca895;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.irontract-about-columns .irontract-about-column>.container-fluid {
  webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.irontract-about-columns .irontract-about-column:first-of-type {
  margin-left: 0;
}

.irontract-about-columns .irontract-about-column-one p {
  padding: 27px 0 0;
}

.irontract-about-columns .irontract-about-column-one p:first-of-type {
  padding: 0;
}

.irontract-about-columns .irontract-about-column-one p:last-of-type {
  padding-top: 10px;
}

.irontract-about-columns .irontract-about-column a {
  word-break: break-word;
}

.irontract-about-button {
  padding-top: calc(100vw * 0.01);
  padding-bottom: calc(100vw * 0.01);
  margin-bottom: 35px;
  position: relative;
}

.irontract-about-button .hs-button {
  margin: 7px 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 20px;
  padding: 14px 22px;
}

.irontract-about-bottom-content {
  padding-top: 6px;
  padding-bottom: calc(100vw * 0.04 + 40px);
}

.irontract-page .covid19Banner-wrapper {
  padding-top:0;
}

.irontract-page .covid19Banner-wrapper .bg-overlay {
  background: linear-gradient(
    90deg
    ,#2ca895 0%,#3c73b8 100%);
  opacity: 0.95;
}

.sdk-page .bannerArea.fullWidthBanner .banner-container {
  padding-top: calc(100vw * 0.13);
  padding-bottom: calc(100vw * 0.13);
}

/**.sdk-page .bannerArea .banner-bg-overlay {
  background: linear-gradient(135deg,#2ca895 0%,#3c73b8 100%) !important;
  opacity: 0.95;
}**/

.sdk-page .bannerArea .banner_svg {
  height: 80px;
}

.sdk-page .bannerArea .banner_svg svg path:nth-child(1) {
  opacity: 0.1;
}

.sdk-page .bannerArea .banner_svg svg path:nth-child(2) {
  opacity: 0.12;
}

.sdk-page .bannerArea .banner_svg svg path:nth-child(3) {
  opacity: 0.18;
}

.sdk-page .bannerArea .banner_svg svg path:nth-child(4) {
  opacity: 0.33;
}

.sdk-page .bannerArea.fullWidthBanner .bannerTitle {
  margin: 20px 0 17px !important;
}

.sdk-page .bannerArea.fullWidthBanner h1 {
  line-height: 36px;
  font-weight: 400;
}

.sdk-content-title {
  padding-top: calc(100vw * 0.06);
  padding-bottom: calc(100vw * 0.05);
  position: relative;
  box-sizing: content-box!important;
  -moz-box-sizing: content-box!important;
  -webkit-box-sizing: content-box!important;
  width: 100%;
}

.sdk-content-title .sdk-content-title-area {
  text-align: center;
  margin: 0 auto;
}

.sdk-content-title h4 {
  color: #000000;
  font-size: 22px;
  font-weight: 400;
  line-height: 27px;
  margin: 0 0 8px;
}

.sdk-content-columns {
  padding-top: calc(100vw * 0.06);
  padding-bottom: calc(100vw * 0.07);
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sdk-content-columns>div {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.sdk-content-columns>.sdk-cards-column {
  margin-left: 0;
  padding: 0 12%;
}

.sdk-content-columns>div>.container-fluid {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.sdk-content-columns figure {
  margin: 0 0 10px;
  line-height: 0;
}

.sdk-content-columns figure img {
  display: block;
  max-width: 50%;
  width: auto;
}

.sdk-content-columns h4 {
  padding-right: 10%;
  margin: 0 0 25px;
}

.sdk-content-columns h4:last-of-type {
  margin:0;
}

.sdk-content-columns h4 span {
  font-weight: 400;
}

.sdk-content-columns .sdk-image-column {
  padding: 0 8%;
  text-align: center;
  line-height:0;
}

.sdk-content-with-background {
  /**background: linear-gradient(90deg,hsl(171deg 58% 42% / 95%) 0%,rgb(60 115 184 / 95%) 100%);**/
  padding-top: calc(100vw * 0.06);
  padding-bottom: calc(100vw * 0.06);
  position:relative;
  color:#fff;
}

.sdk-page .nectar-shape-divider-wrap {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50px;
  z-index: 3;
  transform: translateZ(0);
  display:block;
}

.sdk-page .nectar-shape-divider-wrap[data-position="top"] {
  top: -1px;
  bottom: auto;
}

.sdk-page .nectar-shape-divider-wrap[data-position="top"] {
  transform: rotate(180deg);
}

.sdk-page .nectar-shape-divider-wrap[data-front="true"] {
  z-index: 50;
}

.sdk-page .nectar-shape-divider {
  width: 100%;
  left: 0;
  bottom: -1px;
  height: 100%;
  position: absolute;
}

.sdk-page .nectar-shape-divider-wrap.no-color .nectar-shape-divider {
  fill: #fff;
}

.sdk-content-with-background .dnd-section>.row-fluid>div {
  padding: 4%;
  margin: 0 auto;
}

.sdk-content-with-background h3 {
  color: #fff;
  margin: 0 0 40px;
}

.sdk-content-with-background ul {
  padding-right: 10%;
  margin: 0 0 0 30px;
  color: #fff;
}

.sdk-content-with-background ul li {
  font-weight: 400;
}

.sdk-content-with-background h4 {
  color: #fff;
  margin: 0 0 8px;
}

.sdk-content-with-background h4 span {
  font-weight: 400;
}

.sdk-work-content {
  padding-top: calc(100vw * 0.06);
  padding-bottom: calc(100vw * 0.05);
  margin-bottom: 35px;
}

.sdk-work-content .sdk-work-content-title {
  margin-bottom: 34px;
  position: relative;
  text-align: center;
}

.sdk-work-content .sdk-work-content-title h2 {
  color: #16aaad;
  margin: 0;
}

.sdk-work-columns {
  position: relative;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.sdk-work-columns>div {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
  float: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.sdk-work-columns .sdk-work-content-column {
  padding: 7%;
  margin-left: 0;
}

.sdk-work-columns>div>.container-fluid {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.sdk-work-columns .sdk-work-content-column h4 {
  margin: 0 0 40px;
  padding-right: 10%;
}

.sdk-work-columns .sdk-work-content-column h4 span {
  font-weight: 400;
}

.sdk-work-columns .sdk-work-content-column ul {
  margin: 0 0 0 30px;
  padding-right: 10%;
}

.sdk-work-columns .sdk-work-content-column ul li {
  font-weight: 400;
}

.sdk-work-columns .sdk-work-content-column ul li h4 {
  margin: 0 0 8px;
  padding: 0;
}

.sdk-work-columns .sdk-work-image-column {
  text-align:center;
  padding:0 9%;
}

.sdk-work-columns .sdk-work-image-column img {
  display:block;
}

.sdk-page img {
  max-width:100%;
}

.sdk-faq-content {
  padding-top: calc(100vw * 0.06);
  padding-bottom: calc(100vw * 0.05);
  color: #000000;
  position: relative;
}

.sdk-faq-content .sdk-faq-content-title {
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8%;
  text-align: center;
}

.sdk-faq-content .sdk-faq-content-title h2 {
  margin: 0;
  color: #16aaad;
  padding: 0 0 10px;
}

.sdk-faq-content {
  padding-top: calc(100vw * 0.06);
  padding-bottom: calc(100vw * 0.05);
  color: #000000;
  position: relative;
}

.sdk-faq-content .sdk-faq-content-title {
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8%;
  text-align: center;
}

.sdk-faq-content .sdk-faq-content-title h2 {
  margin: 0;
  color: #16aaad;
  padding: 0 0 10px;
}

.sdk-faq-columns {
  margin-bottom: 24px;
  position: relative;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.sdk-faq-columns:last-of-type {
  margin-bottom: 0;
}

.sdk-faq-columns.sdk-faq-columns-one {
  padding-bottom: 2%;
}

.sdk-faq-columns.sdk-faq-columns-three {
  padding-top: 4%;
}

.sdk-faq-columns .sdk-faq-column {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
  float: left;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.sdk-faq-columns .sdk-faq-column:first-of-type {
  margin-left: 0;
  padding-left: 8%;
}

.sdk-faq-columns .sdk-faq-column:last-of-type {
  padding-right: 10%;
}

.sdk-faq-columns .sdk-faq-column>.container-fluid {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.sdk-faq-columns .sdk-faq-column figure {
  margin: 0 0 15px;
  line-height: 0;
}

.sdk-faq-columns .sdk-faq-column h4 {
  margin: 0;
  padding: 0 0 10px;
  color: #16aaad;
}

.sdk-faq-columns .sdk-faq-column p {
  padding-right: 10%;
}

.sdk-faq-columns .sdk-faq-column p:last-of-type {
  padding-bottom: 0;
}

.sdk-faq-columns-one .sdk-faq-column:first-of-type p {
  margin: 0 0 75px;
}

.sdk-content-columns .nectar-shape-divider-wrap {
  margin-left: -50vw;
  left: 50%;
  width: 100vw;
}

@media (min-width:1000px) {
  .irontract-content-with-iframe .page-center>div,
  .irontract-about-columns .irontract-about-column,
  .sdk-content-with-background .dnd-section>.row-fluid>div,
  .sdk-work-columns>div,
  .sdk-faq-columns .sdk-faq-column{
    width: 48.93617020799999%;
  }

  .irontract-page .covid19Banner-wrapper h1,
  .sdk-page .bannerArea.fullWidthBanner h1{
    font-size:32px;
  }

  .sdk-content-title .sdk-content-title-area,
  .sdk-content-columns>.sdk-cards-column{
    width: 65.95744680199999%;
  }

  .sdk-content-columns .sdk-image-column {
    width: 31.914893614%;
  }

}

@media (max-width:1000px) {
  .irontract-about-columns .irontract-about-column {
    padding: 12%;
  }

  .irontract-content-with-iframe .page-center>div,
  .irontract-about-columns .irontract-about-column{
    margin-left: 0;
    margin-bottom: 25px;
  }

  .irontract-content-with-iframe .page-center>div:last-of-type,
  .irontract-about-columns .irontract-about-column:last-of-type{
    margin-bottom:0;
  }

  .irontract-content-with-background h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }


  .irontract-about-top-content h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }

  .sdk-page .bannerArea.fullWidthBanner h1 {
    font-size: 19.2px !important;
    line-height: 28.8px !important;
  }

  .sdk-content-title .sdk-content-title-area {
    margin-top:26px;
    margin-bottom:25px;
  }

}

@media (max-width:1300px) and (min-width:1000px) {
  .irontract-about-top-content h2,
  .sdk-page .bannerArea.fullWidthBanner h1{
    line-height: 30.6px;
  }
}

@media (max-width:690px) {
  .irontract-about-top-content h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }

  .sdk-page .bannerArea.fullWidthBanner h1 {
    font-size: 16.8px!important;
    line-height: 25.2px!important;
  }

}
@media (max-width:1000px) {
  .sdk-page .nectar-shape-divider-wrap.no-color .nectar-shape-divider {
    height: 75%;
  }
  .sdk-content-with-background .dnd-section>.row-fluid>div {
    padding:6%;
    padding-top:18%;
    margin-top:25px;
    margin-bottom:25px;
  }
  .sdk-work-columns .sdk-work-content-column {
    padding:14%;
  }
}
@media (max-width:1300px) and (min-width:1000px) {
  .sdk-content-with-background h3 {
    font-size: 17px;
    line-height: 25.5px;
  }
  .sdk-work-content .sdk-work-content-title h2  {
    font-size: 20.4px;
    line-height: 30.6px;
  }
}
@media (max-width:1000px) and (min-width:690px) {
  .sdk-content-title h4 {
    line-height: 24.3px;
  }
  .sdk-content-columns h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }
  .sdk-content-columns .sdk-cards-column {
    margin:0 0 25px;
  }
  .sdk-content-columns .sdk-image-column {
    display:none;
  }
  .sdk-content-with-background h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .sdk-content-with-background h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }
  .sdk-work-content .sdk-work-content-title h2 {
    margin-top:26px;
    margin-bottom:25px;
  }
  .sdk-work-content .sdk-work-content-title h2  {
    font-size: 19.2px;
    line-height: 28.8px;
  }
}


@media (max-width:1300px) and (min-width:1000px) {
  .sdk-faq-content .sdk-faq-content-title h2 {
    font-size: 20.4px;
    line-height: 30.6px;
  }
}
@media (max-width:1000px) and (min-width:690px) {
  .sdk-work-columns .sdk-work-content-column h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }
  .sdk-work-columns>div {
    margin: 0 0 25px;
  }
  .sdk-work-columns>div:last-of-type {
    margin: 0;
  }
  .sdk-faq-content .sdk-faq-content-title h2 {
    margin-top:26px;
    margin-bottom:25px;
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .sdk-faq-columns .sdk-faq-column {
    padding: 0;
    margin: 0 0 25px;
  }
  .sdk-faq-columns .sdk-faq-column:first-of-type,
  .sdk-faq-columns .sdk-faq-column:last-of-type {
    padding:0;
  }
  .sdk-faq-columns .sdk-faq-column:last-of-type {
    margin:0;
  }
  .sdk-faq-columns .sdk-faq-column h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }
}
@media (max-width:690px) {
  .sdk-content-title h4 {
    line-height: 24.3px;
  }
  .sdk-content-columns h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }
  .sdk-content-columns .sdk-image-column {
    display:none;
  }
  .sdk-content-columns {
    margin-bottom: 25px;
  }
  .sdk-page .nectar-shape-divider-wrap.no-color .nectar-shape-divider {
    height: 33%;
  }
  .sdk-content-with-background h3 {
    font-size: 14px;
    line-height: 21px;
  }
  .sdk-content-with-background h4,
  .sdk-faq-columns .sdk-faq-column h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }
  .sdk-work-content .sdk-work-content-title h2,
  .sdk-faq-content .sdk-faq-content-title h2 {
    margin-top:26px;
    margin-bottom:25px;
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .sdk-work-columns .sdk-work-content-column h4 {
    font-size: 16.2px;
    line-height: 24.3px;
  }
  .sdk-work-columns .sdk-work-content-column {
    margin:0 0 25px;
  }
  .sdk-work-columns .sdk-work-image-column {
    margin:0 0 0;
  }
  .sdk-faq-columns .sdk-faq-column:first-of-type {
    margin:0 0 25px;
    padding:0;
  }
  .sdk-faq-columns .sdk-faq-column:last-of-type {
    padding:0;
    margin:0;
  }
}

.sdk-button-wrapper {
  padding-top: calc(100vw * 0.02);
  padding-bottom: calc(100vw * 0.06);
}

.sdk-button-wrapper h2 {
  margin:0;
  padding-right:10%;
}

.sdk-button-inner {
  position: relative;
  text-align: center;
  padding: 4%;
  margin:0 auto;
}

.sdk-button-wrapper .sdk-button-area {
  padding-top: 14%;
}

.sdk-button-wrapper .sdk-button-area>div {
  position: relative;
  text-align:center;
  margin:0 auto;
}

.sdk-button-wrapper .hs-button {
  letter-spacing: 2px;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  opacity: 1;
  line-height: 20px;
  display: inline-block;
  padding-left: 42px;
  padding-right: 42px;
  margin-right: 60px;
  border: none;
}

.sdk-button-wrapper .hs-button:hover {
  box-shadow: 0 20px 38px rgb(0 0 0 / 16%);
}

.sdk-button-wrapper .hs-button i {
  background-image: none;
  background-position: 0% 0%;
  background-repeat: repeat;
  -webkit-border-radius: 999px 999px 999px 999px;
  color: #fff;
  display: inline-block;
  height: 32px;
  max-width: 100%;
  text-align: center;
  vertical-align: middle;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  line-height: 18px;
  width: 18px;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -9px;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  transition: all .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1);
  font-size: 19px;
  background-color: transparent;
}

.sdk-button-wrapper .hs-button span {
  left: 0px;
  display: inline-block;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: opacity .45s cubic-bezier(0.25,1,0.33,1),transform .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: opacity .45s cubic-bezier(0.25,1,0.33,1),-webkit-transform .45s cubic-bezier(0.25,1,0.33,1);
  position: relative;
}

/**.sdk-button-wrapper .hs-button:hover span {
  -webkit-transform: translateX(-18px);
  transform: translateX(-18px);
}

.sdk-button-wrapper .hs-button:hover i {
  opacity: 1;
  -ms-filter: "alpha(opacity=100)";
  -ms-transform: translateX(6px);
  -webkit-transform: translateX(6px);
  transform: translateX(6px);
}**/

.sdk-content-columns:before {
  background-color: #fcfcfc;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  margin-left: -50vw;
  left: 50%;
  width: 100vw;
}

@media (min-width:1000px) {
  .sdk-button-inner {
    width: 65.95744680199999%;
  }

  .sdk-button-wrapper .sdk-button-area>div {
    width: 48.93617020799999%;
  }
}

@media (max-width:1300px) and (min-width:1000px) {
  .sdk-button-wrapper h2 {
    font-size: 20.4px;
    line-height: 30.6px;
  }
}

@media (max-width:1000px) {
  .sdk-button-inner {
    padding: 6%;
    margin: 26px 0 25px;
  }

  .sdk-button-wrapper h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }

  .sdk-button-wrapper .hs-button {
    margin-top:26px;
    margin-bottom:37px;
  }
}

@media (max-width:690px) {
  .sdk-button-wrapper h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
}

div#sdk-faq-content {
  background-color: #fcfcfc;
}
.sdk-button-wrapper {
  background-color: #fcfcfc;
}




/*===================================== specialists Page ===================================== */

.specialists-top-area .dnd-section {
  padding-top: calc(100vw * 0.06);
  padding-bottom: calc(100vw * 0.09);
}
.specialists-top-area .span10 {
  padding: 0 3%;
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}
.nectar_icon_wrap {
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
  text-align: center;
}

.nectar_icon_wrap > div {
  height: 76px;
  width: 76px;
  border-width: 2px;
  padding: 10px;
}

.nectar_icon_wrap i {
  font-family: 'iconsmind' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  display: inline-block;
  color: #2ca895;
  background: linear-gradient(to bottom right,#2ca895,#3c73b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /*   font-size: 0 !important; */
}

.nectar_icon_wrap[data-style*="default"][data-color*="extra-color-gradient"] .nectar_icon i:before {
  vertical-align: top;
}

.nectar_icon_wrap i:before {
  line-height: inherit;
}

.iconsmind-Approved-Window:before {
  content: "\e919";
}

.specialists-top-area .span10 .widget-type-rich_text {
  padding: 0 5%;
}

.dataManagement-area .dnd-section {
  padding-top: calc(100vw * 0.08);
  padding-bottom: calc(100vw * 0.09);
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  box-sizing: content-box!important;
  -moz-box-sizing: content-box!important;
  -webkit-box-sizing: content-box!important;
  width: 100%;
}
.specialists-top-area .span1:last-child,
.dataManagement-area .span1:last-child,
.dataTraceability-area .span1:last-child,
.dataKit-area .span1:last-child,
.dataKit-area .span3:last-child{
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.dataManagement-area .span10 {
  padding: 0 6%;
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.iconsmind-Data-Shield:before {
  content: "\ee41";
}

.specialists-area h2 {
  font-size: 22px;
  line-height: 25px;
  text-align: left;
  font-family: Muli;
  font-weight: 400;
  font-style: normal;
  color: #333333;
  margin-top: 0;
}
.dataManagement-area h2 {
  padding-top: 25px;
}
.specialists-area p:last-child {
  padding: 0;
}
.dataAnalysis-area .dnd-section {
  padding-top: calc(100vw * 0.09);
  padding-bottom: calc(100vw * 0.08);
}
.dataAnalysis-area .span10,
.dataTraceability-area .span10,
.dataKit-area .span10,
.dataKit-area .span2{
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
  padding: 0 4%;
}

.dataAnalysis-area h2 {
  padding-bottom: 24px;
}
.dataAnalysis-area .dnd-row:nth-child(even) .span10 {
  padding: 4%;
  padding-bottom: 0;
}
.dataAnalysis-area .span5,
.dataTraceability-area .span7,
.dataTraceability-area .span4,
.dataKit-area .span5{
  padding: 0 4%;
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.iconsmind-File-TextImage:before {
  content: "\eeb5";
}

.dataAnalysis-area .dnd-row:nth-child(even) {
  padding-bottom: 2%;
}

.iconsmind-Monitor-Analytics:before {
  content: "\eb2f";
}

.dataTraceability-area .dnd-section {
  padding-top: calc(100vw * 0.07);
  padding-bottom: calc(100vw * 0.08);
}

.iconsmind-Trace:before {
  content: "\eaf1";
}

.dataTraceability-area .span10 {
  padding: 4% 4% 0;
}

.dataTraceability-area .nectar_icon_wrap i:before {
  font-size: 40px;
}

.dataTraceability-area .span7 {
  padding: 0 4%;
}
.dataKit-area .dnd-section {
  padding-top: calc(100vw * 0.08);
  padding-bottom: calc(100vw * 0.08);
}

.dataKit-area .dnd-row:nth-child(even) {
  padding-top: 3%;
  padding-bottom: 2%;
  margin-bottom: 24px;
}

.dataKit-area .span2 {
  text-align: center;
}

.iconsmind-Sharethis:before {
  content: "\eac0";
}

.iconsmind-Dashboard:before {
  content: "\e997";
}

.iconsmind-Pen-2:before {
  content: "\efee";
}

.specialists-area h4 {
  text-align: center;
  margin: 0;
  padding-top: 5px;
}
/* .dataKit-area .nectar_icon_wrap i:before{
font-size: inherit;
} */
.specialists-area h4 {
  word-break: normal;
}
.nectar_icon_wrap i > span {
  display: none;
}

.dataKit-area .span12.dnd-column > .dnd-row:last-child {
  padding-top: 4%;
  padding-bottom: 0px;
}

.specialists-testimonial .testimonial-section .dnd-section {
  padding-top: calc(100vw * 0.09);
  padding-bottom: calc(100vw * 0.09);
}

.specialists-testimonial .testimonialSlider .testimonialTitle h2 {
  font-family: Lato;
}

.specialists-bottom-area.bottom-section .dnd-section {
  padding-top: calc(100vw * 0.10);
  padding-bottom: calc(100vw * 0.10);
}

.specialists-bottom-area.bottom-section .span5.dnd-column a {
  background-color: rgb(24, 151, 186);
  visibility: visible;
}
.specialists-bottom-area.bottom-section .span5.dnd-column a:hover{
  background-color: rgb(24, 151, 186);
  opacity: 0.87;
  color: #fff;
}
.hs-research-organizations-page .specialists-top-area .span10 {
  padding: 0;
}

.hs-research-organizations-page .specialists-top-area .span10 .widget-type-rich_text {
  padding: 0;
}

.hs-research-organizations-page .specialists-top-area .dnd-section {
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.05);
}

.hs-research-organizations-page .specialists-top-area .span10 > .dnd-row:first-child {
  margin-bottom: 24px;
}

.hs-research-organizations-page .specialists-top-area .span10 > .dnd-row:last-child {
  padding-top: 6%;
}

.hs-research-organizations-page .specialists-top-area .span10 .span4:not(:first-child) {
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.hs-research-organizations-page .specialists-top-area .span10 .span4:nth-child(even) {
  padding: 4%;
}

.hs-research-organizations-page .nectar_icon_wrap > div {
  padding: 20px;
}

.iconsmind-Windows-2:before {
  content: "\e947";
}

.iconsmind-Money-2:before {
  content: "\efb1";
}

.hs-research-organizations-page .specialists-top-area h2 {
  background-image: linear-gradient(to right,#2ca895,#3c73b8);
  color: #2ca895;
  background: linear-gradient(to bottom right,#2ca895,#3c73b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-family: Muli;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
}
.hs-research-organizations-page .span10 .nectar_icon_wrap {
  margin-bottom: 0;
}
.hs-research-organizations-page .dataManagement-area .span10 {
  padding: 0 2%;
}
.hs-research-organizations-page .dataManagement-area .dnd-section {
  padding-bottom: calc(100vw * 0.08);
}

.hs-research-organizations-page .dataManagement-area .span10 h2 {
  padding: 0;
}
.ro-dataManagement-area .span12.dnd-column > .dnd-row:nth-child(even ) > div > .span10 {
  padding: 2%;
}

.iconsmind-Clock-Forward:before {
  content: "\ea1b";
}

.iconsmind-Window-2:before {
  content: "\e946";
}

.ro-dataManagement-area .span5 {
  display: block !important;
  padding: 0 2%;
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}
.iconsmind-Refresh-Window:before {
  content: "\e932";
}

.ro-dataAnalysis-area .span9,
.collaboration-area .span1,
.specialists-area .span2{
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.ro-dataAnalysis-area .span9 {
  padding: 0 2%;
}
.ro-dataAnalysis-area.dataAnalysis-area .dnd-section {
  padding-top: calc(100vw * 0.07);
  padding-bottom: calc(100vw * 0.08);
}

.ro-dataAnalysis-area.dataAnalysis-area .span5 {
  padding: 0 2%;
  display: block !important;
}

.collaboration-area .dnd-section:first-child {
  padding-top: calc(100vw * 0.04);
  padding-bottom: 0px;
}

.collaboration-area .dnd-section:last-child {
  padding-top: calc(100vw * 0.01);
  padding-bottom: calc(100vw * 0.04);
}

.collaboration-area .span12.dnd-column > .dnd-row:first-child .span9 {
  padding: 2%;
}

.collaboration-area .span9,
.collaboration-area .span5{
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
  padding: 0 2%;
}

.collaboration-area .span5 {
  display: block !important;
}
.collaboration-area .span12.dnd-column > .dnd-row:last-child,
.collaboration-area .span12.dnd-column > .dnd-row:nth-child(3) {
  padding-top: 3%;
  padding-bottom: 0px;
}

.iconsmind-Doctor:before {
  content: "\ebcb";
}
.iconsmind-Conference:before {
  content: "\ebc7";
}
.collaboration-area .dnd-section:last-child .span2:last-child,
.specialists-area .span9{
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}
.collaboration-area .dnd-section:last-child .span12.dnd-column > .dnd-row:first-child .span9 {
  padding: 3%;
}

.collaboration-area .dnd-section:last-child .span12.dnd-column > .dnd-row:last-child {
  padding-top: 0;
}

.collaboration-area .dnd-section:last-child .span4,
.specialists-top-area .span8{
  display: block !important;
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.collaboration-area .dnd-section:last-child .span4:first-child {
  margin-left: 0;
}

.collaboration-area .dnd-section:last-child .span4:nth-child(even) {
  padding: 3%;
}

.collaboration-area .divider-small-border.completed {
  margin-top: 25px;
  width: 95px;
  margin-bottom: 25px;
  margin-left: 0;
}

.collaboration-area .dnd-section:last-child .span9 > div {
  padding-top: 6%;
}


.dataSecurity-area .dnd-section {
  padding-top: calc(100vw * 0.04);
  padding-bottom: calc(100vw * 0.06);
}

.iconsmind-Security-Block:before {
  content: "\eb45";
}
.dataSecurity-area .span9 {
  padding: 0 2%;
}

.dataSecurity-area .span12.dnd-column > .dnd-row:nth-child(even) .span9 {
  padding: 2%;
}
.dataSecurity-area .span5{
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
  padding: 0 2%;
  display: block !important;
}
.efficiency-area .dnd-section {
  padding-top: calc(100vw * 0.06);
  padding-bottom: calc(100vw * 0.08);
}
.efficiency-area.specialists-area .span9 {
  padding: 0 3%;
}

.hs-research-organizations-page .specialists-top-area .span8 > .dnd-row:last-child {
  padding-top: 6%;
  padding-bottom: 0px;
}

.hs-research-organizations-page .specialists-top-area .span4{
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
  display: block !important;
}
.hs-research-organizations-page .specialists-top-area .span4:first-child {
  margin-left: 0;
}

.hs-research-organizations-page .specialists-top-area .span4 {
  display: block !important;
}

.hs-research-organizations-page .specialists-top-area .span4:nth-child(2) {
  padding: 4%;
}
.hs-research-organizations-page .specialists-top-area .span4 .nectar_icon_wrap {
  margin: 0;
}
.specialists-testimonial.testimonial-section .dnd-section {
  padding-top: calc(100vw * 0.09);
  padding-bottom: calc(100vw * 0.09);
}
.hs-pharmaceutical-companies-page .specialists-top-area .dnd-section {
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.05);
}

.hs-pharmaceutical-companies-page .specialists-top-area .span6 {
  padding: 6%;
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
}

.hs-pharmaceutical-companies-page .specialists-top-area .span6 > .dnd-row:last-child {
  padding: 6% 6% 0;
}

.hs-pharmaceutical-companies-page .specialists-top-area .span6 .span4:not(:nth-child(even)) {
  padding: 0 4%;
}

.hs-pharmaceutical-companies-page .specialists-top-area .span6 .span4:not(:first-child),
.hs-pharmaceutical-companies-page .specialists-top-area .span3{
  margin-left: 2.1%;
}

.hs-pharmaceutical-companies-page .specialists-top-area .span6 .span4 {
  position: relative;
  min-height: 1px;
  box-sizing: border-box;
}

.iconsmind-Cursor-Select:before {
  content: "\ece8";
}
.hs-pharmaceutical-companies-page .nectar_icon_wrap > div {
  padding: 20px;
}

.hs-pharmaceutical-companies-page .specialists-top-area .nectar_icon_wrap {
  margin: 0;
}
.hs-pharmaceutical-companies-page .specialists-top-area .span3:first-child{
  margin-left:0;
}
.pc-dataManagement-area .dnd-section {
  padding-top: calc(100vw * 0.09);
  padding-bottom: calc(100vw * 0.09);
}

.pc-dataManagement-area .span9 {
  padding: 0 4%;
}
.iconsmind-Upload-toCloud:before {
  content: "\f0e7";
}

.pc-dataManagement-area .span5 {
  padding: 0 4%;
  display: block !important;
}
.pc-dataManagement-area .span5,
.pc-dataAnalysis-area .span5,
.specialists-area .span1:not(:first-child){
  position: relative;
  min-height: 1px;
  margin-left: 2.1%;
  box-sizing: border-box;
  display: block !important;
}
.pc-dataAnalysis-area .dnd-section {
  padding-top: calc(100vw * 0.07);
  padding-bottom: calc(100vw * 0.09);
}

.pc-dataAnalysis-area .span12.dnd-column > div:first-child {
  padding-top: 0px;
  padding-bottom: 2%;
}

.pc-dataAnalysis-area .span12.dnd-column > div:nth-child(2) {
  padding-top: 0px;
  padding-bottom: 4%;
}
.pc-dataAnalysis-area .span9,.pc-dataAnalysis-area .span5 {
  padding: 0 2%;
}
.pc-dataAnalysis-area .span12.dnd-column > div:last-child {
  padding-top: 2%;
  padding-bottom: 0px;
}

.pc-collaboration-area.collaboration-area .dnd-section:first-child {
  padding-top: calc(100vw * 0.08);
  padding-bottom: 0px;
}

.pc-collaboration-area.collaboration-area .span12.dnd-column > .dnd-row:first-child .span9,.pc-collaboration-area .span9 {
  padding: 0 2%;
}

.pc-collaboration-area .span12.dnd-column > .dnd-row:nth-child(2) {
  padding-top: 3%;
  padding-bottom: 2%;
}

.pc-collaboration-area.collaboration-area .span12.dnd-column > .dnd-row:nth-child(3) {
  padding-top: 0;
}

.pc-collaboration-area .span12.dnd-column > .dnd-row:nth-child(4) {
  padding-top: 2%;
}

.pc-collaboration-area.collaboration-area .span12.dnd-column > .dnd-row:last-child {
  padding-top: 2%;
  padding-bottom: 0px;
}
.pc-collaboration-area .dnd-section:last-child .span9 {
  padding: 0 3%;
}

.pc-collaboration-area .dnd-section:last-child {
  padding-top: calc(100vw * 0.05);
  padding-bottom: calc(100vw * 0.09);
}

.pc-collaboration-area.collaboration-area .dnd-section:last-child .span4:nth-child(even) {
  padding: 0;
}

.pc-collaboration-area .dnd-section:last-child .divider-small-border {
  margin-top: 35px;
  width: 95px;
  height: 1px;
  margin-bottom: 35px;
  margin-left: 0;
}
.pc-collaboration-area.collaboration-area .dnd-section:last-child .span9 > div {
  padding: 0;
}
.pc-dataSecurity-area .dnd-section {
  padding-top: calc(100vw * 0.08);
  padding-bottom: calc(100vw * 0.08);
}
.pharmaceutical-companies-banner .particles-banner .particles-heading h1 {
  color: #3f3f3f!important;
}


@media (min-width: 1000px){
  .specialists-top-area .span1,
  .hs-research-organizations-page .specialists-area.dataManagement-area .span1:last-child,
  .ro-dataAnalysis-area .span2,
  .specialists-area .span2{
    float: left;
    width: 23.404255317%;
  }
  .specialists-top-area .span10,
  .dataTraceability-area .span7,
  .dataKit-area .span10,
  .hs-research-organizations-page .dataManagement-area .span10{
    float: left;
    width: 48.93617020799999%;
  }

  .specialists-area .span9,
  .specialists-top-area .span8,
  .hs-pharmaceutical-companies-page .specialists-top-area .span6{
    float: left;
    width: 48.93617020799999%;
  }

  .dataKit-area .span2,
  .ro-dataManagement-area .span12.dnd-column > .dnd-row:last-child .span1:last-child,
  .specialists-area .span1 {
    float: left;
    width: 14.89361702%;
  }
  .collaboration-area .span1,
  .collaboration-area .dnd-section:last-child .span2:last-child{
    float: left;
    width: 14.89361702%;
  }
  .dataManagement-area .span10,
  .dataAnalysis-area .span10,
  .dataTraceability-area .span10{
    float: left;
    width: 65.95744680199999%;
  }
  .dataAnalysis-area .span5,
  .dataTraceability-area .span4,
  .dataKit-area .span5,
  .hs-research-organizations-page .specialists-top-area .span10 .span4,
  .ro-dataManagement-area .span5{
    float: left;
    width: 31.914893614%;
  }
  .dataKit-area .span3,
  .hs-pharmaceutical-companies-page .specialists-top-area .span3{
    float: left;
    width: 23.404255317%;
  }

  .collaboration-area .dnd-section:last-child .span4,
  .specialists-area .span5,
  .hs-research-organizations-page .specialists-top-area .span4,
  .hs-pharmaceutical-companies-page .specialists-top-area .span6 .span4{
    float: left;
    width: 31.914893614%; 
  }
  .collaboration-area .dnd-section:last-child .span4 h2 {
    font-size: 16px;
    line-height: 25px;
    text-align: left;
    font-family: Muli;
    font-weight: 400;
    font-style: normal;
    color: #333333;
  }
  .collaboration-area .dnd-section:last-child .span4:last-child h2 {
    font-size: 17px;
    line-height: 25px;
  }
  .pc-dataAnalysis-area .span5{
    float: left;
    width: 31.914893614%; 
  }
  .pc-collaboration-area .dnd-section:last-child .span4:last-child h2 {
    font-size: 16px;
  }

}


@media(max-width:1000px){
  .specialists-area .dnd-section > .row-fluid {
    display: block !important;
  }

  .specialists-top-area .span1 {
    width: 100%;
    margin-bottom: 25px;
  }

  .specialists-top-area .span10 {
    margin-left: 0;
    width: 100%;
  }
  .specialists-area h2{
    font-size: 19.2px;
    line-height: 28.8px;
  }
  .specialists-area .span12.dnd-column > div > div {
    display: block !important;
  }

  .dataManagement-area .span10 {
    margin-left: 0;
    padding: 0 6%;
    width: 100%;
  }

  .dataManagement-area .span1,
  .dataAnalysis-area .span1 {
    width: 100%;
    margin-bottom: 25px;
  }

  .dataManagement-area h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }

  .dataManagement-area .span10 > div > div > div > .dnd-row:last-child {
    padding-top: 49px;
  }

  .dataAnalysis-area .span10,
  .dataTraceability-area .span10,
  .dataKit-area .span10 {
    width: 100%;
    margin-left: 0;
  }

  .dataAnalysis-area .dnd-row:nth-child(even) .span10 {
    padding: 6%;
    padding-bottom: 0;
  }

  .dataAnalysis-area .span5, 
  .dataTraceability-area .span7, 
  .dataTraceability-area .span4,
  .dataKit-area .span5 {
    width: 100%;
    margin-left: 0;
    margin-bottom: 25px;
  }

  .dataAnalysis-area .span5:last-of-type {
    margin-left: 0;
    margin-bottom: 0;
  }

  .dataAnalysis-area .span5:nth-child(3) {
    margin-bottom: 0;
  }

  .dataAnalysis-area .span1:last-child {
    margin-bottom: 0;
  }
  .dataTraceability-area .span10 {
    padding: 6% 6% 0;
  }

  .dataTraceability-area .span1:not(:last-child) {
    margin-bottom: 25px;
  }

  .dataTraceability-area .span1 {
    width: 100%;
  }

  .dataTraceability-area .span1:last-child {
    margin: 0;
  }

  .dataTraceability-area .span4:last-child {
    margin-bottom: 0;
  }

  .dataKit-area .span1:last-child {
    margin-bottom: 0;
  }

  .dataKit-area .span1 {
    width: 100%;
    margin-bottom: 25px;
  }
  .dataKit-area .span3 {
    width: 100%;
    margin-bottom: 25px;
  }

  .dataKit-area .span3:last-child {
    margin-bottom: 0;
  }
  .dataKit-area .span2:nth-child(4) {
    margin-left: 0;
  }

  .dataKit-area .dnd-row:nth-child(even) {
    margin-top: 24px;
  }
  .dataKit-area .dnd-row:nth-child(even) {
    margin-bottom: 50px;
  }
  .hs-research-organizations-page .specialists-top-area .span4 .nectar_icon_wrap {
    margin: 0;
  }

  .ro-dataAnalysis-area .span9, .collaboration-area .span1, .specialists-area .span2 {
    width: 100%;
    margin-bottom: 25px;
  }

  .collaboration-area .dnd-section:last-child .span4, .specialists-top-area .span8 {
    width: 100%;
    margin-left: 0;
  }

  .hs-research-organizations-page .specialists-top-area .span4 {
    width: 100%;
    margin-left: 0;
  }

  .hs-research-organizations-page .specialists-top-area .span4:not(:last-child) {
    margin-bottom: 25px;
  }

  .hs-research-organizations-page .specialists-top-area .span4:nth-child(2) {
    padding: 6%;
  }

  .hs-research-organizations-page .specialists-area.specialists-top-area .span2:last-child {
    margin-bottom: 17px;
  }

  .ro-dataManagement-area .span12.dnd-column > .dnd-row:nth-child(even ) > div > .span10 {
    padding: 3%;
  }

  .ro-dataManagement-area .span5 {
    width: 100%;
    margin-left: 0;
    margin-bottom: 25px;
  }

  .ro-dataManagement-area.dataManagement-area .span12.dnd-column > div:last-child .span1:last-child {
    margin-bottom: 0;
  }

  .ro-dataAnalysis-area .span9 {
    margin-bottom: 25px;
    margin-left: 0;
  }

  .hs-research-organizations-page .specialists-area.ro-dataAnalysis-area .span2:last-child {
    margin-bottom: 0;
  }

  .ro-dataAnalysis-area .span12.dnd-column > div:nth-child(even) > div .span9 {
    padding: 3%;
  }

  .specialists-area.ro-dataAnalysis-area h2 {
    padding: 0;
  }

  .dataAnalysis-area .dnd-row:nth-child(even) {
    padding-bottom: 0;
  }

  .ro-dataAnalysis-area.dataAnalysis-area .span5:nth-child(3) {
    margin-bottom: 25px;
  }

  .collaboration-area .span9, .collaboration-area .span5 {
    width: 100%;
    margin-left: 0;
  }

  .collaboration-area .span12.dnd-column > .dnd-row:first-child .span9 {
    padding: 3%;
  }

  .collaboration-area .span5:not(:last-child) {
    margin-bottom: 25px;
  }

  .collaboration-area .span1:last-child {
    margin-bottom: 0;
  }

  .collaboration-area .dnd-section:last-child .span12.dnd-column > .dnd-row:first-child .span9 {
    padding: 6%;
  }

  .collaboration-area .dnd-section:last-child .span9 > div > div {
    display: block !important;
  }
  .collaboration-area .dnd-section:last-child .span4:nth-child(even) {
    padding: 6%;
    margin-bottom: 25px;
  }

  .collaboration-area .dnd-section:last-child .span4:not(:last-child) {
    margin-bottom: 25px;
  }

  .dataSecurity-area .span9,.dataSecurity-area .span1 {
    width: 100%;
    margin-left: 0;
  }

  .dataSecurity-area .span9 {
    margin: 25px 0;
  }

  .dataSecurity-area .span2 {
    margin-bottom: 0 !important;
  }

  .dataSecurity-area .span12.dnd-column > .dnd-row:nth-child(even) .span9 {
    padding: 3%;
  }

  .dataSecurity-area .span5 {
    width: 100%;
    margin-left: 0;
    margin: 25px 0;
  }

  .dataSecurity-area .span5:nth-child(3) {
    margin-top: 0;
  }

  .efficiency-area.specialists-area .span9,
  .efficiency-area.specialists-area .span1 {
    margin-left: 0;
    width: 100%;
  }

  .efficiency-area.specialists-area .span9 {
    margin: 25px 0;
  }

  .efficiency-area .span12.dnd-column > div:last-child .span9 {
    margin: 0 !important;
  }
  .hs-pharmaceutical-companies-page .specialists-top-area .span3 {
    width: 100%;
  }

  .hs-pharmaceutical-companies-page .specialists-top-area .span6 {
    width: 100%;
    padding: 10%;
    margin: 25px 0;
  }

  .hs-pharmaceutical-companies-page .specialists-top-area .span6 > .dnd-row:last-child {
    padding: 10% 10% 0;
  }

  .hs-pharmaceutical-companies-page .specialists-top-area .span6 .span4 {
    width: 100%;
    margin-left: 0 !important;
  }

  .hs-pharmaceutical-companies-page .specialists-top-area .span6 .span4:not(:last-child) {
    margin-bottom: 25px;
  }

  .hs-pharmaceutical-companies-page .specialists-top-area .span6 .span4 .divider-small-border {
    margin-left: 0;
  }

  .pc-dataManagement-area .span1, 
  .pc-dataManagement-area .span9,
  .pc-dataManagement-area .span5 {
    width: 100%;
    margin-left: 0;
  }

  .pc-dataManagement-area .span9,
  .pc-dataManagement-area .span1:not(:last-child),
  .pc-dataManagement-area .span5 {
    margin-bottom: 24px;
  }
  .pc-dataManagement-area .span2:last-child {
    margin-bottom: 0;
  }

  .specialists-area .span9, 
  .specialists-area .span1,
  .pc-dataAnalysis-area .span5 {
    width: 100%;
    margin-left: 0;
  }

  .specialists-area .span2:last-child {
    margin-bottom: 0;
  }
  .specialists-area .span1:last-child {
    margin-bottom: 0;
  }
  .hs-covid19-pandemic .covid19-topContent-area .span10 {
    margin: 28px 0 24px;
  }



}



@media only screen and (min-width: 690px) and (max-width: 1000px){
  .dataKit-area .span2{
    width: 31.2%;
    margin-left: 3.1%;
    float: left;
  }
  .specialists-area h4{
    font-size: 16.2px;
    line-height: 24.3px;
  }
}


@media only screen and (max-width: 690px){
  .dataManagement-area h2,
  .specialists-area h2{
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .dataManagement-area h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }

  .specialists-area.dataKit-area .dnd-row:nth-child(even) > div {
    display: none !important;
  }


}


.advisory-board .advisory-column4.fox_headshot_2017_blue {
  padding-left: 7%;
  padding-right: 7%;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */

div#header-space {
  height: 82px;
}
.hasBanner div#header-space {
  display: none;
}
header.header {
  width: 100%;
  top: 0px;
  left: 0px;
  position: fixed;
  padding: 28px 0px 0px 0px;
  z-index: 9999;
  transition: border-color 0.30s ease;
  -webkit-transition: border-color 0.30s ease;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  line-height: 25px;
  transition: all 0.4s ease;
}
.headerInner {
  position: relative;
  z-index: 9998;
  width: 100%;
}
.header__container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 90px;
}
.header__row {
  position: relative;
}
.headerColumn {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}
.header__row:before, .header__row:after {
  content: "";
  display: table;
}
.header__row:after {
  clear: both;
}

.header__row.head_top {
    text-align: right;
    margin-bottom:5px;
}

.head_top a {
    font-size: 14px;
}

@media(max-width:1150px) {
  .desktop_login {
    display:none
  }
  .login_mobile {
    padding-top: 12px;
    padding-bottom:10px
  }
}

.headerColumn3 {
  width: auto;
  margin-right: 2%;
}
.headerColumn9 {
  float: right;
  text-align: center!important;
  width: 100%;
  z-index: 1;
}
.headerLogo {
  z-index: 10;
  position: absolute;
  left: 0;
  transition: opacity 0.4s ease;
}
.headerLogo.fixed {
  opacity: 0;
  -ms-filter: 'alpha(opacity=0)';
}
.headerLogo.normal {
  opacity: 1;
  -ms-filter: 'alpha(opacity=100)';
}
.headerLogo img {
  text-indent: -9999px;
  max-width: none;
  width: auto;
  margin-bottom: 0px;
  display: block;
  transition: opacity 0.4s ease;
  height: 26px;
  width: auto !important;
  transition: all 0.4s ease;
}
.headerTrigger {
  display: none;
}
.custom-menu-primary .hs-menu-wrapper > ul {
  padding: 0;
  margin: 0;
  float: right;
  overflow: visible!important;
  transition: padding 0.8s ease,margin 0.25s ease;
  min-height: 1px;
  line-height: 1px;
  left: 0;
  position: relative;
  text-align: center!important;
  width: 100%;
  z-index: 1;
}
.custom-menu-primary .hs-menu-wrapper > ul > li {
  margin: 0;
  padding: 0;
  z-index: 10;
  line-height: 0px!important;
  font-size: 12px!important;
  position: relative;
  list-style: none;
  float: none;
  display: inline-block;
  transition: opacity 0.75s ease;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a {
  z-index: 10;
  position: relative;
  text-decoration: none;
  margin: 0 1px;
  display: block;
  font-family: Noto-sans, sans-serif;
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  margin-bottom: -1px;
  padding-left: 0;
  padding-right: 0;
  margin-left: 15px;
  margin-right: 15px;
  transition: opacity 0.2s ease,color 0.2s ease;
  padding-bottom: 29px;
  padding-top: 1px;
  transition: all 0.4s ease;
}
.custom-menu-primary .hs-menu-wrapper > ul ul {
  list-style: none outside none;
  margin: 0;
  position: absolute;
  box-shadow: 0px 19px 35px rgb(0 0 0 / 11%);
  -webkit-box-shadow: 0px 19px 35px rgb(0 0 0 / 11%);
  opacity: 0!important;
  pointer-events: none;
  -ms-transition: none;
  -webkit-transition: none;
  transition: none;
  display: block!important;
  padding: 20px;
  width: 20em;
  text-align: left;
  top: calc(100% + 1px);
}
.custom-menu-primary .hs-menu-wrapper > ul ul li {
  line-height: 0px!important;
  font-size: 12px!important;
  position: relative;
  width: 100%;
  font-weight: normal;
  list-style: none;
  float: right;
  opacity: 0;
  -ms-transform: translateY(13px);
  -webkit-transform: translateY(13px);
  transform: translateY(13px);
  -ms-transition: transform 0.65s cubic-bezier(0.2,.8,.25,1),opacity 0.65s cubic-bezier(0.2,.8,.25,1);
  transition: transform 0.65s cubic-bezier(0.2,.8,.25,1),opacity 0.65s cubic-bezier(0.2,.8,.25,1);
  -webkit-transition: transform 0.65s cubic-bezier(0.2,.8,.25,1),opacity 0.65s cubic-bezier(0.2,.8,.25,1);
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 6px 6px;
  transition: none;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 22px;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a:hover {
  color: #00758C;
}
.custom-menu-primary .hs-menu-wrapper > ul > li:hover > ul {
  pointer-events: auto;
  opacity: 1!important;
  -ms-transform: translateY(0px) translateX(0px);
  -webkit-transform: translateY(0px) translateX(0px);
  transform: translateY(0px) translateX(0px)!important;
}
.custom-menu-primary .hs-menu-wrapper > ul > li:hover > ul > li {
  opacity: 1;
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
[class^="icon-"]:before, [class*=" icon-"]:before {
  text-decoration: inherit;
  speak: none;
}
.icon-angle-down:before {
  content: "\f107";
}
.custom-menu-primary.right .hs-menu-wrapper > ul > li {
  text-align: right;
  float: right;
}
.custom-menu-primary.right .hs-menu-wrapper > ul > li > a {
  margin-right: 0!important;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:after {
  -ms-transition: -webkit-transform .3s ease-out,border-color .3s ease-out;
  -webkit-transition: -webkit-transform .3s ease-out,border-color .3s ease-out;
  transition: transform .3s ease-out,border-color .3s ease-out;
  position: absolute;
  display: block;
  bottom: -6px;
  left: 0;
  width: 100%;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  border-top: 2px solid #000;
  content: '';
  padding-bottom: inherit;
  border-color: #ffffff;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover:after,
.custom-menu-primary .hs-menu-wrapper > ul > li > a.active-branch:after,
.custom-menu-primary .hs-menu-wrapper > ul > li.active-branch > a:after,
body.noBanner .custom-menu-primary .hs-menu-wrapper > ul > li:hover > a:after{
  backface-visibility: hidden;
  -ms-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
body.scrolled .custom-menu-primary .hs-menu-wrapper > ul > li.active-branch > a:after,
body.noBanner .custom-menu-primary .hs-menu-wrapper > ul > li.active-branch > a:after,
body.noBanner .custom-menu-primary .hs-menu-wrapper > ul > li:hover > a:after{
  border-color: #00758C!important;
}

/* body:not(.noBanner) .head_top a {
    color: #fff;
} */

.custom-menu-primary.right .hs-menu-wrapper > ul > li > a:after {
  -ms-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  border-color: #fff!important;
      backface-visibility: hidden;
}

body.noBanner .custom-menu-primary.right .hs-menu-wrapper > ul > li > a:after {
  border-color: #00758C!important;
      backface-visibility: hidden;
    -ms-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.custom-menu-primary.right .hs-menu-wrapper > ul > li > ul {
  right: 0;
  left: auto;
  text-align: right;
  margin-right: -20px!important;
  width: 220px!important;
  top: 100%;
}
.custom-menu-primary.right .hs-menu-wrapper > ul {
  min-height: 1px;
  line-height: 1px;
  float: right;
  right: 0;
  height: 100%;
  z-index: 10;
  position: absolute;
  display: block!important;
  overflow: visible!important;
  z-index: 9999;
}
.custom-menu-primary.left {
  left: 0;
  position: relative;
  text-align: center!important;
  width: 100%;
  z-index: 1;
  float: right;
  overflow: visible!important;
  transition: padding 0.8s ease,margin 0.25s ease;
  min-height: 1px;
  line-height: 1px;
}
.custom-menu-primary.right {
  position: relative;
  z-index: 10;
}
.noBanner .headerLogo.fixed {
  opacity: 1;
  -ms-filter: 'alpha(opacity=100)';
}
.noBanner .headerLogo.normal {
  opacity: 0;
  -ms-filter: 'alpha(opacity=0)';
}

@media(min-width: 1001px){
  .mobileMenu{
    display: none;
  }
  .scrolled .headerLogo.fixed {
    opacity: 1;
    -ms-filter: 'alpha(opacity=100)';
  }
  .scrolled .headerLogo.normal {
    opacity: 0;
    -ms-filter: 'alpha(opacity=0)';
  }
  .scrolled header.header {
    padding-top: 16px;
  }
  .scrolled .headerLogo img {
    height: 30px;
    margin-top: -5px;
  }
  .scrolled .custom-menu-primary .hs-menu-wrapper > ul > li > a {
    padding-bottom: 14px;
    padding-top: 0.128px;
  }


}


@media(min-width: 1151px){
  header.header.no_nav {
    min-height: 81px;
  }
  body.scrolled header.header.no_nav {
    min-height: 53px;
  }



}




@media only screen and (min-width: 690px) and (max-width: 1000px){
  .header__container {
    padding-left: 0;
    padding-right: 0;
  }


}

@media only screen and (max-width: 690px){
  .header__container {
    padding-left: 10px;
    padding-right: 10px;
  }

}

@media only screen and (min-width: 480px) and (max-width: 690px){
  .header__container {
    padding-left: 0;
    padding-right: 0;
  }

}








@media(max-width: 1150px){
  div#header-space {
    display: none;
  }
  .headerColumn3 {
    margin-bottom: 25px;
    width: 85%!important;
  }
  .headerLogo a {
    top: 6px!important;
    left: 6px!important;
    width: auto;
    max-width: none;
    display: block;
    line-height: 22px;
    font-size: 22px;
    letter-spacing: -1.5px;
    margin-top: 7px!important;
  }

  .headerColumn9 {
    margin-bottom: 0px;
    width: 100%!important;
    min-height: 50px;
    line-height: 28px;
  }
  .custom-menu-primary {
    display: none!important;
  }
  .headerTrigger {
    position: absolute;
    right: 0px;
    top: 50%;
    margin-bottom: 10px;
    margin-top: -5px;
    z-index: 10000;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    display: block!important;
  }
  a.mobile-trigger {
    position: relative;
    right: 0;
    display: block!important;
  }
  .mobile-trigger span {
    -webkit-transform-origin: center;
    transform-origin: center;
    display: block;
    transition: -webkit-transform 0.33s 0s ease;
    transition: transform 0.33s 0s ease;
    height: 20px;
  }
  .mobile-trigger span i.lines-button {
    font-family: Noto-sans, sans-serif;
    font-weight: 400;
    font-style: italic;
    cursor: pointer;
    line-height: 0px!important;
    top: 10px;
    position: relative;
    font-size: 0px!important;
    user-select: none;
    display: block;
    width: 22px!important;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    color: #313233;
  }
  .mobile-trigger span i.lines {
    font-family: Noto-sans, sans-serif;
    font-weight: 400;
    font-style: italic;
    position: relative;
    display: block;
    height: 2px;
    width: 22px!important;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    line-height: 34px;
    font-size: 16px;
    color: #313233!important;
    line-height: 34px;
  }
  .mobile-trigger span i.lines-button:after {
    content: '';
    transform: scale(1,1);
    -webkit-transform: scale(1,1);
    transition: transform 0.45s ease,opacity 0.2s ease,background-color 0.2s linear;
    -webkit-transition: -webkit-transform 0.45s ease,opacity 0.2s ease,background-color 0.2s ease;
    position: absolute;
    left: 0;
    display: inline-block;
    height: 2px!important;
    width: 22px!important;
    top: 0px!important;
    background-color: #292929!important;
  }
  .mobile-trigger span i.lines:before {
    position: absolute;
    left: 0;
    content: '';
    background: #ecf0f1;
    display: block;
    height: 2px!important;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: -webkit-transform 0.45s ease,background-color 0.2s ease,opacity 0.2s ease;
    transition: transform 0.45s ease,background-color 0.2s ease,opacity 0.2s ease;
    width: 22px!important;
    top: 6px!important;
    background-color: #313233!important;
  }
  .mobile-trigger span i.lines:after {
    position: absolute;
    left: 0;
    content: '';
    background: #ecf0f1;
    display: block;
    height: 2px!important;
    width: 22px!important;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: -webkit-transform 0.45s ease,background-color 0.2s ease,opacity 0.2s ease;
    transition: transform 0.45s ease,background-color 0.2s ease,opacity 0.2s ease;
    top: -6px!important;
    background-color: #313233!important;
  }
  .mobileMenu {
    position: relative;
    top: 0px;
    display: none;
    background-color: #fcfcfc;
    padding: 0px;
    z-index: 100000;
    line-height: 25px;
    padding-bottom:30px
  }
  .mobileMenu .hs-menu-wrapper > ul {
    padding: 0;
    margin: 0;
    padding-top: 10px;
  } 
  .mobileMenu .hs-menu-wrapper > ul > li {
    list-style: none;
    position: relative;
  }
  .mobileMenu .hs-menu-wrapper > ul > li > a {
    display: block;
    position: relative;
    padding: 16px 0 !important;
    border-bottom: 1px dotted rgba(255,255,255,0.2);
    color: #000!important;
    font-size: 14px!important;
  }
  .mobileMenu .hs-menu-wrapper > ul ul {
    margin: 0;
    padding: 0;
    display: none;
    margin-left: 20px;
  }
  .mobileMenu .hs-menu-wrapper > ul > li:first-child {

  }
  .menuOpen .mobile-trigger span i.lines-button {
    -webkit-transform: scale3d(0.8,0.8,0.8);
    transform: scale3d(0.8,0.8,0.8);
  }
  .menuOpen .mobile-trigger span i.lines-button:after {
    transform: scale(0,1);
    -webkit-transform: scale(0,1);
  }
  .menuOpen .mobile-trigger span i.lines:before {
    -webkit-transform: translateY(-6px) rotateZ( -45deg)!important;
    -ms-transform: translateY(-6px) rotateZ(-45deg)!important;
    transform: translateY(-6px) rotateZ( -45deg)!important;
  }
  .menuOpen .mobile-trigger span i.lines:after {
    -webkit-transform: translateY(6px) rotateZ(45deg)!important;
    -ms-transform: translateY(6px) rotateZ(45deg)!important;
    transform: translateY(6px) rotateZ(45deg)!important;
  }
  span.child-trigger {
    display: inline-block;
    right: 0px!important;
    position: absolute;
    padding: 16px;
    left: auto!important;
    top: 0px!important;
    height: auto;
    width: auto;
  }
  .child-trigger i {
    background-image: none;
    background-position: 0% 0%;
    background-repeat: repeat;
    margin-top: 0;
    top: -2px;
    word-spacing: 1px;
    max-width: 100%;
    position: relative;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    border-radius: 999px 999px 999px 999px;
    -webkit-border-radius: 999px 999px 999px 999px;
    width: 8px;
    font-size: 12px;
    line-height: 16px;
    height: auto;
    background-color: transparent!important;
    color: #888!important;
  }
  .mobileMenu .hs-menu-wrapper > ul ul {
    margin-left: 20px;
  }
  .mobileMenu .hs-menu-wrapper > ul ul li {
    list-style: none;
  }
  .mobileMenu .hs-menu-wrapper > ul ul li a {
    display: block;
    position: relative;
    padding: 16px 0;
    border-bottom: 1px dotted rgba(255,255,255,0.2);
    color: #000;
    font-size: 14px;
  }
  .mobileMenu .hs-menu-wrapper > ul ul li a:hover {
    color: #000;
  }
  .child-trigger.child-open i {
    color: #00758C!important;
  }
  .headerLogo a {
    margin-top: 0 !important;
  }






}



@media(max-width: 1150px) and (min-width: 1000px){
  .mobile-trigger span i.lines-button:after, .mobile-trigger span i.lines:before, .mobile-trigger span i.lines:after {
    background-color: #ffffff!important;
    opacity: 0.75;
  }
  .headerTrigger {
    position: absolute;
    top: 0;
    float: right;
    transform: none!important;
    -webkit-transform: none!important;
    margin: 0!important;
    display: block!important;
    padding-top: 3px;
    transition: padding 0.2s ease;
  }
  .headerColumn.headerColumn9 {
    min-height: 41px;
    transition: all 0.4s ease;
  }
  .scrolled .headerColumn.headerColumn9 {
    min-height: 26px;
  }
  .scrolled .mobile-trigger span i.lines-button:after, 
  .scrolled .mobile-trigger span i.lines:before,
  .scrolled .mobile-trigger span i.lines:after {
    background-color: #313233!important;
  }
  body.noBanner div#header-space {
    display: block;
    /*     height: 70.4px; */
  }
  .noBanner .mobile-trigger span i.lines-button:after, 
  .noBanner .mobile-trigger span i.lines:before,
  .noBanner .mobile-trigger span i.lines:after {
    background-color: #313233!important;
  }
}

@media(max-width: 1000px){
  header.header {
    position: relative!important;
    padding-top: 12px!important;
    margin-bottom: 0px;
    background-color: #ffffff !important;
  }
  .headerLogo.normal {
    display: none;
  }
  .headerLogo.fixed {
    opacity: 1;
    display: block;
  }
  .headerLogo a img {
    margin-top: -3px!important;
    top: 3px;
    height: 24px!important;
    position: relative;
  }
  .headerLogo a {
    margin-top: 7px !important;
  }


}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

footer.footer {
  position: relative;
  z-index: 10;
  line-height: 25px;
}
.bottomFooter {
  position: relative;
  padding: 24px 0px;
  font-size: 12px;
  background:#d8d8d8;
}
.footer__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 90px;
}
.footercolumn {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}
.footer__container:before, .footer__container:after {
  display: table;
  content: "";
}
.footer__container:after {
  clear: both;
}
.footercolumn:last-child {
  margin-right: 0;
}
.footer__copyright p {
  padding-bottom: 0px;
  line-height: 22px;
  margin-top: 3px;
}
ul.social {
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
}
ul.social li {
  float: left;
  margin-left: 20px;
  list-style: none;
}
ul.social li a {
  display: block;
  line-height: 22px;
  height: 24px;
  position: relative;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  background-position: center top;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^="icon-"], [class*=" icon-"], i[class*="fa-"], span[class*="fa-"] {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
}
i[class*="fa-"], span[class*="fa-"] {
  display: inline-block;
  font-size: 16px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  top: -2px;
  word-spacing: 1px;
  position: relative;
  text-align: center;
  vertical-align: middle;
  max-width: 100%;
}
.footer__social a i {
  font-size: 20px;
  width: auto;
  background-color: transparent!important;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before, .fa-facebook:before {
  content: "\f09a";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-instagram:before {
  content: "\f16d";
}
.footer__row {
  position: relative;
  padding: 55px 0px;
  margin-bottom: 0px;
}
.footer__row:before, .footer__row:after {
  display: table;
  content: "";
}
.footer__row:after {
  clear: both;
}

.footer__row.footer_2 {
    padding-top: 0;
}

.footercolumn3 {
  width: 23.5%;
}
.footerMenu .hs-menu-wrapper > ul {
  margin: 0;
  padding: 0;
}
.footerMenu .hs-menu-wrapper > ul > li {
  list-style: none;
}
.footerMenu .hs-menu-wrapper > ul > li > a {
  cursor: initial;
  -webkit-font-smoothing: antialiased;
  line-height: 27px;
  display: block;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  font-family: Muli;
  margin-bottom: 12px;
}
.footerMenu .hs-menu-wrapper > ul ul {
  margin: 0;
  padding: 0;
}
.footerMenu .hs-menu-wrapper > ul ul li {
  list-style: none;
}
.footerMenu .hs-menu-wrapper > ul ul li {
  list-style: none;
  padding: 4px 0!important;
}
.footerMenu .hs-menu-wrapper > ul ul li:first-child {
  padding-top: 0px!important;
}
.footerMenu .hs-menu-wrapper > ul ul li a {
  display: block;
}
.footerImage img {
  max-width: 100%;
  height: auto;
  width: auto !important;
}





@media (min-width: 690px){
  .footercolumn {
    margin-right: 2%;
  }
  .footercolumn5 {
    width: 40.5%;
  }
  .footercolumn7 {
    width: 57.5%;
  }






}


@media only screen and (min-width: 690px) and (max-width: 1000px){
  .footer__container {
    padding-left: 0;
    padding-right: 0;
  }
  .footercolumn3 {
    padding: 15px;
    width: 48%;
    margin-right: 15px;
  }
  .footercolumn3:nth-child(2n + 2) {
    margin-right: 0;
  }
  .footercolumn3:nth-child(1), .footercolumn3:nth-child(2) {
    margin-bottom: 40px;
  }
  .footerMenu .hs-menu-wrapper > ul > li > a {
    line-height: 24.3px;
  }


}

@media only screen and (max-width: 690px){
  .footer__container {
    padding-left: 10px;
    padding-right: 10px;
  }
  ul.social {
    float: left;
  }
  ul.social li:first-child {
    margin-left: 0px;
  }
  .footer__copyright {
    margin-bottom: 25px;
  }
  .footercolumn3 {
    width: 100%;
    padding: 0;
    margin: 0 !important;
    margin-bottom: 40px !important;
  }
  .footercolumn3.footercolLast {
    margin-bottom: 0px!important;
  }
  .footerMenu .hs-menu-wrapper > ul > li > a {
    line-height: 24.3px;
  }



}

@media only screen and (min-width: 480px) and (max-width: 690px){
  .footer__container {
    padding-left: 0;
    padding-right: 0;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */
/*=============================================== Blog Listing ======================================*/

.expertise-banner .bannerArea.fullWidthBanner .banner-container {
  padding-top: calc(100vw * 0.10);
  padding-bottom: calc(100vw * 0.07);
}

.blog-header {
  padding-bottom: 0px;
  padding-top: 35px;
}

.blog-header__inner {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 36px 0px;
  border-bottom: 1px solid #ddd;
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

.blog-header .content-wrapper:before,
.blog-header .content-wrapper:after {
  display: block;
  content: "";
  clear: both;
}

.blog-header .subheader {
  font-family: Muli;
  font-size: 22px;
  line-height: 33px;
  color: #888;
  top: 0px;
  position: relative;
  text-transform: none;
  margin-bottom: 15px;
}

.blog-header .blog-header__title {
  font-family: Muli;
  font-size: 32px;
  line-height: 48px;
  font-weight: 600;
  top: 3px;
  letter-spacing: -1px;
  position: relative;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  text-transform: capitalize;
}

.blog-listing-wrapper {
  position: relative;
  z-index: 10;
  margin-top: 0px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.blog-listing {
  position: relative;
}

.blog-listing .blog-item {
  width: 31.1%;
  display: inline-block;
  color: #676767;
}

.blog-listing .blog-item .blog-inner-wrap {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  height: 100%;
  transition: opacity 0.5s ease-out;
  -webkit-transition: opacity 0.5s ease-out;
}

.blog-item {
  border-bottom:0.5px solid #ccc;
  border-left:0.5px solid #ccc;
  border-right:0.5px solid #ccc;
}

/* .blog-item:nth-child(2), .blog-item:nth-child(5), .blog-item:nth-child(8) {
  border-right:0px solid #ccc;
} */


.blog-item .post-content {
  position: relative;
  min-height: 98px;
}

.blog-item .post-content .content-inner {
  position: relative;
}

.blog-item .post-featured-img img {
  height: auto;
  width: 100%;
}

.blog-item .article-content-wrap {
  padding: 16px 18px 18px;
}

.blog-item .article-content-wrap .post-header {
  margin-bottom: 12px;
  font-size: 11px;
  color: #888;
}

.blog-item .article-content-wrap h2 {
  font-weight: 600;
  font-family: Muli;
  margin-bottom: 2px;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
  -webkit-font-smoothing: antialiased;
  color: #333333;
  margin-top: 0;
}

.article-content-wrap .meta-author a,
.article-content-wrap .meta-category a {
  color: #888;
}

.article-content-wrap .meta-author a:hover,
.article-content-wrap .meta-category a:hover {
  color: #2ca895;
}

.blog-item .post-meta {
  display: block;
  padding: 0 18px 18px;
  position: relative;
}

.blog-item .post-meta .post-date {
  font-size: 12px;
  position: relative;
  transition: all 0.2s linear 0s;
  line-height: 22px;
  float: left;
}

.post-meta:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.blog-item .blog-excerpt p {
  padding: 0;
}
.blog-listing {
  margin-bottom: 80px;
}

.blog-pagination {
  margin-top:10px;
  padding-left: 0px;
  width: 100%;
}

.blog-pagination .blog-pagination__link {
  box-shadow: none;
  -ms-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  line-height: 11px;
  display: inline-block;
  padding: 11px 13px 10px 13px;
  position: relative;
  text-transform: capitalize;
  font-family: 'Open Sans';
  font-weight: 700;
  margin: 0;
  font-size: 12px;
}

.blog-pagination .blog-pagination__link.blog-pagination__link--active {

  -webkit-box-shadow: 0px 6px 15px rgb(0 0 0 / 16%);
  box-shadow: 0px 6px 15px rgb(0 0 0 / 16%);
  margin: 0 8px;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 14px;
  font-size: 12px;
  background-color: #2ca895;
  color: #fff;
  pointer-events: none;
  cursor: text;
  border-radius: 4px!important;
  -webkit-border-radius: 4px!important;
}
.blog-pagination .blog-pagination__link:first-child {
  margin-left: 0;
}
.blog-pagination .blog-pagination__link:hover {
  color: #2ca895;
}
.blog-listing {
  /*   padding-right: 8px; */
}
.blog-listing-wrapper {
  line-height: 25px;
}
.blog-listing .blog-item{
  padding: 15px 15px 0 15px;
  width: 33.333%;
}
.blog-listing {
  margin: 0 -15px;
}


.blog-post__body p:last-child {
  padding-bottom: 0px;
}

.post-content img {
  width: auto;
  max-width: 100%;
  height: auto;
  position: relative;
}
.post-content .vc_col-sm-6 {
  padding:0;
  margin:0;
  position: relative;
  min-height: 1px;
}
.post-content .vc_col-sm-6:last-child{
  margin-left: 2.1%;
}

.post-content h2.vc_custom_heading {
  margin-top: 0;
}
.post-content ol {
  margin-bottom: 0;
}
.post-content .tilt-button-inner a {
  text-decoration: none;
  line-height: 20px;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  color: #FFF;
  padding: 10px 15px;
  outline: 1px solid transparent;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  outline: none;
  padding-left: 22px;
  padding-right: 22px;
  position: relative;
  border-bottom: none!important;
  font-size: 12px;
  font-weight: 700;
  font-family: Muli;
  font-size: 12px;
  box-shadow: none;
  -ms-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  background-color: #2ca895;
  display: inline-block;
}

.post-content .tilt-button-inner a:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}


.post-content .col.span_12.dark {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.post-content .col.span_12.dark .vc_col-sm-4 {
  padding: 1%;
  position: relative;
  min-height: 1px;
  background: #f9f9f9;
}

.post-content .col.span_12.dark .vc_col-sm-8 {
  position: relative;
  min-height: 1px;
  padding-left: 2.1%;
  background: #f9f9f9;
}

@media (min-width: 1000px){

  .post-content .vc_col-sm-6 {
    width: 48.93617020799999%;
    float: left;
  }

  .post-content .col.span_12.dark .vc_col-sm-4 {
    width: 31.914893614%;
    float: left;
  }

  .post-content .col.span_12.dark .vc_col-sm-8 {
    width: 65.95744680199999%;
    float: left;
  }

}

@media (max-width: 999px){

  .post-content .vc_col-sm-6 {
    padding:0;
    margin:0;
    position: relative;
    min-height: 1px;
    width:100%;
    margin:0 0 25px;
  }
  .post-content .vc_col-sm-6:last-child{
    margin:0;
  }
  .col.span_12.dark.left {
    display: block;
  }
  .post-content .col.span_12.dark .vc_col-sm-4 {
    padding: 4.1875px;
  }

}

@media only screen and (min-width: 1000px) and (max-width: 1300px){
  .blog-header .subheader {
    font-size: 17.6px;
    line-height: 26.4px;
  }
}

@media only screen and (max-width: 1000px) and (min-width: 690px){
  .blog-header .blog-header__title {
    font-size: 22.4px;
    line-height: 33.6px;
  }
  .blog-listing .blog-item {
    width: 47.7%;
  }
}


@media only screen and (max-width: 690px){
  .blog-header .subheader {
    display: none;
  }

  .blog-header .blog-header__title {
    font-size: 22.4px;
    line-height: 33.6px;
  }

  .blog-listing .blog-item {
    position: relative!important;
    top: auto!important;
    display: block;
    width: 100%!important;
    margin-right: 0px!important;
    margin-bottom: 25px!important;
    margin-left: 0px!important;
  }

  .blog-item .blog-excerpt p {
    padding: 0;
  }
  .blog-listing {
    margin: 0;
  }
  .blog-item .article-content-wrap .post-header {
    font-size: 10px;
  }
  .blog-listing .blog-item {
    padding: 0;
  }
}

/*=============================================== Blog Post ======================================*/
.blog-post-wrapper {
  position: relative;
  z-index: 10;
  margin-top: 0px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.blog-post-wrapper .heading-title {
  margin-bottom: 35px;
  border-bottom: 0;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 35px;
}

.blog-title-wrap .meta-category {
  font-family: Muli;
  font-size: 22px;
  line-height: 33px;
  color: #888;
  top: 0px;
  position: relative;
  text-transform: none;
  padding-left: 10px;
}

.blog-title-wrap .meta-category .topic-link {
  -webkit-border-radius: 4px!important;
  box-shadow: none;
  -ms-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  transition: opacity .45s cubic-bezier(0.25, 1, 0.33, 1), transform .45s cubic-bezier(0.25, 1, 0.33, 1), border-color .45s cubic-bezier(0.25, 1, 0.33, 1), color .45s cubic-bezier(0.25, 1, 0.33, 1), background-color .45s cubic-bezier(0.25, 1, 0.33, 1), box-shadow .45s cubic-bezier(0.25, 1, 0.33, 1);
  font-family: Muli;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #000;
  padding: 4px 8px;
  margin: 5px 6px 15px 5px;
  display: inline;
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-title-wrap .meta-category .topic-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16);
  background-color: #2ca895;
  border-color: transparent;
  color: #fff;
}

.blog-title-wrap .entry-title {
  padding: 16px 0 16px 0;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  font-family: Muli;
  font-size: 32px;
  line-height: 48px;
  font-weight: 600;
}

.blog-title-wrap #single-below-header {
  margin-top: 8px;
  margin-bottom: 0px;
  font-size: 11px;
  color: #888;
}

.blog-title-wrap #single-below-header > span {
  float: none;
  display: inline-block;
  font-size: 14px;
  padding-left: 0;
  border: none;
  font-family: Muli;
  padding: 0 10px 0 10px;
  line-height: 16px;
  color: #888;
  top: 0px;
  position: relative;
  text-transform: none;
}

.blog-title-wrap #single-below-header > span:last-child {
  padding: 0 20px 0 10px;
  border-left: 1px solid #DDD;
}

.blog-title-wrap #single-below-header .author-link {
  color: inherit;
}

.blog-title-wrap #single-below-header .author-link:hover {
  color: #2ca895;
}

.post-area-wrapper .post-area {
  max-width: 1000px;
  margin: 0 auto;
}
.blog-title-wrap .entry-title {
  top: 3px;
  letter-spacing: -1px;
  position: relative;
}

.blog-title-wrap #single-below-header {
  line-height: 25px;
}

.post-area-wrapper h2 {
  margin-top: 10px;
  margin-bottom: 7px;
}

.post-area-wrapper h2 strong {
  font-weight: 600;
}

.post-area-wrapper .content-inner {
  padding-bottom: 50px;
  margin-bottom: 50px;
  position: relative;
  line-height: 25px;
  color: #333333;
}
.post-area-wrapper form {
  max-width: 100%;
}
.blog-pagination .blog-pagination__link {
  color: #333333;
  opacity: 1;
}
.blog-comments .hs-button {
  margin: 15px 0;
}
@media only screen and (min-width: 1000px) and (max-width: 1300px){
  .blog-post-wrapper {
    line-height: 25px;
  }

  .blog-title-wrap .meta-category {
    font-size: 17.6px;
    line-height: 26.4px;
  }

  .post-area-wrapper h2 {
    font-size: 20.4px;
    line-height: 30.6px;
  }

}



@media only screen and (max-width: 1000px) and (min-width: 690px){
  .blog-title-wrap .entry-title {
    font-size: 22.4px;
    line-height: 33.6px;
  }
  .post-area-wrapper h2 {
    font-size: 19.2px;
    line-height: 28.8px;
  }
}

@media only screen and (max-width: 690px){
  .blog-title-wrap .meta-category {
    display: none;
  }

  .blog-title-wrap .entry-title {
    font-size: 24px;
    line-height: 30px;
  }

  .post-area-wrapper h2 {
    font-size: 16.8px;
    line-height: 25.2px;
  }
  .blog-post__body ol li a {
    word-break: break-word;
  }
}

@media(max-width:479px){
  .hs-recaptcha {
    overflow: auto;
  }
}

@media only screen and (max-width: 321px){
  .hs-press-release-page .post-by-tag-wrapper .post-inner-column {
    max-width: 300px;
    margin: 0 auto;
  }
}
/*========================================================= Post Social Share ================================================*/

.nectar-social-sharing-fixed {
  right: 26px;
  bottom: 100px;
}
.nectar-social-sharing-fixed {
  position: fixed;
  right: 34px;
  bottom: 34px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  z-index: 1000;
}
.nectar-social-sharing-fixed >a {
  height: 50px;
  width: 50px;
  line-height: 52px;
  text-align: center;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.nectar-social-sharing-fixed >a:before{
  background-color: #2ca895;
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.45s cubic-bezier(.15,0.2,.1,1);
  -webkit-transition: all 0.45s cubic-bezier(.15,0.2,.1,1);
  height: 100%;
  transform: translateZ(0);
  backface-visibility: hidden;
  border-radius: 50%;

}
.nectar-social-sharing-fixed >a >[class^="icon-"].icon-default-style{
  font-size: 16px!important;
  color: #fff!important;
  left: -1px;
}

[class*=" steadysets-icon-"], [class^=steadysets-icon-] {
  font-family: steadysets!important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nectar-social-sharing-fixed >a:after, .nectar-social-sharing-fixed .nectar-social a:after {
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  content: '';
  display: block;
  border-radius: 50%;
}

.steadysets-icon-share:before {
  content: "\e63c";
}

.nectar-social-sharing-fixed .nectar-social {
  position: absolute;
  height: 50px;
  width: 50px;
  bottom: 0;
  left: 0;
  z-index: 1;
  text-align: center;
}

.nectar-social-sharing-fixed .nectar-social a:nth-child(1) {
  transform: translateY(0px) scale(0);
  -webkit-transform: translateY(0px) scale(0);
}

.nectar-social-sharing-fixed .nectar-social a {
  display: block;
  line-height: 36px;
  height: 36px;
  padding: 0!important;
  margin: 0!important;
  width: 36px;
  left: 7px;
  position: absolute;
  opacity: 0;
  border: none;
  top: 0;
  box-shadow: 0px 7px 15px rgb(0 0 0 / 20%);
  border-radius: 50%;
  -webkit-transition: all 0.45s cubic-bezier(.15,0.2,.1,1);
  transition: all 0.45s cubic-bezier(.15,0.2,.1,1);
  background-color: #2ca895;
}

.nectar-social-sharing-fixed .nectar-social a i {
  color: #fff!important;
  font-size: 14px!important;
  padding-right: 0;
  height: 36px!important;
  line-height: 36px!important;
  width: 36px!important;
}

.nectar-social-sharing-fixed .nectar-social a:after {
  -webkit-transition: opacity 0.25s cubic-bezier(.15,0.2,.1,1);
  transition: opacity 0.25s cubic-bezier(.15,0.2,.1,1);
}

.nectar-social-sharing-fixed >a:after, .nectar-social-sharing-fixed .nectar-social a:after {
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  content: '';
  display: block;
  border-radius: 50%;
}

.nectar-social-sharing-fixed .nectar-social a:nth-child(2) {
  -webkit-transform: translateY(-36px) scale(0);
  transform: translateY(-36px) scale(0);
}

.nectar-social-sharing-fixed .nectar-social a:nth-child(3) {
  -webkit-transform: translateY(-86px) scale(0);
  transform: translateY(-86px) scale(0);
}

.fa-google-plus:before {
  content: "\f0d5";
}

.nectar-social-sharing-fixed .nectar-social a:nth-child(4) {
  -webkit-transform: translateY(-136px) scale(0);
  transform: translateY(-136px) scale(0);
}

.nectar-social-sharing-fixed:hover {
  height: 340px;
}

.nectar-social-sharing-fixed:hover >a:before {
  -webkit-transform: scale(1.23) translateZ(0);
  transform: scale(1.23) translateZ(0);
  box-shadow: 0px 7px 15px rgb(0 0 0 / 20%);
}

.nectar-social-sharing-fixed:hover >a:after {
  -webkit-animation: socialButtonFlash 0.45s cubic-bezier(.15,0.2,.1,1) forwards;
  animation: socialButtonFlash 0.45s cubic-bezier(.15,0.2,.1,1) forwards;
}

.nectar-social-sharing-fixed:hover .nectar-social a:nth-child(1) {
  -webkit-transition: all 0.45s cubic-bezier(.15,0.2,.1,1);
  -webkit-transform: translateY(-56px) scale(1);
  transition: all 0.45s cubic-bezier(.15,0.2,.1,1);
  transform: translateY(-56px) scale(1);
  opacity: 1;
}

.nectar-social-sharing-fixed:hover .nectar-social a:nth-child(2) {
  -webkit-transition: all 0.45s cubic-bezier(.15,0.2,.1,1);
  -webkit-transform: translateY(-106px) scale(1);
  transition: all 0.45s cubic-bezier(.15,0.2,.1,1);
  transform: translateY(-106px) scale(1);
  opacity: 1;
}

.nectar-social-sharing-fixed:hover .nectar-social a:nth-child(3) {
  -webkit-transition: all 0.45s cubic-bezier(.15,0.2,.1,1);
  -webkit-transform: translateY(-156px) scale(1);
  transition: all 0.45s cubic-bezier(.15,0.2,.1,1);
  transform: translateY(-156px) scale(1);
  opacity: 1;
}

.nectar-social-sharing-fixed:hover .nectar-social a:nth-child(4) {
  -webkit-transition: all 0.45s cubic-bezier(.15,0.2,.1,1);
  -webkit-transform: translateY(-206px) scale(1);
  transition: all 0.45s cubic-bezier(.15,0.2,.1,1);
  transform: translateY(-206px) scale(1);
  opacity: 1;
}
.nectar-social-sharing-fixed .nectar-social a:hover:after {
  opacity: 0.2;
}
@keyframes socialButtonFlash {
  0% {
    opacity: 0;
    transform: scale(1)
  }

  25% {
    opacity: 0.22;
    transform: scale(1.1115)
  }

  100% {
    opacity: 0;
    transform: scale(1.23)
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Noto Sans, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #F3F6F9;
  z-index: -1;
}
@media screen and (min-width: 767px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 50px 0;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  min-width: auto;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  padding: 5px 10px;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Roboto, serif;
  font-size: 1.25rem;
  color: #292929;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #292929;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}
input.email-edit.hs-input {
  width: 100% !important;
}

#error-404 {
  text-align: center;
  padding: 10% 0;
  position: relative;
  z-index: 10;
}
div#error-404 h1 {
  margin: 0;
  margin-bottom: 7px;
  -webkit-font-smoothing: antialiased;
  color: #333333;
  font-weight: 700;
  font-size: 250px;
  line-height: 250px;
  font-family: Muli;
}
div#error-404 h2 {
  margin: 0;
  margin-bottom: 7px;
  -webkit-font-smoothing: antialiased;
  color: #333333;
  font-family: Muli;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
}
div#error-404 a.hs-button {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  top: -3px;
  margin-bottom: 10px;
  opacity: 1;
  line-height: 20px;
  letter-spacing: 2px;
  font-weight: 700;
  font-family: Muli;
  font-size: 14px;
  padding: 15px 22px;
  padding-left: 42px;
  padding-right: 42px;
  margin-top: 50px;
  border: none;
}
div#error-404 a.hs-button span {
  left: 0px;
  display: inline-block;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: opacity .45s cubic-bezier(0.25,1,0.33,1),transform .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: opacity .45s cubic-bezier(0.25,1,0.33,1),-webkit-transform .45s cubic-bezier(0.25,1,0.33,1);
  position: relative;
}
div#error-404 a.hs-button i {
  border-radius: 999px 999px 999px 999px;
  -webkit-border-radius: 999px 999px 999px 999px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  height: 32px;
  line-height: 32px;
  max-width: 100%;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 32px;
  top: -2px;
  word-spacing: 1px;
  font-family: 'icomoon'!important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  line-height: 18px;
  width: 18px;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -9px;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  transition: all .45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1);
  font-size: 19px;
  background-color: transparent!important;
}
.icon-button-arrow:before {
  content: "\e909";
}
div#error-404 a.hs-button:hover {
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16)!important;
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
}
div#error-404 a.hs-button:hover span {
  -ms-transform: translateX(-18px);
  -webkit-transform: translateX(-18px);
  transform: translateX(-18px);
}
div#error-404 a.hs-button:hover i {
  opacity: 1!important;
  -ms-filter: "alpha(opacity=100)";
  -ms-transform: translateX(6px);
  -webkit-transform: translateX(6px);
  transform: translateX(6px)!important;
}

.systems-page .form-container .hs-membership-global-error {
  display: none;
}
@media only screen and (min-width: 690px) and (max-width: 1000px){
  .errorPage {
    margin-bottom: 25px;
  }



}

@media(max-width: 767px){
  .systems-page h1{
    font-size : 26px;
  }
  .systems-page h3, .systems-page h2{
    font-size : 26px;
  }


}



@media only screen and (max-width: 690px){
  div#error-404 h1 {
    font-size: 150px;
    line-height: 150px;
  }
  div#error-404 h2 {
    font-size: 32px;
  }
  .errorPage {
    margin-bottom: 25px;
  }




}