/* 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 {
  --gap: 2.127659574%;
}

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: calc(91.66% - var(--gap));
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--gap));
  }

  .row-fluid .span9 {
    width: calc(75% - var(--gap));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--gap));
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--gap));
  }

  .row-fluid .span6 {
    width: calc(50% - var(--gap));
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--gap));
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--gap));
  }

  .row-fluid .span3 {
    width: calc(25% - var(--gap));
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--gap));
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--gap));
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
}


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

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

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

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

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

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

/* Paragraphs */

p {
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

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

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

/* No button */

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

.hs-form-field {
  margin-bottom: 14px;
}
fieldset.form-columns-2 .field:first-child {
  padding-right:8px;
}
fieldset.form-columns-2 .field:last-child {
  padding-left:8px;
}
fieldset.form-columns-2 .field {
  width: 50% !important;
}
.input {
  margin: 0 !important;
}
.hs_submit.hs-submit {
  padding: 31px 0px;
}
/* Labels */
form legend,
form label {
  font-size: 13px;
  display: block;
  line-height: 2;
  letter-spacing: 0.33px;
  margin-bottom: 5px;
}

form input[type=text],
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: 13px;
  height: 35px;
  line-height: 1.188;
  outline: none;
  padding: 5px 12px;
  width: 100%!important;
  letter-spacing: 0.33px;
}
select.is-placeholder {
  color: rgb(255 255 255 / 50%);
}
fieldset.form-columns-3 .field {
  width: Calc(33.333333333% - 10.666667px) !important;
  margin-right: 16px;
}
fieldset.form-columns-3 .field:last-child {
  margin-right: 0 !important;
}
form textarea {
  height: 145px;
  padding: 12px 12px;
}
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;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='9.336' height='5.964' viewBox='0 0 9.336 5.964'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_11923' data-name='Rectangle 11923' width='5.964' height='9.336' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_28510' data-name='Group 28510' transform='translate(9.336) rotate(90)'%3E%3Cg id='Group_28241' data-name='Group 28241' transform='translate(0 0)' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_5330' data-name='Path 5330' d='M0,0,4.02,4.02,0,8.04' transform='translate(0.648 0.648)' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center right 13px;
}
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;
  height:auto;
}

/* 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: red;
}
ul.no-list.hs-error-msgs.inputs-list label {
  color: red;
}
.hs-error-msg {
  color: red;
  margin-top: 0.35rem;
}

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
@media(max-width:600px){
  fieldset.form-columns-2 .field {
    width: 100% !important;
    padding: 0 !important;
  }
  fieldset.form-columns-3 .field {
    width: 100% !important;
    margin-right: 0;
  }
  .hs-form-field {
    margin-bottom: 20px;
  }
}
/* 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
*/

.fly-head {width:100%;position:relative}
.fly-head .head-in{display:flex;flex-wrap:wrap;align-items:center}
.fly-head .head-in  .menu .hs-menu-wrapper ul li a{ text-decoration:none;}
.fly-head .mobile-trigger { display:none}
.fly-head .child-trigger{display:none}
.header-wrapper {position: sticky;top: 0;z-index: 9;}



@media (min-width:768px){
  .fly-head .head-in .logo{width:200px;}
  .fly-head .head-in  .menu{width:calc(100% - 200px);text-align:right}
  .fly-head .head-in  .menu .hs-menu-wrapper ul{display:block}
  .fly-head .head-in  .menu .hs-menu-wrapper ul li a{
    font-size:14px;
    line-height:16px;
    font-weight:500;
    text-decoration:none;
    letter-spacing: 0.35px;
    transition: all .15s linear;
    position:relative;
    text-wrap:wrap;
  }
  .fly-head .head-in .menu .hs-menu-wrapper>ul>li>ul {margin-top: -21px;}
  .fly-head .head-in  .menu .hs-menu-wrapper ul li.hs-menu-depth-1{padding:45px 20px;display:inline-block}
  .fly-head .head-in  .menu .hs-menu-wrapper ul li.hs-menu-depth-1.hs-item-has-children{padding-right:30px}
  .fly-head .hs-menu-depth-1:last-child{padding-right:0 !important}
  .fly-head .hs-menu-depth-1:last-child>a{
    padding: 5px 21px;
    border-radius: 30px;
    font-weight:600 !important;
  }
  .fly-head .hs-item-has-children>a:after {
    content: "";
    position:absolute;
    right:-10px;
    top:8px;
    display: block;
    width: 5px;
    height: 5px;
    background: transparent;
    text-indent: -9999px;
    border-top: 1.5px solid #50609B;
    border-left: 1.5px solid #50609B;
    transition: all 250ms ease-in-out;
    text-decoration: none;
    color: transparent;
    transform: rotate(-135deg);
    margin-left: 3px;
  }
  .fly-head  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper{
    border:none;
    text-align: left;
    text-transform: none;
    top: 100%;
    width: 200px;
    z-index: 99;
    padding: 8px 0 12px;
  }
  .fly-head .hs-item-has-children.hs-menu-depth-2>a:after {top:17px;right:14px}
  .fly-head .hs-menu-wrapper.flyouts .hs-menu-children-wrapper li a{
    padding: 0.7rem 1.05rem;
  }
}
@media (min-width: 768px) and (max-width: 1150px){
  .fly-head .head-in .menu .hs-menu-wrapper ul li.hs-menu-depth-1{padding: 35px 8px;}
  .fly-head .head-in  .menu .hs-menu-wrapper ul li.hs-menu-depth-1.hs-item-has-children{padding-right:26px}
  .fly-head .head-in .menu .hs-menu-wrapper ul li a{font-size:12px}
}

@media (max-width:767px){
 .fly-head .hs-menu-wrapper.hs-menu-flow-horizontal ul {overflow: auto;max-height: Calc(100vh - 76px);}
  .fly-head{padding:15px 0}
  .fly-head .head-in .logo{width:200px;}
  .fly-head .head-in  .menu{width:calc(100% - 200px);text-align:right}
  .fly-head .head-in .menu .hs-menu-wrapper ul li{display:block}
  .fly-head .head-in .menu .hs-menu-wrapper ul li.hs-menu-depth-2 a{font-size:12px;display:block}
  .fly-head  .hs-menu-wrapper ul{display:block}
  .fly-head .head-in .menu .hs-menu-wrapper ul li a {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.35px;
    transition: all .15s linear;
    position: relative;
  }
  .fly-head .hs-menu-wrapper{
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    z-index:100;
  }
  .fly-head  .hs-menu-wrapper ul li{text-align:left}
  .fly-head  .hs-menu-wrapper ul li a {
    padding: 12px 40px 12px 20px;
    display: block;
    max-width: 100%;
    border-top:1px solid #fff;
    position:relative;
  }.fly-head .hs-menu-wrapper>ul>li:last-child {
    border-bottom: 1px solid #fff;
}
  .fly-head  .mobile-trigger {
    width: 40px;
    padding: 5px 5px;
    cursor: pointer;
    float: right;
    margin-top: 0;
    display:block;
    z-index:1;
  }
  .fly-head  .mobile-trigger span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 6px 0px
  }
  .mobile-open .fly-head .mobile-trigger .line-1 {
    top: 12%;
    transform: translateY(5px) translateX(0) rotate(45deg);
    -webkit-transform: translateY(5px) translateX(0) rotate(45deg);
    -moz-transform: translateY(5px) translateX(0) rotate(45deg)
  }
  .mobile-open .fly-head .mobile-trigger{position:relative;top:5px}
  .mobile-open .fly-head .mobile-trigger .line-2 {
    opacity: 0
  }

  .mobile-open .fly-head  .mobile-trigger  .line.line-3 {
    top: 80%
  }

  .mobile-open  .fly-head .mobile-trigger .line-3 {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    -moz-transform: translateY(-11px) translateX(0) rotate(-45deg)
  }
  .fly-head .hs-menu-wrapper ul li .child-trigger {
    width: 40px;
    height: 40px;
    border-left: 1px solid #fff;
    position: absolute;
    right: 0;
    top: 0;
    cursor:pointer;
    display:block;
  }

  .fly-head .hs-menu-wrapper ul li .child-trigger i {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    position: absolute;
    cursor: pointer;
    right: 14px;
    top: 18px;
    margin: auto;
    height: 8px;
    width: 12px;
    z-index: 9;
    transition: all .15s linear;
  }
}


/* Light Header */
.header-light{display:none;}
.light-header .header-dark{display:none;}
.light-header .header-light{display:block;}
.light-header .header,.light-header .header_no_nav{background-color:#fff;}
.light-header .fly-head .head-in .menu .hs-menu-wrapper ul li a,.light-header .header__language-switcher .lang_list_class li a,.light-header .header__language-switcher-label-current,.light-header .header__logo .logo-company-name,.menu__link{color:#13123C;font-family:Poppins;}
.light-header .fly-head .head-in ul.hs-menu-children-wrapper a{color:#fff !important;}
.light-header .fly-head .head-in ul.hs-menu-children-wrapper a:hover{color:#3dbc51 !important;}
.light-header .fly-head .mobile-trigger span{background:#13123C;}
@media(max-width:767px){.light-header .fly-head .head-in .menu .hs-menu-wrapper ul li a,.light-header .header__language-switcher .lang_list_class li a,.light-header .header__language-switcher-label-current,.light-header .header__logo .logo-company-name,.menu__link{color:#fff;}
}
/* Common css*/


.body-container-wrapper{overflow:hidden}
@media (min-width:1367px){
  .content-wrapper{position:relative;max-width:1300px !important}
  .fly-head .content-wrapper,.fly-foot .content-wrappe{max-width:1300px}
}

/* 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 */
ul li,ol li{text-align:left}
strong{font-weight:600}
.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;
  }
}


/* LP1 & LP2 */
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* LP1 and LP2 */

.lp1 h1,.lp2 h1{font-size:45px!important;letter-spacing:0!important;line-height:1.2!important;}
.lp1 h2,.lp2 h2{letter-spacing:0 !important;}
.lp1 h4,.lp2 h4{font-size:22px !important;line-height:1.5 !important;}
.lp1 h5,.lp2 h5{font-weight:400 !important;}
@media(max-width:767px){.lp1 h1,.lp2 h1{font-size:30px!important;}
.lp1 h4,.lp2 h4{font-size:18px!important;}
}