/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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


@media (max-width: 768px) {
  .content-wrapper,
  .page-center {
    padding: 0 15px;
  }
}

/* Elements
Base HTML 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: 1.11;
  overflow-wrap: break-word;
}

/* 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 {
  margin: 0 0 15px;
}
.hs-landing-page p {
  margin: 0;
}
/* Anchors */

a {
  text-decoration: none;
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  max-width:100%;
  display:inline-block;
  vertical-align:bottom;
}
button,
.button,
.hs-button,
.sec-button{
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  line-height: 111.000000001%;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-weight: 700;
  gap: 10px;
  text-decoration: none !important;
  min-height:48px;
  align-items: center;
  justify-content: center;
}

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;
}

.sec-button svg{
  fill: currentColor;
}

.tertiary-btn {
  cursor: pointer;
  display: inline-flex;
  line-height: 111.000000001%;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  gap: 10px;
  text-decoration: none !important;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  text-transform: none;
  border-radius: 30px;
  font-family: Darker Grotesque, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  padding: 8px 20px;
  border: 1px solid #FFCF27;
  color: #253342;
  background-color: #fff;
}
.tertiary-btn.btn-right-icon {
  padding-right: 8px;
}
.tertiary-btn:hover {
  background-color: #ffcf27;
}
.tertiary-btn:hover svg circle {
  fill: white;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  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;
  padding: 0.7rem;
  width: 100%;
  font-weight: inherit;
  font-size: 18px;
}

form textarea {
  resize: vertical;
}
select.hs-input {
  height:50px;
}
form fieldset {
  max-width: 100% !important;
}

.hs-input::placeholder {
  color: inherit;
}

.hs-input::-webkit-input-placeholder {
  color: inherit;
}

.hs-input:-ms-input-placeholder {
  color: inherit;
}

.hs-input::-ms-input-placeholder {
  color: inherit;
}

/* 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: #EF6B51;
}

.hs-error-msgs > li > label,
.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;
}



form .form-columns-2 .hs-form-field:last-child .input {
  margin-right: 0 !important;
}

@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
  form .hs-form-field .input {
    margin-right: 0 !important;
  }

  form .hs-form-field input[type=email],
  form .hs-form-field input[type=file],
  form .hs-form-field input[type=number],
  form .hs-form-field input[type=password],
  form .hs-form-field input[type=search],
  form .hs-form-field input[type=tel],
  form .hs-form-field input[type=text],
  form .hs-form-field select,
  form .hs-form-field textarea {
    width: 100% !important;
  }

  form .hs-fieldtype-intl-phone.hs-input select {
    margin-bottom: 1.4rem !important;
    width: 100% !important;
  }
}
/* 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
*/
.footerwrapper {
  padding: 0 20px;
}
.lpfooter{
  background-image:url('https://hs.webdew.com/hubfs/webdew_2026/images/footerbg-bg.webp');
  min-height: 291px;
  width: 100%;
  padding: 20px 0;
  background-repeat: round;
}
.lpfooter .logo {
  margin-bottom: 50px;
}
.lpfooter .content {
  max-width: 258px;
  color: #FFF;
}
.lpfooter .page-center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 100%;
  padding: 0px 2%;
}

.lpfooter .content p {
  font-weight: 400 !important;
}
.lpfooter .bottomrow .row {
  display: flex;
  justify-content: space-between;
  margin-top: 73px;
  padding: 20px 0;
  border-top: 1px solid #FFFFFF36;
  border-bottom: 1px solid #FFFFFF36;
}
.lpfooter .bottomrow .row .copright p {
  font-family: Darker Grotesque;
  font-size: 20px;
  line-height: 111.00000000000001%;
  color: #fff;
  margin: 0;
}
.lpfooter .bottomrow .row .primarysitemap ul li a {
  font-family: Darker Grotesque;
  font-weight: 700;
  font-size: 20px;
  line-height: 111.00000000000001%;
  color: #fff;
  text-decoration: none;
}
.lpfooter .bottomrow .row .primarysitemap ul li:after {
  content: '|';
  color: #fff;
  padding: 0 10px;
}
.lpfooter .bottomrow .row .primarysitemap ul li:last-child:after {
  display: none;
}

@media (max-width:991px){
  .lpfooter .logo {
    text-align: center;
  }
  .lpfooter {
    min-height: auto;
    padding: 40px 0;
  }
  .lpfooter .content {
    max-width: 100%;
    text-align: center;
  }
  .lpfooter .logo img {
    filter: invert(1);
  }
}

@media (max-width:767px){
  .lpfooter .bottomrow .row {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
  }
  .lpfooter .bottomrow .row .primarysitemap ul {
    flex-direction: row;
  }
}

@media (max-width:479px){
  .footerwrapper {
    padding: 0;
  }
  .lpfooter .page-center {
    padding: 0 20px;
  }
  .lpfooter .bottomrow .row .primarysitemap ul li a {
    font-size: 16px;
  }
  .lpfooter .bottomrow .row .copright p {
    font-size: 16px;
    text-align: center;
  }
  .lpfooter .content p {
    font-size: 16px;
  }
  .lpfooter {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}


/* -- Main footer start here --- */

.main-footer .footertop-row {
  display: flex;
  justify-content: space-between;
}

.main-footer .footermain-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
  padding: 30px 0 0;
}
.main-footer .lpfooter .content {
  width: 20%;
  max-width: 100%;
}
.main-footer .footermain-row .footer-menu {
  width: 60%;
}

.footer-menu .hs-menu-wrapper > ul > li {
  width: 50%;
  padding-right: 20px;
  padding-left: 20px;
}


.footer-menu .hs-menu-wrapper > ul > li > a {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  font-family: 'Darker Grotesque';
  margin-bottom: 10px;
  display: inline-block;
}
.footer-menu .hs-menu-wrapper > ul ul li {
  padding-bottom: 4px;
}
.footer-menu .hs-menu-wrapper > ul ul li a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  font-family: 'Darker Grotesque';
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}

.footer-social-wrap {
  padding-right: 20px;
}

.main-footer {
  padding: 20px 0px;
}
.main-footer .lpfooter{
  background-image:url(https://3074142.fs1.hubspotusercontent-na1.net/hubfs/3074142/raw_assets/public/webdew_2026/images/footermainbg.svg);
  min-height: 495px;
  padding: 20px 0 41px;
  position:relative;
  background-repeat: no-repeat;
  background-size: 100%;
}


.main-footer .lpfooter:after {
  content: "";
  background: #002f7d;
  width: 100%;
  height: 80%;
  display: block;
  position: absolute;
  bottom: 0;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
}
.main-footer .ftlp-navigation-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 100%;
  padding: 0px 2%; 
  position: relative;
  z-index: 1;
}
.main-footer .lpfooter .logo {
  margin-bottom: 20px;
}

/* Extra css */
.main-footer .footermain-row {
  justify-content: unset;
  gap: 0;
  margin: 0 -20px;
}
.main-footer .lpfooter .content {
  width: 25%;
  padding: 0 20px;
}
.main-footer .footermain-row .footer-menu {
  width: 75%;
}
.footer-menu .hs-menu-wrapper > ul > li {
  width: 25%;
  padding: 0 20px;
}

@media(max-width:1199px){
  .main-footer .lpfooter {
    min-height: 400px;
    padding: 10px 0 40px;
  }
  .main-footer .ftlp-navigation-inner {
    padding: 0px 10px;
  }
  .main-footer .lpfooter .logo {
    margin-bottom: 0;
  }
  .footer-social-wrap {
    padding-right: 10px;
  }
  .social-links-wrap {
    column-gap: 5px;
  }
  .main-footer .footermain-row {
    padding: 50px 10px 0;
  }
  .main-footer .lpfooter .bottomrow .row {
    margin-top: 54px;
    padding: 20px 10px;
  }
}

@media(max-width:991px){
  .main-footer .lpfooter:after {
    height: 100%;
    border-radius: 35px;
  }
  .main-footer .lpfooter {
    padding: 30px 0;
    min-height: auto;
  }
  .main-footer .ftlp-navigation-inner {
    padding: 0 20px;
  }
  .main-footer .lpfooter .footermain-row .content {
    text-align: left;
  }
  .main-footer .lpfooter .logo img {
    filter: none;
  }
  .main-footer .footertop-row {
    margin-top: -70px;
  }
  .main-footer {
    padding-top: 80px;
  }

  /*   Extra css for footer  */
  .footer-menu .hs-menu-wrapper > ul > li {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .main-footer .lpfooter .footermain-row .content {
    width: 100%;
    text-align: center;
  }
  .main-footer .footermain-row .footer-menu {
    width: 100%;
  }
  .main-footer .lpfooter .bottomrow .row {
    margin-top: 0px;
  }

}

@media(max-width:767px){
  .main-footer .lpfooter .footermain-row .content {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
  }

  .main-footer .footermain-row .footer-menu {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .main-footer .footer-menu .hs-menu-wrapper > ul > li {
    width: 100%;
    padding: 0 0 20px;
  }

  .main-footer .footermain-row {
    padding-top: 40px;
  }

  .main-footer .lpfooter .bottomrow .row {
    margin-top: 20px;
  }
  .main-footer {
    padding-top:120px;
  }
  .main-footer .footertop-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -120px;
  }

  .main-footer .footer-social-wrap {
    padding-right: 0;
  }

  .main-footer .lpfooter .logo {
    margin-bottom: 20px;
  }
  .main-footer {
    padding-top: 120px;
  }

  .main-footer .lpfooter:after {
    border-radius: 16px;
  }
}
@media(max-width:479px){
  .main-footer .ftlp-navigation-inner {
    padding: 0 20px;
  }

}


/* -- Main footer end here -- */
header.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9;
  padding: 50px 0;
}

.header .header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .header__logo a img {
  width: 100% !important;
  height: 35px !important;
  vertical-align: bottom;
}


/* 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;
  }
  .header.no-navigation .image-module {
    gap: 10px;
    display: block;
    text-align: center;
  }
  .header.no-navigation .partners__logo {
    padding: 0 10px;
  }
  .header.no-navigation .header__logo a img {
    width: 103px !important;
    max-width: unset;
  }
  .header.no-navigation .header_button a.button {
    white-space: nowrap;
    font-size: 14px;
  }
  .header.no-navigation .header_button a.button img {
    width: 24px;
    height: 24px;
  }
  .header.no-navigation .image-module svg {
    display: none;
  }
}

@media (max-width:479px){
  .header.no-navigation .header__logo a img {
    width: 73px !important;
    height: auto !important;
  }
  .header.no-navigation .header_button a.button {
    gap: 5px;
  }
}


/* ------------ Main Header -----------------*/

.header-group {
  position: relative;
  padding: 30px 0px;
}
.header-group .content-wrapper{
  padding-left:0;
  padding-right:0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  column-gap: 15px;
  align-items: center;
  padding:0 20px;
}

.header-logo img {
  width: 150px !important;
}

.headerbuttons-wrap {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.headerbuttons-wrap .hs-button.btn-left-icon {
  padding: 10px 20px;
}
.header-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header-area {
  position: relative;
}


@media(max-width:1199px) and (min-width:1025px){
  .header-inner {
    column-gap: 10px;
  }
  .headerbuttons-wrap {
    column-gap: 5px;
  }

  .headerbuttons-wrap .sec-button,
  .headerbuttons-wrap .hs-button{
    font-size: 14px;
  }
  .headerbuttons-wrap .sec-button {
    padding-left: 15px;
    padding-right: 15px;
  }
  .headerbuttons-wrap .hs-button {
    padding-left: 15px;
  }

}

@media(min-width:1025px){
  .header-wrap {
    position:fixed;
    z-index: 999;
  }
  .scrolled .header-wrap {
    background-color: #fff;
    box-shadow: 0px 4px 30px 0px #0000001A;
  }
  .menu-trigger,
  .header-navigation-overlay,
  .menu-close,
  .header-navigation-wrap .header-button-group{
    display:none;
  }
}
@media(max-width:1024px){
  .header-inner{
    padding:0;
  }
  .header-navigation-wrap,
  .header-button-group{
    display: none;
  }
  .menu-trigger {
    border: 1px solid;
    border-radius: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .menu-trigger:hover {
    background-color: #002F7D;
    color: #fff;
  }
  .header-navigation-wrap .header-button-group{
    display: block;
  }

  .menu-open .header-navigation-wrap {
    right: 0;
  }

  .header-navigation-wrap {
    display: block;
    position: fixed;
    right: -120%;
    height: 100vh;
    overflow-y: auto;
    bottom: 0;
    transition: all 0.3s linear;
    background-color: #fff;
    flex-direction: column;
    width: 90%;
    padding: 15px;
    max-width: 360px;
    z-index: 9999;
  }
  .header-navigation-overlay{
    display: block;
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 80%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
    z-index: -999;

  }
  .menu-open .header-navigation-overlay {
    opacity:1;
    visibility:visible;
    z-index:9998;
  }

  .menu-close {
    margin-left: auto;
    right: 20px;
    position: absolute;
    cursor: pointer;
  }
  .headerbuttons-wrap {
    display: block;
  }
  .headerbuttons-item {
    margin-bottom: 20px;
  }
  .header-navigation {
    padding-top: 50px;
  }
  .headerbuttons-wrap a {
    display: inline-flex;
  }
  .menu-open {
    overflow: hidden;
  }
  .header-wrap {
    position:relative;
  }


}
/* ------------ Main Header ------------------*/
/* 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;
  }
}
/* @import url('http://example.com/example_style.css'); */








body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.content-wrapper,
.page-center, 
.dnd-section > .row-fluid {
  margin-left:auto;
  margin-right:auto;
}

.widget-type-rich_text ul,
.custom-ul ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-type-rich_text ul ul,
.custom-ul ul ul{
  padding-top: 20px;
  padding-bottom: 10px;
}
.widget-type-rich_text ul li,
.custom-ul ul li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
}

.widget-type-rich_text ul li::before,
.custom-ul ul li:before{
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #00A9FA;
  border-radius: 5px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17L4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  margin-top: 4px;
}
ol li {
  margin-bottom: 18px;
}

.sec-button .phone-icon {
  width: 32px;
  height: 32px;
  padding: 5px;
}

.sec-button.btn-right-icon {
  padding-right: 8px;
}
.sec-button.btn-left-icon {
  gap: 5px;
}

.fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas {
  vertical-align:middle;
}
.sec-button.btn-right-icon {
  padding-right: 8px;
}
.badge {
  padding: 5px 15px;
  color: #FF5C35;
  border: 1px solid #FF5C35;
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.badge:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #FF5C35;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
}
.banner-section .hero-wrapper,
.ebookpostbanner-wrapper{
  margin-top: -95px;
}

.align-center {
  align-items:center;
}
b, strong {
  font-weight: 800;
}
.slick-arrow {
  min-height: auto;
}

.video-section.custom-our-partner {
  background: none;
  padding: 0;
}
.video-section.custom-our-partner .logo--wrap {
  padding: 0;
  border: none;
}
.video-section.custom-our-partner .video-section-inner {
  gap: 0;
}
.video-section.custom-our-partner {
  background: none;
  padding: 0;
}
.res-video-openbody {
  overflow:hidden;
}
.hub-col-leftitem a {
  font-family: DM Sans, serif;
}
.video-section.custom-our-partner .logo-section {
  width: 100%;
  justify-content: center;
}

.faq .head-sec p {
  font-size: 20px;
}
.video-section .head-wrap p {
  font-size: 20px;
}

.about-main-section .card-with-icons .row .items.image .imgholder {
  margin-bottom: 0;
}
.banner-area .dnd-section {
  padding: 0;
}
.herovideoplayon {
  overflow:hidden;
}
.glightbox-container button {
  min-height:auto;
  outline:none;
  border-color:transparent;
}
.glightbox-container .ginner-container {
  max-width: 80% !important;
}
.glightbox-container button,
.glightbox-container button:hover {
  border-color: transparent;
}
.cmcol12{
  width:100%;
}
.cmcol6{
  width:50%;
}
.cmcol4{
  width:33.333%;
}
.cmcol3{
  width:25%;
}
.cmcol2{
  width:20%;
}

.header-area {
  min-height:110px;
}

.cm-home-whywebdew .card-with-iconsinner {
  background-color: #ebf9ff;
  border-radius: 50px;
  padding: 100px 30px;
}

.cm-home-whywebdew .introtitle .icon {
  display: none;
}

.cm-home-whywebdew .introtitle .text {
  color: #FC6F4E;
}

.cm-home-whywebdew .introtitle {
  margin-bottom: 15px;
}

.cm-home-whywebdew .row .items .inner,
.cm-home-whywebdew .row .items .inner:hover{
  border:1px solid #00A9FA  !important;
  background-color:#fff !important;
  background-image:none !important;
}


@media (min-width:992px){
  .home-page .two-column-content .row .contentholder,
  .home-page .two-column-content .row .mediaholder{
    width: 50%;
  }
}
@media (max-width:1024px){
  .cmcol2,
  .cmcol3{
    width:33.333%;
  }
  .header-area {
    min-height:107px;
  }
}
@media (max-width:991px){
  .cmcol4,
  .cmcol2,
  .cmcol3{
    width: 50%;
  }
}
@media (max-width:768px){
  .cmcol6,
  .cmcol4,
  .cmcol2,
  .cmcol3{
    width: 100%;
  }
  .badge {
    margin-bottom:20px;
    font-size: 16px;
  }

  .cm-home-whywebdew .card-with-iconsinner {
    padding: 30px 20px;
    border-radius: 16px;
  }
}
@media(max-width:1420px){
  .banner-section .hero-wrapper,
  .ebookpostbanner-wrapper{
    margin-top: 0;
  }
}
@media (max-width:479px){
  .badge {
    font-size: 12px;
    margin-bottom:20px;
  }
}