*, *: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;
}


/* 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; 
}
.dnd-section[class*=force-full-width-section],
.dnd-section[class*=force-full-width-section] .span12.dnd-column, 
.dnd-section[class*=force-full-width-section] > .row-fluid {
  padding: 0;
  width: 100%;
}



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

.dnd-section .dnd-column {
  padding: 0 1rem;
}
@media (min-width: 981px){
  .custom-section {
    padding: 4% 0;
  }
  .content-wrapper,
  .dnd-section > .row-fluid{
    padding: 2% 0;
  }
}
@media only screen and (min-width: 1600px){
  .custom-section {
    padding: 64px 0;
  }
  .content-wrapper,
  .dnd-section > .row-fluid{
    padding: 32px 0;
  }
}
@media (max-width: 980px) {
  .custom-section {
    padding: 50px 0;
  }
  .content-wrapper,
  .dnd-section > .row-fluid{
    padding: 30px 0;
  }
}
img {
  max-width: 100%;
  height: auto;
}
embed, iframe, object, video {
  max-width: 100%;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
  .content-wrapper,
  .dnd-section > .row-fluid {
    width:87%;
  }

}
@font-face { 
  font-family: ETmodules; 
  url(https://6898615.fs1.hubspotusercontent-na2.net/hubfs/6898615/raw_assets/public/Gravity_Legal_Theme_CTA9/fonts/modules.ttf) format("truetype");
  font-display: swap; 
}

@font-face { 
  font-family: "Gilroy Medium 2"; 
  src: url("https://22291260.fs1.hubspotusercontent-na1.net/hubfs/22291260/Gravity%20Legal%20Theme%20CTA9/Fonts/gilroy-medium-1.otf") format("opentype");
  font-display: swap; 
}

@font-face { 
  font-family: "Gilroy Semibold"; 
  src: url("https://22291260.fs1.hubspotusercontent-na1.net/hubfs/22291260/Gravity%20Legal%20Theme%20CTA9/Fonts/gilroy-semibold.otf") format("opentype");
  font-display: swap; 
}

@font-face { 
  font-family: "Gilroy Semibold 2"; 
  src: url("https://22291260.fs1.hubspotusercontent-na1.net/hubfs/22291260/Gravity%20Legal%20Theme%20CTA9/Fonts/gilroy-semibold-1.otf") format("opentype");
  font-display: swap; 
}

@font-face {
  font-family: "Gilroy";
  src:url(https://6898615.fs1.hubspotusercontent-na2.net/hubfs/6898615/raw_assets/public/Gravity_Legal_Theme_CTA9/fonts/Gilroy-Regular.eot) format("embedded-opentype"),
    url(https://6898615.fs1.hubspotusercontent-na2.net/hubfs/6898615/raw_assets/public/Gravity_Legal_Theme_CTA9/fonts/Gilroy-Regular.ttf),
    url(https://6898615.fs1.hubspotusercontent-na2.net/hubfs/6898615/raw_assets/public/Gravity_Legal_Theme_CTA9/fonts/Gilroy-Regular.woff);
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Gilroy";
  src:url(https://6898615.fs1.hubspotusercontent-na2.net/hubfs/6898615/raw_assets/public/Gravity_Legal_Theme_CTA9/fonts/Gilroy-Medium.eot) format("embedded-opentype"),
    url(https://6898615.fs1.hubspotusercontent-na2.net/hubfs/6898615/raw_assets/public/Gravity_Legal_Theme_CTA9/fonts/Gilroy-Medium.ttf),
    url(https://6898615.fs1.hubspotusercontent-na2.net/hubfs/6898615/raw_assets/public/Gravity_Legal_Theme_CTA9/fonts/Gilroy-Medium.woff);
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Gilroy";
  src:url(https://6898615.fs1.hubspotusercontent-na2.net/hubfs/6898615/raw_assets/public/Gravity_Legal_Theme_CTA9/fonts/Gilroy-Bold.eot) format("embedded-opentype"),
    url(https://6898615.fs1.hubspotusercontent-na2.net/hubfs/6898615/raw_assets/public/Gravity_Legal_Theme_CTA9/fonts/Gilroy-Bold.ttf),
    url(https://6898615.fs1.hubspotusercontent-na2.net/hubfs/6898615/raw_assets/public/Gravity_Legal_Theme_CTA9/fonts/Gilroy-Bold.woff);
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Gilroy";
  src:url(https://6898615.fs1.hubspotusercontent-na2.net/hubfs/6898615/raw_assets/public/Gravity_Legal_Theme_CTA9/fonts/Gilroy-ExtraBold.eot) format("embedded-opentype"),
    url(https://6898615.fs1.hubspotusercontent-na2.net/hubfs/6898615/raw_assets/public/Gravity_Legal_Theme_CTA9/fonts/Gilroy-ExtraBold.ttf),
    url(https://6898615.fs1.hubspotusercontent-na2.net/hubfs/6898615/raw_assets/public/Gravity_Legal_Theme_CTA9/fonts/Gilroy-ExtraBold.woff);
  font-style: normal;
  font-weight: 900;
}


.body-container-wrapper {
    overflow: hidden;
}

body {
  line-height: 1.7em;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 500;
}

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding-bottom:10px;
  line-height:1.2em;
}

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


.fancybox-overlay {
    background-color: rgba(0,0,0,0.7) !important;
    background-image: none !important;
}
.fancybox-inner {
    width: 100% !important;
/*     max-width: 800px; */
    height: auto !important;
}
.fancybox-skin {
/*     min-width: 800px; */
    width: 100% !important;
    margin: 0 auto !important;
    padding: 20px !important;
}

.fancybox-wrap {
    width: 80% !important;
}
#fancybox-loading, 
.fancybox-close, 
.fancybox-next span, 
.fancybox-prev span {
    background-image: url(https://6898615.fs1.hubspotusercontent-na2.net/hubfs/6898615/raw_assets/public/Gravity_Legal_Theme_CTA9/images/fancybox_sprite.png) !important;
}


@media (max-width: 1300px) {
  .body-container--newProject_pageTwo .hs_testimonialColContnent:before {
    transform: rotate(-5deg);
  }
}

.body-container--newProject_pageTwo,
.body-container--acceptProject_page {
  font-family: "Gilroy", sans-serif;
}

.ach-payments-body-wrapper {
    overflow: hidden;
    font-family: "Gilroy", sans-serif;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* 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%;
  border-radius: 13.488px;
  border: 1.419px solid #3585F7 !important;
  background: #FFF;
  outline:none;
}

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

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

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

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.header-group{
  min-height: 90px;
  background: transparent;
}
header.header {
  /*   background: #29384e; */
  width: 100%;
  box-shadow: 0px 2px 28px 0px rgba(0,0,0,0.23);
  position: fixed;
  top: 0px;
  bottom: auto;
  left: 0px;
  right: auto;
  min-height:90px;
  z-index:999;
}
/* 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;
}
.header .custom-menu-mobile{
  display:none;
}

.header__container.content-wrapper {
  padding-bottom: 0;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 92%;
  align-items: center;
  min-height: 90px;
  align-items:flex-start;
}
.header .custom-menu-primary {
  float: right;
}
.header .hs-menu-wrapper > ul > li {
  padding-left: 11px;
  padding-right: 11px;
  line-height: 1em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 8px 0 0;
  font-size: 14px;
}
.header .hs-menu-wrapper > ul li a {
  font-family: 'Gilroy Semibold',Helvetica,Arial,Lucida,sans-serif;
  font-size: 17px;
  text-decoration: none;
  display: block;
  position: relative;
  padding-bottom: 8px;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.header .arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  position: static;
  margin-left: 6px;
  display: inline-block;
  margin-top: 4px;
}
.header .header-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  gap:9px;
  padding-top:3px;
}
.header .header-menu-wrapper .custom-menu-primary .advance_button{
  display:none;
}
.header .header-menu-wrapper .advance_button_inner a{
  font-size:16px;
  font-family: 'Gilroy Semibold',Helvetica,Arial,Lucida,sans-serif;
  line-height:27.2px;
  padding:7px 20px;
}
.header .header-menu-wrapper .advance_button_inner a.second-button{
  line-height: 30.6px;
  border-radius: 90px;
  font-weight: 500;
  font-family: 'Gilroy Semibold';
  padding:7px 17px;
}
.header .header-menu-wrapper .advance_button_inner a.secondary:hover{
  box-shadow: 0px 12px 18px -6px rgb(108 174 248 / 0%);
}
.header .header-logo {
  padding-left: 0;
}
.header .hs-header-menu-group{
  padding-right:0px;
}

.header .hs-menu-wrapper > ul li.hs-item-has-children .hs-menu-children-wrapper{
  padding: 20px 20px 10px 10px;
  background: #ffffff;
  margin-left: 10px;
  gap:10px;
  z-index:10;
}
.header .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}
.header .hs-menu-wrapper > ul li.hs-item-has-children .fa-chevron-down { 
  color: #FFFFFF;
  cursor:pointer;
  transition: all .4s ease-in-out;
}
.header .hs-menu-wrapper > ul > li:hover a,
.header .hs-menu-wrapper > ul > li:hover i.fas.fa-chevron-down{
  opacity:0.7;
}
.header .hs-menu-wrapper > ul > li:hover .hs-menu-children-wrapper a{
  opacity:1;
}
.header .hs-menu-wrapper > ul > li:hover .hs-menu-children-wrapper a:hover{
  opacity:0.7;
}
.header .custom-menu-mobile  .hs-menu-wrapper > ul > li{
  justify-content:center;
}
@media(min-width:981px){
  .header-logo .inner,
  .header--no-navigation .header__logo img{
    margin-bottom: 14px;
    max-width: 130px;
    margin-top: 4px;
  }
  .header_section .col-lg-3 {
    width: 25%;
  }

  .header_section .col-lg-9 {
    width: 75%;
  }
}

@media(min-width:993px){
  .header .custom-menu-mobile {
      display: none !important;
  }
}

@media (max-width:1150px){
  .header-menu-wrapper{
    flex-direction: column-reverse;
    align-items: flex-end !important;
  }
  .header .hs-menu-wrapper > ul li a{
    padding-bottom:10px;
  }
}
@media (max-width:992px){
  .header-logo .inner,
  .header--no-navigation .header__logo img{
    max-width: 130px;
  }
  .header .custom-menu-mobile .hs-menu-wrapper > ul li a{
    padding:20px 5%;
  }

  .header .custom-menu-mobile {
    text-align: center;
    flex-direction:column;
    z-index: 9999;
    border-top: 3px solid #0183ff;
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
    position: absolute;
    top: 100%;
    width: 100%;
    background: #0f1f33;
    max-height: calc(100vh - 90px);
    overflow: auto;
  }
  .header .custom-menu-mobile  .hs-menu-wrapper ul{
    flex-direction:column;
  }
  .header .mobile_menu_bar {
    position: relative;
    display: block;
    line-height: 0;
    height: 2px;
    width: 20px;
    background: #6183ff;
    margin-right:20px;
  }

  .header .mobile-trigger{
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    cursor:pointer;
  }
  .header .custom-menu-primary{
    display:none;
  }
  .header .hs-header-menu-group{
    display:flex;
    margin-left:auto;
    align-items:center;
    justify-content:end;
  }
  .header .custom-menu-mobile .hs-menu-wrapper{
    display:block;
  }
  .header .custom-menu-mobile .hs-menu-wrapper.flyouts .hs-menu-children-wrapper{
    position:relative !important;
    opacity:1 !important;
    left:auto !important;
    display:none ;
  }
  .header .custom-menu-mobile .hs-menu-wrapper > ul > li{
    display:block;
    text-align:center;
  }
  .header .custom-menu-mobile .hs-menu-wrapper > ul li.hs-item-has-children .fa-chevron-down{
    position: absolute;
    top: 16px;
    right: 30px;
    transition:all 0.3s ease;
  }

  .header .custom-menu-mobile .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a{
    color:#FFFFFF;
  }
  .header .custom-menu-mobile .hs-menu-wrapper > ul li.hs-item-has-children .hs-menu-children-wrapper{
    background:transparent !important;
    padding:0;
    margin:0
  }
}

@media (max-width:767px){
  .header-menu-wrapper .advance_button_inner a.secondary{
    display:none;
  }
}

@media (max-width:600px){
  .header .header-logo{
    padding:0;
  }
  .header .hs-header-menu-group{
    padding:0;
  }
  .header__container.content-wrapper{
    padding-top:0;
    align-items:center;
  }
  .header .advance_button{
    display:flex;
    align-items:center;
  }
}

.body-container--landing-page{
  margin-top:90px;
}

@media (max-width:480px){
  .header .mobile-trigger {
      left: 10px;
      position: relative;
  }
}






/* Updated header Css with responsive is start from here */

.header_new_updated .header-group {
    background: transparent;
    min-height: auto;
}
.header_new_updated header.header {
  width: 100%;
  position: absolute;
  top: 0px;
  bottom: auto;
  left: 0px;
  right: auto;
  min-height: 90px;
  z-index: 9;
  transition: box-shadow 0.3s ease;
  background-color: transparent;
  box-shadow: none;
}
/* .scroll-header .header_new_updated header.header {
  background-color: #fff;
  box-shadow: 0px 2px 28px 0px rgba(0,0,0,0.23);
} */

.header_new_updated .custom-menu-primary .hs-menu-wrapper>ul>li>a, 
.header_new_updated .header .hs-menu-wrapper>ul>li.hs-item-has-children .fa-chevron-down, 
.header_new_updated .header .hs-menu-wrapper>ul>li>a {
  color: #243d50 !important;
}
.header_new_updated .custom-menu-primary .hs-menu-wrapper>ul>li>a:hover, 
.header_new_updated .header .hs-menu-wrapper>ul>li:hover a, 
.header_new_updated .header .hs-menu-wrapper>ul>li:hover i.fas.fa-chevron-down {
    color: #0161EF !important;
}
.header_new_updated .header .hs-menu-wrapper > ul li.hs-item-has-children .hs-menu-children-wrapper li a {
  color: #243650 !important;
  font-weight:500;
}
.header_new_updated .header .hs-menu-wrapper > ul li.hs-item-has-children .hs-menu-children-wrapper li a:hover {
  color: #0161EF !important;
}

.header_new_updated .header__container.content-wrapper {
  padding-bottom: 20px;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 92%;
  align-items: center;
  min-height: 90px;
  align-items:center;
  position:relative;
}
.header_new_updated .header .custom-menu-primary {
  float: none;
}
.header_new_updated .header .hs-menu-wrapper > ul > li {
  padding-left: 11px;
  padding-right: 11px;
  line-height: 1em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 14px 0;
  font-size: 14px;
}
.body-container--testing-page .hs_acceptPayTopSection .top_section {
    padding-top: 180px;
}


.header_new_updated .header .hs-menu-wrapper > ul li a {
  font-size: 15px;
  text-decoration: none;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  display: block;
  position: relative;
  padding-bottom: 14px;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.header_new_updated .header .hs-menu-wrapper > ul > li > a {
    padding-top: 0;
    padding-bottom: 0;
}
.header_new_updated .header .arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #243650;
  position: static;
  margin-left: 6px;
  display: inline-block;
}
.header_new_updated .header .header-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap:9px;
  padding-top:0;
}
.header_new_updated .header .header-menu-wrapper .custom-menu-primary .advance_button{
  display:none;
}
.header_new_updated .advance_button {
    gap: 8px;
    flex-wrap: nowrap;
}
.header_new_updated .header-button-group .advance_button_inner a,
.header_new_updated .header-button-group .advance_button_inner a.cta_button {
  font-size: 15px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  padding: 9px 13px;
  background: linear-gradient(90deg, #43B8D0 0%, #1897B1 100%);
  border-radius: 40px;
  color: #FFF;
}
.header_new_updated .header-button-group .advance_button_inner a:hover,
.header_new_updated .header-button-group .advance_button_inner a.cta_button:hover {
  color: #FFF;
}
.header_new_updated .header-button-group .advance_button_inner a.cta_button span {
    font-family: inherit !important;
}

.header_new_updated .header-button-group .advance_button_inner a.second-button{
  line-height: 30.6px;
  border-radius: 90px;
  font-weight: 500;
  font-family: "Gilroy", sans-serif;
  padding:7px 17px;
}
.header_new_updated .header-button-group .advance_button_inner a.secondary:hover{
  box-shadow: 0px 12px 18px -6px rgb(108 174 248 / 0%);
}
.header_new_updated .header .header-logo {
  padding-left: 0;
}
.header_new_updated .header .hs-header-menu-group{
  padding-right:0px;
}

.header_new_updated .header .hs-menu-wrapper > ul li.hs-item-has-children .hs-menu-children-wrapper {
    padding: 20px 20px 10px 10px;
    background: #ffffff;
    margin-left: 10px;
    gap: 10px;
    z-index: 10;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
      margin-top: 14px;
}
.header_new_updated .header .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}
.header_new_updated .header .hs-menu-wrapper > ul li.hs-item-has-children .fa-chevron-down { 
  color: #FFFFFF;
  cursor:pointer;
  transition: all .4s ease-in-out;
}
.header_new_updated .header .hs-menu-wrapper > ul > li:hover a,
.header_new_updated .header .hs-menu-wrapper > ul > li:hover i.fas.fa-chevron-down{
  opacity:0.7;
}
.header_new_updated .header .hs-menu-wrapper > ul > li:hover .hs-menu-children-wrapper a{
  opacity:1;
}
.header_new_updated .header .hs-menu-wrapper > ul > li:hover .hs-menu-children-wrapper a:hover{
  opacity:0.7;
}
.header_new_updated .header .custom-menu-mobile  .hs-menu-wrapper > ul > li{
  justify-content:center;
}
.header_new_updated .header .hs-menu-wrapper ul {
    justify-content: center;
}

/* .hs_header_menu_group {
  display:none !important;
} */
.hs_headerMegaMenu .hs_third_label_menu .arrow {
    display: none !important;
}



@media(min-width:981px){
  .header_new_updated .header-logo .inner,
  .header_new_updated .header--no-navigation .header__logo img{
    max-width: 130px;
  }
  .header_new_updated .header_section .col-lg-2 {
      width: 11%;
  }
  .header_new_updated .header_section .col-lg-3 {
    width: 18%;
  }
  .header_new_updated .header_section .col-lg-7 {
      width: 71%;
  }
  .header_new_updated .header_section .col-lg-9 {
    width: 75%;
  }
  .header_new_updated .header .hs-menu-wrapper > ul li.hs-item-has-children .hs-menu-children-wrapper:before {
      content: "";
      width: 100%;
      height: 15px;
      position: absolute;
      top: -15px;
      left:0;
      background: transparent;
  }
}

@media(min-width:993px){
  .header_new_updated .header .custom-menu-mobile,
  .header_new_updated .header .custom-menu-mobile,
  .header_new_updated .header_menu_overlay,
  .child-trigger {
      display: none !important;
  }
  .header_new_updated .header .hs-menu-wrapper > ul li.hs-item-has-children .hs-menu-children-wrapper {
      display: block !important;
  }
  .header_new_updated .header .hs-menu-wrapper > ul li.hs-item-has-children .hs-menu-children-wrapper li a {
      line-height: 1.3;
  }
}

@media (max-width:1350px) and (min-width:981px){
  .header_new_updated .header-button-group .advance_button_inner a, 
  .header_new_updated .header-button-group .advance_button_inner a.cta_button {
      padding: 12px 18px;
      font-size: 15px;
  }
  .header_new_updated .header-group .advance_button {
      gap: 5px;
  }
}

@media (max-width:1150px){
  .header_new_updated .header-menu-wrapper{
    flex-direction: column-reverse;
    align-items: center !important;
  }
}

@media (max-width:992px){
  .header_new_updated .header-menu-wrapper.desktop_view {
    display: none !important;
  }


  
  .header_new_updated .header_menu_overlay {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
  }

  .open-menu .header_new_updated .header_menu_overlay {
    opacity: 1;
    visibility: visible;
  }
  
  .header_new_updated .mobile_menu_top_section {
    display: flex;
    align-items: center;
    padding: 24px;
    justify-content: space-between;
    gap: 20px;
  }
  .header_new_updated .header-logoWith_menu {
      max-width: 184px;
  }
  .header_new_updated .header .new_mobile_trigger.closed .mobile_menu_bar:last-child {
      display: none;
  }
  .header_new_updated .header .new_mobile_trigger.closed {
      width: 32px;
      height: 32px;
  }
  .header_new_updated .header .new_mobile_trigger.closed .mobile_menu_bar:first-child {
    transform: rotate(45deg);
    margin-top: 14px;
  }
  .header_new_updated .header .new_mobile_trigger.closed .mobile_menu_bar:nth-child(2) {
      transform: rotate(-45deg);
      top: -10px;
  }
  
  .header_new_updated .header-logo .inner,
  .header_new_updated .header--no-navigation .header__logo img{
    max-width: 130px;
  }
  .header_new_updated .header .custom-menu-mobile .hs-menu-wrapper > ul li a {
    padding: 6px 24px;
    line-height: 1.8;
    padding-right: 70px;
    white-space: normal !important;
  }
  .header_new_updated .header .hs-menu-wrapper > ul > li {
      padding-left: 0;
      padding-right: 0;
  }
  .header_new_updated .header .custom-menu-mobile {
    text-align: center;
    flex-direction:column;
    z-index: 9999;
    top: 100%;
    width: 100%;
    background: #ffffff;
    max-height: calc(96vh - 90px);
    overflow: auto;
    display:block;
    border-top: none;
  }
  .header_new_updated .header .custom-menu-mobile  .hs-menu-wrapper ul{
    flex-direction:column;
  }
  .header_new_updated .header .mobile_menu_bar {
    position: relative;
    display: block;
    line-height: 0;
    height: 3px;
    width: 32px;
    background: #0161ED;
    border-radius: 2px;
    margin-right: 0;
  }
  .header_new_updated .header .mobile_menu_bar:last-child {
      width: 25px;
  }
  .header_new_updated .header .header-logo img {
      min-width: 122px;
  }
  .header_new_updated .header .new_mobile_trigger{
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: end;
    cursor:pointer;
  }
  .header_new_updated .header .custom-menu-primary{
    display:block;
  }
  .header_new_updated .header .hs-header-menu-group{
    display:flex;
    margin-left:auto;
    align-items:center;
    justify-content:end;
  }
  .header_new_updated .header .custom-menu-mobile .hs-menu-wrapper{
    display:block;
  }
  .header_new_updated .header .custom-menu-mobile .hs-menu-wrapper.flyouts .hs-menu-children-wrapper{
    position:relative !important;
    opacity:1 !important;
    left:0 !important;
    display:none ;
  }
  .header_new_updated .header .custom-menu-mobile .hs-menu-wrapper > ul {
      padding: 15px 0;
  }
  .header_new_updated .header .hs-menu-wrapper ul {
      flex-wrap: inherit;
  }
  .header_new_updated .header .custom-menu-mobile .hs-menu-wrapper > ul > li{
    display:block;
    text-align:left;
    margin: 0;
  }
  .header_new_updated .mobile_menu_bottom_section .advance_button {
      padding: 24px;
      justify-content: start;
      width: 100%;
  }
  
  .header_new_updated .header .child-trigger {
    position: absolute;
    top: 16px;
    right: 5px;
    transition: all 0.3s ease;
    z-index: 111;
    background: transparent;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    border: none;
    margin: 0;
    cursor:pointer;
  }
  .header_new_updated .header .child-trigger:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #243650;
    position: static;
    margin-left: 6px;
    display: inline-block;
  }
  .header_new_updated .header .arrow {
      border-top: 6px solid #243650;
  }
  .header_new_updated .header .custom-menu-mobile .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a{
    color:#FFFFFF;
  }
  .header_new_updated .header .custom-menu-mobile .hs-menu-wrapper > ul li.hs-item-has-children .hs-menu-children-wrapper{
    padding:0;
    margin:0
  }
  .header_new_updated .header .header-logo {
      order: 1;
  }
  .header_new_updated .header .hs-header-menu-group {
      order: 3;
  }
  .header_new_updated .header .hs-header-menu-group.desktop {
      order: 2;
  }
  
  .header_new_updated .header .custom-menu-mobile {
    position: fixed;
    top: 90px;
    width: 50%;
    border-radius: 24px 0 0 24px;
    right: -100%;
    transition: right 0.5s ease;
    min-width: 376px;
  }
  .open-menu .header_new_updated .header .custom-menu-mobile {
    right: 0;
  }
  .header_new_updated .header .hs-menu-wrapper > ul li.hs-item-has-children .hs-menu-children-wrapper {
      padding-left: 0 !important;
      box-shadow: none;
  }
  .header_new_updated .header .custom-menu-mobile .hs-menu-wrapper > ul li.hs-item-has-children .hs-menu-children-wrapper li a {
      padding:0 5px0;
      line-height: 1.5;
      font-size: 16px;
  }
  .header_new_updated .header .hs-menu-wrapper > ul li.hs-item-has-children .fa-chevron-down {
      display: none !important;
  }
}

@media (max-width:991px){
  .header_new_updated .header_section .col-lg-3 {
    width: 75%;
  }
  .header_new_updated .header_section .col-lg-7 {
    width: auto;
  }
  .header_new_updated .advance_button_inner.hide_button {
      display: none !important;
  }
  .header_new_updated .header__container.content-wrapper {
    gap: 15px;
  }
}



@media (max-width:767px){
  .header_new_updated .header-menu-wrapper .advance_button_inner a.secondary{
    display:none;
  }
}

@media (max-width:600px){
  .header_new_updated .header .header-logo{
    padding:0;
  }
  .header_new_updated .header .hs-header-menu-group{
    padding:0;
  }
  .header_new_updated .header__container.content-wrapper{
    align-items:center;
  }
  .header_new_updated .header .advance_button{
    display:flex;
    align-items:center;
  }
}


@media (max-width:600px){
  .header_new_updated .header_section .col-lg-3 {
    width: auto;
  }
  .header_new_updated .header .hs-header-menu-group.desktop {
      margin: 0 auto;
  }
}

@media (max-width:480px){
  .hs-header-menu-group.desktop .header-button-group {
      display: none !important;
  }
}

@media (max-width:430px){
  .header_new_updated .header-button-group .advance_button_inner a, 
  .header_new_updated .header-button-group .advance_button_inner a.cta_button {
      font-size: 14px;
      line-height: 1.25;
      padding: 12px 17px;
  }
  .header_new_updated .header .custom-menu-mobile {
    min-width: 296px;
  }
  .header_new_updated .advance_button {
      flex-wrap: wrap;
  }
}


/* Updated header Css with responsive is end from here */
.footer{
  text-align:center;
}
.footer h2 {
  font-size: 20px;
  color: #29384e;
}
.footer .footer_logo img{
  max-width:75px !important;
}
.footer .content_wrapper{
  width:92%; 
}
.footer .hs-menu-wrapper ul {
  display: inline-block;
  line-height: normal;
}
.footer  .hs-menu-wrapper ul > li {
  position: relative;
  font-size:16px;
  line-height: 1.3em;
  display: inline;
}
.footer .hs-menu-wrapper ul > li:not(:last-child)::after {
  content: '|';
  margin: 0px 3px 0 12px;
}
.footer .footer_main_menu {
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
}
.footer .copy_description p {
  font-size: 14px;
  color: #2b3134;
  line-height: 1.2em;
  margin: 0;
  padding-bottom: 4px;
}
.footer .social_links {
  margin-top:3px;
  margin-bottom:43px;
}


.custom-footer {
    background-color: rgba(245, 247, 252, 1.0);
    border-top: 1px solid rgba(0, 0, 0, .15);
    text-align: center;
    color: #29384e;
}
.custom-footer .footer__container {
    margin: 0 auto;
  max-width: 1100px;
}

.footer_bottom_text p {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5em;
  margin: 0;
}
.custom-footer a {
  color: #3585f7;
  text-decoration: none;
}


@media(min-width:981px){
  .footer .content-wrapper > div:not(:last-child) {
    margin-bottom: 2.75%;
  }
  .custom-footer {
    padding: 40px 25px 2%;
  }
}
@media(max-width:980px){
  .footer .content-wrapper > div:not(:last-child) {
    margin-bottom: 30px;
  }
}
/* 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%;
}
/* 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;
  }
}
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:"";display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:"";position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}