/* Theme base styles */

html {
  scroll-behavior: smooth;
}

/* 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)
*/

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control the layout of elements
and how they stack. This is based off of the bootstrap system.
*********************************************************************************
****************************************************************************** */

/* container */

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

/* Responsive Grid */

.row-fluid {
  width: 100%;
  *zoom: 1;
}

.row-fluid:before,
.row-fluid:after {
  display: table;
  content: "";
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*="span"] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  *margin-left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 100%;
}

.row-fluid .span11 {
  width: 91.66%;
}

.row-fluid .span10 {
  width: 83.33%;
}

.row-fluid .span9 {
  width: 75%;
}

.row-fluid .span8 {
  width: 66.66%;
}

.row-fluid .span7 {
  width: 58.33%;
}

.row-fluid .span6 {
  width: 50%;
}

.row-fluid .span5 {
  width: 41.66%;
}

.row-fluid .span4 {
  width: 33.33%;
}

.row-fluid .span3 {
  width: 25%;
}

.row-fluid .span2 {
  width: 16.66%;
}

.row-fluid .span1 {
  width: 8.33%;
}

/*  */


.flex_row .col12 {
  width: 100%;
}

.flex_row .col11 {
  width: 91.66%;
}

.flex_row .col10 {
  width: 83.33%;
}

.flex_row .col9 {
  width: 75%;
}

.flex_row .col8 {
  width: 66.66%;
}

.flex_row .col7 {
  width: 58.33%;
}

.flex_row .col6 {
  width: 50%;
}

.flex_row .col5 {
  width: 41.66%;
}

.flex_row .col4 {
  width: 33.33%;
}

.flex_row .col3 {
  width: 25%;
}

.flex_row .col20 {
  width: 20%;
}

.flex_row .col2 {
  width: 16.66%;
}

.flex_row .col1 {
  width: 8.33%;
}


.container-fluid {
  *zoom: 1;
}

.container-fluid:before,
.container-fluid:after {
  display: table;
  content: "";
}

.container-fluid:after {
  clear: both;
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

  .flex_row .col20,
  .flex_row .col12,
  .flex_row .col11,
  .flex_row .col10,
  .flex_row .col9,
  .flex_row .col8,
  .flex_row .col7,
  .flex_row .col6,
  .flex_row .col5,
  .flex_row .col4,
  .flex_row .col3,
  .flex_row .col2,
  .flex_row .col1 {
    width: 100%;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
    width: 100%;
  }
}

.dnd-section[class*="force-full-width-section"]>.row-fluid>.dnd-column.span12,
.dnd-section[class*="force-full-width-section"]>.row-fluid>.span12.dnd-module {
  padding: 0;
}

@media (min-width: 768px) {

  .row-fluid {
    width: 100%;
    *zoom: 1;
  }

  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }

  .row-fluid .span11 {
    width: 91.66%;
  }

  .row-fluid .span10 {
    width: 83.33%;
  }

  .row-fluid .span9 {
    width: 75%;
  }

  .row-fluid .span8 {
    width: 66.66%;
  }

  .row-fluid .span7 {
    width: 58.33%;
  }

  .row-fluid .span6 {
    width: 50%;
  }

  .row-fluid .span5 {
    width: 41.66%;
  }

  .row-fluid .span4 {
    width: 33.33%;
  }

  .row-fluid .span3 {
    width: 25%;
  }

  .row-fluid .span2 {
    width: 16.66%;
  }

  .row-fluid .span1 {
    width: 8.33%;
  }
}

@media (max-width: 767px) {
  .row-fluid [class*=span] {
    min-height: 0;
  }
}

.clearfix {
  *zoom: 1;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}
.page-center,
.content-wrapper ,
.dnd-section > .row-fluid {
  width: 100%;
  margin-right:auto;
  margin-left:auto;
}


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

.dnd-section .dnd-column {
  padding: 0 10px;
}
.content-wrapper,
.page-center {
  margin: 0 auto;
  padding: 0 21px;
}

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

.full-video{position:absolute; top:0; width:100%; height:100%; left:0;z-index:-1;}
.full-video video,.full-video iframe{width:100%; height:100%; object-fit:cover;}
.common-popinner{max-width:65rem; position:relative; margin:0 auto; background-color:var(--white_color); padding:40px;}

.dis-flex{display:flex;flex-wrap:wrap;}
.vmiddle{align-items:center;}
.vbottom{align-items:flex-end;}
.hcenter{justify-content:center;}
.hright{justify-content:flex-end;}
.sbetween{justify-content:space-between}
.tc{text-align:center;}
.tr{text-align:right;}
.bg{background-size:cover; background-position:center; background-repeat:no-repeat;}

:focus,:focus-visible { outline: 0; }
a { color :inherit ; text-decoration: none;  cursor: pointer; outline: none; transition: all 0.3s ease ; -moz-transition: all 0.3s ease ; -ms-transition: all 0.3s ease ; -o-transition: all 0.3s ease ; -webkit-transition: all 0.3s ease ; }
a.cta_button {-moz-box-sizing: border-box !important; -webkit-box-sizing: border-box !important; box-sizing: border-box;}
button:focus-visible{outline:0; border:none;}
img { border: 0 none; max-width: 100%; vertical-align:middle;height:auto; }

.detail-content p,.detail-content ul,.detail-content ol,.detail-content blockquote,.hs_cos_wrapper_type_rich_text p,.hs_cos_wrapper_type_rich_text ul,.hs_cos_wrapper_type_rich_text ol,.hs_cos_wrapper_type_rich_text blockquote{ margin-bottom:24px; }
.detail-content > :last-child,.hs_cos_wrapper_type_rich_text > :last-child{ margin-bottom:0; }
.detail-content ul,.hs_cos_wrapper_type_rich_text ul{ padding-left: 0; list-style: none; }
.detail-content blockquote,.hs_cos_wrapper_type_rich_text blockquote{ font-weight: 700; font-style: italic; }
.detail-content ul li,.hs_cos_wrapper_type_rich_text ul li{ position: relative; margin-top:20px; padding-left:25px; }
.detail-content ul li:before,.hs_cos_wrapper_type_rich_text ul li:before{ border-radius: 50%; content: "."; font-size: 60px; left: 0; line-height: 0; margin-right: 10px; position: absolute; top: -5px;}
.detail-content.font20 ul li:before,.font20 .detail-content ul li:before,.font20 .hs_cos_wrapper_type_rich_text ul li:before { top: 6px; }
.detail-content ol,.hs_cos_wrapper_type_rich_text ol { padding-left: 20px; }
.detail-content ol li,.hs_cos_wrapper_type_rich_text ol li{ position: relative; margin-top:20px; padding-left:15px; }
.detail-content strong,.hs_cos_wrapper_type_rich_text strong{ font-weight:700; }


.rtp{padding-top:0 !important;}
.rbp{padding-bottom:0 !important;}

body {
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: break-word;
  /* letter-spacing:-0.06px; */
}

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}
.body-container-wrapper a {
  text-decoration: underline;
}

.body-container-wrapper a:hover {
  text-decoration: none;
}
/* Headings */

h1,.h1,
h2,.h2,
h3,.h3,
h4,.h4,
h5,.h5,
h6,.h6 {
  margin: 0 0 1.4rem;
  line-height:110.00000000000001%;
}
h1,.h1{
  /* letter-spacing:-2.58px; */
  margin-bottom:16px;
}
h2,.h2{
  /* letter-spacing:-1.78px; */
}
h3,.h3{
  /* letter-spacing:-0.22px; */
}
h4,.h4{
  letter-spacing:0.08px;
}
h5,.h5{
  letter-spacing:1px;
  /* text-transform: uppercase; */
}
h6,.h6{
  letter-spacing:-0.16px;
  /* text-transform: uppercase; */
}

.font18 { font-size:1.125rem; }
.font44 { font-size: 2.75rem; }

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
  display: inline-block;
  padding-left: 27px;

}

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

ul.no-list{
  list-style: none;
  margin: 0;
  padding-left: 0;
}
ul.no-list a{text-decoration:none;}
/* 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;
}

@media (max-width:767px){
  body{
    letter-spacing: -0.06px
  }
  h1,.h1{
    letter-spacing:-1.22px; 
  }
  h2,.h2{
    letter-spacing:-1.02px;
  }
  h3,.h3{
    letter-spacing:-0.19px;
  }
  h4,.h4{
    letter-spacing:0.07px;
  }
  h5,.h5{
    letter-spacing:1.18px;
  }
  h6,.h6{
    letter-spacing:-0.14px;
  }
  
.font18 {
font-size:1rem;  
  }
  
.font44 { 
  font-size: 2rem;
  }
}
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 */
/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }
.hs-form-field {
  margin-bottom: 15px;
}
.hs_error_rollup{display:none;}
/* Labels */

form label {
  display: block;
  margin-bottom:13px;
  font-weight: 700;
  font-size: .875rem;
  line-height: 1.25rem;
  font-family: 'Lato';
}

/* 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: 8px 13px;
  width: 100% !important;
  font-size: 1rem;
  line-height: 1.5rem;
  border: 1px solid;
  font-family: 'Lato';
}

form .hs_submit input{border:none;}

form textarea {
  resize: vertical;
}

input::-webkit-input-placeholder { color:#9ca3af;} /* WebKit browsers */
input:-moz-placeholder {color:#9ca3af;} /* Mozilla Firefox 4 to 18 */
input::-moz-placeholder {color:#9ca3af;} /* Mozilla Firefox 19+ */
input:-ms-input-placeholder {color:#9ca3af;} /* Internet Explorer 10+ */
textarea::-webkit-input-placeholder {color:#9ca3af;} /* WebKit browsers */
textarea:-moz-placeholder { color:#9ca3af;} /* Mozilla Firefox 4 to 18 */
textarea::-moz-placeholder {color:#9ca3af;} /* Mozilla Firefox 19+ */
textarea:-ms-input-placeholder {color:#9ca3af;} /* Internet Explorer 10+ */

/******** ============================= Form CSS===============================================================*/
form ul{padding:0;}
form ul li{list-style:none;position:unset;padding: 0;    margin: 0 0 12px;font-size:16px;line-height:normal;}
form ul li:after {display:none;}
form span.hs-form-required{display:none;}
/******************************************** Fieldset CSS*******************************************************/
form fieldset{max-width:100%;}
form fieldset.form-columns-1>div.hs-form-field .hs-input{width:100%;}
form fieldset.form-columns-3 > div.hs-form-field{margin-right:0.95%;}
form fieldset.form-columns-3 > div.hs-form-field:last-child{margin:0;}

/******************************************** Select CSS*******************************************************/
form select {color:#6F7482; -moz-appearance: none;-webkit-appearance: none;background-color:var(--secondary_colors);background-image: url("https://20315204.fs1.hubspotusercontent-na1.net/hubfs/20315204/Arrow%20Down%20%282%29.svg");background-position:center right 16px;background-repeat: no-repeat;background-size:16px auto}

/******************************************** Radio Button CSS*******************************************************/
form .input ul.inputs-list li label input[type="radio"]:checked+span:before {background: #1B1B1B ;background-size: 14px; background-position: center center;border-radius:50%;box-shadow:0 0 0 4px var(--secondary_colors) inset;  }
form .input ul.inputs-list li label input[type="radio"] { opacity: 0; display:none !important;}
form .input ul.inputs-list li label input[type="radio"]+span:before { margin-top: -3px; content: ''; background: var(--secondary_colors); display: inline-block;vertical-align: middle; width: 30px;height: 30px; padding: 2px; margin-right: 10px; text-align: center; border:1px solid var(--primary_color);border-radius:50%;}
form .input ul.inputs-list li label input[type="radio"]+span{cursor:pointer;}
/******************************************** Check Box CSS*******************************************************/
form .input ul.inputs-list li label input[type="checkbox"]:checked+span:before {background: #1B1B1B url('https://20315204.fs1.hubspotusercontent-na1.net/hubfs/20315204/Tick%20%281%29.svg');background-size: 14px; background-position: center center;background-repeat:no-repeat;}
form .input ul.inputs-list li label input[type="checkbox"] { opacity: 0; display:none !important;}
form .input ul.inputs-list li label input[type="checkbox"]+span:before {  margin-top: -3px;content: ''; background: var(--secondary_colors); display: inline-block;vertical-align: middle; width:30px;height: 30px; padding: 2px; margin-right: 10px;border-radius:3px; text-align: center; border:1px solid var(--primary_color);}
form .input ul.inputs-list li label input[type="checkbox"]+span{cursor:pointer;}
/******************************************** Button CSS*******************************************************/

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: 1rem 0;
}
form .inputs-list.hs-error-msgs li{margin: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: var(--secondary_colors);
}

.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: var(--secondary_colors);
}

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

.hsfc-FormWrapper span {
    font-family: 'Lato';
}

[data-hsfc-id=Renderer] .hsfc-TextInput, [data-hsfc-id=Renderer] .hsfc-DropdownOptions__List, [data-hsfc-id=Renderer] .hsfc-TextareaInput, [data-hsfc-id=Renderer] .hsfc-Button {
    font-family: 'Lato' !important;
}

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

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

.hs-error-msg {
  color: #ab1276;
  margin-top: 0.35rem;
  font-family: 'Lato';
  font-size: 0.875rem !important;
}

[data-hsfc-id=Renderer] .hsfc-ErrorAlert {
    font-family: 'Lato' !important;
  font-size: 0.875rem !important;
  color: #ab1276;
}

/* Submit button */
.tertiary_btn,
body .hs-button,
body  .hs-sec-btn,
body form input[type=submit],
body form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: normal;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  text-decoration:none;
}

body .hs-button,
body form .hs-button {
  box-shadow: 3px 3px 0 #9e267e;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}
body .hs-button:hover,
body form input[type=submit]:hover,
body form .hs-button:hover {
  box-shadow: 3px 3px 0 #1A234B;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

.hs-sec-btn{
  box-shadow: 3px 3px 0 #1A234B;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}
.hs-sec-btn:hover {
  box-shadow: 3px 3px 0 #349D99;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

body .tertiary_btn{
  box-shadow: 3px 3px 0 #349D99;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}
body .tertiary_btn:hover{
  box-shadow: 3px 3px 0 #1A234B;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

@media(max-width:767px){
  form fieldset.form-columns-2 > div.hs-form-field{margin-right:0 !important;width:100% !important;}
  
  [data-hsfc-id=Renderer] .hsfc-Row {
        display: flex !important;
        flex-direction: column !important;
}
}

/* 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: var(--secondary_colors);
}

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

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

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.header_wrapper {
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px 0 rgba(0,0,0,0.06);
  position: fixed;
  top: 0;
  background: #fff;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
}
.header_wrapper .header_right_section input::-webkit-input-placeholder {color: #9ca3af !important;}
.header_wrapper .hs-search-field__suggestions .results-for {
  padding-top: 12px;
}

.header_wrapper .hs-search-field__suggestions li {
  padding: 13px 10px 13px;
}

.header .header_wrapper ul li a, 
.header .header_wrapper  .phonenumber a {
  background: transparent !important;
  padding:0;
}
.scrolled .header_wrapper {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.header_wrapper  .hs-search-field__suggestions-container .hs-search-field__suggestions {
  position: absolute;
  top: 100%;
  background: #fff;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.header_wrapper .hs-menu-wrapper >ul>li>ul {
  visibility: hidden;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  top: 1.5rem;
  position: absolute;
  left: 0;
  margin-top: 1.5rem;
  background-color: #FFF;
  border-radius: 21px;
  border-top-left-radius: .375rem;
  padding: 34px;
  opacity: 0;
  transition: all .3s ease-in;
  pointer-events: none;
}
.header_wrapper .header_right_section .hs-menu-wrapper >ul>li>ul {
  padding: 21px;
  border-radius: 21px;
  border-top-right-radius: .375rem;
  right: 0;
  top: 1.5rem;
  left: auto;
}
.header_wrapper .header_left_section {
  flex: 1 1 0%;
  align-items: stretch;
  justify-content: flex-start;
  display: flex;
  align-items: center;
}

.header_wrapper .page-center {
  display: flex;
  justify-content: space-between;
  min-height: 4rem;
  position: relative;
}

.header_wrapper .header_menu {
  margin-left: 1.5rem;
}
.header__search.header--element{
  display:none;
}
.header_wrapper .header__search.header--element{
  display:none;
}
.header_wrapper .header_right_section {
  display: flex;
  align-items: center;
}

.header_wrapper .btn_row {
  margin: 0;
  margin-left: 21px;
}

.header_wrapper .header_logo {
  line-height: 0;
}

.header_wrapper .hs-menu-wrapper>ul>li>a {
  font-weight: 700;
  font-size: 1rem;
  color: #242929;
  font-family: 'Lato';
  line-height: 64px;
  display: inline-block;
}

.header_wrapper .hs-menu-wrapper>ul>li:not(:first-child) {
  margin-left: 13px;
}

header.header {
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.header_wrapper .btn_item a {
  font-size: .875rem;
  line-height: 1.25rem;
  padding: 7px 21px;
}

.header_wrapper .search_opener {
  line-height: 0;
}

.header_wrapper .login_menu {
  margin-right: 13px;
}

.header_wrapper .search_opener svg {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.header_wrapper .phonenumber {
  margin-right: 22px;
}

.header_wrapper .phonenumber a {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #233167;
  font-weight: 700;
}

.header_wrapper {
  font-family: lato;
}

.header_wrapper .seach_icon {
  cursor: pointer;
}

.header_wrapper .seach_icon:hover svg path {
  fill: var(--primary_color3);
}
.header_wrapper .hs-menu-wrapper >ul>li {
  position: relative;
}

.header_wrapper .hs-menu-wrapper >ul ul li a {
  font-size: 1rem;
  line-height: 1.5rem;
  display: block;
  color: #4b5563;
  white-space: nowrap;
  font-weight:600;
}

.header_wrapper .hs-menu-wrapper >ul>li>ul>li:not(:first-child) {
  margin-top: 16px;
}

.header_wrapper .hs-menu-wrapper >ul>li:hover>ul {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.header_wrapper .header_left_section .hs-menu-wrapper >ul>li:first-child>ul {
  display: flex;
}

.header_wrapper .header_left_section .hs-menu-wrapper >ul>li:first-child > ul.hs-menu-children-wrapper {
  padding: 34px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: self-start;
  gap: 34px;
}

.header_wrapper .header_left_section .hs-menu-wrapper >ul>li:first-child > ul.hs-menu-children-wrapper >li {
  margin: 0;
}

.header_wrapper .header_left_section .hs-menu-wrapper >ul>li:first-child > ul.hs-menu-children-wrapper>li>a {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #233167;
  font-weight: 700;
}

.header_wrapper .header_left_section .hs-menu-wrapper >ul>li:first-child > ul.hs-menu-children-wrapper >li ul.hs-menu-children-wrapper {
  row-gap: 16px;
}

.header_wrapper .header_left_section .hs-menu-wrapper >ul>li:first-child > ul.hs-menu-children-wrapper >li ul.hs-menu-children-wrapper {
  margin-top: 16px;
}
.header_wrapper .header__search.header--element input#site_search-input {
  border-radius: 13px;
  font-size: .875rem;
  line-height: 1.25rem;
  letter-spacing: 0;
}
.header_wrapper .header__search.header--element button.hs-search-field__button {
  top: 12px;
  z-index: 2;
  position: absolute;
  color: #233167;
  right: 32px;
  background: transparent;
  border: 0;
  padding: 0;
  width: 16px;
  line-height: 0;
  height: 16px;
}

.header_wrapper .header__search.header--element button.hs-search-field__button svg {
  width: 100%;
  height: 100%;
}
.seach_open .header_wrapper .header_right_section >div:not(:last-child) {
  visibility: hidden;
  opacity: 0;
}

.seach_open .header_wrapper .header_right_section .header__search.header--element {
  display: block;
}
.header_wrapper .header__search.header--element {
  position: absolute;
  right: 35px;
  width: 300px;
  margin: 0;
  top: 13px;
  display: none;
}
.header_wrapper span.close_search {
  top: 10px;
  z-index: 2;
  position: absolute;
  right: 13px;
  background: transparent;
  border: 0;
  padding: 0;
  width: 16px;
  line-height: 0;
  height: 16px;
  color: #9ca3af;
  cursor: pointer;
}

.header_wrapper span.close_search svg {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
@media(max-width:991px){
  .header_wrapper .header__search.header--element {
    position: absolute;
    width: 80%;
    margin: 0;
    top: 13px;
    display: none;
    right: 0;
  }
  .header_wrapper .header_right_section {
    display: none;
  }

  .header_wrapper .header_menu {
    display: none;
  }

  .header_wrapper .page-center {
    justify-content: space-between;
    position: relative;
  }

  .header_wrapper .mobile_trigger {
    position: absolute;
    top: 17px;
    left: 34px;
    color: var(--primary_color2);
    cursor: pointer;
    z-index: 1;
  }
  .header_wrapper .mobile_trigger:hover {
    color: var(--primary_color3);
  }
  .header_wrapper .mobile_trigger svg {
    font-size: 1.875rem;
    line-height: 2.25rem;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    transition-duration: .3s;
  }

  .header_wrapper .header_left_section {
    justify-content: center;
  }

  .header_wrapper .header_logo img {
    width: 128px !important;
  }
  .header_wrapper .search_opener.mobile svg {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .header_wrapper .search_opener.mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary_color2);
  }
  .seach_open .header_wrapper .header_right_section.mb {
    display: block;
    max-width: 100%;
    width: 100%;
    position: relative;
  }
  .seach_open .header_wrapper .header_left_section {
    visibility: hidden;
    opacity: 0;
  }

  .seach_open .header_wrapper .search_opener.mobile {
    visibility: hidden;
    opacity: 0;
    display:none;
  }
  .header_wrapper .header__search.header--element button.hs-search-field__button {
    height: 16px;
    width: 12px;
  }

  .header_wrapper span.close_search svg {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .header_wrapper span.close_search {
    top: 12px;
    right: 10px;
  }

  .header_wrapper .mobile_trigger {
    left: 34px;
  }
  .mobile_open .header_wrapper .mobile_trigger svg {
    transform: matrix(0, 1, -1, 0, 0, 0);
  }
  .mobile_open{
    overflow:hidden;
  }
  .mobile_menu_wrap {
    position: fixed;
    top: 64px;
    background: #fff;
    height: 100%;
    width: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    display: none;
    padding: 0px 21px;
    font-family: 'Lato';
    line-height: 24px;
    font-size: 16px;
  }

  .mobile_open .header .header_wrapper {
    box-shadow: none;
  }

  .mobile_open .mobile_menu_wrap {
    display: block;
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li>a {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #242929;
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li>ul {
    padding: 8px;
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li:not(:first-child) li {
    list-style-type: disc;
    color: #5c71c7;
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li:not(:first-child)>ul>li>a {
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: #4b5563;
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li:not(:first-child)>ul {
    margin-left: 34px;
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li:first-child>ul ul>li {
    list-style-type: disc;
    color: #5c71c7;
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li:first-child>ul ul {
    margin-left: 34px;
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li:first-child> ul li a {
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: #4b5563;
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li:first-child> ul li a {
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li:not(:first-child) {
    margin-top: 8px;
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li:first-child>ul>li>a {
    font-weight: 700;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: #233167;
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li:first-child>ul ul {
    margin-top: 8px;
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li:first-child>ul>li>a:before {
    content: '–';
    margin-right: 2px;
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li:first-child> ul > li:not(:first-child) {
    margin-top: 4px;
  }

  .mobile_menu_wrap .hs-menu-wrapper >ul>li:first-child> ul > li:first-child {
    margin-top: -3px;
  }
  .mobile_menu_wrap hr {
    border-top: 1px solid  #e5e7eb;
    height: 0;
    background: transparent;
    margin: 13px 0 13px;
    border-bottom: none;
  }
  .phonenumber a {
    font-weight: 700;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: #233167;
  }
  .phonenumber a {
    font-weight: 700;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: #233167;
  }
  .mobile_menu_wrap .login_menu .hs-menu-wrapper >ul>li>a {
    font-weight: 700;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: #233167;
  }

  .mobile_menu_wrap .login_menu .hs-menu-wrapper >ul>li:first-child> ul li a {
    display: block;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: #233167;
    font-weight: 400;
  }

  .mobile_menu_wrap .login_menu .hs-menu-wrapper >ul>li>ul {
    padding: 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .mobile_menu_wrap .login_menu .hs-menu-wrapper >ul>li:first-child> ul li {
    margin: 0;
  }

  .mobile_menu_wrap .login_menu.hs-menu-wrapper >ul>li:first-child>ul>li>a:before {
    content: "-"
  }
  .mobile_menu_scroll {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 64px);
  }
}

@media(min-width:992px){
  .mobile_menu_wrap {
    display: none !important;
  }
  .header_wrapper .header_right_section.mb ,.search_opener.mobile {
    display: none !important;
  }
  .header_wrapper .mobile_trigger {
    display: none !important;
  }
}

@media(max-width:640px){
  .header_wrapper .mobile_trigger {
    left: 21px;
  }
}
.footer_wrapper .social_icons_column a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  line-height: 0;
}
.footer_wrapper .social_icons_column {
  display: flex;
  flex-direction: row;
  justify-content:end;
  gap: 8px;
  margin: 3rem 0 1.5rem;
}
.footer_wrapper .social_icons_column a * {
  fill: currentColor;
  stroke: currentColor;
  width: 20px;
  height: 20px;
}
.footer_wrapper .page-center {
  padding-top: 55px;
  padding-bottom: 34px;
}
.footer_wrapper .copyrights *:last-child {
  margin-bottom: 0;
}
.footer_wrapper .copyrights p {
  text-shadow: 2.27778px 2.27778px 0 rgba(37, 42, 42, .34);
  font-size: .75rem;
  line-height: 1rem;
  font-family: 'Lato';
  letter-spacing: -.05em;
}
.footer_wrapper .copyrights {
  margin-top: 1.5rem;
  padding-left: 2px;
}
.footer_wrapper .footer_main .flex_row {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.footer_wrapper .menu_column {
  font-weight: 400;
  font-size: .875rem;
  line-height: 1.25rem;
  /* letter-spacing: -.025em; */
  text-shadow: 2.27778px 2.27778px 0 rgba(37, 42, 42, .34);
  font-family: 'Lato';
  width: 80%;
}
.footer_wrapper .menu_column .hs-menu-wrapper >ul>li>a {
  display: none;
}
.footer_wrapper .hs-menu-wrapper ul {
  justify-content: space-between;
}
.footer_wrapper .menu_column  .hs-menu-wrapper >ul>li li:not(:first-child) {
  margin-top: 4px;
}
.footer_wrapper .menu_column .hs-menu-wrapper ul {
  padding: 0;
}

@media(max-width:767px){
  .footer_wrapper .footer_main > .flex_row {
    flex-direction: column;
    row-gap: 16px;
  }
  
  .footer_wrapper .social_icons_column {
  justify-content:flex-start;
  }

  .footer_wrapper .copyrights {
    margin-top: 36px;
  }

  .footer_wrapper .menu_column .hs-menu-wrapper > ul {
    row-gap: 16px;
  }

  .footer_wrapper .page-center {
    padding-top: 21px;
    padding-bottom: 21px;
    padding-left: 34px;
    padding-right: 34px;
  }
}

@media(max-width:640px){
  .footer_wrapper .page-center {
    padding-left: 21px;
    padding-right: 21px;
  }
}
/* 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;
  }
}
html{overflow-y:overlay;overflow:auto;-webkit-tap-highlight-color:transparent}
.bg,.bg_color{position:absolute;z-index:-1;width:100%;height:100%;top:0;bottom:0;left:0;right:0;pointer-events:none}
.bg_image{position:absolute;z-index:-2;width:100%;height:100%;top:0;bottom:0;left:0;right:0;pointer-events:none}
.text_center{text-align:center}
.text_right{text-align:right}
.text_left{text-align:left}
.text_center .btn_row{justify-content:center}
.text_right .btn_row{justify-content:flex-end}
.text_left .btn_row{justify-content:flex-start}
.flex_row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;row-gap:30px}
[class*=full-width-section].dnd-section,[class*=full-width-section].dnd-section>.row-fluid{padding:0}
.btn_row:empty{margin:0!important}
.btn_row{margin:20px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;row-gap:10px;-webkit-column-gap:10px;-moz-column-gap:10px;column-gap:10px;justify-content:center;align-items:center}
.dnd_padd{position:relative;overflow:hidden}
.col20_row .flex_row,.col3_row .flex_row,.col4_row .flex_row{justify-content:center}
.btm_margin{margin-bottom:40px}
span.btn_icon {
  margin-left: 5px;
}
span.btn_icon svg {
  vertical-align: middle;
}
.btn_row a.hs-sec-btn,
.btn_row a.hs-button {
  background-image: none !important;
}
.btn_row a.hs-sec-btn:after, .btn_row a.hs-button:after {
  display: none;
}
@media(max-width:1300px) and (min-width:1101px){
  .col20_row .flex_row .col20{width:25%}
}
@media(max-width:1100px) and (min-width:992px){
  .col20_row .flex_row .col20,.col3_row .flex_row .col3{width:33.33%}
}
@media(max-width:991px) and (min-width:768px){
  .col20_row .flex_row .col20,.col2_row .flex_row .col2,.col3_row .flex_row .col3,.col4_row .flex_row .col4{width:50%}
}
table{border-collapse:collapse;border:none}
/* Terms and Conditions Page Styles */
.terms-conditions-page {
  background-color: #E5E7EB;
  min-height: 100vh;
}

.terms-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 100px;
}

.terms-container { max-width: 1080px; margin: 0 auto; }

.terms-container h1 {
  font-size: 44px;
  text-align: center;
  margin-bottom: 80px;
  color: #1a2456;
  font-weight: 700;
}

.terms-container h4 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #1a2456;
  font-size: 18px;
}

.terms-container ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.terms-container li {
  margin-bottom: 8px;
  font-size: 17px;
  color: #2c366a;
  line-height: 1.6;
}
.terms-container h2,
.terms-container h3,
.terms-container h4 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #1a2456;
}

.terms-container p {
  margin-bottom: 20px;
  font-size: 17px;
  color: #2c366a;
  line-height: 1.7;
}

.terms-container strong {
  color: #1a2456;
}

.terms-container a {
  color: #00a6a3;
  text-decoration: none;
}

.terms-container a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms-section {
    margin: 60px auto;
    padding: 0 20px 60px;
  }

  .terms-container h1 {
    font-size: 34px;
    margin-bottom: 50px;
  }

  .terms-container p {
    font-size: 16px;
  }
}
a.cta_button{box-sizing:border-box!important}