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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

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

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

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

/* Labels */

form label {
  display: block;

}

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

/* Help text */

form legend {

}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {

  margin: 0 0 1.4rem;
}

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


/* GDPR */

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

/* Validation */

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

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

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

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

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

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

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

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

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

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

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

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

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

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

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

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

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

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

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

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



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


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

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

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

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

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

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

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

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

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

/* Language switcher */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

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

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

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

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

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

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

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

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

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

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

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

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

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
/*# sourceMappingURL=slick.min.css.map */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@100;300;400;500;600;700;800;900&family=Inter:wght@100;300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Single+Day&display=swap');

a:active, a:visited{
	color:;
}
/*********************************************** intial declartaion of css **********************************************/
/* Magnific Popup CSS */
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:9999;;overflow:hidden;position:fixed;background:#0b0b0b;opacity:0.8;filter:alpha(opacity=80);}
.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:9999;position:fixed;outline:none!important;-webkit-backface-visibility:hidden;}
.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle;}
.mfp-align-top .mfp-container:before{display:none;}
.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045;}
.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto;}
.mfp-ajax-cur{cursor:progress;}
.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out;}
.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in;}
.mfp-auto-cursor .mfp-content{cursor:auto;}
.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none;}
.mfp-loading.mfp-figure{display:none;}
.mfp-hide{display:none!important;}
.mfp-preloader{color:#cccccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044;}
.mfp-preloader a{color:#cccccc;}
.mfp-preloader a:hover{color:white;}
.mfp-s-ready .mfp-preloader{display:none;}
.mfp-s-error .mfp-content{display:none;}
button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none;}
button::-moz-focus-inner{padding:0;border:0;}
.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:0.65;filter:alpha(opacity=65);padding:0 0 18px 10px;color:white;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace;}
.mfp-close:hover,.mfp-close:focus{opacity:1;filter:alpha(opacity=100);}
.mfp-close:active{top:1px;}
.mfp-close-btn-in .mfp-close{color:#333333;}
.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:white;right:-6px;text-align:right;padding-right:6px;width:100%;}
.mfp-counter{position:absolute;top:0;right:0;color:#cccccc;font-size:12px;line-height:18px;white-space:nowrap;}
.mfp-arrow{position:absolute;opacity:0.65;filter:alpha(opacity=65);margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0);}
.mfp-arrow:active{margin-top:-54px;}
.mfp-arrow:hover,.mfp-arrow:focus{opacity:1;filter:alpha(opacity=100);}
.mfp-arrow:before,.mfp-arrow:after,.mfp-arrow .mfp-b,.mfp-arrow .mfp-a{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent;}
.mfp-arrow:after,.mfp-arrow .mfp-a{border-top-width:13px;border-bottom-width:13px;top:8px;}
.mfp-arrow:before,.mfp-arrow .mfp-b{border-top-width:21px;border-bottom-width:21px;opacity:0.7;}
.mfp-arrow-left{left:0;}
.mfp-arrow-left:after,.mfp-arrow-left .mfp-a{border-right:17px solid white;margin-left:31px;}
.mfp-arrow-left:before,.mfp-arrow-left .mfp-b{margin-left:25px;border-right:27px solid #3f3f3f;}
.mfp-arrow-right{right:0;}
.mfp-arrow-right:after,.mfp-arrow-right .mfp-a{border-left:17px solid white;margin-left:39px;}
.mfp-arrow-right:before,.mfp-arrow-right .mfp-b{border-left:27px solid #3f3f3f;}
.mfp-iframe-holder{padding-top:40px;padding-bottom:40px;}
.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px;}
.mfp-iframe-holder .mfp-close{top:-40px;}
.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%;}
.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:black;}

/* Main image in popup */
img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:40px 0 40px;margin:0 auto;}

/* The shadow behind the image */
.mfp-figure{line-height:0;}
.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444444;}
.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px;}
.mfp-figure figure{margin:0;}
.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto;}
.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px;}
.mfp-image-holder .mfp-content{max-width:100%;}
.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer;}
@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){

  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0;}
  .mfp-img-mobile img.mfp-img{padding:0;}
  .mfp-img-mobile .mfp-figure:after{top:0;bottom:0;}
  .mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px;}
  .mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
  .mfp-img-mobile .mfp-bottom-bar:empty{padding:0;}
  .mfp-img-mobile .mfp-counter{right:5px;top:3px;}
  .mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0;}
}
@media all and (max-width:900px){
  .mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75);}
  .mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0;}
  .mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%;}
  .mfp-container{padding-left:6px;padding-right:6px;}
}
.mfp-ie7 .mfp-img{padding:0;}
.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px;}
.mfp-ie7 .mfp-container{padding:0;}
.mfp-ie7 .mfp-content{padding-top:44px;}
.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0;}
.resp-tabs-list li{font-weight:600;font-size:13px;display:inline-block;padding:13px 15px;margin:0 4px 0 0;list-style:none;cursor:pointer;float:left;}
.resp-tabs-container{padding:0px;background-color:#fff;clear:left;}
h2.resp-accordion{cursor:pointer;padding:5px;display:none;}
.resp-tab-content{display:none;padding:15px;}
.resp-tab-active{border:1px solid #5AB1D0!important;border-bottom:none;margin-bottom:-1px!important;padding:12px 14px 14px 14px!important;border-top:4px solid #5AB1D0!important;border-bottom:0px #fff solid!important;}
.resp-tab-active{border-bottom:none;background-color:#fff;}
.resp-content-active,.resp-accordion-active{display:block;}
.resp-tab-content{border:1px solid #c1c1c1;border-top-color:#5AB1D0;}
h2.resp-accordion{font-size:13px;border:1px solid #c1c1c1;border-top:0px solid #c1c1c1;margin:0px;padding:10px 15px;}
h2.resp-tab-active{border-bottom:0px solid #c1c1c1!important;margin-bottom:0px!important;padding:10px 15px!important;}
h2.resp-tab-title:last-child{border-bottom:12px solid #c1c1c1!important;background:blue;}

/*-----------Vertical tabs-----------*/
.resp-vtabs ul.resp-tabs-list{float:left;width:30%;}
.resp-vtabs .resp-tabs-list li{display:block;padding:15px 15px!important;margin:0 0 4px;cursor:pointer;float:none;}
.resp-vtabs .resp-tabs-container{padding:0px;background-color:#fff;border:1px solid #c1c1c1;float:left;width:68%;min-height:250px;border-radius:4px;clear:none;}
.resp-vtabs .resp-tab-content{border:none;word-wrap:break-word;}
.resp-vtabs li.resp-tab-active{position:relative;z-index:1;margin-right:-1px!important;padding:14px 15px 15px 14px!important;border-top:1px solid;border:1px solid #5AB1D0!important;border-left:4px solid #5AB1D0!important;margin-bottom:4px!important;border-right:1px #FFF solid!important;}
.resp-arrow{width:0;height:0;float:right;margin-top:3px;border-left:6px solid transparent;border-right:6px solid transparent;border-top:12px solid #c1c1c1;}
h2.resp-tab-active span.resp-arrow{border:none;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:12px solid #9B9797;}



*{margin:0;padding:0;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,select,input,option,textarea{margin:0;padding:0;border:0;outline:0;font-size:100%;box-sizing:border-box;}
html{-webkit-text-size-adjust:none;}
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block;}
audio,canvas,video{display:inline-block;}
audio:not([controls]){display:none;height:0;}
pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}
q{quotes:none}
q:before,q:after{content:'';content:none}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sup{top:-0.5em;}
sub{bottom:-0.55em}
nav ul,nav ol{list-style:none;list-style-image:none;}

/*********************************************** remember to define focus styles! **********************************************/
:focus{outline:0;}

/********************************** tables still need 'cellspacing="0"' in the markup ****************************************/
table{border-collapse:separate;border-spacing:0;}
caption,th,td{text-align:left;font-weight:normal;}
blockquote:before,blockquote:after,q:before,q:after{content:"";}
blockquote,q{quotes:"" "";}
table{border:0 none;border-collapse:collapse;border-spacing:0;}
td{vertical-align:top;}
img{border:0 none;max-width:100%;vertical-align:middle;height:auto}
a{outline:none;cursor:pointer;}
/**************************************** End hide from IE Mac ***************************************************************/
*:before,*:after{box-sizing:border-box;}

/************************************************** End Clearfix *************************************************/
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}
.clear{clear:both;}

/************************************************** For modern browsers ******************************************/
.cf:before,.cf:after{content:"";display:table}
.cf:after{clear:both;}
li{list-style:none;}
::selection{background:#227f7f;color:#fff;}
::-moz-selection{background:#227f7f;color:#fff;}

/*************************************** display table and table cell ***************************************************/
.tbl{display:table;width:100%;height:100%;}
.tbl-cell{display:table-cell;vertical-align:middle}
.dis-flex{display:flex;flex-wrap:wrap;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;}









/* 1a. Containers */




/* 1b. Colors */













/* 1c. Typography */


























/* 1d. Buttons */








/* 1e. Forms */















/* 1g. Website header */








/* 1h. Website footer */








.content-wrapper,.container{max-width:1090px; padding:0 20px;margin:0 auto;width:100%;}
.dnd-section,.content-wrapper--vertical-spacing{padding:80px 1rem; }
.dnd-section > .row-fluid{max-width:1090px;}





/*********************************************************body  ********************************************************/
body{  font-family: 'Inter', sans-serif; font-weight:400; color: #74808F;font-size: 16px;font-family: ;;  line-height: 150%;  -webkit-font-smoothing:antialiased;-webkit-text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent;}
body:not(.custom-background-image)::before,body:not(.custom-background-image)::after{display:none!important;}
a{text-decoration:none;transition:all 0.5s ease;-moz-transition:all 0.5s ease;-ms-transition:all 0.5s ease;-o-transition:all 0.5s ease;-webkit-transition:all 0.5s ease;}
a:hover{text-decoration:none;}
a:focus{outline:none;text-decoration:none;}


/*******************************************hubspot******************************************************************/
.row-fluid [class*="span"]{min-height:0px;}

/**************************************** logo ***************************/
.h-logo img,.f-logo img{cursor:pointer;}
html {font-size: 16px;}
/* Paragraphs */

p {font-family: 'Inter', sans-serif; font-weight:400; color: #74808F;font-size: 16px;font-family: ;;line-height: 150%;}
/* Anchors */
a {color: #E03842;}
a:hover,
a:focus {color: #b8101a;}
a:active {color: #ff606a;}

img,.hs-video-widget,.hs-video-wrapper{ border-radius:10px;}
/* Headings */
h1,.h1{font-family:'Archivo',sans-serif; color: #293444;font-size: 40px;font-weight: 400; font-family: ;; line-height:130%; text-transform:none; }
h2,.h2{font-family:'Archivo',sans-serif;color: #293444;font-size: 25px;font-weight: 400; font-family: ;; line-height:140%; text-transform:capitalize; }
h3,.h3{font-family:'Archivo',sans-serif;color: #293444;font-size: 20px;font-weight: 700; font-family: ;; line-height:140%; text-transform:capitalize; }
h4,.h4{font-family:'Archivo',sans-serif;color: #293444;font-size: 16px;font-weight: 600; font-family: ;; line-height:110%; text-transform:none; }
h5,.h5{font-family:'Inter',sans-serif;color: #293444;font-size: 14px;font-weight: 600; font-family: ;; text-transform:none;}
h6,.h6{font-family:'Inter',sans-serif;color: #293444;font-size: 12px;font-weight: 400; font-family: ;; line-height:150%;text-transform:none;}
h1,h2,h3,h4,h5,h6,p{margin:0 0 20px;}
strong{font-weight:900;}
h1 > strong{font-weight:900;}
h2 > strong{font-weight:900;}
h3 > strong{font-weight:900;}
/* Blockquote */
blockquote {border-left-color: ;}
.dnd-section.full-width-forcedd{padding:0!important}
.dnd-section.full-width-forcedd>div,.dnd-section.full-width-forcedd>div>div{padding-left:0px!important;padding-right:0px!important;max-width:none!important}




button, a.button, .button,
.hs-blog-post-listing__post-button, .btn-1 a, a.btn-1 {
border: 1px solid #E03842;

padding-top: 10px;
padding-right: 20px;
padding-bottom: 10px;
padding-left: 20px;

color: #ffffff;font-size: 14px;font-family: ;;
background-color: 

  
  
    
  


  rgba(224, 56, 66, 1.0)

;
border-radius: 5px;
 font-family: 'Inter', sans-serif;
text-transform: none;
  display:inline-block;
  font-weight:700;
      line-height: normal;
  text-align:center;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.hs-blog-post-listing__post-button:hover,
.hs-blog-post-listing__post-button:focus, .btn-1 a:hover, .btn-1 a:focus, a.btn-1:hover,  a.btn-1:focus, a.button:hover, a.button:focus  {
  border-color:

  
  
    
  


  rgba(224, 56, 66, 1.0)

;
    background-color: transparent;
  color:

  
  
    
  


  rgba(224, 56, 66, 1.0)

;
}

button:active,
.button:active,
.hs-blog-post-listing__post-button:active, .btn-1 a:active,  a.btn-1:active, a.button:active {
  border-color:

  
  
    
  


  rgba(224, 56, 66, 1.0)

;
    background-color: transparent;
  color:

  
  
    
  


  rgba(224, 56, 66, 1.0)

;
}

.btn-box-wrap .btn-wrapper > .btn-1 a {
    min-width: 152px;
    text-align: center;
}


.btn-2 a, a.btn-2 {
  border:1px solid #293444;
padding-top: 10px;
padding-right: 20px;
padding-bottom: 10px;
padding-left: 20px;

color: #ffffff;font-size: 14px;font-family: ;;
background-color: transparent;
border-radius: 5px;
 font-family: 'Inter', sans-serif;
text-transform: none;
  display:inline-block;
  font-weight:700;
      line-height: normal;
  text-align:center;
  color:#293444;

}
.btn-2 a:hover, a.btn-2:hover,.btn-2 a:focus, a.btn-2:focus  {   border-color:

  
  
    
  


  rgba(224, 56, 66, 1.0)

;
  background-color:

  
  
    
  


  rgba(224, 56, 66, 1.0)

;
  color:#ffffff;

}

.btn-2 a:active, a.btn-2:active,.btn-2 a:active, a.btn-2:active  {   border-color:

  
  
    
  


  rgba(224, 56, 66, 1.0)

;
  background-color:

  
  
    
  


  rgba(224, 56, 66, 1.0)

;
  color:#ffffff;

}





/****************************************************** IE *********************************************************/

select::-ms-expand{display:none;}
input::-ms-clear{display:none;}
/*********************************************** remove auto fill yellow color ************************************/
input:-webkit-autofill,textarea:-webkit-autofill,select:-webkit-autofill{-webkit-box-shadow:0 0 0 100px #fff inset;-moz-box-shadow:0 0 0 100px #fff inset;box-shadow:0 0 0 100px #fff inset;color:#333;}


form,
.submitted-message {
  color: #74808F;font-size: 16px;font-family: ;;

}

/* Form title */

.form-title, .formResetStyling h4 {
   color: #000000;font-size: 20px;font-family: ; font-weight: 600;;
  font-family: 'Archivo', sans-serif;
  
  margin:0 0 20px;
  
  
  
}

.req-form-wrap .form-title {
    margin: 0 0 30px;
}
.req-form-wrap form .hs-button, .req-form-wrap form input[type=submit] {
    width: 100%;
}

/* Labels */

form label {
  color: #4F5866;
}

/* Help text */

form legend {
  color: #4F5866;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  border: 1px solid #EAEBEB;

  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  color: #A8B0B8;
  border-radius: 0px;
}

/* Form placeholder text */

::-webkit-input-placeholder {
  color: #A8B0B8;
}

::-moz-placeholder {
  color: #A8B0B8;
}

:-ms-input-placeholder {
  color: #A8B0B8;
}

::placeholder {
  color: #A8B0B8;
}

/* Inputs - date picker */

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

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

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

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

/* Submit button */


/*********************************************** Form CSS **********************************************/
.hs_error_rollup{display:none;}
form .hs-form-field{position:relative;}
form ul.hs-error-msgs.inputs-list{position:relative;right:0;list-style-type:none;padding:0;margin:0;}
form ul.hs-error-msgs.inputs-list > li > label{font-weight:500;position:relative;z-index:9;color:; font-size:12px; line-height:normal;}
form ul.hs-error-msgs.inputs-list:after{content:'';width:8px;height:8px;position:absolute;display:inline-block;left:50%;background:#ff0000;margin-left:-6px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);margin-top:-4px;top:0; display:none;}
input,textarea,select{border-radius:0;}
button,html input[type="button"],input[type="reset"],input[type="submit"],textarea{-webkit-appearance:none;border-radius:0;transition:all 0.5s ease;-moz-transition:all 0.5s ease;-ms-transition:all 0.5s ease;-o-transition:all 0.5s ease;-webkit-transition:all 0.5s ease;}

input[type="text"],input[type="tel"],input[type="email"]{-webkit-appearance:none!important;}
input[type="submit"]{cursor:pointer;transition:all 0.5s ease;}
textarea{overflow:auto;vertical-align:top;resize:none;}
.hs-form-required { display:none;}
/* -------- Forms --------- */
.hs-form textarea,.hs-form input[type="text"],.hs-form input[type="password"],.hs-form input[type="datetime"],.hs-form input[type="datetime-local"],.hs-form input[type="date"],.hs-form input[type="month"],.hs-form input[type="time"],.hs-form input[type="week"],.hs-form input[type="number"],.hs-form input[type="email"],.hs-form input[type="url"],.hs-form input[type="search"],.hs-form input[type="tel"],.hs-form input[type="color"],.hs-form select{
  border: 1px solid #EAEBEB;

  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  color: #A8B0B8;
  border-radius: 0px;
  font-family: 'Inter', sans-serif;
width:100% !important; font-weight: 400;
font-size: 16px;
line-height: 150%; height:40px; padding:10px 10px;  }
.hs-form input:focus{outline:0;}
form .hs-error-msgs.inputs-list>li {
    margin: 0;
}
.hs-form select{-webkit-appearance:none;background:transparent;}
.hs-form-field > label{ font-family: 'Inter', sans-serif;font-weight:600;color:#4F5866;margin-bottom:5px;display:inline-block;}
.hs-form-field > label.red{color:#DA0000;}
.hs-form-field > label.sel{color:#21BAD1;font-size:12px;line-height:14px;top:-11px;}
.hs-form-field > label.upM{color:#21bad1;font-size:12px;line-height:14px;top:-11px;}
.hs-recaptcha{margin-bottom:30px;}
.hs-form-field{position:relative;margin-bottom:20px;}
.hs-form input[type="checkbox"]{margin-right:25px;}
.hs-form textarea{height:130px!important;resize:none!important;resize:none;width:100%!important;}
form input[type=submit],
form .hs-button {
  -webkit-appearance:none;
    border: 1px solid #E03842;
;
  padding-top: 10px;
padding-right: 20px;
padding-bottom: 10px;
padding-left: 20px;
;
  font-family: ; font-style: normal; font-weight: normal; text-decoration: none;
  color: #FFFFFF;
  font-size: 14px;
  background-color: 

  
  
    
  


  rgba(224, 56, 66, 1.0)

;
  border-radius: 5px;
  text-transform: none;
  line-height: normal;
  display:inline-block;text-decoration:none; font-family: 'Inter', sans-serif; font-weight:700;}
form input[type=submit]:hover,
form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:focus{
  border-color:

  
  
    
  


  rgba(224, 56, 66, 1.0)

;
  background-color:transparent;color:

  
  
    
  


  rgba(224, 56, 66, 1.0)

;text-decoration:none;
}

form input[type=submit]:active,
form .hs-button:active {

}

.hs-form-field .input{display:table;width:100%;margin:0!important;}

/* .invalid.error{
border-bottom: 1px solid #DA0000;
} */
.hs-error-msgs{position:relative;}
.hs-error-msgs li label{font-size:12px;line-height:14px;color:#DA0000;}
.hs-error-msgs li{list-style-type:none;}
.hs-form-checkbox{width:100%;float:left;list-style-type:none;}
.hs-form-radio{width:50%;float:left;list-style-type:none;}
.hs-form-checkbox input,.hs-form-radio input{margin-right:27px;}
form .hs-richtext{text-align:left;}
form{max-width:100%;width:100%;float:none!important;}
form legend{color:#8B8B8B;font-size:18px;margin-bottom:0;}
.submitted-message{text-align:center;font-size:20px;overflow:hidden!important;line-height:normal;}

/* Form Two Col Section */
.form-columns-2,.form-columns-1{max-width:100%!important;}
.form-columns-2 > div{width:48%!important;}
.form-columns-2 > div:first-child{float:left!important;}
.form-columns-2 > div:last-child{float:right!important;}

/* Radio Button Style */
.hs-form-radio label.hs-form-radio-display{display:flex;flex-wrap:wrap;}
.hs-form-radio-display .hs-input{display:none;}
.hs-form-radio label.hs-form-radio-display input+span{display:flex;flex-wrap:wrap;align-items:center;position:relative; line-height:normal; padding-left: 25px;}
.hs-form-radio label.hs-form-radio-display input+span:before{
  background-color:#E03842;
  border-radius: 100%;
    content: "";
    display: inline-block;
    height: 14px;
    margin-right: 0;
    transition: all .5s ease;
    width: 14px;
    position: absolute;
    left: 0;}
.hs-form-radio label.hs-form-radio-display input:checked+span:before{  background-color:#E03842;}
.hs-form-radio label.hs-form-radio-display input:checked+span:after{background-color: #ffffff;
    border-radius: 100%;
    content: "";
    height: 6px;
    position: absolute;
    transition: all .5s ease;
    width: 6px;
    left: 4px;}

/* Checkbox Style */

.hs-form-checkbox label.hs-form-checkbox-display{display:flex;flex-wrap:wrap;}
.hs-form-checkbox-display .hs-input, .hs-fieldtype-booleancheckbox .hs-input, .legal-consent-container .hs-form-booleancheckbox-display input{display:none;}
.hs-form-checkbox label.hs-form-checkbox-display input+span, .legal-consent-container .hs-form-booleancheckbox-display input + span, .hs-fieldtype-booleancheckbox input + span  {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding-left: 25px;
}
.hs-form-checkbox label.hs-form-checkbox-display input+span:before, .legal-consent-container .hs-form-booleancheckbox-display input + span:before, .hs-fieldtype-booleancheckbox  input + span:before {
    width: 15px;
    height: 15px;
    content: "";
  background-color: #fff;
    display: inline-block;
    margin-right: 13px;
    transition: 0.5s ease all;
    position: absolute;
    left: 0;
}
.hs-form-checkbox label.hs-form-checkbox-display input:checked+span:before, .legal-consent-container .hs-form-booleancheckbox-display input + span:before, .hs-fieldtype-booleancheckbox input + span:before {background-color:#fff;}
.hs-form-checkbox label.hs-form-checkbox-display input:checked+span:after, .legal-consent-container .hs-form-booleancheckbox-display input:checked+span:after, .hs-fieldtype-booleancheckbox input:checked + span:after {
    content: "\f00c";
    position: absolute;
    left: 3px;
    transition: 0.5s ease all;
    font-family: fontawesome;
  color:#A8B3B8;
   
    font-size: 10px;
}


li.hs-form-booleancheckbox {
    margin: 0 0 10px !important;
}

.legal-consent-container li.hs-form-booleancheckbox input+span {
    margin: 0 !important;
}

.legal-consent-container .hs-form-booleancheckbox-display input {
    display: none;
}


ul.inputs-list.multi-container li {
    width: 48%;
}
ul.inputs-list.multi-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}



.legal-consent-container .hs-form-booleancheckbox-display input+span:before {
    top: 7px;
}

.legal-consent-container .hs-form-booleancheckbox-display input+span:after {
    top: 4px;
}


li.hs-form-checkbox {
  margin: 0.7rem 0;
}

.form-columns-2 ul.inputs-list.multi-container li {
    width: 100%;
}




.header {
  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
}


.menu__link,
.header__logo .logo-company-name,
.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {
  color: #4C4A4B;
  font-family: ;
}

.menu__child-toggle-icon {
  border-top-color: #4C4A4B;
}

.menu .menu__link:hover,
.menu .menu__link:focus,
.header__language-switcher-label-current:hover,
.header__language-switcher-label-current:focus,
.header__language-switcher .lang_list_class li:hover a,
.header__language-switcher .lang_list_class li a:focus {
  color: #242223;
}

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

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

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

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

@media (min-width: 767px) {
  .menu .menu__submenu,
  .header__language-switcher .lang_list_class {
    
    background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  }

  .menu__submenu--level-2 > .menu__item:first-child:before {
    
    background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  }
}

.menu__submenu .menu__link,
.menu__submenu .menu__link:hover,
.menu__submenu .menu__link:focus {
  color: #293444;
  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
}

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

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

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
}

.header__language-switcher .lang_list_class.first-active::after {
  border-bottom-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
}

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

.header__language-switcher-label-current:after {
  border-top-color: #4C4A4B;
}

@media(max-width: 767px) {
  .header__navigation {
    background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  }

  .header__navigation-toggle svg,
  .menu-arrow svg {
    fill: #4C4A4B;
  }
}





.footer {
  background-color: 

  
  
    
  


  rgba(41, 52, 68, 1.0)

;
}

/* Footer content */

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





.blog-post,
.blog-header__inner,
.blog-related-posts {
  padding: 80px 0;
}

/* Blog post */

.blog-post__meta a {
  color: #74808F;
}

.blog-post__tag-link {
  color: #74808F;
}

.blog-post__tag-link:hover,
.blog-post__tag-link:focus {
  color: #4c5867;
}

.blog-post__tag-link:active {
  color: #9ca8b7;
}

/* Blog related posts */

.blog-related-posts__title-link,
.blog-related-posts__title-link:hover,
.blog-related-posts__title-link:focus,
.blog-related-posts__title-link:active {
  font-weight: 400; text-decoration: none; font-family: ; font-style: normal;
  text-transform: capitalize;
}

.blog-related-posts__title-link {
  color: #293444;
}

.blog-related-posts__title-link:hover,
.blog-related-posts__title-link:focus {
  color: #010c1c;
}

.blog-related-posts__title-link:active {
  color: #515c6c;
}

/* Blog comments */

.blog-comments {
  margin-bottom: 80px;
}

#comments-listing .comment-reply-to {
  color: #E03842;
}

#comments-listing .comment-reply-to:hover,
#comments-listing .comment-reply-to:focus {
  color: #b8101a;
}

#comments-listing .comment-reply-to:active {
  color: #ff606a;
}





.hs-search-results__title {
  font-weight: 400; text-decoration: none; font-family: ; font-style: normal;
  color: #293444;
}





/* Blog listing */

.hs-blog-post-listing__post-title-link,
.hs-blog-post-listing__post-title-link:hover,
.hs-blog-post-listing__post-title-link:focus,
.hs-blog-post-listing__post-title-link:active {
  font-weight: 400; text-decoration: none; font-family: ; font-style: normal;
  text-transform: capitalize;
}

.hs-blog-post-listing__post-title-link {
  color: #293444;
}

.hs-blog-post-listing__post-title-link:hover,
.hs-blog-post-listing__post-title-link:focus {
  color: #010c1c;
}

.hs-blog-post-listing__post-title-link:active {
  color: #515c6c;
}


.hs-blog-post-listing__post-tag,
.hs-blog-post-listing__post-author-name {
  color: #74808F;
}

/* Blog pagination */

.hs-pagination__link-text,
.hs-pagination__link--number {
  color: #74808F;
}

.hs-pagination__link:hover .hs-pagination__link-text,
.hs-pagination__link:focus .hs-pagination__link-text,
.hs-pagination__link--number:hover,
.hs-pagination__link--number:focus {
  color: #4c5867;
}

.hs-pagination__link:active .hs-pagination__link-text,
.hs-pagination__link--number:active {
  color: #9ca8b7;
}

.hs-pagination__link-icon svg {
  fill: #74808F;
}

/* Pricing card */

.card__price {
  font-weight: 700; text-decoration: none; font-family: ; font-style: normal;
  color: #293444;
  font-size: 20px;
}

.card__body svg {
  fill: #E03842;
}

/* Social follow */

.social-links__icon {
  background-color: #E03842;
}

.social-links__icon:hover,
.social-links__icon:focus {
  background-color: #b8101a;
}

.social-links__icon:active {
  background-color: #ff606a;
  font-weight: 700; text-decoration: none; font-family: ; font-style: normal;
  color: #293444;
  font-size: 20px;
}


/*---------------Header-Module-Css--------------------------------*/
.top-head-bar .head-wrapper {
    margin: 0 auto;
    max-width: 1380px;
    padding: 0 20px;
    width: 100%;
}
.top-head-bar .btn-1 a {
    letter-spacing: .1em;
    text-transform: uppercase;
      font-size: 10px;
    min-width: auto;
  padding: 7px 20px;
}
.top-head-bar .btn-wrapper {
    text-align: right;
}
.top-head-bar {
    padding: 5px 0;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    -webkit-transition: all .5s ease;
}

.j-sticky .enumenu_ul .hs-menu-wrapper>ul>li { padding:25px 0}
.j-sticky .top-head-bar {
    margin-top: -38px;
}
.head-sticky{position:fixed;top:0;left:0;right:0;width:100%;z-index:1111;background-color:

  
  
    
  


  rgba(255, 255, 255, 1.0)

;}
.j-sticky .site-logo img{opacity:0;visibility:hidden;}
.site-logo .sticky-logo{opacity:0;visibility:hidden;position:absolute;left:1px;top:1px;}
.j-sticky .site-logo .sticky-logo{opacity:1;visibility:visible;}
.j-sticky .site-logo{height:35px;width:35px;}
.site-logo .sticky-logo{transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;-webkit-transition:all 0.3s ease;}
.site-logo{width:158px;display:inline-block;position:relative;transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;-webkit-transition:all 0.3s ease;}
.site-logo a{width:100%;display:inline-block;}
.nav-menu-right{display:flex;flex-wrap:wrap;width:calc(100% - 158px);padding-left:50px;align-items:center;justify-content:space-between;}
.j-top-head .head-wrapper{max-width:1380px;margin:0 auto;padding:0 20px;width:100%;}
.j-top-wrapper{display:flex;flex-wrap:wrap;width:100%;align-items:center;}
.menu-icon{display:none;cursor:pointer;color:#fff;text-transform:uppercase;text-align:center;font-weight:bold;line-height:33px;font-size:22px;padding:10px 0;}
.menu-icon .menu-box{height:25px;margin-right:0px;padding:0;position:absolute;right:0;width:30px;top:-29px;}
.menu-icon.active .menu-box{position:absolute;right:0;transition:all 0.5s ease 0s;}
.menu-icon .menu-box span{width:100%;height:4px;margin-bottom:6px;background:#4C4A4B;display:block;border-radius:2px;transition:all 0.4s ease 0s;-webkit-transition:all 0.4s;}
.menu-icon.active span:nth-child(1){transform:rotate(45deg) translateY(8px) translateX(6px);-webkit-transform:rotate(45deg) translateY(8px) translateX(6px);}
.menu-icon.active span:nth-child(2){opacity:0;}
.menu-icon.active span:nth-child(3){transform:rotate(-45deg) translateY(-8px) translateX(6px);-webkit-transform:rotate(-45deg) translateY(-8px) translateX(6px);}
.enumenu_ul .hs-menu-wrapper ul{padding:0px;margin:0;list-style:none;}
.enumenu_ul .hs-menu-wrapper > ul  > li{display:inline-block;vertical-align:top;margin-right:40px;position:relative;padding:30px 0;}
.enumenu_ul .hs-menu-wrapper > ul  > li > a{color:#4C4A4B;font-family:'Inter',sans-serif;font-family:;text-transform:uppercase;letter-spacing:0.05em;font-weight:700;font-size:16px;line-height:normal;}
.enumenu_ul .hs-menu-wrapper > ul  > li:hover > a,.enumenu_ul .hs-menu-wrapper > ul  > li.active > a{color:#E03842;}
.enumenu_ul .hs-menu-wrapper > ul > li ul{visibility:hidden;opacity:0;flex-direction:inherit!important;transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;-webkit-transition:all .3s ease;-ms-transform:translateY(20px);-moz-transform:translateY(20px);-webkit-transform:translateY(20px);transform:translateY(20px);}
.enumenu_ul .hs-menu-wrapper > ul ul li{width:100%;margin:0;list-style:none;position:relative;}
.enumenu_ul .hs-menu-wrapper > ul ul{top:100%;z-index:999;list-style:none;left:-15px;background-color:

  
  
    
  


  rgba(255, 255, 255, 1.0)

;position:absolute;min-width:200px;box-shadow:0px 0px 15px rgba(0,0,0,0.11);border-radius:0 0 5px 5px;}

/*Sub menu styles*/
.enumenu_ul.desk .hs-menu-wrapper>ul li:hover>ul{display:block;opacity:1;visibility:visible;-ms-transform:translateY(0px);-moz-transform:translateY(0px);-webkit-transform:translateY(0px);transform:translateY(0px);}
.enumenu_ul.desk .hs-menu-wrapper > ul .sb-menu .sb-menu{left:100%;top:0;}
.enumenu_ul.desk .hs-menu-wrapper > ul  ul li a{display:block;font-size:16px;padding:10px;text-align:left;background-color:

  
  
    
  


  rgba(255, 255, 255, 1.0)

;border-radius:2px;color:#293444;}
.enumenu_ul.desk .hs-menu-wrapper > ul ul li:hover > a{background:#F4F5F5;}
.nav-inner-right .btn-wrapper div a{letter-spacing:0.05em;padding:11px 15px;}
/* .nav-inner-right{width:234px;} Please message ike before uncommenting this line*/
.enumenu_ul .hs-menu-wrapper>ul>li:last-child{margin-right:0;}
.enumenu_ul .hs-menu-wrapper>ul ul.mega-menu-box{min-width:462.1px;padding-bottom:30px;}
.sub-part-nav h6{ color: #293444;font-size: 16px;font-weight: 600; font-family: ;;font-family:'Archivo',sans-serif;padding-left:30px;padding-top:15px;}
.menu-inner-wrap{display:flex;flex-wrap:wrap;width:100%;align-items:flex-start;position:inherit;}
.mega-menu-box .menu-inner-part-right{width:calc(100% - 43%);position:absolute;top:0;left:43%;opacity:0;visibility:hidden;height:calc(100% + 30px);display:flex;flex-wrap:wrap;overflow:hidden;z-index:1;transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;-webkit-transition:all .3s ease; border-radius: 0 0 5px 0;}
.enumenu_ul .hs-menu-wrapper>ul ul li:hover .menu-inner-part-right{opacity:1;visibility:visible;}
.enumenu_ul .hs-menu-wrapper>ul>li:hover .mega-menu-box li:nth-child(2) .menu-inner-part-right{opacity:1;visibility:visible;}
.mega-menu-box .menu-inner-left{width:43%;padding-left:20px;;}
.sub-part-nav{position:relative;width:100%;}
.enumenu_ul .hs-menu-wrapper>ul ul.mega-menu-box li{width:100%;/*     height: 100%; */display:flex;flex-wrap:wrap;position:static;}
.enumenu_ul.desk .hs-menu-wrapper>ul ul li a:hover{background-color:#F4F5F5;}
.j-menu-svg-icon{background:#ffffff;box-shadow:0px 4px 5px rgba(0,0,0,0.25);border-radius:5px;width:200px;height:173px;display:flex;align-items:center;justify-content:center;margin:51px auto 0px;z-index:11;}
.j-top-head{z-index:11;}
.j-menu-content h6{ color: #293444;font-size: 16px;font-weight: 600; font-family: ;;font-family:;letter-spacing:0.05em;text-transform:uppercase;padding:0;margin:0 0 5px;font-weight:700;}
.j-menu-content p{color:#ffffff;}
.j-menu-content{padding:0 30px;margin-top:auto;}
.icon-overlay{position:absolute;left:0;right:0;top:-30px;z-index:1;mix-blend-mode:overlay;width:100%;-ms-transform:scale(1.1);-moz-transform:scale(1.1);-webkit-transform:scale(1.1);transform:scale(1.1);}
.icon-overlay svg{width:100%;height:100%;}
.enumenu_ul .hs-menu-wrapper>ul>li.hover .mega-menu-box li:nth-child(2) .menu-inner-part-right{opacity:1;visibility:visible;}
.simple-menu-box .menu-inner-left{width:100%;padding-left:30px;padding-right:20px;}
.enumenu_ul .hs-menu-wrapper>ul ul.simple-menu-box{padding-bottom:30px;}
a.menubelow{position:relative;}
a.menubelow:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/drop%20down%20arrow.svg');position:absolute;content:"";width:9px;height:6px;background-repeat:no-repeat;background-size:cover;background-position:center center;right:-9px;top:50%;-ms-transform:translateY(-50%);-moz-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%);transform:translateY(-50%);transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;-webkit-transition:all .3s ease;}
a.menubelow{position:relative;padding-right:10px;}
.enumenu_ul .hs-menu-wrapper>ul>li.active>a.menubenlow:after,.enumenu_ul .hs-menu-wrapper>ul>li:hover>a.menubelow:after{filter:invert(29%) sepia(91%) saturate(2441%) hue-rotate(338deg) brightness(92%) contrast(91%);/*         -ms-transform: translateY(-50%) rotate(180deg);
   -moz-transform: translateY(-50%) rotate(180deg);
  -webkit-transform:translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg); */}
  .search-box form{display:flex;flex-wrap:wrap;align-items:center;position:relative;}
  .search-box form button{order:1;position:absolute;left:-25px;padding:0;margin:0;background-color:transparent;border:0;top:12px;}
  .search-box form input{order:2;}
  .search-box .hs-search-field{position:absolute;left:0;right:0;width:0%;padding-right:0px;padding-left:73px;visibility:hidden;opacity:0;top:23px;transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;-webkit-transition:all .3s ease;}
  .search-box form input.hs-search-field__input{width:calc(100% - 25px);border-bottom:1px solid #D5D6D8;border-top:0;border-left:0;border-right:0;font-size:16px;font-family:'Inter',sans-serif;font-family:;padding-left:5px;color:#4F5866;height:35px;}
  .search-box form button svg{width:15px;height:15px;}
  .nav-menu-right{transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;-webkit-transition:all 0.3s ease;position:relative;}
  .nav-inner-right{display:flex;flex-wrap:wrap;align-items:center;}
  .search-box{margin-right:30px;}
  .search-icon{cursor:pointer;width:35px;text-align:center;display:flex;align-items:center;justify-content:center;}
  .search-icon svg{width:15px;height:15px;}
  .nav-inner-right .btn-wrapper div a{text-transform:uppercase;}
  .search-box.active .hs-search-field{visibility:visible;opacity:1;width:calc(100% - 221px);}
  .search-box.active .hs-search-field{opacity:1;visibility:visible;width:calc(100% - 186px);background-color:#ffffff;}
  .search-box.active .search-icon{visibility:visible;opacity:0;}
  

  .search-box form input.hs-search-field__input::-webkit-input-placeholder{color:#4F5866;line-height:1;font-family:'Inter',sans-serif;font-family:;}
  .search-box form input.hs-search-field__input::-moz-placeholder{color:#4F5866;line-height:1;font-family:'Inter',sans-serif;font-family:;}
  .search-box form input.hs-search-field__input:-ms-input-placeholder{color:#4F5866;line-height:1;font-family:'Inter',sans-serif;font-family:;}
  .search-box form input.hs-search-field__input:-moz-placeholder{color:#4F5866;line-height:1;font-family:'Inter',sans-serif;font-family:;}
  
  .dummy-class{min-height:500px;}
  .j-sticky .nav-menu-right{width:calc(100% - 35px);transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;-webkit-transition:all 0.3s ease;}
  .j-sticky .search-box.active .hs-search-field{width:calc(100% - 186px);padding-left:50px;background-color:#ffffff; top:20px;}
  .mobile-menu{display:none;}

.hide-sub-menu .head-sticky{box-shadow:0px 5px 10px rgba(0,0,0,0.05);}
.hs-search-field--open .hs-search-field__suggestions{background-color:#ffffff;border:0!important;padding:25px 15px 0;position:absolute;width:calc(100% - 300px);margin:0 auto;left:73px;right:25px;box-shadow:0px 0px 15px rgba(0,0,0,0.11);border-radius:0 0 5px 5px;max-height:450px;overflow-y:auto;}
.hs-search-field__suggestions li a{padding:5px 0px;color:#293444;}
.hs-search-field__suggestions li a:hover{background-color:transparent;}
.hs-search-field__suggestions li{width:100%;}
.hs-search-field__suggestions li a:hover{color:#293444;}
.hs-search-field__suggestions #results-for h3{font-weight:400;color:#E03842;margin:0 0 10px;width:100%;}
.hs-search-field__suggestions li h4{display:flex;flex-wrap:wrap;align-items:center;margin:0;}
.hs-search-field__suggestions li h4 span{color:#4BA5FF;line-height:normal;margin:0 10px 5px 0;}
.hs-search-field__suggestions li h4 label{font-size:13px;line-height:normal;padding:0;margin:0 0px 5px 0;color:#D5D6D8;font-weight:400;}
.hs-search-field__suggestions li span.hs-search-highlight{font-weight:700;}
.hs-search-field__suggestions li h4 a:hover{color:#E03842;}

/*----Secondary-menu-Module---------------*/
.wrap-drop{display:none;}
.secondary_menu_sec{background:linear-gradient(270deg,#8989f8 2.09%,#4ba5ff 88.67%);display:flex;flex-wrap:wrap;justify-content:center;width:100%;   transition: all 0.5s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;}
.secondary_menu_sec .content-wrapper{margin:0 auto;max-width:1380px;padding:0 20px;width:100%;}
ul.secondary_menu_box{display:flex;flex-wrap:wrap;justify-content:center;width:100%;}
ul.secondary_menu_box li{margin-right:30px;}
ul.secondary_menu_box li a{font-weight:700;letter-spacing:0.05em;line-height:normal;display:inline-block;padding-top:18px;padding-bottom:18px;text-transform:uppercase;color:rgba(255,255,255,.7);}
ul.secondary_menu_box li a{position:relative;}
ul.secondary_menu_box li a:after{border-bottom:3px solid#293444;position:absolute;content:"";width:0%;left:0;bottom:0px;transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;-webkit-transition:all .3s ease;}
ul.secondary_menu_box li a:hover{color:rgba(255,255,255,1);}
ul.secondary_menu_box li a:hover:after{width:100%;right:0;}
ul.secondary_menu_box li:last-child{margin-right:0;}
header.header{margin-top:119px;}
.nav-inner-right.hide-desk{display:none;}
.j-sticky .secondary_menu_sec { max-width: 100%;}

/*------------Footer-Module----------------*/
.j-footer-sec{padding:185px 0 80px;background-position:inherit!important;background-repeat:no-repeat;z-index:11;}
/* .j-footer-sec:before{
background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/footer-left-bg.svg');position:absolute;left:0px;top:110px;content:"";width:210px;height:373px;background-position:center center;background-repeat:no-repeat;z-index:-1;} */
.j-footer-top{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;}
.footer-logo{width:203px;display:inline-block;}
.footer-logo a{display:inline-block;width:100%;}
.j-top-footer-middle-col{width:31.2%;display:flex;flex-wrap:wrap;font-size:14px;}
.j-top-footer-middle-col a{color:#ffffff;display:flex;align-items:center;flex-wrap:wrap;}
.j-top-footer-middle-col .call-box{margin-right:50px;}
.j-top-footer-middle-col a span{width:30px;height:30px;border:1px solid#4F5866;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;border-radius:100%;margin-left:8px;transition:all 0.5s ease;-moz-transition:all 0.5s ease;-ms-transition:all 0.5s ease;-o-transition:all 0.5s ease;-webkit-transition:all 0.5s ease;}
.j-top-footer-middle-col a:hover span{border-color:#E03842;}
.j-top-footer-middle-col a:hover{color:#E03842;}
.j-top-right-col{width:25.1%;display:flex;flex-wrap:wrap;align-items:center;font-size:14px;}
.j-top-right-col label{align-items:center;color:#ffffff;display:flex;flex-wrap:wrap;}
.j-top-right-col ul{display:flex;flex-wrap:wrap;}
.j-top-right-col ul li a{width:30px;height:30px;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;border:1px solid #4F5866;border-radius:100%;}
.j-top-right-col ul li{margin-left:20px;}
.footer{background-color:transparent;}
.j-top-right-col ul li a:hover{border-color:#E03842;}
.j-footer-bottom{display:flex;flex-wrap:wrap;justify-content:space-between;width:100%;margin-top:63px;}
.j-footer-col{width:26.7%;}
.j-footer-col h6{width:100%;color: #293444;font-size: 14px;font-weight: 600; font-family: ;;color:#ffffff;}
.j-footer-col ul li a{color:#A8B0B8;}
.j-footer-col ul li{margin:0 20px 10px 0;display:flex;flex-wrap:wrap;width:40%;}
.j-footer-col ul{display:flex;flex-wrap:wrap;}
.j-footer-col ul li:nth-child(2n){margin-right:0;}
.j-footer-bottom .btn-wrapper{width:auto;position:relative;}
.j-footer-bottom-right::before{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/button_over_image.svg');content:"";position:absolute;width:204px;top:-34px;bottom:0;right:-25px;height:119px;background-repeat:no-repeat;background-position:top center;z-index:-1;}
.j-top-right-col ul li a svg{height:14px;}
.j-top-right-col ul li a span{display:flex;justify-content:center;flex-wrap:wrap;}
.j-footer-bottom .btn-wrapper span{font-weight:400;font-size:12px;line-height:150%;max-width:152px;display:flex;flex-wrap:wrap;justify-content:center;text-align:center;margin:38px 0 0;}
.j-footer-col ul li a:hover{color:#E03842;}
.j-footer-bottom-right{display:flex;flex-wrap:wrap;width:35.3%;justify-content:flex-end;align-items:flex-start;position:relative;}
.j-footer-bottom .btn-wrapper:first-child:before{display:none;}
.j-footer-bottom .btn-wrapper{margin-left:34px;}
.j-footer-bottom .btn-wrapper:first-child{margin-left:0;}
.j-footer-bottom-right span{display:block;text-align:right;width:100%;margin-top:50px; color:#74808F;}
.white-popup{background:#ffffff;margin:20px auto;max-width:700px;padding:50px 40px;position:relative;transition:all 1s;width:auto;border-radius:10px;}
.formResetStyling .form-title{display:none;}
.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;}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready{opacity:0.8;}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing{opacity:0;}
.mfp-fade.mfp-wrap .mfp-content{opacity:0;transition:all 0.4s ease-out;}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content{opacity:1;}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content{opacity:0;}
.mfp-close-btn-in .mfp-close{opacity:1!important;width:30px;height:30px;border:1px solid#E03842;border-radius:100%;display:flex;align-items:center;justify-content:center;color:#E03842;top:5px;right:5px;}
.mfp-close-btn-in .mfp-close:hover{border-color:#74808F;color:#74808F;}
footer.footer{overflow:hidden;}
span.mob-copy{display:none;font-size:12px;margin-top:30px;text-align:right;width:100%;}
.footer-divied{position:absolute;z-index:1;width:100%;left:0;right:0;}
.footer-divied svg{width:100%;height:auto;}
.section-footer-divider{width:100%;}
.footer-logo img{width:203px;}

/*---------Hero-Banner-Module----------------*/
.hero_banner_module{background-repeat:no-repeat;width:100%;margin:0 auto;padding:125px 0 125px;overflow:hidden;}
.hero_banner_wrap{display:flex;flex-wrap:wrap;}
.hero_banner_left{width:37.3%;align-self:center;}
.right-inner-image img{width:100%;display:block;}
.hero_banner_right{width:calc(100% - 37.3%);padding-left:102px;position:relative;}
.hero_banner_module .content-wrapper{max-width:1170px;margin:0 auto;}
.hero_banner_right:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/Group%2087.png');position:absolute;content:"";top:-155px;width:676px;height:676px;z-index:-1;background-position:bottom;background-repeat:no-repeat;}
.hero_banner_left .hero_left_cont +  ul{display:flex;flex-wrap:wrap;width:100%;}
.hero_banner_left .hero_left_cont + ul li{width:33.33%;display:flex;flex-wrap:wrap;align-items:center;margin-bottom:30px;}

.hero_banner_module:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/banner_bottom_curve_image.svg');position:absolute;bottom:-1px;width:100%;content:"";min-height:70%;background-size:cover;background-repeat:no-repeat;background-position:center center;width:calc(100% + 2px);left:0;}
@media(max-width:2000px){
	.hero_banner_module:after{min-height:50%;}
}
@media(max-width:1500px){
	.hero_banner_module:after{min-height:35%;}
}
.hero_banner_left .hero_left_cont + ul li .bullet-icon{width:32px;height:32px;}
.hero_banner_left .hero_left_cont + ul li .bullet-icon div,.hero_banner_left .hero_left_cont + ul li .bullet-icon svg{position:relative;width:100%;height:100%;}
.hero_banner_left .hero_left_cont + ul li .bullet-list-cont{width:calc(100% - 32px);padding-left:13px;color:#ffffff;font-weight:600;}
.hero_left_cont *{color:#ffffff;}
.btn-box-wrap{display:flex;flex-wrap:wrap;}
.btn-box-wrap .btn-wrapper{margin-right:23px;}
.btn-box-wrap .btn-wrapper:last-child{margin-right:0;}
.right-inner-video{width:100%;}
.right-inner-video iframe,.right-inner-video *{width:100%;height:100%;min-width:100%!important;max-width:100%!important;}
.hide-desk-bullet{display:none;}
.hide-btn-desk{display:none;}

/*-----Content-Module-----------------*/
.j_content_sec {padding: 80px 0 0;}
.j_content_box_wrap {text-align: center; max-width: 710px;margin: 0 auto;}
/*--------------Two-Column-Module---------------*/
.j_two_col_wrap{display:flex;flex-wrap:wrap;width:100%;justify-content:space-between;align-items:center;}
.j_two_col_left{width:40%;}
.j_two_col_right{width:48%;}
.j_two_col_left .btn-wrapper{margin:25px 0 0;}
.j_icon_box{width:44px;height:44px;overflow:hidden;}
.j_icon_box svg{width:100%;height:100%;}
.j_cont_box{width:calc(100% - 44px);padding-left:25px;}
.j--col-wrap{display:flex;flex-wrap:wrap;margin:0 0 25px;}
.j_cont_box h4{margin:0 0 10px;}
.j_cont_box p:last-child{margin-bottom:0;}
.j--col-wrap:last-child{margin-bottom:0;}
.j_col_top_cont{margin:0 0 25px;}
.j_two_col_sec{padding-top:40px;}
.j_col_two_column{display:flex;flex-wrap:wrap;width:100%;}
.half_col{width:47%;margin-right:6%;margin-bottom:25px;}
.half_col .j_cont_box{width:100%;padding-left:0;margin-top:15px;}
.half_col:nth-child(2n){margin-right:0;}
.j_col_three_column{display:flex;flex-wrap:wrap;width:100%;align-items:flex-start;}
.three_col{display:flex;flex-wrap:wrap;width:29.33%;margin-right:6%;margin-bottom:25px;}
.three_col:nth-child(3n){margin-right:0;}
.three_col .j_cont_box{width:100%;padding-left:0;margin-top:15px;}
.j_two_col_right figure{text-align:center;padding-bottom:50px;padding-top:60px;position:relative;}
.j_two_col_right figure .top_left_img{left:-15px;position:absolute;max-width:250px;}
.bottom_right_img{position:absolute;right:0;max-width:250px;}
.swap-row{flex-direction:row-reverse;}
.j_two_col_sec:after{position:absolute;content:"";width:728px;height:1042px;right:0;top:-120px;background-repeat:no-repeat;background-size:cover;background-position:right center;z-index:1;}
.j_two_col_sec:before{position:absolute;content:"";width:732px;height:1042px;left:0;top:-200px;background-repeat:no-repeat;background-size:cover;background-position:left center;z-index:1;}
.j_col_top_cont h3{text-transform:capitalize;}
.j_col_top_cont h4{margin:0 0 10px;}

/*--------------Testimonials-Slider-Css------------------*/
.j_testimonial_sec{padding:110px 0 110px;}
.j_testimonials_sec_cont{text-align:center;width:100%;max-width:500px;margin:0 auto 80px;}
.j-testimonial-slider-part{display:flex;flex-wrap:wrap;padding-left:90px;padding-right:180px;position:relative;align-items:center;}
.j-slide-left-cont{width:34.7%;position:relative;}
.slider-nav .slick-track{display:flex;flex-wrap:wrap;justify-content:space-between;}
.slider-nav button.slide-arrow{padding:0;background-color:transparent;width:31px;height:28px;margin:0;border:1px solid#74808F;}
.j-slide-left-cont:before{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/quote.svg');content:"";position:absolute;left:-35px;top:-30px;width:60px;height:50px;z-index:-1;}
.j-right-slider{width:65.3%;padding-left:54px;}
.testimonail-slider-warp{position:relative;width:100%;}
.testimonail-slider-warp:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/background%20decorations.svg');background-position:50%;background-repeat:no-repeat;background-size:cover;content:"";height:520px;position:absolute;right:60px;top:-145px;width:561px;z-index:-1;}
.slider-nav{margin:80px auto 0px;padding:0 47px;width:621px;display:flex;flex-wrap:wrap;align-items:center;}
.slider-nav .j-slide-thumb.slick-slide{padding:0 7px;height:auto;position:relative;}
.slider-nav button.prev-arrow{position:absolute;left:0;}
.slider-nav button.next-arrow{right:0;position:absolute;}
.j-right-video iframe{width:100%!important;height:100%!important;}
.j-slide-thumb .j-right-video{height:100%;}
.j-right-video *{height:100%!important;}
.j-right-video .hs-embed-wrapper{max-width:100%!important;min-width:100%!important;width:100%!important;height:100%!important;}
.btn-wrapper a{min-width:150px;}
/* .slider-nav .j-slide-thumb.slick-slide:before {
    background-color: rgba(0,0,0,0.1);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: calc(100% - 14px);
    z-index: 1;
    margin: 0 auto;
} */
.j-slide-thumb .j-right-img,.j-slide-thumb .thumbnail-image{height:100%;}
.j-slide-thumb .j-right-img img,.thumbnail-image img{width:100%;height:100%!important;object-fit:cover;object-position:center center;}
.j-slide-thumb .thumbnail-image{position:relative;z-index:1;}
span.play-icon{position:absolute;z-index:1;right:0;/*     width: 30px;
	    height: 30px; */top:50%;left:50%;transform:translate(-50%,-50%);/*       box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); */border-radius:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;}
	span.play-icon img{border-radius:100%;}
	.j-slide-thumb .j-right-img,.j-slide-thumb .thumbnail-image{cursor:pointer;}
	.j_testimonial_sec .btn-wrapper{text-align:center;width:100%;}
	.slider-nav .slick-current.j-slide-thumb.slick-slide img{opacity:.5;}
	.hide-cont-desk{display:none;}

/*------------Cta-Box-Module---------------------*/
.j_cta_box_sec{max-width:870px;margin:0 auto 53px;border-radius:20px;padding:52px;overflow:hidden;}
.j_cta_box_sec.j_cta_box_sec_v2{overflow:visible;}
.j_cta_box_sec span.baseModuleOverlay{border-radius:20px;}
.j_cta_box_inner_wrap{max-width:500px;margin:0 auto;}
.j_cta_box_inner_wrap .btn-wrapper{margin:0 7px 0;}
.j_cta_box_inner_wrap *{color:#ffffff;}
.j_cta_box_sec{background-repeat:no-repeat!important;z-index:11;width:100%;}
.j_cta_box_btn_wrap{display:flex;flex-wrap:wrap;width:100%;margin:25px 0 0;}

/*------------Template-24--Css-------------------------*/
.feature_resources_top_title{margin:0 0 50px;width:100%;text-align:center;}
.feature_resources_sec{padding:28px 0 20px;}
.feature_resources_wrap{display:flex;flex-wrap:wrap;width:100%;}
.feature_resources_item{width:31.46%;margin-right:2.8%;display:flex;flex-wrap:wrap;position:relative;box-shadow:0px 0px 15px rgba(0,0,0,0.11);border-radius:15px;margin-bottom:30px;}
.feature_resources_item:nth-child(3n){margin-right:0;}
a.global_link{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;}
.feat_resources_image{height:220px;background-size:cover;background-position:center center;background-repeat:no-repeat;width:100%;border-radius:15px 15px 0 0;position:relative;}
.feat-icon{width:38px;height:38px;margin-left:auto;margin-top:25px;margin-right:25px;position:relative;z-index:1;}
.feat_cont{padding:20px 15px;display:flex;flex-wrap:wrap;height:calc(100% - 220px);}
.feat_cont h5{margin:0;}
.feature_resources_sec .btn-wrapper{text-align:center;width:100%;}
.feat_resources_image:before{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;z-index:1;background-color:rgb(41 52 68 / 50%);content:"";opacity:0;visibility:hidden;transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;-webkit-transition:all .3s ease;border-radius:15px 15px 0 0;}
.feature_resources_item:hover .feat_resources_image:before{opacity:1;visibility:visible;}
.feat_resources_image .btn-wrapper{position:absolute;z-index:1;top:50%;-ms-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);left:50%;opacity:0;visibility:hidden;}
.feature_resources_item:hover .feat_resources_image .btn-wrapper{opacity:1;visibility:visible;}

/*-----------Template-18---------------------------*/
.j_col_top_cont h5{color:#20C1B8;text-transform:uppercase;}
.top-divied svg{width:100%;height:auto;}
.top-divied{width:100%;position:absolute;z-index:1;top:-1px;}
.section-top-divider{padding:0;}
.two_col_sec{padding:220px 0 0;width:100%;}
.two_col_title h2{text-align:center;width:100%;}
.two_col_title{margin:0 0 64px;}
.two_col_item h5{margin:0 0 10px;}
.two_col_wrap{display:flex;flex-wrap:wrap;max-width:874px;margin:0 auto;justify-content:space-between;}
.two_col_item{width:48%;margin-bottom:30px;}
.two_col_item:nth-child(2n){margin-right:0;}
.full_image_wave_sec{padding:287px 0 287px;}
.section-bottom-divider{padding:0;}
.content-full-box{max-width:450px;margin:0 auto;}
.content-full-box *{color:#ffffff;text-align:center;}
.bottom-divied{position:absolute;bottom:-9px;width:100%;z-index:1;}
.bottom-divied svg{width:100%;height:auto;}


/*-------Counter-Module-css------------*/

.j_counter_sec{padding:85px 0;}
.counter-structure-warp{display:flex;flex-wrap:wrap;width:100%;}
.counter{background:linear-gradient(90.22deg,#54CBE1 2.72%,#4CB2E9 52.29%,#8C6DE7 99.84%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;text-fill-color:transparent;font-size:96px;line-height:1;font-weight:800;letter-spacing:0.05em;}
.counter-wrap-sec{display:flex;flex-wrap:wrap;justify-content:center;width:100%;}
.counter-item{min-width:23.5%;text-align:center;padding:25px 25px;border-right:1px solid #D5D6D8;}
.count-cont h5{margin:0;}
.counter-wrap-sec{margin:0 auto;}
.count-cont p:last-child{margin:0;}
.counter-item:last-child{border-right:0;}
.counter-top-cont{max-width:742px;margin:0 auto 44px;}
.counter-top-cont *{text-align:center;}
.count-cont{max-width:150px;margin:0 auto;}
.left-right-counter .counter-top-cont{margin:0;width:30%;}
.left-right-counter .counter-top-cont *{text-align:left;}
.left-right-counter .counter-wrap-sec{width:65%;margin-left:auto;margin-right:0;}
.counter-structure-warp.left-right-counter{align-items:center;justify-content:space-between;}
.left-right-counter .counter-item{min-width:33.33%;}
.left-right-counter .counter{letter-spacing:-0.065em;}
.left-right-counter .counter-item.four-column{padding:10px;min-width:auto;width:25%;}
.left-right-counter .four-column .counter{font-size:70px;}
.video_cta_repeat .btn-wrapper:last-child{margin-right:0;}
.video_cta_wrap:before{background-position:100%;background-repeat:no-repeat;background-size:cover;bottom:0;content:"";height:732px;left:-60px;position:absolute;right:0;top:0;width:858px;}
.video_cta_cont{position:relative;z-index:1;max-width:622px;margin:0 auto 25px;}
.video_cta_cont *{color:#ffffff;text-align:center;}
.video_cta_repeat{display:flex;flex-wrap:wrap;justify-content:center;position:relative;}
.video_cta_repeat .btn-wrapper{margin-right:20px;}
.video_cta_wrap{margin:0 auto;max-width:790px;position:relative;padding:80px 0 150px;}
.video_cta_box{border-radius:100%;height:262px;margin:0 auto 40px;position:relative;width:33.2%;transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;-webkit-transition:all .3s ease;}
.video_cta_box .hs-embed-wrapper,.video_cta_box .hs-embed-wrapper *{height:100%!important;max-width:100%!important;min-width:100%!important;width:100%!important;}
.video_cta_box iframe{width:262px!important;height:262px!important;border-radius:100%!important;}
span.j-video-icon{align-items:center;background-color:rgba(0,0,0,.1);border-radius:100%;bottom:0;display:flex;left:0;position:absolute;right:0;top:0;z-index:1;width:100%;height:100%;justify-content:center;}
.video_cta_box .play-video-btn{display:flex;align-items:center;justify-content:center;}
.active span.j-video-icon{display:none;}
.j-play-icon{background-color:rgba(0,0,0,.1);position:absolute;content:"";width:100%;height:100%;border-radius:100%;z-index:1;top:0;bottom:0;left:0;right:0;}
.video_cta_box.active  .j-play-icon{display:none;}
.video_cta_box.active{width:450px;border-radius:0!important;}
.video_cta_box.active iframe{border-radius:0!important;}
.video_cta_box video{border-radius:100%;object-fit:cover;width:100%;height:100%;}
.video_cta_box.active video{border-radius:0;object-fit:unset;}
.case_study_sec{padding:80px 0;}
.case-study-title{width:100%;margin:0 0 50px;}
.case-study-title *{text-align:center;width:100%;}
.case_study_box{display:flex;flex-wrap:wrap;width:100%;}
.case_study_item{width:31.39%;box-shadow:0px 0px 15px rgba(0,0,0,0.11);border-radius:15px;padding:42px 33px 33px;margin-right:2.9%;margin-bottom:40px;display:flex;flex-wrap:wrap;flex-direction:column;position:relative;background-color:#ffffff;z-index:11;}
.case_study_item:nth-child(3n){margin-right:0;}
.case_study_content h5{margin:0 0 10px;width:100%;}
.case_study_content p:last-child{margin-bottom:0;}
.case_study_content{display:flex;flex-wrap:wrap;width:100%;}
.case_study_sec .btn-wrapper{width:100%;text-align:center;}
.case_study_logo{margin-bottom:56px;height:52px;}
.case_study_logo img{width:100%;object-fit:contain;object-position:left center;height:100%;}
.j-right-img img{width:100%;}
.global_link{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;z-index:1;background:linear-gradient(270deg,#8989F8 2.09%,#4BA5FF 88.67%);border-radius:15px;display:flex;flex-wrap:wrap;justify-content:center;align-items:center;opacity:0;z-index:1;visibility:hidden;transition:all .5s ease;-moz-transition:all .5s ease;-ms-transition:all .5s ease;-o-transition:all .5s ease;-webkit-transition:all .5s ease;}
.case_study_item:hover 
.global_link{opacity:0.85;visibility:visible;}
.case_study_item .btn-2  a{border-color:#ffffff;color:#ffffff;}
.case_study_item .btn-2  a:hover{background-color:#E03842;border-color:#E03842;color:#ffffff;}


/*--------Request-a-Demo-Form----template-7--------------*/
.form-request-info{display:flex;flex-wrap:wrap;width:100%;justify-content:space-between;}
.form-left-cont{padding-left:0;padding-top:112px;width:40%;/*     margin-left: -90px; */}
.form-left-cont:before{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/Group%2043%20%281%29.svg');content:"";position:absolute;left:-118px;top:-175px;width:1000px;height:733px;z-index:-1;background-size:cover;background-position:center center;background-repeat:no-repeat;}
.cont-inner-left{max-width:330px;margin-right:auto;}
.cont-inner-left *{color:#ffffff;}
.req-form-right{width:40%;position:sticky;top:0;min-height:600px;}
.req-form-wrap{/*            position: fixed;  */
width:420px;padding:30px 30px 50px;margin-top:40px;box-shadow:0px 0px 15px rgba(0,0,0,0.05);border-radius:10px;margin-bottom:0;transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;-webkit-transition:all .3s ease;}
.single-content-wrap{width:49.5%;}
.single-content-wrap  h2{margin:0 0 30px;}
.single-content-wrap ul.list-item-wrap{margin:30px 0 0;padding:0;list-style:none;}
.single-content-wrap ul.list-item-wrap li{padding:0;margin:0 0 25px;display:flex;flex-wrap:wrap;     align-items: center;}
.list-item-cont{padding-left:34px;width:calc(100% - 48px);}
.item-icon{height:48px;overflow:hidden;width:48px;margin:0 auto;text-align:center;}
.item-icon svg{height:100%;width:100%;}
.list-item-cont h4{margin:0 0 5px;}
.list-item-cont p:last-child{margin-bottom:0;}
.single-content-wrap.w-100{width:100%;}
.req-form-wrap.form-sticky{margin-top:100px;}
/* .single-content-sec:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/mascot%20%285%29.svg');position:absolute;right:0;bottom:40px;content:"";width:233px;height:352px;z-index:-1;} */
.single-content-sec{
	margin-bottom:40px;
/* 	margin-top:-75px; */
	margin-top:-20vh;
	width:100%;}
.logo-slider-sec{z-index:0;padding:40px 0 40px;}
.logo-slider-top-title{text-align:center;margin:0 0 30px;}
.logo-slider-sec .slick-track{display:flex;align-items:center;flex-wrap:wrap;}
.logo-slider img{display:block;height:100%;margin:0 auto;object-fit:contain;object-position:center center;width:100%;-webkit-filter:grayscale(1);filter:grayscale(1);}

/* .logo-slider-wrap {
    margin: 0 -32px;
} */
.logo-slider{align-items:center;display:flex;flex-wrap:wrap;width:100%;padding:0 32px;/*         height: 26px; */}

/* .logo-slider:hover img{   -webkit-filter: grayscale(0);
  filter: grayscale(0);} */
.logo-slider-top-title h5{text-transform:uppercase;}

/*----------Template-14---------------------*/
.embed-sec{padding:40px 0;}
.embed-title{text-align:center;max-width:690px;margin:0 auto;}
.embed-code iframe{width:100% !important;height:100% !important;}
.embed-code{padding-top:30px;}
.embed-code img{display:block;margin:0 auto;}
.multiimg-sec{padding:280px 0 110px 0;}
.multiimg-main{display:flex;flex-wrap:wrap;}
.multiimg-right{display:flex;flex-wrap:wrap;}
.multiimgs{height:auto;margin-right:5.4%;/*     width: 29.7%; */margin-bottom:25px;flex-grow:1;}
.multiimgs:nth-child(3n){margin-right:0;}
.multiimg-left{width:43%;padding-right:60px;}
.multiimg-right{width:calc(100% - 43%);}
.multiimg-left h5{text-transform:uppercase;margin-bottom:0;}
.multiimgs img{width:100%;height:100%;object-fit:cover;object-position:center center;filter:drop-shadow(0px 0px 8px rgba(0,0,0,0.38));border-radius:5px;}


/*-----------Template-25--------------------------*/
.privacy-content-title h1{margin-bottom:5px;}
.privacy-content-main{max-width:867px;margin:0 auto;}
.privacy-content{padding:160px 0 80px 0;}
.privacy-content-title{position:relative;display:inline-block;padding-bottom:34px;}
.privacy-content-title:before{content:"";background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/Group%2085.jpg');width:416px;height:321px;position:absolute;top:-152px;left:-90px;background-repeat:no-repeat;background-position:top center;background-size:100%;z-index:-1;}
.privacy-content-para p{text-indent:50px;}
.privacy-content-para p:first-child{text-indent:0;}
.privacy-content-title p{display:inline-block;}
.privacy-content-title p,.privacy-content-title span{color:#293444;}
.privacy-content-title span{margin-left:5px;}
.j_cta_box_inner_wrap.j_cta_box_v2{margin-right:auto;margin-left:0;max-width:400px;}
.j_cta_box_sec .content-wrapper{padding:0;}
.j_cta_box_sec_v2 .customWidthOption{position:relative;display:flex;align-items:center;}
.j_cta_box_sec_v2 .cta_right-image{position:absolute;right:-50px;z-index:-1;}
.j_cta_box_sec.j_cta_box_sec_v2.image-space-top-bottom{margin:85px auto;}
.request-demo-form-sec{z-index:99;}

/*---------Result-Page-Css--------------------*/
.systems-page--search-results h3{color:#E03842;font-weight:400;margin:0 0 15px;width:100%;}
p.hs-search-results__message{display:none;}
.hs-search-results__content a h3{color:#4BA5FF;line-height:normal;margin:0;font-weight:600;}
.hs-search-results__listing{gap:15px;}
.hs-search-results__description{padding-top:0;}
.hs-search-results__link{display:flex;flex-wrap:wrap;align-items:center;margin:0;}
.hs-search-results__link h3.hs-search-results__title{display:flex;flex-wrap:wrap;width:auto;color:#4BA5FF;line-height:normal;margin:0 10px 5px 0;}
.hs-search-results__link label{color:#d5d6d8;font-size:13px;font-weight:400;line-height:1;margin:0 0 5px;padding:0;}
.hs-search-results__description:last-child{margin:0;}
.hs-search-field__suggestions li a:hover h4 label{color:#E03842;}
.hs-search-results__content a:hover .hs-search-results__link label{color:#E03842;}
.hs-search-results__link label,.hs-search-field__suggestions li a h4 label{transition:all 0.3s ease 0s;}
a.hs-search-results__pagination__link.hs-search-results__pagination__link--text-and-icon.hs-search-results__pagination__link--next.hs-search-results__pagination__link--disabled span{display:none;}
a.hs-search-results__pagination__link.hs-search-results__pagination__link--text-and-icon.hs-search-results__pagination__link--prev.hs-search-results__pagination__link--disabled span{display:none;}
.hs-search-results__pagination__link-icon{margin:0!important;width:auto;}
.hs-search-results__pagination{justify-content:center;margin:50px 0 50px;}
a.hs-search-results__pagination__link.hs-search-results__pagination__link--number.hs-search-results__pagination__link--active,a.hs-search-results__pagination__link.hs-search-results__pagination__link--number:hover,a.hs-search-results__pagination__link.hs-search-results__pagination__link--number:focus,a.hs-search-results__pagination__link.hs-search-results__pagination__link--number:active{border-color:#4BA5FF;color:#ffffff;background-color:#4BA5FF;}
.hs-search-results__pagination__link{font-weight:600;}
.hs-search-results__pagination__link:hover{color:#4BA5FF;}
a.hs-search-results__pagination__link.hs-search-results__pagination__link--number{height:30px;text-align:center;width:30px;font-weight:600;opacity:1;text-shadow:none;border:1px solid #E7EAEB;margin:0 10px;}

/*---------Template-21-----------------*/
.bg_color_v2 .right-inner-image{background-position:50%;background-repeat:no-repeat;background-size:cover;min-height:375px;padding:107px 32px 35px;position:relative;z-index:1;}
.bg_color_v2 .right-inner-image:before{background-color:rgba(32,193,184,.96);position:absolute;top:0;left:0;right:0;width:100%;height:100%;z-index:-1;content:"";}
.bg_color_v2 .right-inner-image h4{width:100%;margin:0 0 10px;letter-spacing:0.12em;text-transform:uppercase;color:#8383F1;font-weight:900;}
.pod-desc{width:100%;display:block;}
.bg_color_v2 .right-inner-image h2{width:100%;margin:0 0 10px;font-weight:700;}
.bg_color_v2 .right-inner-image *{color:#ffffff;}
.hero_banner_right h2 + span{display:flex;flex-wrap:wrap;width:100%;text-transform:uppercase;letter-spacing:0.12em;font-weight:600;margin:0 0 10px;}
.bg_color_v2 .right-inner-image .btn-2 a{border-color:#ffffff;color:#ffffff;min-width:152px;text-transform:capitalize;}
.bg_color_v2 .right-inner-image .btn-2 a:hover{border-color:#E03842;color:#ffffff;}
.bg_color_v2 .right-inner-image .btn-2{width:100%;text-align:right;margin-top:68px;}
.bg_color_v2 .topic-list a{letter-spacing:0.12em;text-transform:uppercase;}
.bg_color_v2 .topic-list{display:flex;flex-wrap:wrap;margin:10px 0 0;}
.bg_color_v2 .topic-list a{background:rgba(255,255,255,0.5);border:1px solid rgba(231,234,235,0.5);border-radius:5px;padding:5px 7px;color:#293444;margin-bottom:10px;margin-right:10px;}
.bg_color_v2 .topic-list a:hover{background:rgba(255,255,255,1);}
.j-global-item-wrap{display:flex;flex-wrap:wrap;width:100%;}
.j-global-col-item{border-radius:15px;box-shadow:0 0 15px rgba(0,0,0,.11);display:flex;flex-wrap:wrap;margin-bottom:30px;margin-right:2.8%;position:relative;width:31.46%;}
.j-global-col-image{background-position:50%;background-repeat:no-repeat;background-size:cover;border-radius:15px 15px 0 0;height:220px;position:relative;width:100%;}
.j-global-col-item .btn-wrapper .btn-2 a{background-color:rgba(255,255,255,0.0);color:#ffffff;border-color:#ffffff;}
.j-global-col-image .btn-wrapper{text-align:center;width:100%;}
.j-global-col-image .btn-wrapper{left:50%;opacity:0;position:absolute;top:50%;-ms-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);visibility:hidden;z-index:1;}
.j-global-icon{height:38px;margin-left:auto;margin-right:25px;margin-top:25px;position:relative;width:38px;z-index:1;}
.j-global-cont{display:flex;flex-wrap:wrap;height:calc(100% - 220px);padding:20px 15px;}
.j-global-cont h5{margin:0 0 10px;width:100%;}
.j-global-col-item:hover .j-global-col-image .btn-wrapper{opacity:1;visibility:visible;}
.j-global-col-item:hover .j-global-col-image:before{opacity:1;visibility:visible;}
.j-global-col-image:before{background-color:rgba(41,52,68,.5);border-radius:15px 15px 0 0;bottom:0;content:"";height:100%;left:0;opacity:0;position:absolute;right:0;top:0;transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;-webkit-transition:all .3s ease;visibility:hidden;width:100%;z-index:1;}
.j-global-col-item .btn-wrapper .btn-2 a:hover{background-color:#E03842;color:#ffffff;border-color:#E03842;}
.j-global-col-item:nth-child(3n){margin-right:0;}
.jplist-panel.box.panel-top{display:flex;flex-wrap:wrap;justify-content:flex-end;margin:50px 0 60px;}
.j-global-desc{margin-top:auto;}

/* ul.sorting-trigger li:first-child {
    pointer-events: none;
} */
.jp-list-filter{visibility:hidden;opacity:0;}
.load-cont .jp-list-filter{visibility:visible;opacity:1;}
.loader{display:inline-block;width:30px;height:30px;position:absolute;z-index:3;border:4px solid#E03842;top:250px;animation:loader 2s infinite ease;left:50%;-ms-transform:translate(0%,-50%);-moz-transform:translate(0%,-50%);-webkit-transform:translate(0%,-50%);transform:translate(0%,-50%);}
.loader-inner{vertical-align:top;display:inline-block;width:100%;background-color:#E03842;animation:loader-inner 2s infinite ease-in;}
.jp-list-filter .jplist-drop-down{background:#f4f5f5;border:0;border-radius:4px;color:rgba(41,52,68,.22);font-weight:600;height:auto;display:flex;align-items:center;text-shadow:none;width:auto;margin:0 22px 0 0;min-width:165px;box-shadow:none;}
.jp-list-filter .jplist-drop-down .jplist-dd-panel:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/Frame.svg');content:"";position:absolute;right:20px;width:13px;height:15px;background-position:center center;background-repeat:no-repeat;background-size:cover;z-index:0;}
.jp-list-filter .jplist-drop-down .jplist-dd-panel{float:none;line-height:normal;overflow:hidden;text-indent:0;cursor:pointer;height:49px;padding:0 20px 0 48px;width:100%;display:flex;align-items:center;flex-wrap:wrap;}
.jp-list-filter .jplist-drop-down:hover .jplist-dd-panel{color:rgba(41,52,68,.22);}
.jplist-drop-down ul li:hover{background-color:#f4f5f5;}
.jp-list-filter .jplist-drop-down ul{position:absolute;top:49px;left:0;width:100%;right:0;border:0;background-color:#f4f5f5;border-radius:0 0 5px 5px;box-shadow:none;}
.jp-list-filter .jplist-drop-down ul li{padding:0 20px;color:#293444;}
.jp-list-filter .jplist-drop-down ul li:hover{color:#E03842;}
.filter-dropdown .jplist-dd-panel:before{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/Frame%20%281%29.svg');content:"";position:absolute;width:19px;height:19px;background-size:cover;background-position:center center;left:14px;}
.sort-dropdown .jplist-dd-panel:before{position:absolute;content:"";background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/Frame%20%282%29.svg');left:14px;width:22px;height:19px;background-size:cover;background-position:center center;}
.jplist-panel .search-box-filter.text-filter-box{height:auto;float:none;margin:0;display:flex;align-items:center;flex-wrap:wrap;position:relative;}
.jplist-panel .search-box-filter.text-filter-box input[type="text"]{height:49px;width:316px;padding-left:48px;padding-right:20px;background:#F4F5F5;border-radius:4px;color:#293444;border:0;text-shadow:none;text-indent:inherit;box-shadow:none;float:none;}
.jplist-panel .search-box-filter.text-filter-box input[type="text"]::-webkit-input-placeholder{ /* Chrome/Opera/Safari */color:rgba(41,52,68,0.22);font-weight:600;}
.jplist-panel .search-box-filter.text-filter-box input[type="text"]::-moz-placeholder{ /* Firefox 19+ */color:rgba(41,52,68,0.22);font-weight:600;}
.jplist-panel .search-box-filter.text-filter-box input[type="text"]:-ms-input-placeholder{ /* IE 10+ */color:rgba(41,52,68,0.22);font-weight:600;}
.jplist-panel .search-box-filter.text-filter-box input[type="text"]:-moz-placeholder{ /* Firefox 18- */color:rgba(41,52,68,0.22);font-weight:600;}
.jplist-panel .search-box-filter.text-filter-box:before{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/Vector%20%2815%29.svg');content:"";position:absolute;left:14px;width:20px;height:21px;background-size:cover;background-position:center center;background-repeat:no-repeat;}
@keyframes loader{
	0%{transform:rotate(0deg);}
	25%{transform:rotate(180deg);}
	50%{transform:rotate(180deg);}
	75%{transform:rotate(360deg);}
	100%{transform:rotate(360deg);}
}
@keyframes loader-inner{
	0%{height:0%;}
	25%{height:0%;}
	50%{height:100%;}
	75%{height:100%;}
	100%{height:0%;}
}
.jp-list-filter .jplist-panel .jplist-pagination button{border:1px solid #E7EAEB;background:transparent;border-radius:0;color:#4BA5FF;width:36px;height:34px;padding:0;text-align:center;font-family:'Poppins',sans-serif;font-weight:600;opacity:1;text-shadow:none;margin:15px 10px 0 0;}
.jp-list-filter .jplist-panel.box.panel-bottom{justify-content:center;display:flex;flex-wrap:wrap;width:100%;margin:0 0 50px;}
.jp-list-filter  .jplist-label{width:36px;line-height:34px;height:34px;color:#4BA5FF;padding:0;font-family:'Poppins',sans-serif;font-weight:600;text-align:center;background:transparent;border:1px solid #E7EAEB;opacity:1;text-shadow:none;margin:15px 10px 0 0;}
.jp-list-filter .jplist-panel .jplist-pagination button.jplist-current{background-color:#4BA5FF;color:#ffffff;}
.jp-list-filter .jplist-panel.box.panel-bottom .jplist-one-page + .jplist-label{display:none;}
.jp-list-filter .jplist-label{display:none;}
.jp-list-filter .jplist-panel .jplist-pagination button:last-child{margin-right:0;}

/*-----------logo-Slider-Background-option--------------*/

/*---------------Template-17-------------*/
/* .case_study_sec { overflow:hidden;} */
.case-blob-img{position:absolute;right:0;top:-50px;z-index:-1;position:absolute;top:-50px;background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/f.svg');height:1163px;width:841px;background-size:cover;background-repeat:no-repeat;background-position:calc(100% + 75px);z-index:11;}
body{overflow-x:hidden;}
.j_two_col_sec .baseModuleParent{z-index:99!important;}
.case_study_sec .baseModuleParent{z-index:99!important;}
.j_two_col_sec:after,.j_two_col_sec:before{z-index:11;}

/*--------------Template-5-------------------*/
.hero-form-main{display:flex;flex-wrap:wrap;justify-content:space-between;width:100%;align-items:flex-start;position:relative;}
.hero-form-left{width:40%;margin-left:-65px;position:relative;}
.hero-form-right{width:40%;position:relative;padding-bottom:0;}
.hero-form-banner-module{margin:0 auto;max-width:1340px;padding:86px 0 50px}
/* .hero-form-main:before{position:absolute;content:'';background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/mascot%20%281%29.png');background-repeat:no-repeat;bottom:146px;height:361px;left:0;width:312px;z-index:1;} */
.hero-form-banner-module:after{background-image:url(https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/banner_bottom_curve_image.svg);background-position:50%;background-repeat:no-repeat;background-size:cover;content:"";left:0;min-height:280px;position:absolute;transform:scale(1.001);width:100%;width:calc(100% + 2px);top:215px;}
.hs-form select{background-color:#ffffff;background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/drop%20down%20arrow-2.svg');background-position:right 12px center;background-repeat:no-repeat; line-height:normal;}
.hero-form-contact-srt .form-title{margin-bottom:30px;}
.hero-form-main:before{display:none;}
.hero-form-banner-module{overflow:hidden;}
.hero-form-contact-srt .form-title{margin-bottom:40px;}
.hero-form-contact-srt .hs_submit.hs-submit{text-align:right;}
/* .hero-form-left:before{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/mascot%20%281%29.png');height:361px;width:312px;z-index:1;content:"";position:absolute;bottom:-470px;} */
.hero-form-main{min-height:600px;}

/*-------------Template-13--------------------*/
.toc { overflow-y: auto }

/* .toc>.toc-list{overflow:hidden;position:relative} */
.toc>.toc-list li { list-style: none; margin-bottom: 8px;     text-align: left; }

/* .toc-list{margin:0;padding-left:10px} */
a.toc-link { height: 100% }
.is-collapsible { max-height: 1000px; overflow: hidden; transition: all 300ms ease-in-out }
.is-collapsed { max-height: 0 }
.is-position-fixed { position: fixed !important; top: 0 }

/* .toc-link::before{background-color:#EEE;content:' ';display:inline-block;height:inherit;left:0;margin-top:-1px;position:absolute;width:2px} */
.is-active-link::before { background-color: #54BC4B }
.toc-list-item .toc-link { color: #74808F; transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; -webkit-transition: all .3s ease; }
.toc-link.is-active-link { font-weight: 700; color: #4BA5FF; }

.faq-section { padding: 174px 0 72px 0; }
.faq-right-question { display: flex; flex-wrap: wrap; }
.faq-right-question span { background-color: #E03842; display: flex; flex-wrap: wrap; width: 25px; height: 25px; border-radius: 100%; justify-content: center; align-items: center; margin-right: 13px; }
.faq-right-question h3 { color: #E03842; }

.faq-right-answer p:first-child { text-indent: 30px; position: relative; }
.faq-right-answer p:first-child:before { content: "A:"; position: absolute; left: -29px; color: #4BA5FF; font-weight: 900; font-size: 18px; }

.faq-sec-main { display: flex; flex-wrap: wrap; position: relative; }
.faq-cont-table { background: #ffffff; box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.11); border-radius: 15px; padding: 18px 25px 18px; text-align: center; }
.faq-cont-table h5 { margin-bottom: 8px; }
.faq-cont-table h2:after { content: ""; position: absolute; border: 1px solid rgba(0, 0, 0, 0.07); width: 128px; bottom: 13px; left: 50%; transform: translate(-50%, -50%); }
.faq-cont-table h2 { position: relative; padding-bottom: 23px; margin: 0; }
.faq-sec-left { width: 31.5%; margin-right: 3.6%; position: relative;     }
/* .faq-sec-left:after { content: ""; position: absolute; background-image: url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/mascot.jpg'); width: 361px; height: 382px; bottom: 30%; z-index: -1; background-repeat: no-repeat; background-position: center center; background-size: cover; } */
.faq-sec-right { width: calc(100% - 35.1%); }
.faq-right-main { margin-bottom: 38px; }
.faq-cont-table a.active h5 { color: #4BA5FF; }
.faq-right-question span svg circle { fill: #E03842; }
.faq-right-question span svg  path { fill: #ffffff; }
.faq-right-question h3 { display: flex; align-items: flex-start; }
.faq-right-answer p:last-child { margin: 0; }
.faq-right-main:last-child { margin: 0; }

.dual-cta-main-wrap { display: flex; flex-wrap: wrap; justify-content: space-between; }
.dual-cta-main { align-items: center; background: #ffffff; border-radius: 15px; box-shadow: 0 0 15px rgba(0, 0, 0, .05); display: flex; flex-wrap: wrap; width: 48.5%; margin-right: 2.9%; margin-bottom: 30px; }
.dual-cta-main:nth-child(2n) { margin-right: 0; }
.dual-cta-left img { border-radius: 15px 0 0 15px; height: 100% !important; object-fit: cover; object-position: center center; width: 100%; }
.dual-cta-right { width: calc(100% - 47.5%); padding: 30px 37px; }
.dual-cta-left { width: 47.5%; height: 100%; }
.dual-cta-sec { padding: 220px 0 30px 0; }
.dual-right-btn a { display: flex; flex-wrap: wrap; align-items: center; color: #E03842; }
.dual-right-btn span { padding-left: 5px; }
.dual-cta-right h5 { margin-bottom: 10px; }
.dual-cta-right p { margin-bottom: 10px; }


/*--------------------------------------------*/
.resp-vtabs .resp-tabs-list li{border:0!important;margin:0 0 5px!important;padding:5px!important;border-radius:5px;background-color:transparent!important;position:relative;}
.vertical-tab-inner{align-items:center;display:flex;flex-wrap:wrap;width:100%;border-radius:5px;padding:11px 15px;cursor:pointer;}
.tab-icon-img{width:50px;text-align:center;}
.vertical-tab-title{padding-left:15px;text-transform:uppercase;width:calc(100% - 50px);font-weight:700;}
.resp-vtabs ul.resp-tabs-list{float:none;width:20%;padding-right:7px;}
.vertical-tabbed{display:flex!important;flex-wrap:wrap;width:100%;}
.resp-vtabs .resp-tabs-container{border:0!important;border-radius:0;float:none;padding-left:95px;width:calc(100% - 20%);}

/* .resp-vtabs li.vertical-tab-item.resp-tab-active .vertical-tab-inner:before {

    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    border-radius: 5px;
} */
.resp-vtabs li.resp-tab-active  .vertical-tab-inner{background:#ffffff;box-shadow:0px 3.98943px 4.98678px rgba(0,0,0,0.25);}
.vertical-tab-icon{position:absolute;z-index:-1;top:0;left:0;width:100%;height:100%;overflow:hidden;border-radius:5px;visibility:hidden;opacity:0;}
.resp-vtabs li.resp-tab-active .vertical-tab-icon{visibility:visible;opacity:1;}
.vertical-tab-icon svg{height:116px;left:-15px;margin:0;opacity:.3;position:absolute;top:-20px;width:127px;z-index:-1;}
.resp-tab-content{padding:0;}
.resp-vtabs li.resp-tab-active .vertical-tab-title{color:#293444;}
.vertical-top-cont{display:flex;flex-wrap:wrap;width:100%;align-items:flex-end;justify-content:space-between;margin:0 0 10px;}
.vertical-top-left{width:calc(100% - 17%);padding-right:30px;}
.vertical-top-left p:last-child{margin-bottom:0;}
.vertical-btn-wrapper{width:auto;}
.tabbing-inner-slider{padding:0 50px;}
.tabbing-inner-slider button.slick-arrow{background-color:transparent;border:1px solid #74808f;height:28px;margin:0;padding:0;width:31px;position:absolute;}
.tabbing-inner-slider button.slide-arrow.prev-arrow{top:50%;transform:translateY(-50%);left:0;}
.tabbing-inner-slider button.slide-arrow.next-arrow{top:50%;transform:translateY(-50%);right:0;}
.tabbing-inner-slider ul.slick-dots{display:flex!important;flex-wrap:wrap;justify-content:center;width:100%;margin:0px 0 0;}
.tabbing-inner-slider ul.slick-dots li button{justify-content:center;width:8px;height:8px;display:flex;flex-wrap:wrap;border-radius:100%;margin:0 5px;background-color:#ffffff;border:2px solid#A8B0B8;padding:0;}
.tabbing-inner-slider ul.slick-dots li{padding:0;margin:0;line-height:0;font-size:0;}
.tabbing-inner-slider ul.slick-dots li.slick-active button{background-color:#293444;border-color:#293444;}
.vertical-tabbed-sec{padding:60px 0 20px;}
.tab-inner-slide-img img{height:100%;object-fit:cover;object-position:center center;width:100%;border-radius:10px;box-shadow:0px 0px 14.9581px rgba(0,0,0,0.11);}
.tabbing-inner-slider .slick-slide{height:auto;padding:25px 25px;}
.tabbing-inner-slider .slick-track{display:flex;flex-wrap:wrap;}
.tabbing-inner-slider .slick-slide{height:auto;}
.tab-inner-slide-img{height:100%;border-radius:10px;width:100%;}
.tiel_scroller_top_wrap{display:flex;flex-wrap:wrap;width:100%;align-items:center;margin:0 0 10px;}
.tiel_scroller_left{width:20%;}
.tiel_scroller_right{width:calc(100% - 20%);padding-left:180px;padding-right:148px;}
.tiel_scroller_right p:last-child{}
.btn-wrap button{background-color:transparent;border:1px solid#74808F;height:28px;margin:0;padding:0;width:31px;}
.tiel_scroller_slide-item{background-color:#ffffff;box-shadow:0px 0px 14.9581px rgba(0,0,0,0.11);border-radius:15px;padding:30px;display:flex;flex-wrap:wrap;width:100%;}
.tiel_scroller_slide-item h4{margin:0 0 10px;}
.tiel_scroller_slider .slick-slide>div{margin:15px 15px 30px;}
.tiel_scroller_slide_img{width:129px;margin:0 0 52px;overflow:hidden;}
.tiel_scroller_slide_img img{width:auto;height:100%;object-fit:cover;object-position:center center;}
.tiel_scroller_slid_cont p:last-child{margin-bottom:0;}
.tiel_scroller_sec{padding:120px 0 0;}
button.next-btn{background-color:transparent;border:1px solid#74808F;height:28px;margin:0;padding:0;width:31px;}
button.prev-btn{background-color:transparent;border:1px solid#74808F;height:28px;margin:0;padding:0;width:31px;}
.tiel_scroller_slider{margin:0 -15px;display:flex;flex-wrap:wrap;justify-content:center;z-index:111;position:relative;}
.tiel_scroller_slider ul.slick-dots{justify-content:center;width:auto;margin:0 25px;display:flex!important;align-items:center;}
ul.slick-dots li button{font-size:0;line-height:0;}
.tiel_scroller_slider ul.slick-dots li{font-size:0;line-height:0;margin:0;padding:0;}
.tiel_scroller_slider ul.slick-dots li.slick-active button{background-color:#293444;border-color:#293444;}
.tiel_scroller_slider ul.slick-dots li button{background-color:#ffffff;border:2px solid#A8B0B8;border-radius:100%;display:flex;flex-wrap:wrap;height:8px;justify-content:center;margin:0 5px;padding:0;width:8px;}
.tiel_scroller_slider .slick-slide.slick-current.slick-active + div + div,.tiel_scroller_slider .slick-target + div + div,.trans-100{transform:translateY(100px);}
.tiel_scroller_slider .slick-slide.slick-current.slick-active + div,.tiel_scroller_slider .slick-target+div,.trans-50{transform:translateY(50px);}
.tiel_scroller_slider .slick-slide{margin:0 0 85px;transition:all .8s ease;-moz-transition:all .5s ease;-o-transition:all .5s ease;-webkit-transition:all .5s ease;transition:all .5s ease;}
.tiel_scroller_sec .case-blob-img{top:-300px;z-index:-1;background-position:calc(100% + 145px);}
/* .slider-einstince-img:before{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/mascot%20%286%29.svg');background-repeat:no-repeat;background-size:422px 500px;bottom:-128px;content:"";height:422px;position:absolute;width:404px;left:-33px;z-index:-1;} */
.slider-einstince-img{z-index:1;}
.tiel_scroller_slid_cont{width:100%;display:flex;flex-wrap:wrap;}
.tiel_scroller_slide_two_col_top .tiel_scroller_right{padding-left:90px;}
.tiel_scroller_slide_two_col_wrap{display:flex;flex-wrap:wrap;width:80%;padding-left:90px;margin-left:auto;justify-content:space-between;min-height:450px;}
.tiel_scroller_slide_two_col{margin-right:30px;width:48%;margin-top:30px;}
.tiel_scroller_slide_two_col:nth-child(odd){margin-top:0;}
.tiel_scroller_slide_two_col:nth-child(2n){margin-right:0;margin-top:30px;}
.two-col-einstince-img .tiel_scroller_slide_two_col_wrap{position:relative;}
/* .two-col-einstince-img .tiel_scroller_slide_two_col_wrap:before{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/mascot%20%287%29.svg');position:absolute;content:"";left:-353px;bottom:0;width:378px;height:454px;background-repeat:no-repeat;background-position:center center;background-size:cover;} */
.tiel_scroller_slide_two_col .tiel_scroller_slide_img{margin:0 0 30px;}
.tiel_scroller_slide-icon{width:60px;height:60px;margin:0 0 30px;overflow:hidden;}
.tiel_scroller_slide-icon > div,.tiel_scroller_slide-icon svg{width:100%;height:100%;position:relative;}
.tiel_scroller_slide-icon svg .icnclr{fill:var(--icnclr);}
.j_content_box_wrap p:last-child{margin-bottom:0;}

/*----------Template-1--------------------------*/
.service_button_sec{padding:80px 0 0px;}
.services_button_group{margin:0 auto 73px;max-width:871px;min-height:660px;position:relative;}
.services_button_list{align-items:center;border-radius:100%;display:flex;flex-wrap:wrap;height:142px;position:absolute;width:142px;}
.services_button_list-1{bottom:0;left:0;}
.services_button_list-2{bottom:210px;left:21px;}
.services_button_list-3{left:150px;bottom:380px;}
.services_button_list-4{left:50%;bottom:480px;transform:translateX(-50%);}
.services_button_list-5{right:150px;bottom:380px;}
.services_button_list-6{right:21px;bottom:210px;}
.services_button_list.services_button_list-7{bottom:0;right:0;}
.services-icon{align-items:center;display:flex;flex-wrap:wrap;max-height:44px;justify-content:center;margin:0 auto 10px;max-width:50px;}
.services-icon svg{width:100%;height:100%;}
.services_button_item_inner{align-items:center;border-radius:100%;display:flex;flex-wrap:wrap;height:129px;justify-content:center;margin:0 auto;overflow:hidden;padding:14px 24px 15px;text-align:center;width:129px;transition:transform 0.8s;transform-style:preserve-3d;perspective:1000px;}
.arrow-icon{width:10px;line-height:1;margin-top:10px;}
.services_button_list>div{height:100%;width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;}
.services-button-bg svg{height:100%;mix-blend-mode:overlay;width:100%;transform:scale(1.1);}
.services-button-bg{border-radius:100%;position:absolute;left:0;right:0;top:0;bottom:0;width:100%;height:100%;z-index:-1;overflow:hidden;}
a.global_link_btn{position:absolute;left:0;right:0;bottom:0;width:100%;height:100%;z-index:1;top:0;}
.services_button_list:hover .services_button_item_inner{transform:rotateY(180deg);}
.services_button_list:hover .services_button_item_inner .services-icon{display:none;}
.services_button_list:hover .services_button_item_inner label{display:none;}
.services_button_list:hover .services_button_item_inner h5,.services_button_list:hover .services_button_item_inner .arrow-icon{visibility:visible;opacity:1;}
.arrow-icon{visibility:hidden;opacity:0;transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;-webkit-transition:all .3s ease;}
.services_button_item_inner h5{color:#ffffff;letter-spacing:0.05em;text-transform:uppercase;font-weight:500;margin:0;visibility:hidden;opacity:0;transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;-webkit-transition:all .3s ease;}
.hover_btn_text{display:flex;flex-wrap:wrap;justify-content:center;width:100%;transform:rotateY(180deg);margin:0;}
.services_button_item_inner label{letter-spacing:0;text-transform:uppercase;color:;font-weight:500;font-size:14px;line-height:1.2;}
.services_button_group:before{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/curve.svg');width:100%;height:100%;position:absolute;content:"";background-repeat:no-repeat;background-position:center center;bottom:0;top:24px;z-index:-1;}
.middle-svg-img svg{width:100%;height:100%;}
.middle-svg-img{position:absolute;bottom:100px;left:50%;transform:translateX(-50%);}
.ora-score-sec{padding:148px 0 60px;}
.ora-scrore-title{max-width:510px;margin:0 auto 0px;text-align:center;}
.ora-scrore-box-main{display:flex;flex-wrap:wrap;width:100%;justify-content:space-between;}
.ora-score-left{width:48.5%;}
.ora-score-left-inner{width:100%;position:relative;z-index:1;min-height:552px;margin-left:-81px;}
.ora-score-1{background-size:cover;background-position:center center;background-repeat:no-repeat;min-height:440px;width:294px;box-shadow:0px 5px 10px rgba(0,0,0,0.05);border-radius:10px;position:absolute;left:0;top:0;transition:all .5s ease;-moz-transition:all .5s ease;-ms-transition:all .5s ease;-o-transition:all .5s ease;-webkit-transition:all .5s ease;}
.ora-score-1:hover,.ora-score-3:hover{transform:translateY(-10px);}
.ora-score-2{box-shadow:0px 5px 10px rgba(0,0,0,0.05);border-radius:10px;width:316px;height:440px;background-size:cover;background-position:center center;position:absolute;top:112px;left:261px;transform:translateY(-10px);transition:all .5s ease;-moz-transition:all .5s ease;-ms-transition:all .5s ease;-o-transition:all .5s ease;-webkit-transition:all .5s ease;}
.ora-score-2:hover{transform:translateY(-20px);}
.ora-score-3{position:absolute;bottom:40px;left:120px;width:124px;min-height:124px;box-shadow:0px 5px 10px rgba(0,0,0,0.05);border-radius:10px;background-size:cover;background-position:center center;background-repeat:no-repeat;transition:all .5s ease;-moz-transition:all .5s ease;-ms-transition:all .5s ease;-o-transition:all .5s ease;-webkit-transition:all .5s ease;}
.ora-score-sec:before{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/Mask%20group-1.svg');content:"";position:absolute;left:-5px;top:-50px;width:768px;min-height:1206px;background-size:cover;background-position:center center;background-repeat:no-repeat;}
.ora-score-right{width:48.5%;padding-right:91px;padding-left:91px;margin-top:140px;}
.ora-btn-group{display:flex;flex-wrap:wrap;justify-content:space-between;width:100%;}
.ora-btn-group  .btn-wrapper{margin-right:20px;}
.ora-btn-group .btn-wrapper:last-child{margin-right:0;}
.ora-score-right-item:last-child{margin-bottom:0;}
.ora-score-right-item{margin:0 0 90px;}
.ora-score-right-two-col{display:flex;flex-wrap:wrap;width:100%;}
.ora-score-right-innertwo-col{display:flex;flex-wrap:wrap;width:100%;align-items:center;margin:0 0 35px;}
.ora-scor-icon{width:102px;}
.ora-scor-two-cont{width:calc(100% - 102px);padding-left:20px;}
.ora-scor-two-cont p:last-child{margin-bottom:0;}
.ora-scor-two-cont h5{margin:0 0 10px;}
.ora-score-right-innertwo-col:nth-child(2n){flex-direction:row-reverse;}
.ora-score-right-innertwo-col:nth-child(2n) .ora-scor-two-cont{padding-left:0;padding-right:20px;}
.ora-score-sec:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/Mask%20group.svg');content:"";position:absolute;width:645px;height:796px;right:0;top:-50px;background-size:cover;background-position:calc(100% + 210px);background-repeat:no-repeat;}
.line-svg{display:none;}
.tabbing-inner-slider,.logo-slider-wrap{visibility:hidden;opacity:0;}
.slick-initialized.tabbing-inner-slider,.logo-slider-wrap.slick-initialized{visibility:visible;opacity:1;}



/*--------------Template-23-------------------------------*/
.blog_post_hero_banner .hero_banner_left{width:47%;}
.blog_post_hero_banner .hero_banner_right{width:calc(100% - 47%);}
.blog-date{margin:0 0 20px;}
.blog-post-body.podcast-inner-sec-part{padding:60px 0;position:relative;}
.blog-post-body .podcast-inner-content{margin-top:0;}
.blog_post_hero_banner .hero_banner_right  .right-inner-image{width:100%;height:375px;}
.blog_post_hero_banner .hero_banner_right .right-inner-image img{height:100%;object-fit:cover;object-position:center center;width:100%;}
.blog_post_hero_banner .hero_banner_left .hero_left_cont h1{font-weight:bold;}
.feature_resources_sec.related_blog_module{padding:170px 0 20px;}
.podcast-inner-sec-part{padding:0px 0 67px 0;}
.podcast-embed-code .hs-embed-wrapper *{padding:0!important;margin:0!important;min-height:100px!important;}
.is_stuck .podcast-embed-main{max-width:1340px;padding:20px 0 0;margin:0 auto;}
.podcast-embed-main{margin:0 auto 50px;max-width:755px;padding:43px 0 0;transition:all .5s ease;-moz-transition:all .5s ease;-ms-transition:all .5s ease;-o-transition:all .5s ease;-webkit-transition:all .3s ease;background-color:#ffffff;}

/* .podcast-inner-main {
  max-width: 680px;
  margin: 0 auto;
  position:relative;
} */
.share-box-left{display:flex;flex-wrap:wrap;position:sticky;width:41px;top:200px;/*     transform: translate(-200px); */justify-content:center;}
.share-box-left h5{letter-spacing:0.12em;text-transform:uppercase;font-family:'Poppins',sans-serif;font-weight:600;}
.share-box-left  .at-style-responsive .at-share-btn{margin:0 0 21px;}
.podcast-inner-main{position:relative;margin-left:auto;width:calc(100% - 41px);padding-left:146px;padding-right:183px;margin-top:-195px;}
.podcast-cta-main{justify-content:flex-start;display:flex;flex-wrap:wrap;align-items:center;}
.podcast-cta{margin-right:10px;margin-bottom:20px;}
.podcast-inner-content{margin-top:30px;}
.podcast-inner-content h1,.podcast-inner-content h2,.podcast-inner-content h3,.podcast-inner-content h4,.podcast-inner-content h5,.podcast-inner-content h6,.podcast-inner-content p{margin-bottom:30px;}
.podcast-inner-content li h4,.podcast-inner-content li h5,.podcast-inner-content li h6,.podcast-inner-content  li p,.podcast-inner-content  li{margin:0 0 20px 0;}
.podcast-inner-content ul li  br{display:none;}
.podcast-inner-content ul,.podcast-inner-content ol{margin-left:40px;margin-bottom:20px;}
.podcast-inner-content li{position:relative;}
.podcast-inner-content ol li{list-style-type:auto;}
.podcast-inner-content ul li:before{content:"";height:2px;width:15px;background:#000000;position:absolute;left:-20px;top:10px;}
.podcast-inner-content li p strong,.podcast-inner-content h4,.podcast-inner-content h5,.podcast-inner-content h6,.podcast-inner-content ol li::marker{color:#000000;}
.podcast-inner-content ol li::marker{font-weight:600;}
.podcast-inner-content blockquote{position:relative;padding:70px 30px 40px 65px;margin:30px 0;border:1px solid #E7EAEB;}
.podcast-inner-content blockquote:before{position:absolute;content:'';width:5px;height:100%;left:0;top:0;background:#8383F1;}
.podcast-inner-content blockquote:after{content:'';position:absolute;background:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/%E2%80%9C%20%281%29.svg');width:30px;height:25px;top:30px;left:30px;background-position:center center;background-size:cover;background-repeat:no-repeat;}
.podcast-inner-content blockquote *{margin:0!important;}
.podcast-inner-sec-part:before{position:absolute;content:'';background-image:url(https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/Group%202.svg);width:288px;height:282px;left:25px;bottom:180px;background-repeat:no-repeat;background-position:center center;background-size:cover;}
/* .podcast-inner-sec-part:after{content:'';position:absolute;background-image:url(https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/mascot-1.svg);width:318px;height:491px;right:0;top:0;background-repeat:no-repeat;background-position:center center;background-size:cover;} */
.podcast-embed-code{width:100%;z-index:99;}
.podcast-embed-code.sticky{position:fixed;top:100px;}
.podcast-embed-main p{display:none;}
.related-podcast-module{padding:170px 0 20px 0;}
.related-podcast-top-cont{text-align:center;margin-bottom:50px;}
.related_posts-inner-blog .btn-wrapper a.btn-2{border-color:#ffffff;background-color:transparent;color:#ffffff;}
.related_posts-inner-blog .btn-wrapper a.btn-2:hover{border-color:#E03842;background-color:#E03842;color:#ffffff;}
.related_posts-inner-blog .feature_resources_item:nth-child(4){display:none;}
.blog_list_page{padding:60px 0;}
.tag-title h1{font-weight:700;text-transform:uppercase;}
.tag-title{margin:0 0 40px;}
.crc-blog-auther-section .hs-author-profile{display:flex;flex-wrap:wrap;width:100%;align-items:flex-start;}
.hs-author-avatar{width:100px;border-radius:100%;height:100px;}
.hs-author-avatar img{border-radius:100%;width:100px;height:100px;object-fit:cover;object-position:center center;}
.autho-left{width:calc(100% - 100px);padding-left:20px;}
.autho-left-top h1.hs-author-name.main-heading{margin:0  0 10px;}
.hs-author-social-links{display:flex;flex-wrap:wrap;width:100%;}
.hs-author-social-links a{border:1px solid #4f5866;width:40px;height:40px;border-radius:100%;justify-content:center;display:flex;align-items:center;color:#E03842;font-size:18px;margin:0 0 0 10px;}
.hs-author-social-links a:first-child{margin-left:0;}
.hs-author-social-links a:hover{background-color:#E03842;border-color:#E03842;color:#ffffff;}
.crc-blog-auther-section{padding:0 0 60px;}
.social-share-heading p{font-weight:600;}
.hero_left_cont .date{letter-spacing:0.12em;text-transform:uppercase;margin-bottom:20px;}
/*----------Template-20----------------*/

.apply-job-sec{max-width:870px;margin:80px auto 0;border-radius:20px;padding:60px 30px 0;z-index:999;}
.apply-form-contact-srt{height:0;visibility:hidden;opacity:0;transition:all .5s ease;-moz-transition:all .5s ease;-ms-transition:all .5s ease;-o-transition:all .5s ease;-webkit-transition:all .5s ease;overflow:hidden;}
.apply-cta-box .btn-wrapper{text-align:center;width:100%;position:relative;z-index:1;}
.apply-top-title *{color:#ffffff;}
.apply-top-title{text-align:center;max-width:400px;margin:0 auto 40px;position:relative;z-index:-1;}
.apply-cta-box{position:relative;padding:30px;max-width:510px;margin:0 auto;border-radius:15px;box-shadow:0px 0px 15px rgba(0,0,0,0.05);overflow:hidden;z-index:1;transition:all .5s ease;-moz-transition:all .5s ease;-ms-transition:all .5s ease;-o-transition:all .5s ease;-webkit-transition:all .5s ease;}

/* .apply-cta-box:before {
    position: absolute;
    align-items: center;
    background-image: url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/decor%20details.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: flex;
    flex-wrap: wrap;
    width: 134px;
    height: 118px;
    left: 0;
} */

/* .apply-cta-box:after {
    background-image: url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/Group%2099.svg');
    position: absolute;
    right: 0;
       bottom: 0;
    content: "";
    width: 510px;
    height: 168px;
    background-position: calc(100% + -52px);
    opacity: 1;
    background-repeat: no-repeat;
    z-index: -1;
    background-size: cover;
} */

.apply-cta-box.active{border-radius:0 0 15px 15px;box-shadow:none;transform:translateY(-20px);}
.apply-form-contact-info .apply-form-contact-srt{border-radius:15px 15px 0 0;bottom:60px;box-shadow:0 0 15px -4px rgba(0,0,0,.05);height:0;left:0;margin:0 auto;max-width:510px;opacity:1;padding:30px 30px 30px;position:absolute;right:0;visibility:hidden;z-index:-1;transition:height .3s ease;}
.apply-form-contact-info.active .apply-form-contact-srt{visibility:visible;}
.apply-form-contact-info .apply-form-contact-srt .hs_submit.hs-submit{display:none;}
.apply-cta-box .svg-overlay{position:absolute;width:100%;height:100%;left:0;right:0;bottom:0;overflow:hidden;}
.apply-form-contact-srt .form-title{text-align:center;margin:0 0 40px;}
.close-icon{position:absolute;right:25px;top:25px;border-radius:100%;width:25px;height:25px;display:flex;align-items:center;justify-content:center;line-height:0;font-size:0;z-index:1;cursor:pointer;}
.close-icon svg{width:12px;height:12px;}
a.submit-btn-custom{display:none;}
.apply-cta-box.active a.submit-btn-custom{display:inline-block;}
.apply-cta-box.active .btn-1 > a.first-btn{display:none;}
.apply-cta-box.active{overflow:visible;}
.apply-cta-box.active .svg-overlay{border-radius:0 0 15px 15px;}
/* .blog-post-body.podcast-inner-sec-part:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/mascot%20%2814%29.svg');content:"";width:318px;height:352px;}
 */
/* .apply-form-contact-srt.submit_after {
    height: 150px!important;
} */
.apply-cta-box.cta_active_after .btn-wrapper{display:none;}
.apply-box-main.btn_reload  .btn-wrapper a.first-btn{display:none;}
.apply-box-main.btn_reload  .btn-wrapper a.submit-btn-custom{display:none;}
.apply-box-main .btn-relaod{display:none;}
.apply-box-main.btn_reload .btn-relaod{display:inline-block;}
.image-group-wrap{display:flex;flex-wrap:wrap;width:100%;}
.img-group-loop-item{display:flex;flex-wrap:wrap;width:100%;}
.left-img-group-one.w50{width:49.5%;}
.boxContainer-right{width:49.5%;display:flex;flex-wrap:wrap;justify-content:space-between;}
.img-group-loop-item{justify-content:space-between;margin:0 0 10px;}
.right-img-group{display:flex;flex-wrap:wrap;justify-content:space-between;height:235px;}
.right-img-group:nth-child(1){width:100%;margin-bottom:10px;}
.right-img-group:nth-child(1) img{border-radius:0px!important;}
.right-img-group:nth-child(2){width:49%;}
.right-img-group:nth-child(3){width:49%;}
.left-img-group-one img{width:100%;height:100%!important;object-fit:cover;object-position:center center;display:block;}
.right-img-group img{width:100%;height:100%!important;object-fit:cover;object-position:center center;}
.j-turner-image-module{padding:80px 0;}
.left-img-group-one img{border-radius:15px;}
.right-img-group img{border-radius:15px;}
.client-expert-top-title *{text-align:center;}
.client-expert-top-title{max-width:540px;margin:0 auto;}
.client-expert-sec{padding:154px 0 175px;}
.client-expert-item{margin:0 0 20px;display:flex;flex-wrap:wrap;width:100%;position:relative;align-items:center;}
.client-expert-img{border-radius:15px;height:280px;width:40%;overflow:hidden;margin:80px 182px 80px 0;}
.client-expert-cont{width:25.5%;margin-left:90px;margin-right:90px;}
.client-expert-wrap{display:flex;flex-wrap:wrap;}
.client-expert-img img{display:block;height:100%;object-fit:cover;object-position:center center;border-radius:15px;}
.client-expert-decoration{position:absolute;right:0;width:100%;height:100%;background-size:460px 424px;background-position:right center;background-repeat:no-repeat;z-index:-1;top:0;}
.quote-svg{position:absolute;left:-46px;width:60px;height:65px;margin-top:-17px;}
.quote-svg svg{width:100%;height:100%;}
.client-expert-cont   label{font-weight:600;display:block;width:100%;margin:0 0 3px;color:#293444;}
.expert-cont{position:relative;margin-bottom:30px;font-style:italic;}
.client-expert-item:nth-child(2n){flex-direction:row-reverse;}
.client-expert-item:nth-child(2n) .client-expert-decoration{background-position:inherit;left:0;right:inherit;top:0;}
.client-expert-item:nth-child(2n) .client-expert-img{margin-right:0;margin-left:182px;}
.client-expert-item:nth-child(2n) .client-expert-cont{}
.client-expert-item:nth-child(2n) .client-expert-cont .quote-svg{right:-46px;left:inherit;}
.j-tuner-image-gallery-sec{padding:80px 0 80px;}
.image-gallery-module{display:flex;flex-wrap:wrap;width:100%;}
.image-gallery-left-part{width:30%;}
.image-gallery-right-part{width:70%;padding-left:90px;}
.company-logos{display:flex;flex-wrap:wrap;width:100%;justify-content:space-between;}
.company-logos-middle .company-logo{height:154px;}
.company-logos-right .company-logo{height:270px;}
.company-logos-left .company-logo{height:132px;}
.company-logos-left .company-logo.second-img-gallery{height:261px;}
.company-logos-left{width:30.33%;}
.company-logos-middle{width:33.33%;}
.company-logos-right{width:33.33%;}
.company-logo{margin:0 0 10px;}
.company-logos-middle{margin:30px 0 0;}
.company-logos-right{margin:60px 0 0;}
.company-logo{position:relative;}
.company-logo img{height:100%;position:absolute;width:100%;object-fit:cover;object-position:center center;}
/* .eisntine-img-box{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/mascot%20%2815%29.svg');background-position:50%;background-repeat:no-repeat;background-size:cover;height:564px;width:525px;margin-left:-207px;} */
.top-ora-title{text-align:center;max-width:450px;margin:0 auto;}
.ora-ranking-sec{padding:150px 0;}
.ranking-tab-cont .resp-tab-content{border:0!important;background-color:transparent!important;padding:0px 0 0px;}
.resp-tabs-container.ranking-tab-cont{background-color:transparent;border:0;margin-bottom:80px;margin-top:80px;}
.resp-tabs-container.ranking-tab-cont{background-color:transparent;border:0;}
ul.ranking-list-tab-left{display:flex;flex-wrap:wrap;justify-content:center;width:100%;}
ul.ranking-list-tab-left li{background-color:transparent!important;border:0!important;padding:0!important;margin:0 25px!important;cursor:auto;}
ul.ranking-list-tab-left li label{letter-spacing:0.05em;text-transform:uppercase;font-weight:600;color:#4BA5FF;cursor:pointer;}
ul.ranking-list-tab-left li span label{cursor:pointer;color:#A8B0B8;}
ul.ranking-list-tab-left li.resp-tab-active label{font-weight:700;color:#293444;}
.ranking-cont-box{display:flex;flex-wrap:wrap;width:100%;}
.j_cta_box_btn_wrap .btn-wrapper a.play-store{padding:0;background-color:transparent;border:0;}
.j_cta_box_btn_wrap .btn-wrapper a.play-store:hover,.btn-wrapper a.app-store:hover{background-color:transparent;border:0;}
.j_cta_box_btn_wrap .btn-wrapper a.app-store{padding:0;background-color:transparent;border:0;}
.j_cta_box_btn_wrap .btn-wrapper a.play-store img{background-color:transparent!important;border:0;width:100%;border-radius:0;display:block;}
.timeline ul li.none-active{padding-bottom:60px;}
.timeline ul{display:flex;flex-wrap:wrap;width:100%;justify-content:center;}
.timeline ul li{width:100%;text-align:center;position:relative;display:flex;flex-wrap:wrap;align-items:center;}
.timeline ul li.active-data{padding-bottom:60px;}
.timeline ul{counter-reset:my-sec-counter;}
.timeline ul li.active-data .rank-box-cont{/*     position: absolute; */

/*     left: calc(50% - 325px); */}
.timeline{width:100%;max-width:870px;margin:0 auto;}
.timeline ul li.active-data .rank-box-cont{/*     position: absolute; */

/*     left: calc(50% - 325px); */}
.timeline ul li.active-data:nth-child(2n) .rank-box-cont{/*     left: inherit;
	    right: calc(50% - 325px); */}
	.timeline ul li:nth-child(2n) .rank-box-cont{/*     left: inherit; */}
	.active-data .rank-box-cont h5{margin:0 0 10px;}
	.active-data .rank-box-cont{text-align:left;width:330px;padding:20px;
		background-color:#ffffff;border-radius:15px;top:0;box-shadow:0px 5px 10px rgba(0,0,0,0.05);}
	.none-active .rank-box-cont{max-width:330px;background-color:transparent;border-radius:0;}

	/* .timeline ul li.none-active:before {
	 position: absolute;
	    width: 40px;
	    height: 40px;
	    border: 1px dashed #A8B0B8;
	    border-radius: 30px;
	   background-color:#fff;
	      left: 50%;
	    transform: translate(-50%);
	 top:30px;

	} */

	/* .timeline ul li.active-data:before {
	 position: absolute;
	    width: 60px;
	    height: 60px;
	  border: 1px dashed #8383F1;
	    border-radius: 100%;
	  background-color:#8383F1;
	  font-weight: 400;
	font-size: 25px;
	  line-height:60px;
	  left: 50%;
	    transform: translate(-50%);
	  color:#fff;
	 top:30px;
	 
	} */

	/* .timeline ul li:first-child .rank-box-cont {
	    top: -20px;
	} */


	.timeline ul li .rank-box-cont:before{font-size:16px;line-height:40px;font-weight:400;counter-increment:my-sec-counter;content:""counter(my-sec-counter,decimal-leading-zero)"";color:#A8B0B8;}
	.timeline ul li.none-active:after{z-index:-1;height:calc(100% - 30px);content:"";position:absolute;background-color:#D5D6D8;width:2px;left:50%;transform:translateX(-50%);top:0px;}
	.timeline ul li.active-data:after{z-index:-1;height:calc(100% - 30px);content:"";position:absolute;background-color:#20C1B8;width:2px;left:50%;transform:translateX(-50%);top:0px;}
	.timeline ul li.active-data:after,.timeline ul li.none-active:after{content:"";height:100%;left:50%;position:absolute;transform:translateX(-50%);width:2px;z-index:-1;top:30px;}
	.timeline ul li:last-child{padding-bottom:0;}
	.none-active .rank-box-cont h6{margin:0;text-transform:uppercase;font-weight:600;color:#A8B0B8;letter-spacing:0.1em;text-align:left;}
	.timeline ul li:nth-child(2n) .rank-box-cont{}
	.none-active .rank-box-cont{/*     left: calc(50% - 220px);
		    position: absolute; */

		/*     display: flex;
		    align-items: center;
		       top: 40px; */}
		.timeline ul li.none-active:nth-child(2n) .rank-box-cont{left:inherit;right:calc(50% - 220px);}
@media(min-width:767px){
		.timeline ul li.none-active:nth-child(2n) .rank-box-cont  h6{text-align:right;}
}
		/* .timeline ul li.none-active:last-child .rank-box-cont {
		    top: 20px;
		} */
		.rank-box-cont  a.visit-link{font-weight:600;margin:10px 0 0;display:inline-flex;align-items:center;flex-wrap:wrap;}
		.rank-box-cont a.visit-link span{margin-left:5px;}
		.rank-box-cont a.visit-link span svg{width:100%;height:100%;}
		.rank-box-cont a.visit-link:hover span svg *{stroke:#b8101a;}

		/* .timeline ul li.none-active {
		    padding-left: 200px;
		    padding-right: 200px;
		} */
		.timeline ul li.none-active .rank-box-cont{min-height:60px;display:flex;align-items:center;}
		.timeline ul li.none-active{padding-bottom:0;}
		.timeline ul li.active-data .rank-box-cont:before{background-color:#8383F1;border:1px dashed#8383F1;border-radius:100%;color:#ffffff;font-size:25px;font-weight:400;height:60px;line-height:60px;position:absolute;top:30px;width:60px;text-align:center;left:0;right:0;margin:0 auto;}

		/* .timeline ul li  {
		   justify-self: flex-start;
		}

		.timeline ul li:nth-child(2n)  {
		    justify-self: flex-end;
		} */
		.timeline ul li .rank-box-cont{margin-right:auto;}
		.timeline ul li:nth-child(2n) .rank-box-cont{margin-left:auto;margin-right:0;}
		.timeline ul li.active-data:last-child:after,.timeline ul li.none-active:last-child:after{height:calc(100% - 100px);}
		.timeline ul li.none-active .rank-box-cont:before{background-color:#ffffff;border:1px dashed#A8B0B8;border-radius:100%;color:#A8B0B8;font-size:16px;font-weight:400;height:40px;line-height:40px;position:absolute;/*     top: 0px; */width:40px;text-align:center;left:0;right:0;margin:0 auto;}
		.rank-box-cont span.arrow-div{right:0;position:absolute;left:0;width:330px;height:calc(100% - 60px);top:0;border-radius:15px;z-index:-1;}
		.timeline ul li:nth-child(odd) .rank-box-cont  span.arrow-div:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/notch.svg');position:absolute;content:"";right:-20px;width:20px;height:100%;top:0;background-repeat:no-repeat;/*     background-position: center center; */background-size:contain;}
		.timeline ul li:nth-child(2n) .rank-box-cont span.arrow-div{margin-left:auto;margin-right:0;}
		.timeline ul li:nth-child(2n) .rank-box-cont span.arrow-div:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/notch%20%281%29.svg');position:absolute;content:"";left:-20px;width:20px;height:100%;top:0;background-repeat:no-repeat;/*     background-position: center center; */background-size:contain;}

/*-----pranav-----------*/
.timeline ul li.active-data:last-child .rank-box-cont span.arrow-div{height:100%;}
.top-ora-title h2 strong{display:block;width:100%;}
.ora-ranking-sec:before{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/left%20curvy%20blob%20%283%29.svg');position:absolute;left:0;top:270px;content:"";width:486px;height:722px;background-repeat:no-repeat;background-size:cover;background-position:center center;}
.ora-ranking-sec:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/right%20curve%20%281%29.svg');position:absolute;content:"";right:0;background-repeat:no-repeat;background-size:cover;background-position:center center;width:464px;height:767px;bottom:275px;}
.ora-ranking-sec{padding:150px 0;overflow:hidden;}

/*------------------Template-8--------------------------*/
.j-turner-top-column-title{margin:0 0 30px;}
.j-turner-top-column-title *{text-transform:uppercase;width:100%;text-align:center;}
.j-turner-three-column-sec{padding:53px 0 0;}
.j-turner-three-column-sec .content-wrapper{max-width:910px;margin:0 auto;}
.three-column-part{display:flex;flex-wrap:wrap;width:100%;}
.three-column-part-list{width:22.93%;text-align:center;margin-right:15.6%;}
.three-column-part-list:nth-child(3n){margin-right:0;}
.icon-svg-code svg{width:100%;height:100%;}
.icon-svg-code{margin:0 auto 10px;width:126px;height:115px;overflow:hidden;}
.three-column-cont{width:100%;text-align:center;display:flex;flex-wrap:wrap;}
.three-column-cont h4{width:100%;margin:0 0 10px;}
.three-column-cont p{display:block;width:100%;}
ul.ranking-list-tab-left li{position:relative;}
ul.ranking-list-tab-left li.resp-tab-active:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/selected%20item%20indicator.svg');width:100%;content:"";position:absolute;height:3px;left:0;right:0;bottom:-11px;background-size:cover;background-repeat:no-repeat;}
.j-global-icon.webinar-icon svg{padding:6px;fill:#ffffff;}
.j-global-icon.webinar-icon{border-radius:100%;background-color:#B280E4;display:flex;align-items:center;}

.addthis_inline_share_toolbox ul{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;}
.addthis_inline_share_toolbox ul li{margin:0 0 24px;}
.addthis_inline_share_toolbox ul li a{transition:0.4s ease-in-out;border:1px solid #EAEAEA;background:#FFFFFF;width:24px;height:24px;display:flex;align-items:center;justify-content:center;border-radius:50%;}
.addthis_inline_share_toolbox ul li a svg path{fill:#004E9A;}
.addthis_inline_share_toolbox ul li a:hover{background:#004E9A;}
.addthis_inline_share_toolbox ul li a:hover svg path{fill:#ffffff;}
.addthis_inline_share_toolbox ul li:first-child a svg{width:15px;height:15px;}
.addthis_inline_share_toolbox ul li a svg{width:25px;height:25px;}
.addthis_inline_share_toolbox ul li:first-child a{background:#1DA1F2;border-color:#1DA1F2;}
.addthis_inline_share_toolbox ul li:first-child a path{fill:#fff;}
.addthis_inline_share_toolbox ul li:nth-child(2) a{background:#3B579D;border-color:#3B579D;}
.addthis_inline_share_toolbox ul li:nth-child(2) a svg path{fill:#fff;}
.addthis_inline_share_toolbox ul li:last-child a{background:#0E76A8;border-color:#0E76A8;}
.addthis_inline_share_toolbox ul li:last-child a svg path{fill:#fff;}

/*-----Responsive-Css-----------------*/
@media(min-width:2000px){
	.j-footer-sec{background-position:top center!important;padding:250px 0 80px;}
/* 	.nav-inner-right{width:234px;} */
	.j-footer-sec:before{display:none;}
	.j-footer-sec .content-wrapper{position:relative;}
/* 	.j-footer-sec .content-wrapper:before{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/mascot%20%283%29.svg');background-position:50%;background-repeat:no-repeat;content:"";height:373px;left:-210px;position:absolute;top:-50px;width:210px;z-index:-1;} */
	.two_col_sec{padding:300px 0 0;}
	.full_image_wave_sec{padding:310px 0 310px;}
	.form-left-cont:before{background-position:left;background-size:contain;left:-300px;}
	.form-left-cont{position:relative;}
	.single-content-sec:after{display:none;}
	.request-demo-form-sec .content-wrapper{position:relative;}
/* 	.request-demo-form-sec .content-wrapper:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/mascot%20%281%29.png');position:absolute;right:-200px;bottom:40px;content:"";width:233px;height:352px;background-size:contain;background-repeat:no-repeat;background-position:center center;} */
	.dual-cta-sec{padding:250px 0 30px;}
	.slider-einstince-img:before{display:none;}
	.slider-einstince-img .content-wrapper{position:relative;}
/* 	.slider-einstince-img .content-wrapper:before{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/mascot%20%286%29.svg');background-repeat:no-repeat;background-size:422px 500px;bottom:-128px;content:"";height:422px;left:-223px;position:absolute;width:404px;z-index:-1;} */
	.j_content_sec.divider-top{padding:200px 0 0!important;}
	.podcast-inner-sec-part .content-wrapper{position:relative;}
/* 	.podcast-inner-sec-part .content-wrapper:before{position:absolute;content:'';background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/Group%202.svg');width:288px;height:282px;left:-115px;bottom:180px;background-repeat:no-repeat;background-position:center center;background-size:cover;} */
/* 	.podcast-inner-sec-part .content-wrapper:after{content:'';position:absolute;background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/mascot-1.svg');width:318px;height:491px;right:-115px;top:0;background-repeat:no-repeat;background-position:center center;background-size:cover;} */
	.podcast-inner-sec-part:before,.podcast-inner-sec-part:after{display:none;}
	.related-podcast-module,.feature_resources_sec.related_blog_module{padding:220px 0 20px;}
/* 	.blog-post-body.podcast-inner-sec-part .content-wrapper:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/mascot%20%2814%29.svg');content:"";width:318px;height:352px;} */
	.client-expert-sec{padding:220px 0 250px;}
	.ora-ranking-sec{padding:200px 0;}
	.j_two_col_sec.top-shape-space{padding-top:250px!important;}
}
@media(min-width:3500px){
	.j-footer-sec{background-position:top center!important;padding:350px 0 80px;}
	.j-footer-bottom-right{width:35.3%;}
	.nav-inner-right{width:235px;}
	.multiimg-sec{padding:350px 0 110px;}
	.dual-cta-sec{padding:300px 0 30px;}
	.hero_banner_module:after{transform:scale(1.001);}
	.j_content_sec.divider-top{padding:250px 0 0!important;}
	.related-podcast-module,.feature_resources_sec.related_blog_module{padding:250px 0 20px;}
	.client-expert-sec{padding:280px 0 280px;}
	.ora-ranking-sec{padding:250px 0;}
	.j_two_col_sec.top-shape-space{padding-top:300px!important;}
}
@media(max-width:1400px){
	.j-top-head .head-wrapper,.top-head-bar .head-wrapper{max-width:1250px;}
	.secondary_menu_sec .content-wrapper{max-width:1250px;}
/* 	.j-footer-sec:before{background-size:70%;background-position:left center;height:200px;top:166px;width:190px;} */
	.full_image_wave_sec{padding:200px 0;}
	.counter{font-size:60px;line-height:1;}
	.form-left-cont{margin-left:-50px;}
	.form-left-cont:before{height:765px;background-size:700px 700px;width:800px;}
	.multiimg-sec{padding:215px 0 95px;}
	.privacy-content-title:before{top:-68px;left:-102px;background-size:320px;}
	.privacy-content{padding:110px 0 60px 0;}
	.j_two_col_sec:after{background-size:690px 1020px;}
	.hero-form-left{margin-left:-10px;}
	.faq-section{padding:130px 0 72px;}
	.dual-cta-sec{padding:200px 0 30px;}
	.slider-einstince-img:before{background-size:350px 400px;height:350px;left:-25px;position:absolute;width:300px;bottom:-110px;}
	.tiel_scroller_sec .case-blob-img{top:-200px;z-index:-1;background-position:calc(100% + 145px);height:1000px;width:800px;background-size:800px 1000px;}
	.vertical-top-left{padding-right:0px;width:100%;margin-bottom:20px;}
	.resp-vtabs .resp-tabs-container{padding-left:50px;}
	.ora-scrore-title{position:relative;z-index:11;}
	.ora-score-sec:after{background-size:600px;width:600px;z-index:0;}
	.ora-score-sec:before{background-size:650px;background-position:left center;}
	.blog_post_hero_banner .hero_banner_right .right-inner-image{height:350px;width:100%;}
	.related-podcast-module{padding:150px 0 20px;}
	.feature_resources_sec.related_blog_module{padding:150px 0 20px;}
	.ora-ranking-sec:after{background-size:292px 500px;background-position:right;bottom:100px;right:0;width:400px;height:500px;}
	.ora-ranking-sec:before{background-size:290px 500px;background-position:left;width:300px;height:500px;}
	ul.secondary_menu_box li{margin-right:22px;}
}
@media(max-width:1300px){
	.j_two_col_sec:before{width:680px;background-size:680px;}
	.multiimg-sec{padding:180px 0 95px;}
	.faq-section{padding:90px 0 72px;}
	.faq-sec-left{margin-right:3.4%;width:33%;}
	.faq-sec-right{width:63.6%;}
	.faq-sec-left:after{height:290px;width:275px;}
	.dual-cta-sec{padding:170px 0 30px;}
	.dual-cta-right{padding:25px 25px;}
	.slider-einstince-img:before{background-size:300px 350px;height:350px;left:-25px;position:absolute;width:300px;bottom:-110px;}
	.two-col-einstince-img .tiel_scroller_slide_two_col_wrap::before{width:350px;height:400px;background-size:contain;left:-300px;}
	.ora-score-left-inner{margin-left:0;}
	.ora-score-right{padding-right:0;}
	.ora-btn-group{justify-content:flex-start;}
	.podcast-inner-sec-part:after{height:366px;width:262px;background-size:260px;}
	.podcast-inner-sec-part:before{bottom:180px;height:258px;width:270px;background-size:260px;left:0;}
	.blog_post_hero_banner .hero_banner_right .right-inner-image{height:300px;width:100%;}
	.client-expert-sec{padding:120px 0 100px;}
}
@media(max-width:1200px){
	.enumenu_ul .hs-menu-wrapper > ul > li{margin-right:20px;}
	.nav-menu-right{padding-left:25px;}
	a.menubelow{padding-right:6px;}
	.search-box{margin-right:15px;}
	.nav-inner-right{width:auto;}
	ul.secondary_menu_box li{margin-right:14px;}
	.j-footer-sec:before{display:none;}
	.j-top-footer-middle-col .call-box{margin-right:20px;}
	.j-top-right-col{width:26.6%;}
	.j-footer-bottom-right{width:38%;}
	.j-top-right-col{justify-content:flex-end;}
	.j-footer-sec{padding:130px 0 50px;}
	.j-footer-bottom{margin-top:40px;}
	.nav-menu-right{padding-left:20px;}
	.j-footer-col ul li{margin:0 10px 10px 0;width:46%;}
	.h1,h1{font-size:34px;line-height:130%;}
	ul.secondary_menu_box li a{letter-spacing:0;}
	.hero_banner_right:after{width:500px;height:550px;}
	.hero_banner_left .hero_left_cont + ul li{width:46.4%;margin-bottom:20px;margin-right:13px;}
	.hero_banner_module:after{min-height:225px;bottom:-1px;}
	.hero_banner_module{padding:100px 0;}
	.j_content_sec{padding:50px 0 0;}
	.j_two_col_sec{padding-top:25px;}
	.j_two_col_sec:before{background-size:500px;background-position:left;}
	.j-testimonial-slider-part{padding-left:50px;padding-right:100px;}
	.testimonail-slider-warp:after{right:0;width:500px;height:500px;background-size:cover;background-position:top center;}
	.j_testimonial_sec{padding:50px 0;}
	.j_testimonials_sec_cont{margin:0 auto 50px;}
	.feature_resources_top_title{margin-bottom:40px;}
	.hs-search-field--open .hs-search-field__suggestions{width:calc(100% - 100px);}
	.full_image_wave_sec{padding:150px 0;}
	.counter{font-size:50px;line-height:1;}
	.two_col_sec{padding:150px 0 0;}
	.two_col_title{margin:0 0 50px;}
	.left-right-counter .four-column .counter{font-size:60px;}
	.form-left-cont{margin-left:0;padding-top:60px;}
	.single-content-sec:after{background-size:200px;background-repeat:no-repeat;background-position:right center;}
	.form-left-cont:before{background-size:650px 650px;height:715px;width:650px;}
	.req-form-wrap{width:auto;}
	.privacy-content-title:before{top:-51px;left:-126px;background-size:280px;}
	.privacy-content{padding:80px 0 50px 0;}
	.bg_color_v2 .right-inner-image{padding:50px 20px 30px;min-height:330px;}
	.bg_color_v2 .right-inner-image .btn-2{margin-top:40px;}
	.j_two_col_sec::after{background-position:right;background-size:500px;}
	.hero-form-banner-module:after{top:266px;min-height:230px;}
	.hero-form-left{margin-left:0;}
	.hero-form-left{width:50%;}
	.hero-form-contact-srt{margin-top:0!important;}
	.hero-form-right{width:45%;}
	.dual-cta-sec{padding:145px 0 20px;}
	.hero-form-banner-module:after{min-height:260px;top:250px;}
	.slider-einstince-img:before{background-size:300px 270px;bottom:-50px;height:270px;left:-55px;position:absolute;width:300px;}
	.tiel_scroller_sec .case-blob-img{background-position:calc(100% + 260px);background-size:800px 1000px;height:1000px;top:-200px;width:800px;z-index:-1;}
	.vertical-tab-inner{padding:10px;}
	.tiel_scroller_sec{padding:0px 0 0;}
	.tiel_scroller_slide_two_col{width:47.8%;}
	.ora-score-1{width:250px;min-height:380px;}
	.ora-score-2{height:380px;width:280px;left:225px;}
	.ora-score-3{bottom:92px;left:80px;}
	.ora-score-sec:before{background-size:600px;background-position:left center;width:600px;}
	.ora-score-sec:after{background-size:500px;width:500px;z-index:0;}
	.ora-score-right-item{margin:0 0 50px;}
	.ora-score-sec{padding:50px 0 50px;}
	.ora-score-sec:after{background-size:300px;width:300px;z-index:0;background-position:calc(100% + 50px);top:-200px;}
	.podcast-embed-main{margin:0 auto 20px;}
	.podcast-inner-content{margin-top:15px;}
	.blog_post_hero_banner .hero_banner_right .right-inner-image{height:280px;width:100%;}
	.podcast-inner-main{margin-left:10px;}
	.blog-post-body.podcast-inner-sec-part:after{background-size:260px;background-position:right center;}
	.apply-job-sec{margin-top:60px;padding:40px 30px 0;}
	.client-expert-cont{margin-left:0;margin-right:0;width:50%;}
	.client-expert-item{justify-content:space-between;}
	.client-expert-img{margin:50px 0 50px;}
	.client-expert-decoration{background-size:450px 380px;}
	.client-expert-item:nth-child(2n) .client-expert-img{margin-right:0;margin-left:0;}
	.client-expert-item:nth-child(2n) .client-expert-cont .quote-svg{right:0;left:inherit;margin-top:-60px;}
	.quote-svg{position:absolute;left:0;width:60px;height:65px;margin-top:-60px;}
	.eisntine-img-box{background-size:400px;width:400px;height:450px;margin-left:-50px;}
	.j-tuner-image-gallery-sec{padding:50px 0 50px;}
	.ora-ranking-sec:before{background-size:250px 400px;background-position:left;width:250px;height:400px;}
	.ora-ranking-sec:after{background-size:250px 400px;background-position:right;bottom:100px;right:0;width:250px;height:400px;}
	.timeline ul li.active-data .rank-box-cont:before{width:50px;height:50px;line-height:50px;font-size:20px;}
	.timeline ul li.active-data{padding-bottom:50px;}
	.timeline ul li:last-child{padding-bottom:0px;}
	.rank-box-cont span.arrow-div{height:calc(100% - 50px);}
}
@media (max-width:1150px){
	.podcast-inner-sec-part:before{background-size:200px;bottom:180px;height:258px;left:0;width:200px;}
	.podcast-inner-sec-part:after{background-size:150px;height:366px;width:150px;}
	.feature_resources_sec.related_blog_module{padding:100px 0 20px;}
}
@media(max-width:1024px){
	.enumenu_ul .hs-menu-wrapper>ul>li{margin-right:20px;}
	a.menubelow{padding-right:4px;}
	.j-top-right-col{width:30%;}
	.j-footer-bottom-right{width:40%;}
	.j-footer-col{width:24%;}
	.j-footer-bottom-right span{margin-top:30px;}
	.enumenu_ul .hs-menu-wrapper>ul>li>a{font-size:13px;}
	.search-box{margin-right:5px;}
	.hero_banner_left .hero_left_cont+ul li{margin-bottom:20px;margin-right:0;width:100%;}
	.req-form-wrap{margin-bottom:0;position:relative;width:auto;}

	/*   .req-form-wrap.form-sticky {
	    margin-top: 40px;
	} */
	.request-demo-form-sec{padding-bottom:50px;}
	.req-form-wrap{width:auto;right:0px;}
	.tiel_scroller_slide_two_col{width:47.7%;}
	.middle-svg-img{width:380px;}
	.ora-score-sec:before{background-position:0;background-size:550px;width:550px;}
	.podcast-inner-sec-part:after{background-size:175px;height:366px;width:175px;background-position:right center;}
	.podcast-inner-sec-part:before{background-size:175px;bottom:180px;height:258px;left:0;width:175px;background-position:left center;}
	.related-podcast-module{padding:100px 0 20px;}
	.feature_resources_sec.related_blog_module{padding:100px 0 20px;}
	.share-box-left{display:flex;flex-wrap:wrap;justify-content:flex-start;position:relative;top:0;width:100%;margin-left:0;align-items:center;margin:40px 0 30px;}
	.podcast-inner-main{margin-top:0;padding-left:0;padding-right:0;}
	.podcast-inner-sec-part:after{display:none;}
	.podcast-inner-sec-part:before{display:none;}
	.podcast-embed-main{margin:0 auto 20px;max-width:100%;padding:43px 20px 0;}
	.at-share-btn-elements a{margin:0 10px 20px!important;}
	.podcast-inner-main{margin-left:0;width:100%;}
	.podcast-inner-sec-part{padding:0px 0 40px;}
   .addthis_inline_share_toolbox ul li {
    margin: 0px 10px 24px;
}
}
@media(max-width:991px){
	.h1,h1{font-size:30px;line-height:130%;}
	.j-top-wrapper{justify-content:space-between;}
	.j-top-head{padding:23px 0;}
	.nav-menu-right{padding-left:0;}
	.nav-menu-right{width:auto;padding-left:0;justify-content:flex-end;}
	.j-top-footer-middle-col .call-box{margin-right:0;margin-bottom:10px;width:100%;}
	.j-footer-bottom-right{width:100%;}
	.j-footer-col{width:45%;}
	.j-footer-bottom-right{width:100%;margin:30px 0 0;justify-content:flex-start;}
	.j-footer-bottom-right:before{right:0;left:190px;}
	.j-footer-bottom-right span{text-align:left;}
	.j-footer-sec{padding:120px 0 30px;}
	.j-top-right-col{width:40%;}
	.j-top-footer-middle-col{width:24.2%;}
	.nav-menu-right .nav-right + .nav-inner-right{display:none;}
	.enumenu_ul.bm-menu-mixed.mob{display:none;}
	.mobile-menu{background:#fff;display:block;height:100%;max-height:100%;max-width:100%;overflow:auto;position:fixed;transition:all .5s ease 0s;width:100%;left:-100%;top:81px;}
	body.menu-open .mobile-menu{left:0;}
	.enumenu_ul{display:none}
	.menu-block{height:auto;}
	.menu-icon{display:block}
	.mobile-menu .hs-menu-wrapper > ul > li{display:block;margin:0px;padding:0px;border-bottom:1px solid #EAEBEB;width:100%;}
	.mobile-menu .hs-menu-wrapper>ul>li>a{display:block;padding:10px 10px;text-align:left;color:#4F5866;}
	.mobile-menu .hs-menu-wrapper>ul>li>a:hover{color:#293444;}
	.mobile-menu{width:100%;}
	.mobile-menu .hs-menu-wrapper > ul > li ul a{text-align:center;display:block;text-align:left;color:#4F5866;padding:10px 10px;}
	.mobile-menu .hs-menu-wrapper > ul > li ul a{color:#4F5866;}
	.mobile-menu .hs-menu-wrapper>ul{padding:23px 27px 0px;}
	.enumenu_ul .hs-menu-wrapper>ul ul.mega-menu-box{min-width:100%;padding-bottom:0;}
	.enumenu_ul .hs-menu-wrapper>ul ul.mega-menu-box{min-width:100%;padding-bottom:0;position:absolute;max-width:100%;right:-100%;left:inherit;}
	.mobile-menu .hs-menu-wrapper>ul>li ul{background:#ffffff;left:0;min-width:100%;position:absolute;left:-100%;top:0;bottom:0;z-index:11;padding:23px 27px 40px;transition:all .5s ease 0s;max-height:100%;max-width:100%;overflow:auto;width:100%;display:block!important;z-index:9999;}
	.mobile-menu .hs-menu-wrapper>ul>li ul.active{left:0;}
	.menu-mobile-title{display:flex;flex-wrap:wrap;align-items:center;width:auto;cursor:pointer;}
	li.menu-top-box:nth-child(2){margin-top:25px;}
	.menu-mobile-title span.arrow-back{padding-right:20px;display:flex;align-items:center;}
	.sub-part-nav h6{font-weight:600;margin:0;padding:0;}
	.menu-icon.active .menu-box{z-index:9;}
	a.menubelow:after{display:none;}
	ul.secondary_menu_box{display:none;}
	.menu-inner-part-right{display:none;}
	.mega-menu-box .menu-inner-left{padding-left:0;padding-right:0;width:100%;}
	li.menu-top-box{border-bottom:1px solid #EAEBEB;}
	.menu-inner-part-right{display:none!important;}
	.mobile-menu .hs-menu-wrapper>ul>li>a{position:relative;display:flex;align-items:center;padding-right:30px;}
	.mobile-menu .hs-menu-wrapper>ul>li>a span.arrow-mob{background:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/drop%20down%20arrow%20%281%29.svg') no-repeat 50%;cursor:pointer;width:20px;position:absolute;right:0;top:0;height:20px;z-index:999;display:flex;align-items:center;top:50%;-ms-transform:translateY(-50%);-moz-transform:translateY(-50%);-webkit-transform:translateY(-50%);transform:translateY(-50%);justify-content:flex-end;background-position:right;background-size:10px;}
	.wrap-drop{background:transparent;box-shadow:none;cursor:pointer;margin:0 auto;min-width:150px;position:relative;width:100%;z-index:3;height:51px;display:flex;align-items:center;padding:0 20px 0 10px;}
	.wrap-drop span{color:#ffffff;}
	.wrap-drop::after{content:"";position:absolute;width:15px;height:10px;background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/drop%20down%20arrow.svg');background-repeat:no-repeat;background-size:cover;right:20px;background-position:right center;filter:invert(100%) sepia(100%) saturate(0%) hue-rotate(200deg) brightness(106%) contrast(101%);}
	.wrap-drop .drop{background:#ffffff;box-shadow:3px 3px 3px rgba(0,0,0,.2);display:none;left:0;list-style:none;margin-top:0;opacity:0;padding-left:0;pointer-events:none;position:absolute;right:0;top:100%;z-index:2;border-radius:5px;max-height:250px;overflow-y:auto;min-width:155px;}
	.wrap-drop .drop li a{color:#293444;display:block;padding:7px 10px;text-decoration:none;}
	.wrap-drop .drop li:hover a{background-color:#F4F5F5;}
	.j-sticky .nav-menu-right,.nav-menu-right{width:100%;height:0;}
	.wrap-drop.active .drop{display:block;opacity:1;pointer-events:auto;}
	.j-sticky .site-logo img{opacity:1;visibility:visible;}
	.j-sticky .site-logo{height:auto;width:auto;}
	.j-sticky .site-logo .sticky-logo{opacity:0;visibility:hidden;}
	.simple-menu-box .menu-inner-left{width:100%;padding-left:0;padding-right:0;}
	.nav-right .enumenu_container .menu-icon{display:none;}
	.nav-inner-right.hide-desk{display:block;}
	.search-box{width:calc(100% - 37px);margin:0 37px;position:relative;}
	.search-box .hs-search-field{visibility:visible;opacity:1;position:relative;top:0;width:100%;padding-right:0;padding-left:0;margin:0 auto;}
	.search-box form input.hs-search-field__input{padding-left:0px;border-bottom:1px solid #eaebeb;padding-top:10px;padding-bottom:10px;height:38px;}
	.search-icon{display:none;position:absolute;z-index:1;top:10px;left:-10px;opacity:.3;}
	.hs-search-field__bar button svg{height:15px;width:15px;}
	.search-box form button{left:inherit;right:30px;}
	.search-box form button svg path{stroke:#D5D6D8;}
	.mobile-menu .btn-wrapper{max-width:290px;margin:70px auto 33px;}
	.mobile-menu .btn-wrapper a{width:100%;display:block;margin:0 auto;text-align:center;}
	body.menu-open{overflow-y:hidden;}
	.top-head-bar{display:none;}
	header.header{margin-top:132px;}
	.btn-box-wrap{margin-top:10px;}
	.hero_banner_left{width:43.3%;}
	.hero_banner_right{width:calc(100% - 43.3%);padding-left:50px;position:relative;}
	.btn-box-wrap .btn-wrapper{margin-right:10px;margin-bottom:15px;}
	.hero_banner_right:after{height:450px;width:500px;}
	.j_two_col_left{width:46%;}
	.j_two_col_sec:before{background-size:380px;background-position:left;width:380px;}
	.j-testimonial-slider-part{padding-left:0;padding-right:0;}
	.testimonail-slider-warp:after{background-position:top;background-size:cover;height:450px;right:0;width:450px;top:-125px;}
	.j-slide-left-cont:before{background-position:center;background-size:cover;height:40px;left:0;top:-24px;width:50px;}
	.half_col{width:100%;margin-right:0;}
	.j_two_col_right figure .top_left_img{max-width:120px;}
	.bottom_right_img{max-width:160px;}
	.three_col{width:100%;}
	.j_cta_box_sec{padding:40px;margin:0 20px 40px;margin-left:auto;margin-right:auto;width:calc(100% - 40px);}
	.feat_resources_image{height:170px;}
	.feat_cont{height:calc(100% - 170px);}
	header.header.hide-sub-menu{margin-top:81px;}
	.hs-search-field--open .hs-search-field__suggestions{width:calc(100% - 25px);}
	.footer-divied{z-index:111;top:-1px;}
	.j-footer-sec{background-image:none!important;background-color:

  
  
    
  


  rgba(41, 52, 68, 1.0)

!important;}
	.top-head-bar.hide-desk{display:block;background-color:transparent;padding:0;margin-top:0!important;}
	.mobile-menu .top-head-bar.hide-desk .btn-wrapper{margin:0 auto;width:100%;text-align:center;}
	.mobile-menu .top-head-bar.hide-desk .btn-wrapper a{font-size:14px;letter-spacing:0.05em;padding:11px 15px;border-color:#E03842!important;background-color:#E03842!important;color:#ffffff!important;}
	.mobile-menu .top-head-bar.hide-desk .btn-wrapper a:hover{background-color:transparent!important;color:#E03842!important;}
	.enumenu_ul.bm-menu-mixed{display:none!important;}
	.search-box  .hs-search-field__suggestions{display:none!important;}
	.j-sticky .secondary_menu_sec{z-index:11;}
	.j_two_col_right figure{padding-bottom:20px;padding-top:20px;}
	.video_cta_wrap{padding:50px 0 100px;}
	.video_cta_wrap:before{left:0;width:100%;background-size:100%;right:0;margin:0 auto;}
	.video_cta_cont{max-width:500px;margin:0 auto;}
	.video_cta_box{width:262px;}
	.two_col_sec{padding:120px 0 0;}
	.case_study_sec{padding:80px 0 30px;}
	.case-study-title{margin:0 0 40px;}
	.counter-top-cont{margin:0 auto 30px;max-width:742px;}
	.two_col_item p:last-child{margin-bottom:0;}
	.counter-item{padding:20px 15px;}
	.j_counter_sec{padding:80px 0 50px;}
	.case_study_item{padding:30px 20px 30px;}
	.case_study_logo{margin-bottom:30px;}
	.left-right-counter .four-column .counter{font-size:40px;}
	.left-right-counter .counter-item{min-width:auto;width:33.33%;}
	.form-left-cont{margin-left:0;padding-top:60px;width:50%;}
	.req-form-right{width:48%;}
	.multiimg-sec{padding:120px 0 70px;}

	/* .multiimgs {
	    width: 47.3%;
	}
	.multiimgs:nth-child(3n) {
	    margin-right: 5.4%;
	}
	.multiimgs:nth-child(2n) {
	    margin-right: 0;
	} */
	.multiimg-left{padding-right:25px;}
	.privacy-content-title:before{top:-51px;left:-29px;background-size:280px;}
	.privacy-content-title:before{width:279px;height:219px;}
	.privacy-content-para p{text-indent:30px;}
	.privacy-content-title{padding-bottom:10px;}
	.j_cta_box_sec_v2 .cta_right-image{position:relative;right:0;width:350px;z-index:1;}
	.j_cta_box_sec.j_cta_box_sec_v2.image-space-top-bottom{margin:0px auto;}
	.j-global-col-image{height:170px;}
	.j-global-cont{height:calc(100% - 170px);}
	.case-blob-img{display:none;}
	.j_two_col_sec:after{background-size:380px;width:380px;}
	.hero-form-main:before{bottom:90px;left:0px;}
	.faq-section{padding:60px 0 50px 0;}
	.faq-cont-table{padding:18px 20px;}
	.dual-cta-left{height:250px;width:100%;overflow:hidden;}
	.dual-cta-right{width:100%;height:calc(100% - 250px);}
	.dual-cta-left img{border-radius:15px 15px 0 0;height:auto;width:100%;}
	.single-content-sec{margin-bottom:0;margin-top:-75px;}
	.slider-einstince-img:before{display:none;}
	.tiel_scroller_sec .case-blob-img{display:none;}
	.tiel_scroller_right{padding-left:0px;padding-right:0;width:100%;}
	.tiel_scroller_slide_img{margin:0 0 30px;}
	.tiel_scroller_slider .slick-slide{margin:0 0 50px;}
	.tiel_scroller_left{width:100%;}
	.tiel_scroller_slider{padding-bottom:20px;}
	.tiel_scroller_slide_two_col_top .tiel_scroller_right{padding-left:0;}
	.tiel_scroller_slide_two_col_wrap{width:100%;padding-left:0;min-height:auto;}
	.tiel_scroller_slide_two_col{width:48.4%;margin-right:0;}
	.two-col-einstince-img .tiel_scroller_slide_two_col_wrap::before{display:none;}
	.vertical-tab-title{width:100%;padding-left:0;}
	.resp-vtabs .resp-tabs-container{padding-left:30px;}
	.line-svg{display:block;height:100%;left:0;margin:0 auto;position:absolute;right:0;top:100px;width:85%;z-index:-1;}
	.services_button_group{min-height:630px;}
	.services_button_group:before{display:none;}
	.line-svg svg{height:auto;width:100%;}
	.services_button_list-5{right:120px;bottom:380px;}
	.services_button_list-3{left:120px;bottom:380px;}
	.ora-score-3{bottom:187px;width:100px;min-height:100px;left:60px;}
	.ora-score-2{height:300px;left:178px;width:200px;top:80px;}
	.ora-score-1{min-height:300px;width:200px;}
	.ora-score-sec:before{display:none;}
	.ora-score-sec:after{display:none;}
	.ora-score-right-item{margin:0 0 40px;}
	.ora-btn-group .btn-wrapper{margin-right:0;width:100%;margin-bottom:10px;}
	.ora-score-right{padding-right:0;padding-left:50px;margin:50px 0 0;}
	.podcast-inner-content blockquote{padding:40px 30px 40px 60px;}
	.podcast-inner-content blockquote:after{left:20px;top:15px;}
	.podcast-inner-content blockquote{margin:20px 0;}
	.podcast-inner-content h1,.podcast-inner-content h2,.podcast-inner-content h3,.podcast-inner-content h4,.podcast-inner-content h5,.podcast-inner-content h6,.podcast-inner-content p{margin-bottom:20px;}
	.podcast-inner-content ol,.podcast-inner-content ul{margin-left:20px;}
	.podcast-inner-sec-part:before,.podcast-inner-sec-part:after{display:none;}
	.feature_resources_sec.related_blog_module{padding:50px 0 20px;}
	.jt-left-inner-img .top_left_img{top:180px!important;}
	.j_two_col_sec:after{display:none;}
	.j_two_col_sec:before{display:none;}
	.client-expert-decoration{display:none;}
	.client-expert-img{margin:0;height:auto;}
	.client-expert-item{justify-content:space-between;margin:60px 0 0;}
	.quote-svg{height:40px;left:0;margin-top:-35px;position:absolute;width:40px;}
	.client-expert-item:nth-child(2n) .client-expert-cont .quote-svg{left:inherit;margin-top:-35px;right:0;}
	.client-expert-sec{padding:100px 0 100px;}
	.eisntine-img-box{display:none;}
	.image-gallery-left-part{width:100%;}
	.image-gallery-right-part{width:100%;padding-left:0;margin:30px 0 0;}
	.ora-ranking-sec:before{display:none;}
	.ora-ranking-sec:after{display:none;}
	.active-data .rank-box-cont{width:280px;}
	.rank-box-cont span.arrow-div{width:280px;}
	.none-active .rank-box-cont{max-width:280px;}
	.timeline ul li.none-active{padding-left:120px;padding-right:120px;}
 
}
@media(min-width:768px){
	.slider-nav{display:flex;}
	.resp-tab-content.resp-tab-content-active{display:block;}
}
@media(max-width:767px){
	.j-footer-top{order:2;}
	.j-footer-bottom{order:1;}
	.j-footer-sec .content-wrapper{display:flex;flex-wrap:wrap;}
	.footer-logo{display:inline-block;width:203px;margin:0 auto 35px;}
	.j-top-footer-middle-col,.j-top-right-col{width:100%;text-align:center;justify-content:center;}
	.j-top-right-col{margin:25px 0 0;}
	.j-top-footer-middle-col .call-box{width:auto;margin-right:25px;}
	.j-footer-bottom-right span{display:none;}
	span.mob-copy{display:block;text-align:center;}
	.j-footer-bottom-right{margin:30px 0 30px;width:100%;justify-content:center;}
	.j-footer-bottom-right:before{display:none;}
	.j-footer-col ul li{margin:0 15px 10px 0;width:45.1%;}
	.j-footer-col ul li{margin:0 0 10px;width:50%;}
	.j-footer-col{width:47%;}
	.white-popup{padding:40px 0px;margin:0 20px;}
	.mfp-close-btn-in .mfp-close{width:24px;height:24px;font-size:20px;line-height:1!important;}
	.hero_banner_module:after{display:none;}
	.hero_banner_right:after{display:none;}
	.hero_banner_left{width:100%;}
	.hero_banner_right{width:100%;padding-left:0;position:relative;margin-top:25px;}
	.hero_banner_module{padding-bottom:50px;padding-top:50px;}
	.j-slide-left-cont{position:relative;width:100%;text-align:center;padding:20px 0 20px;}
	.j-right-slider{padding-left:0;width:100%;}
	.j-slide-left-cont:before{background-position:50%;background-size:cover;height:40px;left:20px;top:0;width:55px;background-repeat:no-repeat;}
	.slider-nav{max-width:100%;margin:20px auto 0px;padding:0px 40px 0;}
	.j-right-slider .j-right-img,.j-right-slider .j-right-img img{width:100%;}
	.testimonail-slider-warp:after{display:none;}
	.j_two_col_sec:before{display:none;}
	.j_two_col_left{width:100%;margin:0 0 30px;}
	.j_two_col_right{width:100%;}
	.bottom_right_img{max-width:120px;display:none;}
	.j_two_col_right figure .top_left_img{max-width:100px;display:none;}
	.j_two_col_right figure{padding-left:0px!important;padding-right:0px!important;max-width:350px;margin:0 auto;padding-top:0!important;padding-bottom:0!important;}
	.j_cont_box{width:calc(100% - 44px);padding-left:15px;}
	.half_col .j_cont_box{width:calc(100% - 44px);padding-left:15px;margin-top:0;}
	.half_col{width:100%;margin-right:0;display:flex;flex-wrap:wrap;margin-bottom:30px;}
	.three_col .j_cont_box{padding-left:15px;width:calc(100% - 44px);margin-top:0;}
	.j--col-wrap{margin:0 0 30px;}
	.three_col{margin-bottom:30px;margin-right:0;}
	.j_testimonials_sec_cont{margin:0 auto 40px;}
	.j_cta_box_sec{padding:40px;margin:0 auto 40px;}
	.j_cta_box_inner_wrap{margin:0 auto;max-width:100%;}
	.j_cta_box_sec .content-wrapper{max-width:100%;padding:0;}
	.j_two_col_sec{padding-top:20px;}
	.feature_resources_item{margin-left:15px!important;margin-right:15px!important;max-width:300px;width:100%;}
	.feat_cont{height:auto;}
	.feature_resources_wrap{justify-content:center;}
	.feat_resources_image{height:220px;}
	header.header.hide-sub-menu{margin-top:81px;}
	.j-footer-bottom{margin-top:0px;}
	.j-footer-sec{padding:80px 0 30px}
	.j-footer-col{display:none;}
	.hero_banner_left .hero_left_cont + ul{display:none;}
	.hide-desk-bullet{display:block;}
	.hide-desk-bullet li{margin-bottom:20px;margin-right:0;width:100%;display:flex;flex-wrap:wrap;align-items:center;}
	.hide-desk-bullet li:last-child{margin-bottom:0;}
	.hide-desk-bullet li .bullet-icon{width:26px;height:26px;}
	.hide-desk-bullet li .bullet-list-cont{width:calc(100% - 26px);padding-left:13px;color:#ffffff;font-weight:600;}
	.hide-desk-bullet{display:block;margin:40px 0 0;}
	.j-testimonial-slider-part .j-slide-left-cont{display:none;}
	.j-testimonial-slider-part .j-right-slider .j-slide-left-cont.hide-cont-desk{display:block;margin:50px 0 0;padding:20px 40px 0;}
	.btn-box-wrap{display:none;}
	.btn-box-wrap.hide-btn-desk{display:flex;margin-top:25px;}
	.btn-box-wrap.hide-btn-desk .btn-wrapper:last-child{margin-bottom:0;}
	.slider-nav{display:none;}
	.slider-for button.slide-arrow{background-color:transparent;border:1px solid#74808F;height:28px;margin:0;padding:0;width:31px;}
	.slider-for  button.slide-arrow.prev-arrow{position:absolute;left:0;top:inherit;bottom:0;}
	.slider-for button.slide-arrow.next-arrow{position:absolute;right:0;bottom:0;}
	.section-top-divider svg{display:none;}
	.bottom-divied svg{display:none;}
	.two_col_item{margin-bottom:30px;width:100%;}
	.two_col_sec{padding:40px 0 0;margin-top:30px;}
	.two_col_title{margin:0 0 40px;}
	.full_image_wave_sec{padding:50px 0;}
	.section-top-divider,.bottom-divied{padding:50px 0 0;}
	.content-full-box p:last-child{margin-bottom:0;}
	.case_study_item{padding:30px 20px 30px;width:100%;margin-right:0;margin-bottom:30px;}
	.video_cta_box{position:relative;margin:0 auto 60px;}
	.video_cta_box:before{position:absolute;content:"";top:-50px;left:-85px;right:0;width:400px;height:400px;z-index:-1;background-size:contain;background-position:center center;background-repeat:no-repeat;}
	.video_cta_cont *{color:#293444;}
	.video_cta_repeat .video_cta-2.btn-2 a{color:#293444!important;border:1px solid#293444!important;}
	.counter-item{padding:20px 15px;width:100%;border-right:0;border-bottom:1px solid #d5d6d8;}
	.counter-wrap-sec{margin:0 auto;max-width:250px;}
	.counter-top-cont{margin:0 auto 20px;}
	.j_counter_sec{padding:40px 0 20px;}
	.case_study_sec{padding:50px 0 30px;}
	.video_cta_wrap{padding:50px 0 30px;}
	.left-right-counter .counter-top-cont{margin:0;width:100%;}
	.left-right-counter .counter-wrap-sec{min-width:auto;padding:0 0 20px;width:100%;margin:20px auto 0px;}
	.left-right-counter .counter-item.four-column{min-width:auto;padding:0 0 20px;width:100%;margin:0 auto 20px}
	.left-right-counter .counter-item.four-column:last-child,.left-right-counter .counter-item:last-child{margin-bottom:0;}
	.left-right-counter .counter-item{min-width:auto;width:100%;}
	.form-left-cont{margin-left:0;padding-top:60px;width:100%;}
	.req-form-right{width:100%;min-height:auto;}
	.form-left-cont:before{background-size:cover;height:100%;width:100%;background-position:center center;left:0;right:0;display:none;}
	.form-left-cont{padding-top:50px;width:100%;padding-bottom:20px;background-color:#8383F1;}
	.single-content-wrap{width:100%;}
	.list-item-cont{padding-left:20px;width:calc(100% - 48px);}
	.item-icon{display:flex;align-items:center;justify-content:center;}
	.single-content-sec:after{display:none;}
	.single-content-sec{padding-bottom:0px;}
	.req-form-wrap{padding:25px 20px 30px;margin-top:0;border-radius:0;box-shadow:none;}
	.cont-inner-left{max-width:100%;margin-right:auto;margin-left:auto;text-align:left;padding:0 20px;}
	.req-form-wrap.form-sticky{margin-top:0;border-radius:0;}
	.embed-code{padding-top:10px;}
	.multiimg-left{width:100%;padding:0 0 35px 0;}
	.multiimg-right{width:100%;}
	.multiimg-sec{padding:50px 0 50px;}
	.privacy-content-title:before{display:none;}
	.privacy-content{padding:50px 0 30px 0;}
	.privacy-content-para p{text-indent:unset;}
	.j_cta_box_inner_wrap.j_cta_box_v2{margin-left:0;margin-right:auto;max-width:100%;}
	.j_cta_box_sec_v2 .cta_right-image{position:relative;right:0;width:250px;z-index:1;margin:30px auto 0;}
	.j_cta_box_sec_v2 .customWidthOption{flex-wrap:wrap;}
	.j_cta_box_sec.j_cta_box_sec_v2.image-space-top-bottom{margin:0px auto 40px;}
	.j-global-col-item{max-width:300px;width:100%;margin:0 15px 30px!important;}
	.j-global-item-wrap{justify-content:center;}
	.jplist-panel .search-box-filter.text-filter-box input[type=text]{width:220px;}
	.left-right-counter .counter-item:first-child{padding-top:0;}
	.j_two_col_sec:after{display:none;}
	.three_col .j_cont_box h4{margin:10px 0 10px;}
	.three_col{align-items:center;}
	.hero-form-banner-module{padding:50px 0;}
	.hero-form-left{width:100%;}
	.hero-form-right{width:100%;}
	.hero-form-main:before{display:none;}
	.hero-form-banner-module:after{display:none;}
	.faq-section{padding:60px 0 0 0;}
	.faq-sec-left{display:none;}
	.faq-sec-right{width:100%;}
	.dual-cta-sec{padding:60px 0 20px;}
	.dual-cta-main{margin-right:0;width:100%;}

	/*   .dual-cta-left { height:auto; } */
	.dual-cta-right{height:auto;}
	.dual-cta-main-wrap{max-width:350px;margin:0 auto;}
	.req-form-right{position:relative;top:0;}
	.single-content-sec{margin-bottom:0;margin-top:40px;}
	.request-demo-form-sec{padding-bottom:0;}
	.hero-form-main{min-height:auto;}
	.hero-form-left:before{display:none;}
	.vertical-tabbed-sec{padding:20px 0 20px;}
	h2.resp-tab-active{background:#DBDBDB;/* !important;*/}
	h2.resp-accordion{display:block;font-size:inherit;background-color:transparent!important;border-left:0!important;border-right:0!important;border-radius:0px;margin:0!important;padding:5px 5px!important;position:relative;z-index:1;}
	.resp-tab-content{border:1px solid #c1c1c1;}
	.resp-tab-content:last-child{border-bottom:1px solid #c1c1c1;/* !important;*/}
	.resp-jfit{width:100%;margin:0px;}
	.resp-tab-content-active{display:block;}
	h2.resp-accordion:first-child{border-top:1px solid #c1c1c1;/* !important;*/}
	.tab-icon-img svg{width:100%;height:100%;}
	.tab-icon-img{text-align:center;width:30px;height:30px;}
	ul.resp-tabs-list,.resp-vtabs ul.resp-tabs-list{display:none;}
	h2.resp-accordion{display:block;background-color:transparent!important;border-left:0;border-right:0;border-top:0!important;margin:5px 0 5px!important;padding:5px 5px!important;}
	.resp-vtabs .resp-tab-content{border-top:1px solid #fff;padding:20px 20px 20px;margin-top:0px;border-left:0;border-right:0;}
	.resp-vtabs .resp-tabs-container{border:none;float:none;width:100%;min-height:100px;clear:none;}
	.resp-accordion-closed{display:none!important;}
	.resp-vtabs .resp-tab-content:last-child{border-bottom:1px solid #c1c1c1!important;}
	h2.resp-tab-active{position:relative;z-index:1;}
	.resp-vtabs .resp-tabs-container{padding-left:0;}
	.vertical-tab-title{padding-left:10px;width:calc(100% - 30px);}
	.resp-vtabs .resp-tab-content{border:0;padding:20px 0 20px;}
	h2.resp-tab-active .vertical-tab-icon{opacity:1;visibility:visible;}
	h2.resp-tab-active .vertical-tab-inner{background:#ffffff;box-shadow:0px 3.98943px 4.98678px rgba(0,0,0,0.25);}
	.vertical-tab-inner{padding:10px 40px 10px 10px;}
	span.resp-arrow{margin:0;position:absolute;border:0;background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/drop%20down%20arrow%20%282%29.svg');width:13px;height:8px;background-size:cover;background-position:right center;right:30px;top:50%;transform:translateY(-50%);transition:all .5s ease;-moz-transition:all .5s ease;-ms-transition:all .5s ease;-o-transition:all .5s ease;-webkit-transition:all .5s ease;}
	h2.resp-tab-active span.resp-arrow{border:0;border-bottom:0;border-top:0;transform:translateY(-50%) rotate(180deg);}
	.services_button_group{min-height:auto;}
	.line-svg{display:none;}
	.services_button_list{position:relative;top:inherit!important;left:inherit!important;right:inherit!important;bottom:inherit!important;margin:0 auto 30px;transform:inherit!important;}
	.line-svg{display:none;}
	.services_button_group{min-height:auto;max-width:100%;text-align:center;margin:0 0 30px;}
	.middle-svg-img{display:none;}
	.ora-score-left-inner{margin-left:0;min-height:380px;}
	.ora-score-left-inner.is_stuck{position:relative!important;top:0!important;width:auto!important;}
	.ora-score-left{width:100%;}
	.ora-score-right{padding-right:0;padding-left:0;margin:40px 0 0;width:100%;}
	.ora-score-3{bottom:15px;}
	.ora-btn-group .btn-wrapper{width:auto;margin-right:20px;}
	.ora-score-right-item{margin:0 0 30px;}
	.ora-scrore-box-main{margin:20px 0 0;}
	.ora-score-sec{padding:20px 0 0;}
	.services_button_group{display:flex;flex-wrap:wrap;justify-content:center;}
	.services_button_list{margin:0 10px 20px;}
	.service_button_sec{padding:40px 0 0;}
	.podcast-inner-content blockquote:after{background-size:25px;width:25px;height:25px;}
	.podcast-inner-content blockquote{padding:40px 15px 15px 40px;}
	.podcast-inner-sec-part{padding:0px 0 40px;}
	.podcast-inner-content ul li:before{left:-15px;width:10px;}
	.podcast-embed-main{transition:none!important;}
	.podcast-embed-code.is_stuck{position:relative!important;transition:none!important;width:100%!important;top:auto!important;}
	.podcast-embed-code{width:100%;padding:0 20px;}
	.is_stuck .podcast-embed-main{padding:43px 0 20px 0;}
	.related-podcast-module{padding:50px 0 20px 0;}
	.blog_post_hero_banner .hero_banner_right{width:100%;}
	.blog_post_hero_banner .hero_banner_right .right-inner-image{height:auto;width:100%;}
	.blog_post_hero_banner .hero_banner_left{width:100%;}
	.blog-post-body.podcast-inner-sec-part{padding:20px 0 40px;}
	.related-podcast-module{padding:50px 0 20px;}
	.feature_resources_sec.related_blog_module{padding:50px 0 20px;}
	.tag-title{margin:0 0 40px;text-align:center;width:100%;}
	.autho-left{padding-left:0;width:100%;margin:30px 0 0;}
	.crc-blog-auther-section{padding:0 0 50px;}
	.left-img-group-one.w50{width:100%;margin:0 0 10px;}
	.boxContainer-right{width:100%;}
	.j-turner-image-module{padding:50px 0 0;}
	.client-expert-cont{margin-left:0;margin-right:0;width:100%;order:2;}
	.client-expert-item{justify-content:space-between;margin:40px 0 0;}
	.client-expert-img{height:auto;margin:0 0 30px;width:100%;order:1;}
	.expert-cont{margin-bottom:20px;padding-top:30px;text-align:center;}
	.client-expert-cont label{text-align:center;}
	.client-expert-img img{display:block;height:auto;object-fit:inherit;object-position:inherit;border-radius:15px;margin:0 auto;}
	.client-expert-sec{padding:50px 0 50px;}
	.j-tuner-image-gallery-sec{padding:40px 0;}
	.three-column-part-list{margin-right:0;text-align:center;width:100%;margin-bottom:30px;}
	.three-column-part-list:last-child{margin-bottom:0;}
	.timeline ul li.active-data .rank-box-cont:before{font-size:16px;height:40px;left:-100px;line-height:40px;right:inherit;top:20px;transform:none;width:40px;}
	.timeline ul li.active-data:after{left:20px;transform:none;top:20px;height:100%;}
	.active-data .rank-box-cont,.rank-box-cont span.arrow-div{width:calc(100% - 150px);margin-left:100px;}
	.rank-box-cont span.arrow-div{height:100%;left:0;right:0;}
	.timeline ul li:nth-child(2n) .rank-box-cont{margin-left:100px;margin-right:auto;}
	.timeline ul li .rank-box-cont{padding:15px 20px;position:relative;}
	.rank-box-cont span.arrow-div{height:100%;left:0;right:0;width:100%;margin-left:0;display:none;}
	.timeline ul li:nth-child(odd) .rank-box-cont span.arrow-div:after{display:none;}
	.rank-box-cont:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/notch%20%281%29.svg');background-repeat:no-repeat;background-size:contain;content:"";height:100%;left:-15px;position:absolute;top:-5px;width:15px;}
	.timeline{padding:20px 0;}
	.ranking-tab-cont h2.resp-accordion a{font-size:22px;color:#293444;}
	.ranking-tab-cont h2.resp-accordion{background-color:#ffffff!important;border-radius:5px;padding:15px!important;border:0!important;margin:10px 0!important;}
	.timeline ul li.none-active{padding-left:0;padding-right:0;}
	.timeline ul li.none-active .rank-box-cont{align-items:center;display:flex;min-height:auto;max-width:100%;width:calc(100% - 100px);flex-wrap:wrap;margin-left:auto;margin-right:0;padding:20px 0;}
	.timeline ul li.none-active .rank-box-cont:after{display:none;}
	.timeline ul li.none-active:after{left:20px;transform:none;top:30px;}
	.timeline ul li.none-active .rank-box-cont:before{left:-100px;right:inherit;top:50%;transform:translateY(-50%);}
	.timeline ul li.none-active:nth-child(2n) .rank-box-cont{left:0;right:inherit;}
	.ora-ranking-sec{padding:50px 0 0;}
	.resp-tabs-container.ranking-tab-cont{margin:40px 0 40px;}
	.timeline ul li.active-data{padding-bottom:20px;}
	.timeline ul li.active-data:last-child,.timeline ul li:last-child{padding-bottom:0;}
	.ranking-tab-cont h2.resp-accordion span{font-size:22px;}
}
@media(max-width:640px){
	.j_cta_box_inner_wrap .btn-wrapper{margin:0 30px 0;width:100%;margin-bottom:25px;}
	.j_cta_box_inner_wrap .btn-wrapper:last-child{margin-bottom:0;}
	.top-head-bar.hide-desk .head-wrapper{padding:0;}
	.jp-list-filter .jplist-panel.box.panel-bottom  .jplist-pagingmid{width:auto;float:none;display:flex;flex-wrap:wrap;justify-content:center;}
	.jp-list-filter .jplist-panel.box.panel-bottom .jplist-pagingnext{justify-content:center;display:flex;flex-wrap:wrap;width:auto;float:none;}
	.jp-list-filter .jplist-panel .jplist-pagination{float:none;display:flex;flex-wrap:wrap;width:auto;}
	.jp-list-filter .jplist-panel.box.panel-bottom .jplist-pagingmid .jplist-pagesbox{justify-content:center;display:flex;flex-wrap:wrap;display:none;}
	.jp-list-filter .jplist-pagingprev{float:none;display:flex;flex-wrap:wrap;justify-content:center;width:auto;margin-right:20px;}
	.jp-list-filter .jplist-drop-down{width:100%;margin:0 0 15px;}
	.jplist-panel .search-box-filter.text-filter-box input[type=text]{width:100%;}
	.jplist-panel .search-box-filter.text-filter-box{width:100%;}
	ul.inputs-list.multi-container li{width:100%;}
	.tiel_scroller_slider{margin-bottom:0;}
	.tiel_scroller_slider .slick-slide{margin:0 0 0px;}
	.tiel_scroller_slider .slick-slide.slick-current.slick-active+div,.tiel_scroller_slider .slick-target+div,.trans-50{transform:translateY(0px);}
	.tiel_scroller_slider .slick-slide.slick-current.slick-active+div+div,.tiel_scroller_slider .slick-target+div+div,.trans-100{transform:translateY(0px);}
	.tiel_scroller_slide_two_col{width:100%;margin-right:0;margin-bottom:30px;}
	.tiel_scroller_slide_two_col:nth-child(odd){margin-top:0;}
	.tiel_scroller_slide_two_col:nth-child(2n){margin-right:0;margin-top:0;}
	.tiel_scroller_slide_two_col:last-child{margin-bottom:0;}
	.resp-vtabs .resp-tab-content{border:0;padding:20px 0 30px;}
	.tabbing-inner-slider button.slide-arrow.prev-arrow{bottom:-10px;top:inherit;transform:inherit;}
	.tabbing-inner-slider button.slide-arrow.next-arrow{right:0;top:inherit;transform:inherit;bottom:-10px;}
	.tabbing-inner-slider{padding:0 15px;}
	.tab-inner-slide-img img{width:auto;height:auto;object-fit:inherit;}
	.tab-inner-slide-img{width:auto;height:auto;margin:0 auto;}
	.jp-list-filter .jplist-pagingprev{width:auto;float:none!important;margin-right:10px;}
	.jplist-pagingnext.jplist-hidden{display:none!important;}
	.jplist-pagingprev.jplist-hidden{display:none;}
	.jp-list-filter .jplist-panel.box.panel-bottom .jplist-pagingmid .jplist-pagesbox{display:flex;}
	.jp-list-filter .jplist-panel.box.panel-bottom .jplist-pagingmid .jplist-pagesbox button{display:none;}
	.jp-list-filter .jplist-panel.box.panel-bottom .jplist-pagingmid .jplist-pagesbox button.jplist-current,.jp-list-filter .jplist-panel.box.panel-bottom .jplist-pagingmid .jplist-pagesbox button.jplist-current + button{display:block!important;}
	.jp-list-filter .jplist-panel.box.panel-bottom .jplist-pagingmid .jplist-pagesbox button.jplist-current,.jp-list-filter .jplist-panel.box.panel-bottom .jplist-pagingmid .jplist-pagesbox button.jplist-current + button{margin-right:10px!important;}
	.ora-scor-two-cont{padding-left:0;width:100%;margin:20px 0 0;}
	.ora-score-right-innertwo-col:nth-child(2n){flex-direction:inherit;}
	.ora-score-right-innertwo-col:nth-child(2n) .ora-scor-two-cont{padding-left:0;padding-right:0;}
	.blog_post_hero_banner .hero_banner_right .right-inner-image{height:auto;width:100%;}
	.apply-cta-box{padding:30px 0;}
	.apply-job-sec .content-wrapper{padding:0;}
	.close-icon{width:20px;height:20px;right:10px;top:10px;}
	.apply-form-contact-srt .form-title{margin:0 0 25px;}
	.apply-form-contact-info .apply-form-contact-srt{padding:30px 15px;}
	.j_cta_box_inner_wrap.j_cta_box_v2 .btn-wrapper{margin-left:0;}
}
@media(max-width:480px){
	.j-footer-sec{padding:50px 0 30px;}
	.j-footer-bottom .btn-wrapper{width:100%;text-align:center;margin:0 0 25px;}
	.j-footer-bottom-right{margin:30px 0 10px;}
	.j-footer-col{width:100%;text-align:center;}
	.j-footer-col ul,.j-footer-col ul li{justify-content:center;width:100%;margin:0 0 15px;}
	.j-top-footer-middle-col .call-box{width:100%;margin-right:0;justify-content:center;display:flex;margin-bottom:15px;}
	.feature_resources_item{margin-left:0px!important;margin-right:0px!important;max-width:300px;width:100%;}
	.mobile-menu .btn-wrapper{min-width:100%;padding:0 27px;}
	.video_cta_repeat .btn-wrapper{width:100%;text-align:center;margin:20px 0 0;}
	.video_cta_repeat .btn-wrapper a{min-width:210px;}
	.video_cta_box:before{background-position:50%;background-repeat:no-repeat;background-size:contain;content:"";height:300px;left:-40px;position:absolute;right:0;top:-20px;width:320px;z-index:-1;}
	.video_cta_box.active{width:100%;height:auto;}
	.logo-slider img{height:auto;width:auto;}
	.logo-slider{padding:0;}
	.multiimgs{width:100%;margin:0 0 30px 0!important;}
	.multiimg-sec{padding:70px 0 30px;}
	.multiimg-left{text-align:center;}
	.multiimg-right{max-width:250px;margin:0 auto;}
	.ora-btn-group .btn-wrapper{width:100%;margin-right:0px;}
	.ora-score-1{min-height:250px;width:150px;}
	.ora-score-3{bottom:0;width:50px;min-height:50px;}
	.ora-score-left-inner{margin-left:0;min-height:280px;}
	.ora-score-2{height:200px;left:130px;top:80px;width:150px;}
	.right-img-group:nth-child(3){width:100%;height:auto;}
	.right-img-group:nth-child(2){width:100%;height:auto;}
	.right-img-group{margin:0 0 10px;}
	.company-logos-left{width:100%;}
	.company-logos-middle{margin:0;width:100%;}
	.company-logos-right{margin:0;width:100%;}
	.company-logos-left .company-logo{height:auto;}
	.company-logos-middle .company-logo{height:auto;}
	.company-logos-right .company-logo{height:auto;}
	.company-logo{height:280px!important;}
	.active-data .rank-box-cont,.rank-box-cont span.arrow-div{margin-left:50px;width:calc(100% - 50px);}
	.timeline ul li:nth-child(2n) .rank-box-cont{margin-left:50px;margin-right:auto;}
	.timeline ul li.active-data .rank-box-cont:before{left:-50px;}
	.rank-box-cont:after{background-image:url('https://2104682.fs1.hubspotusercontent-na1.net/hubfs/2104682/J_Turner_2023/Images/notch%20%281%29.svg');background-repeat:no-repeat;background-size:contain;content:"";height:100%;left:-8px;position:absolute;top:-5px;width:15px;}
	.timeline ul li.none-active .rank-box-cont{width:calc(100% - 30px);margin-left:30px;padding-left:20px;}
	.timeline ul li.none-active .rank-box-cont:before{left:-30px;right:inherit;top:50%;transform:translateY(-50%);}
}