/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.2; /* 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.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 35px;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
html {
 overflow-x: hidden;
}
/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[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 10px;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h5,
h6 {
  line-height: 1.2;
  margin: 0 0;
}
h4 { line-height: 1.3;  margin: 0 0; }
/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

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

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

/* No button */

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

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  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 {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

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

/* GDPR */

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

/* Validation */

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

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

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

@media(max-width: 767px) {

  .hs-error-msg {
    font-size: 12px;
  }
}
/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* Header DND sections */

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

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




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




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

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

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

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

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

@media (min-width: 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;
  }
}
.fullwidth {
  float: left;
  width: 100%;
}

.wrapper {
  box-sizing: border-box;
  width: 100%;
  float: none !important;
  display: block;
  margin: 0 auto !important;
  padding-right: 20px;
  padding-left: 20px;
}

.fl {
  display: flex;
  flex-flow: row wrap;
  display: -webkit-flex;
  -webkit-flex-flow: row wrap;
}

.fac {
  align-items: center;
  -webkit-align-items: center;
}

.fjc {
  justify-content: center;
  -webkit-justify-content: center;
}

.text-center {
  text-align: center;
}

.w-100 {
  width: 100%;
}

.button a,
.second_btn a {
  min-width: 231px;
}

.hs_error_rollup {
  display: none;
}

.mobtile {
  display: none;
}

a {
  outline: none;
  text-decoration: none !important;
  cursor: pointer;
  vertical-align: middle;
  max-width: 100% !important;
  white-space: normal !important;
  display: inline-block;
  font-weight: 500;
  transition: all .5s ease;
}

form {
  background: transparent;
}

form textarea,
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 {
  width: 100%;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #707071;
  font-size: 16px;
  font-weight: 400;
  padding: 16px 12px 16px 0;
  outline: none;
}

.second_btn a {
  background-color: transparent;
  border: 1px solid #e82584;
  border-radius: 36px;
  color: #e82584;
  font-family: Heebo, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  padding: 10px 22px 10px 22px;
  text-decoration: none;
  text-transform: none;
  text-align: center;
}

.second_btn a:hover {
  background-color: #e82584;
  color: #fff;
}

.secbtns {
  gap: 33px;
}

.sectxt {
  margin-top: 25px;
}

.link_btn a {
  color: #E82584;
  text-decoration: underline !important;
}

.link_btn a:hover {
  color: #7531E8;
}

.header-sec {
  padding: 10px 0;
  position: relative;
  z-index: 99;
}

.head-logo {
  width: 17%;
}

.head-logo a img {
  max-width: 118px !important;
  display: block;
}

.head-btns .head-btn a {
  font-size: 18px;
}

.head-btns .head-btn.link a:hover {
  color: #e82584;
}

.head-btns .head-btn.button a {
  padding: 2px 20px;
  min-width: auto;
}

.head-btn:not(:first-child) {
  margin-left: 41px;
}

.head-right {
  width: 83%;
}

.head-menu {
  width: 72%;
}

.head-btns {
  width: 28%;
  justify-content: right;
  -webkit-justify-content: right;
}

.head-menu ul li {
  padding: 25px 35px 18px;
}

.head-menu ul li a {
  font-size: 18px;
  line-height: 24px;
}

.head-menu ul li:hover a {
  color: #e82584;
}

.footer-sec {
  padding: 170px 0 46px;
}

.footer-logo a img {
  max-width: 118px !important;
  display: block;
}

.footer-cpyrght {
  margin-top: 120px;
  color: #050488;
}

.footer-logo {
  width: 15%;
}

.footer-rght {
  width: 20%;
}

.footer-center {
  width: 65%;
  padding: 0 15px;
}

.footer-col {
  width: 25%;
  padding: 0px 25px;
}

.footer-col h5 {
  margin-bottom: 36px;
}

.footer-menu ul {
  display: block;
}

.footer-menu ul li {
  margin-bottom: 8px;
}

.footer-menu ul li a:hover {
  color: #e82584;
}

.footer-menu ul li a>span {
  margin-right: 14px;
}

.footer-rght h5 {
  line-height: 27px;
}

.footer-form {
  margin-top: 40px;
}

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

.footer-form form input[type=email] {
  border-width: 0 0 2px 0;
}

.hero-lf {
  width: 45%;
  padding-right: 20px;
}

.hero-rght {
  width: 55%;
}

.herotxt {
  max-width: 460px;
}

.herobtn {
  margin-top: 45px;
}

.hero-vdo {
  border-radius: 20px;
  overflow: hidden;
}

.plat-row {
  margin: 110px -20px 0;
}

.plat-col {
  width: 33.33%;
  padding: 0px 20px;
  margin-bottom: 30px;
}

.platimg {
  margin-bottom: 48px;
}

.platxt {
  max-width: 322px;
  margin: 31px auto 0;
}

.plat-inner h3 {
  font-size: 25px;
}

.zigzag-tile h3 {
  font-size: 54px;
  margin-bottom: 33px;
}

.zigzag-img,
.zigzag-content {
  width: 50%;
}

.zigzag-col.lf_img .zigzag-content {
  padding-left: 120px;
}

.zigzag-col.rght_img {
  flex-direction: row-reverse;
}

.zigzag-col.rght_img .zigzag-content {
  padding-right: 120px;
}

.zigzag-content .secbtns {
  margin-top: 73px;
}

.zigzag-col:not(:last-child) {
  margin-bottom: 260px;
}

.counter-inner {
  border-radius: 20px;
}

.count-outer {
  margin-top: 90px;
  margin-left: -30px;
  margin-right: -30px;
}

.count-col {
  width: 22%;
  padding: 0px 30px;
  margin-bottom: 30px;
}

.counter {
  font-size: 64px;
  line-height: 1;
  font-weight: 600;
}

.count-txt {
  margin-top: 22px;
  font-size: 16px;
  line-height: 30px;
}

.fulogo-row {
  max-width: 1366px;
  margin: 48px auto 0;
}

.fulogo-col {
  width: 20%;
  padding: 0px 50px;
  margin: 20px 0px;
}

.fulogo-img {
  display: flex;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  height: 100%;
}

.prctab-row {
  margin-top: 142px;
}

.prctab-col {
  width: 30.33%;
  margin-right: 4.5%;
  background: #fff;
  padding: 72px 30px 81px;
  border-radius: 20px;
  box-shadow: 0px 2px 10px rgb(0 0 0 / 16%);
}

.prctab-col:nth-child(3n) {
  margin-right: 0;
}

.prctab-txt {
  margin-top: 40px;
}

.prctab-btn {
  margin-top: 55px;
}

.prctab-content {
  margin-top: 59px;
  min-height: 187px;
}

.pricing-no {
  font-size: 84px;
  line-height: 1.2;
  font-weight: 500;
}

.pricing-txt {
  margin-top: 11px;
  opacity: 0.7;
  font-size: 16px;
}

.prictxt {
  font-size: 64px;
}

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

.prtabs li {
  font-size: 20px;
  line-height: 27px;
  color: rgb(51 51 51 / 70%);
}

.prtabs li.show,
.prtabs.show li:last-child {
  color: #E82683;
}

.prtabs.show li.show {
  color: #000000;
}

.prtab-active {
  width: 98px;
  height: 44px;
  background: #E82584;
  border-radius: 36px;
  position: relative;
  cursor: pointer;
  margin: 0 44px;
  display: inline-block !important;
}

.prtab-active:before {
  content: '';
  background: #ffffff;
  width: 33px;
  height: 33px;
  position: absolute;
  border-radius: 50%;
  top: 5px;
  left: 8px;
  transition: all ease 0.3s;
}

.prtab-active.prtab-active--show:before {
  left: auto;
  right: 8px;
}

.pricing-info {
  display: none;
}

.pricing-info.week-price--show,
.pricing-info.month-price--show{
  display: block;
}
.popular-tab {
  border: 1px solid #E82683;
  position: relative;
}

.popular-tab .popular-txt {
  background: #E92582;
  border-radius: 10px;
  color: #ffff;
  padding: 5px;
  max-width: 177px;
  position: absolute;
  top: -22px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  font-weight: 500;
}

.pricing-tab {
  margin-top: 58px;
}

.testimoal-swiper {
  background: #F7F8F7;
  border-radius: 20px;
}

.testimoal-swiper .swiper-pagination {
  position: static;
  margin-bottom: 100px;
}

.testi-outer {
  border-radius: 20px;
  padding: 107px 122px 50px;
}

.testi-txt {
  font-size: 25px;
  line-height: 42px;
}

.testi-info span {
  display: block;
  font-style: normal;
  font-weight: 500;
}

.testi-info,
.testi-logo {
  margin-top: 53px;
}
.testi-info {
  font-style: italic;
}
.testi-quote {
  position: relative;
  padding-top: 79px;
}

.testi-quote:before {
  position: absolute;
  width: 38px;
  height: 29px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e82584;
}

.fucta-inner .secbtns {
  margin-top: 70px;
}

.fucta-head,
.fucta-head .sectitle h2 {
  color: #fff;
}

.fucta-head .sectxt {
  max-width: 979px;
  margin: 33px auto 0;
}

.blgrect-rw {
  margin-top: 90px;
}

.blgrect-col:nth-child(3n) {
  margin-right: 0;
}

.blgrect-col {
  margin-right: 4%;
  width: 30.66%;
  background: #fff;
  box-shadow: 0px 2px 10px rgb(0 0 0 / 16%);
  border-radius: 20px;
  margin-bottom: 42px;
}

.blgrect-image {
  padding: 54.5% 0 0;
  border-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.blgrect-content {
  padding: 47px 56px 63px;
}

.blgrect-title h4 a {
  color:#000000;
  font-weight: 600;
}

.blgrect-tags a {
  color: #000000;
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding-left: 32px;
}

.blgrect-txt {
  margin-top: 39px;
}

.blgrect-btn {
  margin-top: 46px;
}

.blgrect-min {
  padding-left: 10px;
}

.blgrect-tags .topic-link:before {
  content: '';
  position: absolute;
  background: url(https://20001972.fs1.hubspotusercontent-na1.net/hubfs/20001972/FoundU%20-%202024/Images/Blog%20icon.svg) no-repeat 0 0 / contain;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.webinar_pst a.topic-link:before {
  background: url(https://20001972.fs1.hubspotusercontent-na1.net/hubfs/20001972/FoundU%20-%202024/Images/Play%20Icon.svg) no-repeat 0 0 / contain;
}

.blgrect-meta {
  margin-bottom: 43px;
}

.blgrect-sec .secbtns {
  margin-top: 58px;
}

.bloghr-inner {
  max-width: 527px;
}

.blglst-image a {
  width: 100%;
  padding: 54.5% 0 0;
  border-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.blgfil_option {
  display: inline-block;
  position: relative;
  z-index: 9;
}
.header-sec.header-sec--show {
  z-index: -1;
}
.blgfil_option>span {
  display: inline-block;
  padding: 10px 26px 9px 58px;
  position: relative;
  font-size: 16px;
  line-height: 21px;
  border: 1px solid #707070;
  border-radius: 36px;
  cursor: pointer;
  min-width: 196px;
}

.blgfil_option>span:before {
  content: '';
  position: absolute;
  background: url(https://20001972.fs1.hubspotusercontent-na1.net/hubfs/20001972/icon-filter.svg) no-repeat 0 0 / contain;
  width: 16px;
  height: 11px;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.blgfilt_select {
  position: absolute;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 15px 20px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #707070;
  margin-top: 5px;
  display: none;
}

.blgfilt_select li:not(:last-child) {
  margin-bottom: 15px;
}

.blgfilt_select li {
  cursor: pointer;
  transition: all .3s ease;
  font-size: 16px;
  line-height: 21px;
}

.blgfilt_select li:hover {
  color: #E82584;
}

.blgfil-search {
  position: relative;
  display: inline-block;
}

.blgfil-search .quicksearch {
  border: 1px solid #707070;
  outline: 0;
  padding: 10px 26px 9px 58px;
  display: inline-block;
  border-radius: 36px;
  line-height: 21px;
  max-width: 212px;
  font-size: 16px;
  line-height: 21px;
  background-image: url(https://20001972.fs1.hubspotusercontent-na1.net/hubfs/20001972/Magnifying%20Glass.svg);
  background-position: 20px 50%;
  background-repeat: no-repeat;
  background-size: 20px
}

/* .blgfil-search form button { background: transparent; border: none; padding: 0; position: absolute; top: 10px; left: 22px; }
.blgfil-search form button > svg { width: 14.68px; height: 14.68px; }
.blgfil-search form button > svg path{ fill: #000; } */

.blgfilter-inner.fl {
  gap: 31px;
}

.blgpst-sec {
  padding: 180px 0px 260px;
}

.blgpst-inner h1 {
  margin-bottom: 64px;
}

.blgpst-image {
  border-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 526px;
  background-position: center;
}

.blgpst-author-avatar {
  width: 50px;
  height: 50px;
  background-size: cover;
  margin-right: 30px;
  background-position: top center;
  border-radius: 50%;
}

.blgpst-author-info {
  font-size: 14px;
  color: #000000;
  line-height: 21px;
}

.blgpst-author-info a {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}

.blgpst-author-info p:last-child {
  margin-bottom: 0;
}

.blgpst-author-info p {
  margin-top: 2px;
}

.blgpst-meta {
  margin-bottom: 72px;
}

.blgpst-date {
  margin-left: 117px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.blgpst-date>span {
  width: 60px;
  display: inline-block;
}

.blgpst-date .reading-min:before {
  content: '';
  position: absolute;
  height: calc(100% - 3px);
  border-left: 1px solid #000000;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.blgpst-date .reading-min {
  position: relative;
  margin-left: 37px;
  padding-left: 37px;
  width: calc(50px + 37px);
}

.blgpst-rght {
  width: 70%;
  padding-left: 20px;
}

.blgpst-lf {
  width: 30%;
  padding-right: 30px;
}

.blgpst-lf ul {
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: 265px;
}

.blgpst-lf h5 {
  font-size: 18px;
  color: #000000;
  margin-bottom: 38px;
  font-weight: 400;
  position: relative;
}

.blgpst-lf ul li {
  margin-bottom: 39px;
}

.blgpst-lf ul li a {
  width: 100%;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  padding-bottom: 41px;
  border-bottom: 1px solid rgb(112 112 112 / 24%);
}

.blgpst-lf ul li:last-child a {
  border-bottom: 0;
}

.blgpst-outer {
  padding-top: 157px;
}

.blgpst-content h2 {
  font-size: 25px;
  line-height: 33px;
  margin-bottom: 38px;
  margin-top: 92px;
}

.blgpst-content p:not(:last-child) {
  margin-bottom: 25px;
}

.blglst-info {
  background: #fff;
  box-shadow: 0px 2px 10px rgb(0 0 0 / 16%);
  border-radius: 20px;
  height: 100%;
}

.blglst-col {
  width: 33.33%;
  padding: 0px 25px;
  margin-bottom: 42px;
}

.blglst-inner {
  margin: 0px -25px;
}
.blog-pagination {
  display: flex;
  gap: 17px;
  justify-content: center;
  margin-top: 100px;
}
.isotope-pager,
.blog-pagination-center {
  text-align: center;
  display: flex;
  gap: 17px;
  justify-content: center;
  align-items: center;
}
.isotope-pager {
  display: none;
}
.isotope-pager>span {
  width: 39px;
  color: #E82584;
  height: 29px;
}

.isotope-pager>a,
.blog-pagination-center > a,
.blog-pagination-left > a:not(.elipses),
.blog-pagination-right > a:not(.elipses){
  width: 57px;
  height: 57px;
  border-radius: 10px;
  border: 1px solid #E82685;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  color: #E82584;
}
.isotope-pager>a,
.blog-pagination-center > a:hover,
.blog-pagination-left > a:not(.elipses):hover,
.blog-pagination-right > a:not(.elipses):hover {
  background-color: #E82685;
  color: #FFFFFF;
  border-color: #E82685;
}
.blog-pagination a.elipses {
  color: #E82584;
}
.isotope-pager>a.active,
.blog-pagination a.active {
  background-color: #e82584;
  color: #fff;
}

.isotope-pager a.isotope-dotted {
  border: 0;
}
.blog-pagination-left ,
.blog-pagination-right {
  display: flex;
  align-items: center;
  gap: 0 17px;
}
.zigzag-fetu .zigzag-col.lf_img .zigzag-content {
  padding-left: 158px;
}

.zigzag-fetu .zigzag-col.rght_img .zigzag-content {
  padding-right: 158px;
}

.zigzag-fetu .zigzag-content h3 {
  margin-bottom: 42px;
}

.zigzag-fetu .zigzag-content .secbtns {
  margin-top: 51px;
}

.custmr-row {
  padding-top: 88px;
}

.custmr-col {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 2px 10px rgb(0 0 0 / 16%);
  margin-right: 4%;
  width: 30.66%;
  margin-bottom: 43px;
}

.custmr-inner .secbtns {
  margin-top: 50px;
}

.custmr-content {
  padding: 61px 49px 64px;
}

.custmr-img {
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}

.custmr-btn {
  margin-top: 50px;
}

.custmr-content h4 {
  margin-bottom: 31px;
}

.custmr-img img {
  min-height: 90px;
  object-fit: contain;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.faqinner .secheader {
  margin-bottom: 74px;
}

.faqcol:first-child {
  border-top: 1px solid rgb(112 112 112 / 24%);
}

.faqcol {
  padding: 50px 30px;
  border-bottom: 1px solid rgb(112 112 112 / 24%);
  position: relative;
}

.faqtile h4 {
  font-weight: 500;
  position: relative;
  cursor: pointer;
  padding-right: 40px;
  color: #000000;
}

.faqtxt {
  margin-top: 54px;
  display: none;
}

.faqtxt p:last-child {
  margin-bottom: 0;
}

.faqtile.show:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(241 235 231 / 40%);
  z-index: -1;
}

.faqtile h4:before {
  content: '';
  position: absolute;
  background: url(https://20001972.fs1.hubspotusercontent-na1.net/hubfs/20001972/FoundU%20-%202024/Images/Arrow.svg) no-repeat 0 0 / contain;
  width: 30px;
  height: 16px;
  right: 0;
  top: 9px;
}

.faqtile.show h4:before {
  transform: rotate(180deg);
  top: 7px;
}

.fetufilt-sec .secheader {
  margin-bottom: 86px;
}

.fetufilt-content {
  margin: 103px -30px 0;
}

.fetufilt-col {
  width: 33.33%;
  padding: 0px 30px;
  margin-bottom: 71px;
}

.fetufilt-info {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 2px 10px rgb(0 0 0 / 16%);
  padding: 60px 49px 63px;
}

.fetufilt-img {
  margin-bottom: 36px;
}

.fetufilt-info h4 {
  margin-bottom: 31px;
}

.fetufilt-info .secbtns {
  margin-top: 50px;
}

.fetufilt_option>span {
  display: none;
}

/* .fetufilt_select > li:first-child { display: none; } */

.fetufilt_select {
  padding: 0;
  list-style: none;
  gap: 30px;
  margin: 0;
}

.fetufilt_select li {
  font-size: 16px;
  line-height: 21px;
  min-width: 164px;
  text-align: center;
  border: 1px solid #707070;
  padding: 9px 34px;
  border-radius: 36px;
  cursor: pointer;
}

.fetufilt_select li.is-checked,
.fetufilt_select li:hover {
  color: #e82584;
  border-color: #e82584;
  background-color: #FFF6FA;
}

.adtabing-inn .secheader {
  margin-bottom: 50px;
}

.adtab-row {
  margin-top: 100px;
}

.adtab-img {
  width: 50%;
  border-radius: 20px;
  padding: 60px 30px;
}

.adtab-rght {
  width: 50%;
  padding-left: 150px;
}

.adtab-rght h3 {
  margin-bottom: 50px;
  font-weight: 700;
  max-width: 500px;
  line-height: 1.4;
}

.adtab-btn {
  margin-top: 50px;
}

.adtab-top ul {
  padding: 0;
  margin: 0;
  list-style: none;
  column-gap: 30px;
}

.tab-item {
  margin-bottom: 20px;
  font-weight: 500;
  border-bottom: 3px solid transparent;
}

.tab-item.active {
  color: #E82584;
  border-bottom: 3px solid #E82584;
}

.adtab-txt ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.adtab-txt ul li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 10px;
}

.adtab-txt ul li:last-child {
  margin-bottom: 0;
}

.adtab-txt ul li:before {
  content: '';
  position: absolute;
  background: url(https://20001972.fs1.hubspotusercontent-na1.net/hubfs/20001972/FoundU%20-%202024/Images/check.png) no-repeat 0 0 / contain;
  width: 20px;
  height: 20px;
  left: 0;
  top: 7px;
}

.adtab-img img {
  max-width: 550px !important;
}

.breadcrumb_menu {
  margin-bottom: 27px;
}

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

.breadcrumb_menu li {
  display: inline-block;
}

.breadcrumb_menu li a {
  padding-right: 18px;
  position: relative;
}

.breadcrumb_menu li,
.breadcrumb_menu li a {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
}

.breadcrumb_menu li:not(:last-child) a:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #000000;
  border-top: 1.5px solid #000000;
  top: 50%;
  right: 8px;
  transform: translateY(-50%) rotate(45deg) skew(-14deg, -14deg);
}

/*Start Cards Module*/

.foundu-cards__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}

.foundu-cards__col {
  max-width: 100%;
  flex: 0 0 100%;
  display: flex;
  margin-top: 43px;
}

.foundu-cards__box {
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0px 2px 10px #00000029;
  border-radius: 20px;
  padding: 60px 50px;
}

.foundu-cards__image {
  width: 60px;
  height: 60px;
  margin-bottom: 35px;
}
.foundu-cards__image img {
  max-width: 100%;
  height: auto;
}

.foundu-cards__box h3 {
  margin-bottom: 25px;
  font-size: 25px;
}

.foundu-cards__description {
  margin-bottom: 50px;
}

.foundu-blog-filter {
  background: #FFFFFF;
  bottom: 0;
  height: 100%;
  left: -100%;
  overflow-y: hidden;
  padding: 43px 0 135px;
  position: fixed;
  top: 0;
  transition: all .4s ease;
  width: 100%;
  z-index: 999999;
  max-width: 450px;
}
.foundu-blog-filter.show {
  left: 0;
}
.foundu-blog-filter__overlay {
  position: fixed;
  inset: 0;
  background-color: #000;
  opacity: 0;
  transition: all .2s ease;
  visibility: hidden;
}
.foundu-blog-filter.show ~ .foundu-blog-filter__overlay {
  transform: scale(1);
  opacity: 0.6;
  visibility: visible;
}
.foundu-blog-filter__header {
  border-bottom: 1px solid #7070703d;
  text-align: center;
  padding-bottom: 37px;
  position: relative;
  font-weight: 500;
  justify-content: space-between;
  display: flex;
  padding-left: 30px;
}
.foundu-blog-filter__header-toggle {
  position: absolute;
  right: 30px;
  cursor: pointer;
}
.foundu-blog-filter__header svg {
  width: 13px;
  height: 13px;
}
.foundu-blog-filter__body-item {
  border-bottom: 1px solid #7070703d;
  margin: 0;
  padding: 30px;
}
.foundu-blog-filter__body {
  height: 100%;
  overflow-y: auto;
  padding-bottom: 50px;
}
.foundu-blog-filter__body-item h3 {
  color: #000000;
  font-size: 18px !important;
  margin: 0;
  opacity: 1;
  position: relative;
  cursor: pointer;
  font-weight: 400;
}
.foundu-blog-filter__body-item h3::after {
  background-image: url(https://20001972.fs1.hubspotusercontent-na1.net/hubfs/20001972/FoundU%20-%202024/Images/Arrow.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
  content: "";
  display: block;
  height: 13px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease;
  width: 13px;
  z-index: 1;
  transform-origin: top center;
}
.foundu-blog-filter__body-item h3.active::after {
  transform: rotate(180deg) translateY(-50%);
}
.foundu-blog-filter__body-item ul {
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
  display: none;
}
.foundu-blog-filter__body-item ul li {
  cursor: pointer;
  font-size: 16px;
}
.foundu-blog-filter__body-item--industries {
  border-bottom-color: transparent;
}
.foundu-blog-filter__body-bottom {
  align-items: center;
  background: #fff;
  bottom: 0;
  box-shadow: 0 2px 10px #00000029;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 25px 23px;
  position: absolute;
  right: 0;
}
.foundu-blog-filter__body-bottom span {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.foundu-blog-filter__body-bottom span:last-child  {
  color:#E82584;
}
.foundu-blog-filter__body-bottom span:last-child svg {
  width: 20px;
  vertical-align: middle;
  height: 20px;
  margin-left: 5px;
}
.foundu-blog-filter__body-bottom span:last-child svg path {
  fill: #E82584;
}
.foundu-blog-filter__body-item--resources ul li,
.foundu-blog-filter__body-item--topic ul li,
.foundu-blog-filter__body-item--industries ul li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foundu-blog-filter__body-item-count {
  color: #333333b3;
}
.foundu-blog-filter__body-item-checkbox {
  border: 1px solid #000;
  border-radius: 2px;
  display: inline-block;
  height: 14px;
  margin-right: 15px;
  position: relative;
  vertical-align: middle;
  width: 14px;
}
.foundu-blog-filter__body-item-checkbox::after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1NSIgaGVpZ2h0PSI0MCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTE4IDM5LjFjLS40IDAtLjgtLjEtMS4xLS40TC43IDIyLjRjLS42LS42LS42LTEuNSAwLTIuMXMxLjUtLjYgMi4xIDBMMTggMzUuNSA1Mi4yIDEuM2MuNi0uNiAxLjUtLjYgMi4xIDBzLjYgMS41IDAgMi4xTDE5LjEgMzguN2MtLjMuMy0uNy40LTEuMS40Ii8+PC9zdmc+);
  background-repeat: no-repeat;
  background-size: 15px;
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: -1px;
  width: 100%;
  z-index: 1;
}
.foundu-blog-filter__body-item--resources li.active .foundu-blog-filter__body-item-checkbox,
.foundu-blog-filter__body-item--topic li.active .foundu-blog-filter__body-item-checkbox,
.foundu-blog-filter__body-item--industries li.active .foundu-blog-filter__body-item-checkbox{
  background: #e82584;
  border-color: #e82584;
}

/*End Start Cards Module*/
.noResult.hidden {
  display: none;
}
.plat-inner .secbtns {
  margin-top: 33px;
}
.found-title-content {
  text-align: center;
  max-width: 767px;
  margin: 0 auto;
}
.found-title-content__body {
  margin-top: 25px;
}
.found-title-content__sub-title {
  letter-spacing: 0.8px;
  opacity: 0.7;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.found-custmr__small-grid .custmr-row .custmr-col {
  margin: 0;
  width: 100%;
  box-shadow: none;
}
.hs-video-wrapper {
  margin-bottom: -2px;
  margin-top: -2px;
}
.found-custmr__small-grid .custmr-row .custmr-col .custmr-content {
  padding: 53px 0;
}
.found-custmr__small-grid .custmr-row .custmr-col .custmr-content h4 {
  margin-bottom: 20px;
}
.hs-video-container {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .found-title-content__sub-title {
    letter-spacing: 0.9px;
    margin-bottom: 20px;
  }
  .found-custmr__small-grid .custmr-row {
    justify-content: space-between;
  }
  .found-custmr__small-grid .custmr-row .custmr-col {
    max-width: calc(33.333% - 12px);
    margin: 0;
    flex: 0 0 calc(33.333% - 12px);
    box-shadow: none;
  }
  .found-custmr__small-grid .custmr-row .custmr-col .custmr-content {
    padding: 52px 0;
  }
}
@media(min-width: 1600px) {
  .count-col {
    padding: 0px 60px;
  }
  .count-outer {
    margin-left: -60px;
    margin-right: -60px;
  }
  .blgrect-col {
    margin-right: 5.3%;
    width: 29.8%;
  }
  .blglst-col {
    padding: 0px 35px;
  }
  .blglst-inner {
    margin: 0px -35px;
  }
  .custmr-col {
    margin-right: 4.5%;
    width: 30.33%;
  }
  .adtab-rght {
    padding-left: 200px;
  }
  .foundu-blog-filter__body-item-checkbox {
    height: 17px;
    width: 17px;
  }
  .foundu-blog-filter__body-item-checkbox::after {
    left: 1px;
    top: 0px;
  }
}

@media(min-width:991px) {
  .head-right {
    display: flex !important;
  }
  .herotile {
    max-width: 520px;
  }
  .custmr-col:nth-child(3n) {
    margin-right: 0;
  }
  .fetufilt_select {
    display: flex !important;
  }
  .blog-pagination.blog-pagination--mobile {
    display: none;
  }
}

@media(min-width:768px) {
  .blgpst-lf ul {
    display: block !important;
  }
  .fetufilt_select {
    display: flex !important;
  }
  .blgpst-lf h5 {
    text-transform: uppercase;
  }
  .foundu-cards__row {
    margin-top: 58px;
  }
  .foundu-cards__col {
    max-width: calc(33.333% - 35px);
    flex: 0 0 calc(33.333% - 35px);
  }
  .found-feature__filter-hide-desktop {
    display: none;
  }
}

@media(max-width: 1600px) {
  .wrapper {
    padding: 0px 40px;
  }
}

@media(max-width: 1400px) and (min-width: 1201px) {
  .head-menu ul li {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media(max-width: 1200px) {
  body h1 {
    font-size: 46px;
  }
  bodyh2 {
    font-size: 42px;
  }
  body h3 {
    font-size: 30px;
  }
  .button a,
  .second_btn a {
    min-width: 180px;
  }
  .secbtns {
    gap: 20px;
  }
  .header-sec {
    padding-top: 30px;
  }
  .head-menu ul li {
    padding-left: 16px;
    padding-right: 16px;
  }
  .head-menu ul li a {
    font-size: 16px;
  }
  .head-btns .head-btn a {
    font-size: 16px;
    line-height: 24px;
  }
  .head-btn:not(:first-child) {
    margin-left: 20px;
  }
  .head-btns .head-btn.button a {
    padding: 7px 17px 7px 18px !important;
  }
  .herobtn {
    margin-top: 35px;
  }
  .zigzag-tile h3 {
    font-size: 42px;
  }
  .zigzag-col.lf_img .zigzag-content {
    padding-left: 50px;
  }
  .zigzag-col.rght_img .zigzag-content {
    padding-right: 50px;
  }
  .zigzag-col:not(:last-child) {
    margin-bottom: 110px;
  }
  .zigzag-fetu .zigzag-col.lf_img .zigzag-content {
    padding-left: 65px;
  }
  .zigzag-fetu .zigzag-col.rght_img .zigzag-content {
    padding-right: 65px;
  }
  .count-col {
    width: 33.33%;
  }
  .counter {
    font-size: 50px
  }
  .prtab-active {
    width: 80px;
    height: 35px;
  }
  .prtab-active:before {
    width: 28px;
    height: 28px;
    left: 5px;
    top: 4px;
  }
  .prtab-active.prtab-active--show:before {
    right: 5px;
  }
  .prctab-col {
    padding: 50px 25px;
  }
  .pricing-no {
    font-size: 74px;
  }
  .prictxt {
    font-size: 50px;
  }
  .pricing-txt {
    font-size: 16px;
  }
  .testi-outer {
    padding: 80px 50px;
  }
  .footer-col {
    padding: 0px 12px;
  }
  .blgrect-content {
    padding: 35px 28px 55px;
  }
  .blgpst-sec {
    padding: 120px 0px 140px;
  }
  .blgpst-outer {
    padding-top: 100px;
  }
  .custmr-content {
    padding: 50px 30px 55px;
  }
  .faqtxt {
    margin-top: 24px;
  }
  .fetufilt-info {
    padding: 42px 30px 45px;
  }
  .fetufilt-content {
    margin: 80px -20px 0;
  }
  .fetufilt-col {
    padding: 0px 20px;
    margin-bottom: 55px;
  }
  .fetufilt-info .secbtns {
    margin-top: 23px;
  }
  .adtab-row {
    margin-top: 60px;
  }
  .adtab-rght {
    padding-left: 80px;
  }
  .adtab-rght h3 {
    margin-bottom: 25px;
  }
  .adtab-btn {
    margin-top: 25px;
  }
  .adtab-img img {
    width: 100%;
  }
}

@media(max-width: 991px) {
  .blog-pagination.blog-pagination--desktop {
    display: none;
  }
  h4 {
    font-size: 22px;
  }
  .head-logo {
    width: calc(100% - 20px);
    padding-right: 20px;
  }
  .header-sec {
    position: relative;
  }
  .menuTrigger {
    width: 13px;
    height: 20px;
    position: relative;
    cursor: pointer;
  }
  .menuTrigger i:before,
  .menuTrigger i:after {
    content: '';
    position: absolute;
    width: 100%;
    background: #050488;
    top: 6px;
    height: 1.5px;
    transition: all .4s;
    -webkit-transition: all .4s;
  }
  .menuTrigger i:before {
    top: -6px;
  }
  .menuTrigger i {
    width: 13px;
    height: 1.5px;
    background: #050488;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all .4s;
    -webkit-transition: all .4s;
  }
  .mobile-open .menuTrigger i {
    background: transparent;
  }
  .mobile-open .menuTrigger i:before {
    top: 0;
    transform: rotate(45deg);
  }
  .mobile-open .menuTrigger i:after {
    top: 0;
    transform: rotate(-45deg);
  }
  .head-right {
    width: 100%;
    display: none;
    padding: 30px 40px 53px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .16);
    top: 100%;
    position: absolute;
    left: 0;
    margin-top: 15px;
  }
  .head-menu,
  .head-btns {
    width: 100%;
    justify-content: left;
    -webkit-justify-content: left;
  }
  .head-menu ul {
    display: block;
  }
  .head-menu ul li {
    padding: 0;
    margin-bottom: 23px;
  }
  .head-btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .head-btn:not(:first-child) {
    margin: 0;
    text-align: left;
  }
  .head-menu ul li,
  .head-menu ul li:hover {
    border: none;
  }
  .head-btns .head-btn.button a {
    padding: 11px 17px 11px 18px !important;
  }
  .head-btns .head-btn a {
    width: 100%;
    text-align: center;
  }
  .head-btn.link a {
    padding: 11px 17px 11px 18px;
    border: 1px solid #e82584;
    border-radius: 36px;
    color: #E82685;
  }
  .head-btn.link {
    order: 1;
    margin: 15px 0 0;
  }
  .head-btn.link a:hover {
    background-color: #E82685;
    color: #fff;
  }
  .head-inner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 15px;
    background: #fff;
    left: 0;
    bottom: -15px;
    z-index: 1;
  }
  .head-btns {
    margin-top: 43px;
  }
  .footer-sec {
    padding-top: 100px;
  }
  .footer-logo,
  .footer-rght {
    width: 100%;
  }
  .footer-center {
    width: calc(100% + 24px);
    padding: 0;
    margin: 50px -12px 10px;
  }
  .footer-col {
    width: 50%;
    margin-bottom: 50px;
  }
  .footer-col h5 {
    margin-bottom: 22px;
  }
  .footer-cpyrght {
    margin-top: 67px;
  }
  .footer-form {
    margin-top: 24px;
  }
  .hero-lf {
    width: 100%;
    padding-right: 0;
  }
  .hero-rght {
    width: 100%;
    padding-top: 49px;
  }
  .plat-col {
    width: 50%;
  }
  .plat-row {
    margin-top: 56px;
  }
  .zigzag-img,
  .zigzag-content {
    width: 100%;
  }
  .zigzag-content {
    padding-top: 50px;
  }
  .zigzag-content .secbtns {
    margin-top: 40px;
  }
  .zigzag-col.lf_img .zigzag-content {
    padding-left: 0;
  }
  .zigzag-col.rght_img .zigzag-content {
    padding-right: 0;
  }
  .zigzag-fetu .zigzag-col.lf_img .zigzag-content {
    padding-left: 0;
  }
  .zigzag-fetu .zigzag-col.rght_img .zigzag-content {
    padding-right: 0;
  }
  .count-outer {
    margin-top: 50px;
  }
  .fulogo-col {
    width: 33.33%;
  }
  .prctab-row {
    margin-top: 80px;
  }
  .prctab-col {
    width: 47.75%;
    margin-bottom: 38px;
  }
  .prctab-col:nth-child(2n) {
    margin-right: 0;
  }
  .prctab-col:nth-child(3n) {
    margin-right: 4.5%;
  }
  .testi-txt {
    font-size: 20px;
    line-height: 32px;
  }
  .testi-info,
  .testi-logo {
    margin-top: 40px;
  }
  .blgrect-col {
    width: 47.33%;
  }
  .blgrect-col:nth-child(2n) {
    margin-right: 0;
  }
  .blgrect-col:nth-child(3n) {
    margin-right: 5.3%;
  }
  .blgpst-content h2 {
    margin: 40px 0 32px;
  }
  .blgpst-lf {
    padding-right: 0;
  }
  .blgpst-lf ul li a {
    font-size: 18px;
  }
  .blgpst-image {
    padding: 56.24% 0 0;
    min-height: auto;
  }
  .blglst-col {
    width: 50%;
  }
  .custmr-col {
    width: 48%;
  }
  .custmr-col:nth-child(2n) {
    margin-right: 0;
  }
  .custmr-row {
    padding-top: 50px;
  }
  .faqinner .secheader {
    margin-bottom: 50px;
  }
  .faqcol {
    padding: 30px 20px;
  }
  .faqtile h4:before {
    width: 18px;
    height: 12px;
  }
  .fetufilt-col {
    width: 50%;
  }
  .fetufilt-sec .secheader {
    margin-bottom: 40px;
  }
  .adtab-img {
    width: 100%;
  }
  .adtab-rght {
    width: 100%;
    padding: 50px 0 0;
  }
}

@media(max-width: 767px) {
  body h1 {
    font-size: 36px;
  }
  body h2 {
    font-size: 30px;
  }
  body h4 {
    font-size: 20px;
  }
  body {
    font-size: 16px !important;
    line-height: 26px;
  }
  .found-feature__filter-hide-mobile {
    display: none;
  }
  .plat-inner .secbtns {
    margin-top: 20px;
  }
  .mobtitle>h1,
  .mobtitle>h2 {
    display: none;
  }
  .mobtitle .mobtile {
    display: block;
  }
  .wrapper {
    padding: 0px 23px;
  }
  .sectxt {
    margin-top: 17px;
  }
  .secbtns {
    gap: 15px;
  }
  .prctab-col:last-child .prctab-content {
    margin-top: 94px;
    margin-bottom: 80px;
  }
  .button a,
  .second_btn a {
    min-width: 135px !important;
    font-size: 16px !important;
    line-height: 24px !important;
    padding: 6px 16px !important;
  }
  .secmob-btn.button a {
    padding: 0 !important;
    background: transparent !important;
    color: #e82584 !important;
    border: 0 !important;
    text-decoration: underline !important;
    min-width: 100% !important;
  }
  .secmob-btn.button a:hover {
    color: #7531E8 !important;
  }
  .herobtn {
    margin-top: 34px;
  }
  .head-right {
    padding: 30px 23px 53px;
  }
  .plat-row {
    margin: 56px 0 0;
  }
  .platimg {
    margin-bottom: 18px;
  }
  .foundu-cards__image {
    width: 35px;
    height: 35px;
    margin-bottom: 24px;
  }
  .plat-col {
    width: 100%;
    margin: 0;
  }
  .plat-col:not(:last-child) {
    margin-bottom: 52px;
  }
  .platxt {
    margin-top: 14px;
  }
  .plat-inner h3 {
    font-size: 18px;
  }
  .platimg img {
    max-width: 35px !important;
    height: auto;
  }
  .zigzag-tile h3 {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .zigzag-col:not(:last-child) {
    margin-bottom: 82px;
  }
  .zigzag-content .secbtns {
    margin-top: 24px;
  }
  .zigzag-content {
    padding-top: 36px;
  }
  .count-outer {
    margin: 41px 0 0;
  }
  .count-col {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 41px;
  }
  .count-txt {
    margin-top: 13px;
  }
  .count-col:last-child {
    margin-bottom: 0;
  }
  .fulogo-head .sectitle h4 {
    font-size: 18px;
    line-height: 28px;
  }
  .fulogo-col {
    padding: 0px 15px;
    margin: 8px 0px
  }
  .fulogo-row {
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 12px;
  }
  .prctab-sec .secheader {
    padding: 0px 10px;
  }
  .prtab-active {
    margin: 0px 17px;
    width: 57px;
    height: 26px;
  }
  .prtabs li {
    font-size: 16px;
  }
  .prtab-active:before {
    height: 20px;
    top: 3px;
    width: 20px;
    left: 4px;
  }
  .prctab-col {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 43px;
    padding: 51px 24px;
  }
  .prctab-col:last-child {
    margin-bottom: 0;
  }
  .prctab-row {
    margin-top: 50px;
  }
  .prctab-col h3 {
    font-size: 20px;
  }
  .foundu-cards__description {
    margin-bottom: 23px;
  }
  .prctab-txt {
    margin-top: 20px;
  }
  .prctab-content {
    margin-top: 38px;
    min-height: auto;
  }
  .prctab-col.popular-tab {
    margin-top: 18px;
  }
  .popular-tab .popular-txt {
    max-width: 112px;
    top: -18px;
  }
  .pricing-tab {
    margin-top: 38px;
  }
  .pricing-txt {
    margin-top: 5px;
  }
  .prctab-btn {
    margin-top: 55px;
  }
  .testimoal-swiper .swiper-pagination {
    margin-bottom: 52px;
  }
  .testi-outer {
    padding: 52px 17px;
  }
  .testi-txt {
    font-size: 16px;
    line-height: 26px;
    padding-top: 52px;
  }
  .testi-info {
    margin-top: 31px;
  }
  .testi-logo {
    margin-top: 23px;
  }
  .testi-info span {
    font-weight: 500;
  }
  .testi-logo img {
    max-width: 44px !important;
  }
  .testi-quote:before {
    width: 30px;
    height: 22px;
  }
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #e82584;
    !important
  }
  .fucta-head .sectitle h2 {
    font-size: 36px;
    line-height: 46px;
  }
  .fucta-head .sectxt {
    margin-top: 27px;
  }
  .fucta-inner .secbtns {
    margin-top: 40px;
  }
  .footer-sec {
    padding-top: 59px;
    padding: 59px 0 36px;
  }
  .footer-col h5 {
    margin-bottom: 19px;
    font-size: 15px;
    line-height: 22px;
  }
  .footer-menu ul li a {
    font-size: 14px;
    line-height: 21px;
  }
  .footer-rght {
    display: none;
  }
  .footer-center {
    margin: 40px -12px 0;
  }
  .footer-cpyrght {
    margin-top: 17px;
    font-size: 14px;
    line-height: 21px;
  }
  .foundu-cards__box {
    padding: 35px 39px;
  }
  .footer-menu ul li a>span {
    margin-right: 12px;
  }
  .blgrect-col {
    width: 100%;
    margin-right: 0 !important;
  }
  .blgrect-col:last-child {
    margin-bottom: 0;
  }
  .blgrect-rw {
    margin-top: 40px;
  }
  .blgrect-meta {
    margin-bottom: 26px;
  }
  .blgrect-txt {
    margin-top: 14px;
  }
  .blgrect-btn {
    margin-top: 23px;
  }
  .blgrect-content {
    padding: 37px 39px;
  }
  .blgrect-tags .topic-link--case-study:before {
    width: 15px;
    height: 15px;
  }
  .blgrect-tags a {
    padding-left: 27px;
  }
  .blgrect-min {
    padding-left: 8px;
  }
  .blgrect-sec .secbtns {
    margin-top: 53px;
  }
  .blgfilter-inner.fl {
    gap: 15px;
  }
  .blgfil_option,
  .blgfil-search {
    width: 100%;
  }
  .blgfil_option>span {
    min-width: 100%;
  }
  .blgpst-sec {
    padding: 73px 0 99px;
  }
  .blgpst-author-avatar {
    width: 37px;
    height: 37px;
    margin-right: 13px;
  }
  .blgpst-author-info,
  .blgpst-author-info a {
    font-size: 12px;
    line-height: 18px;
  }
  .blgpst-date .reading-min {
    padding: 0;
    margin: 3px 0 0 0;
  }
  .blgpst-date .reading-min:before {
    display: none;
  }
  .blgpst-date {
    font-size: 12px;
    line-height: 18px;
    padding-left: 26px;
    border-left: 1px solid #7070703D;
    margin-left: 26px;
  }
  .blgpst-date>span {
    width: auto;
    display: block;
  }
  .blgpst-inner h1 {
    margin-bottom: 25px;
  }
  .blgpst-meta {
    margin-bottom: 35px;
  }
  .blgpst-outer {
    padding-top: 30px;
  }
  .blgpst-lf {
    width: 100%;
  }
  .blgpst-rght {
    width: 100%;
    padding-left: 0;
    padding-top: 40px;
  }
  .blgpst-lf ul li {
    margin-bottom: 0;
  }
  .blgpst-lf ul li a {
    font-size: 16px;
    line-height: 21px;
    padding: 21px 8px;
  }
  .blgpst-lf h5 {
    margin-bottom: 0;
    padding: 20px 8px;
    border-top: 1px solid #7070703D;
    border-bottom: 1px solid #7070703D;
    font-weight: 500;
  }
  .blgpst-lf h5.active {
    border-bottom-color: transparent;
  }
  .blgpst-lf ul {
    max-width: 100%;
  }
  .blgpst-content h2 {
    font-size: 20px;
    line-height: 26px;
  }
  .blglst-col {
    width: 100%;
    padding: 0;
  }
  .blglst-inner {
    margin: 0px;
  }
  .blgpst-lf h5:before {
    content: '';
    position: absolute;
    background: url(https://20001972.fs1.hubspotusercontent-na1.net/hubfs/20001972/FoundU%20-%202024/Images/Arrow.svg) no-repeat 0 0 / contain;
    width: 11px;
    height: 7px;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
  }
  .blgpst-lf ul {
    max-width: 100%;
    display: none;
    background: #fff;
    /*     padding: 20px 0; */
    left: 0;
    right: 0;
    top: 100%;
  }
  /*   .blgpst-lf ul li a span {
  max-width: 248px;
  display: block;
} */
  .zigzag-fetu .zigzag-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .zigzag-fetu .zigzag-content .secbtns {
    margin-top: 24px;
  }
  .custmr-col {
    width: 100%;
    margin-right: 0;
  }
  .custmr-col:last-child {
    margin-bottom: 0;
  }
  .custmr-content {
    padding: 38px;
  }
  .custmr-content h4 {
    margin-bottom: 14px;
  }
  .custmr-btn {
    margin-top: 24px;
  }
  .custmr-img {
    min-height: 140px !important;
  }
  .custmr-row {
    padding-top: 32px;
  }
  .custmr-inner h2 span {
    font-size: 24px;
  }
  .faqtile h4:before {
    width: 11px;
    height: 5px;
    top: 10px;
  }
  .faqtile h4 {
    font-size: 16px;
    line-height: 26px;
    padding-right: 18px;
  }
  .faqtile.show h4:before {
    top: 9px;
  }
  .faqinner .secheader {
    margin-bottom: 31px;
  }
  .faqinner h2 {
    font-size: 24px;
  }
  .faqcol {
    padding: 25px 10px;
  }
  .fetufilt-col {
    width: 100%;
    margin-bottom: 43px;
    padding: 0;
  }
  .fetufilt-col:last-child,
  .fetufilt_select li:last-child {
    margin-bottom: 0;
  }
  .mobhide-tile .sectitle {
    display: none;
  }
  .fetufilt-sec .secheader.mobhide-tile {
    margin: 0;
  }
  .fetufilt-content {
    margin: 45px 0px 0;
  }
  .fetufilt-info {
    padding: 33px 39px;
  }
  .fetufilt-img {
    margin-bottom: 23px;
  }
  .fetufilt-img img {
    max-width: 35px !important;
  }
  .fetufilt-info h4 {
    margin-bottom: 14px;
  }
  .fetufilt_option>span {
    display: block;
    position: relative;
    border: 1px solid #707070;
    border-radius: 36px;
    cursor: pointer;
    font-size: 13px;
    line-height: 21px;
    min-width: 196px;
    padding: 9px 26px 9px 46px;
  }
  .fetufilt_option>span:before {
    background: url(https://20001972.fs1.hubspotusercontent-na1.net/hubfs/20001972/FoundU%20-%202024/Images/Group%2069.svg) no-repeat 0 0 / contain;
    content: "";
    height: 11px;
    left: 19px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
  }
  .fetufilt_option {
    position: relative;
  }
  .fetufilt_select {
    background: #fff;
    border: 1px solid #707070;
    border-radius: 15px;
    display: none;
    list-style: none;
    margin: 5px 0 0;
    padding: 15px 20px;
    position: absolute;
    width: 100%;
    z-index: 1;
    gap: 0;
    justify-content: left;
    -webkit-justify-content: left;
  }
  .fetufilt_select li {
    border: 0;
    padding: 0;
    text-align: left;
    width: 100%;
    margin-bottom: 12px;
    font-size: 13px;
  }
  .adtabing-inn .secheader {
    margin-bottom: 30px;
  }
  .adtab-row {
    margin-top: 18px;
  }
  .adtab-top ul {
    column-gap: 20px;
  }
  .adtab-img {
    width: 100%;
    padding: 32px 25px;
  }
  .adtab-rght h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .adtab-rght {
    padding-top: 30px;
  }
  .breadcrumb_menu li,
  .breadcrumb_menu li a {
    font-size: 13px;
  }
  .breadcrumb_menu li a:before {
    width: 6px;
    height: 6px;
    right: 6px;
  }
  .breadcrumb_menu li a {
    padding-right: 14px;
  }
  .foundu-blog-filter__body-item h3::after {
    background-size: contain;
    height: 7px;
    width: 11px;
  }
  .foundu-blog-filter__body-item h3 {
    font-size: 16px !important;
  }
  .foundu-blog-filter__body-item ul li {
    font-size: 14px;
  }
  .isotope-pager,
  .blog-pagination-center {
    gap: 17px 10px;
  }
  .isotope-pager>a,
  .blog-pagination-center > a,
  .blog-pagination-left > a:not(.elipses),
  .blog-pagination-right > a:not(.elipses){
    width: 40px;
    height: 40px;
  }
  .blgfil-search .quicksearch {
    max-width: 100%;
    width: 100%;
  }
  .blog-pagination {
    margin-top: 25px;
  }
}

@media(max-width: 480px) {
  .fulogo-head .sectitle {
    max-width: 200px;
    margin: 0 auto;
  }
  .blgrect-image {
    padding-top: 45%;
  }

  .mobtitle h1.mobtile {
    padding-right: 1px;
  }
  .plat-sec .mobtitle .mobtile,
  .custmr-sec .mobtitle .mobtile {
    padding: 0px 10px;
  }
  .blgpst-date {
    padding-left: 10px;
    margin-left: 10px;
  }
}

@media(max-width: 350px) {
  .prtabs li {
    font-size: 14px;
  }
  .prtab-active {
    margin: 0px 12px;
  }
}