/* 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;
}
html { 
  font-size:100%; 
  -webkit-text-size-adjust:100%; 
  font-variant-ligatures:none; 
  -webkit-font-variant-ligatures:none; 
  text-rendering:optimizeLegibility; 
  -moz-osx-font-smoothing:grayscale; 
  font-smoothing:antialiased; 
  -webkit-font-smoothing:antialiased; 
}
img { 
  max-width:100%; 
  height:auto; 
  border:none; 
  vertical-align:middle; 
}
input[type=submit] { 
  cursor:pointer; 
  background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=) !important;  
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
a {
  background-color: transparent;
}

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

b,
strong {
  font-weight: bolder;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

img {
  border-style: none;
  max-width:100%;
  height:auto;
}

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

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

button,
input { /* 1 */
  overflow: visible;
}

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

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

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

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

details {
  display: block;
}
summary {
  display: list-item;
}

.set-bg, .bg { 
  background-size:cover; 
  background-position:center;
  background-repeat:no-repeat;
}

.font-white, .font-white a { 
  color:#fff; 
}
.font-white a:hover { 
  color:rgba(255,255,255,0.8); 
}
.bold, .bold h1, .bold h2, .bold h3, .bold h4, .bold h5, .bold h6  { 
  font-weight:700; 
}
.semibold, .semibold h1, .semibold h2, .semibold h3, .semibold h4, .semibold h5, .semibold h6  { 
  font-weight:600; 
}
.medium, .medium h1, .medium h2, .medium h3, .medium h4, .medium h5, .medium h6 { 
  font-weight:500; 
}
.normal, .normal h1, .normal h2, .normal h3, .normal h4, .normal h5, .normal h6 { 
  font-weight:400; 
}
.light, .light h1, .light h2, .light h3, .light h4, .light h5, .light h6 { 
  font-weight:300; 
}

.uppercase { 
  text-transform: uppercase; 
}
.text-center { 
  text-align:center; 
}
.text-right { 
  text-align:right; 
}
.text-left { 
  text-align:left;
}

/* Widths */
.float-left { 
  float:left; 
}  
.float-right { 
  float:right; 
}  
.inline-block { 
  display: inline-block; 
  vertical-align:middle; 
  margin-right:-4px; 
}
.inline-block.vertical-top { 
  vertical-align:top;  
}
.w20 { 
  width: 20%; 
}
.w25 { 
  width: 25%; 
}
.w30 {
  width: 30%; 
}
.w33 { 
  width: 33.33%; 
}
.w40 { 
  width: 40%; 
}
.w50 { 
  width: 50%; 
}
.w60 { 
  width: 60%; 
}
.w66 { 
  width: 66.66%; 
}
.w70 { 
  width: 70%; 
}
.w75 { 
  width: 75%; 
}
.w80 { 
  width: 80%; 
}
.w100 { 
  width: 100%; 
}

/*unique paddings*/
.pl10, .p0-10 { 
  padding-left:10px;
}
.pl15, .p0-15 {
  padding-left:15px;
}
.pl20, .p0-20 { 
  padding-left:20px;
}
.pl30 , .p0-30{ 
  padding-left:30px;
}
.pl0, .p0, .plr0 { 
  padding-left:0;
}
.pr10, .p0-10 { 
  padding-right:10px;
}
.pr15, .p0-15 {
  padding-right:15px; 
}
.pr20, .p0-20 {
  padding-right:20px; 
}
.pr30, .p0-30 { 
  padding-right:30px;
}
.pr0, .p0, .plr0  { 
  padding-right:0; 
}
.pb10,.p10-0 { 
  padding-bottom:10px;
}
.pb20,.p20-0 { 
  padding-bottom:20px;
}
.pb30,.p30-0 { 
  padding-bottom:30px
}
.pb40,.p40-0 { 
  padding-bottom:40px;
}
.pb50,.p50-0 { 
  padding-bottom:50px;
}
.pb60,.p60-0 { 
  padding-bottom:60px;
}
.pb70,.p70-0 { 
  padding-bottom:70px;
}
.pt0, .p0, .ptb0 { 
  padding-top:0; 
}
.pt10,.p10-0 { 
  padding-top:10px;
}
.pt20,.p20-0 { 
  padding-top:20px;
}
.pt30,.p30-0 { 
  padding-top:30px 
}
.pt40,.p40-0 { 
  padding-top:40px;
}
.pt50,.p50-0 { 
  padding-top:50px; 
}
.pt60,.p60-0 { 
  padding-top:60px; 
}
.pt70,.p70-0 { 
  padding-top:70px; 
}
.pb0,.p0, .ptb0 { 
  padding-bottom:0; 
}


/* Misc
   ========================================================================== */

template {
  display: none;
}
[hidden] {
  display: none;
}

.dnd-section[class*="background-image"] form label {
    color: #fff;
}

.hs_cos_wrapper_type_rich_text ul { list-style-type:circle; font-family:inherit; }
.hs_cos_wrapper_type_rich_text ul * { font:inherit; color:inherit; }
.hs_cos_wrapper_type_rich_text ul li + li { margin-top:10px; }
.TopHeaderColLeft ul li + li { margin-top:0; }

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

/* 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: 28px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -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: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

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

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

@media (min-width: 768px) and (max-width: 1139px) {
    .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: 28px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -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: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .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: 28px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -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%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

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

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}
.content-wrapper, .wrapper {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 20px;
}

@media screen and (min-width: 1380px) {
  .content-wrapper, .wrapper {
    padding: 0;
  }
}

.dnd-section {
  padding: 80px 20px;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
  max-width: 1200px;
}

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

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



@font-face {
  font-family: 'Albra';
  src: url('https://f.hubspotusercontent10.net/hubfs/5719267/Lightning%20Broadband%202021/Font/AlbraLight.woff2') format('woff2'),
    url('https://f.hubspotusercontent10.net/hubfs/5719267/Lightning%20Broadband%202021/Font/AlbraLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Albra';
    src: url('https://f.hubspotusercontent10.net/hubfs/5719267/lightning-broadband-2021/Font/AlbraRegular-1.woff2') format('woff2'),
        url('https://f.hubspotusercontent10.net/hubfs/5719267/lightning-broadband-2021/Font/AlbraRegular-1.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



@font-face {
  font-family: Euclid Circular B;
  src: url('https://f.hubspotusercontent10.net/hubfs/5719267/Lightning%20Broadband%202021/Font/EuclidCircularB-Light.woff2') format('woff2'),
    url('https://f.hubspotusercontent10.net/hubfs/5719267/Lightning%20Broadband%202021/Font/EuclidCircularB-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Euclid Circular B;
  src: url('https://f.hubspotusercontent10.net/hubfs/5719267/Lightning%20Broadband%202021/Font/EuclidCircularB-Regular.woff2') format('woff2'),
    url('https://f.hubspotusercontent10.net/hubfs/5719267/Lightning%20Broadband%202021/Font/EuclidCircularB-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Albra';
  src: url('https://f.hubspotusercontent10.net/hubfs/5719267/Lightning%20Broadband%202021/Font/AlbraRegular.woff2') format('woff2'),
    url('https://f.hubspotusercontent10.net/hubfs/5719267/Lightning%20Broadband%202021/Font/AlbraRegular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Euclid Circular B;
  src: url('https://f.hubspotusercontent10.net/hubfs/5719267/Lightning%20Broadband%202021/Font/EuclidCircularB-Bold.woff2') format('woff2'),
    url('https://f.hubspotusercontent10.net/hubfs/5719267/Lightning%20Broadband%202021/Font/EuclidCircularB-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Euclid Circular B;
  src: url('https://f.hubspotusercontent10.net/hubfs/5719267/Lightning%20Broadband%202021/Font/EuclidCircularB-Medium.woff2') format('woff2'),
    url('https://f.hubspotusercontent10.net/hubfs/5719267/Lightning%20Broadband%202021/Font/EuclidCircularB-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Euclid Circular B;
  src: url('https://f.hubspotusercontent10.net/hubfs/5719267/Lightning%20Broadband%202021/Font/EuclidCircularB-SemiBold.woff2') format('woff2'),
    url('https://f.hubspotusercontent10.net/hubfs/5719267/Lightning%20Broadband%202021/Font/EuclidCircularB-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}





html {
  font-size: 20px;
}
@media (max-width: 1400px) {
  html {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
}

body {
  color: #024236;
  font-family: Euclid Circular B, sans-serif;
  line-height: 1.4;
  word-break: break-word;
}

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

/* Paragraphs */

p {
  margin: 0 0 1.4rem;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child {
  margin-bottom:0;
}
strong {
  font-weight: 600;
}

/* Anchors */

a {
  color: #0270E0;
  cursor: pointer;
  text-decoration: none;
  transition:all ease 0.4s;
}

a:hover, a:focus {
  text-decoration: underline;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #494A52;
  font-family: Euclid Circular B, sans-serif;
  font-weight: 600;
  margin: 0 0 1.4rem;
}

h1 {
  font-size: 2.1rem;
  line-height:1.25;
}

h2 {
  font-size: 1.6rem;
  line-height:1.3;
}

h3 {
  font-size: 1.25rem;
  line-height:1.33;
}

h4 {
  font-size: 1.175rem;
  font-weight: normal;
  line-height:1.4;
}

h5 {
  font-size: 1rem;
  line-height:1.45;
}

h6 {
  font-size: 0.9rem;
  line-height:1.5;
}

/* Lists */

/* Lists */

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

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

ul.no-list {
  list-style: none;
}


/* Code blocks */

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

hr {
  background-color: #CCC;
  border: none;
  color: #CCC;
  height: 1px;
}

/* Subscripts and superscripts */

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Focus styles */

:focus {
  outline: auto;
  outline-color: green;
}

.disable-focus-styles :focus {
  outline: none;
}

/* Dark Background Style */
.on_dark_bg,
.on_dark_bg h1,
.on_dark_bg h2,
.on_dark_bg h3,
.on_dark_bg h4,
.on_dark_bg h5, 
.on_dark_bg h6,
.on_dark_bg a { color:#fff; }

.sec_title {
  max-width:670px;
}
.sec_title.text-center {
  margin:0 auto;
}
.sec_title.text-right {
  margin:0 0 0 auto;
}

.title_underline:after {
  content: '';
  width: 80px;
  height: 5px;
  display: block;
  margin: 12px 0;
  background: #024236;
}
.title_uppercase {
  text-transform:uppercase;
}

.title_underline.text-center:after, 
.text-center .title_underline:after {
  margin-left: auto;
  margin-right: auto;
}

.title_underline.text-right:after, 
.text-right .title_underline:after {
  margin-left: auto;
  margin-right: 0;
}
button,
.button {
  background-color: #494A52;
  border: 1px solid #494A52;
  border-radius: 6px;
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: normal;
  height: auto;
  line-height: 1.1;
  margin: 0;
  padding: 15px 53px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
  width: auto;
  word-break: break-word;
}

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

button:hover,
button:focus,
.button:hover,
.button:focus {
  background-color: #21222A;
  border-color: #21222A;
  color: #FFF;
  text-decoration: none;
}

button:active,
.button:active {
  background-color: #71727A;
  border-color: #71727A;
  color: #FFF;
  text-decoration: none;
}

/* Link Style */
.link { 
  font-size:1rem; 
  line-height:1.4; 
  text-transform:uppercase; 
  display:block; 
  font-weight:600; 
  color:#1c85e8; 
}
.link svg { 
  fill:#1c85e8; 
  width:24px; 
  height:auto; 
  vertical-align:middle; 
  display:inline-block; 
}
/* Form */

form {
  font-family: Lato, sans-serif;
}

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

/* Labels */

form label {
  color: #33475B;
  display: block;
  font-size: 0.875rem;
  padding-top: 0;
  margin-bottom: 0.35rem;
  text-align: left;
  width: auto;
}

/* Help text - legends */

form legend {
  color: #33475B;
  font-size: 0.875rem;
}

/* Inputs */

.input {
  position: relative;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=file],
select,
textarea {
  background-color: #FFF;
  border: 1px solid #D1D6DC;
  border-radius: 3px;
  color: #33475B;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100% !important;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=file]:focus,
select:focus,
textarea:focus {
  outline-color: rgba(82, 168, 236, 0.8);
}

fieldset {
  max-width: 100% !important;
}

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

::-moz-placeholder {
  color: inherit;
}

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

:-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}


form input[type="radio"],form input[type="checkbox"] {  display:none }
form input[type="radio"]+span,form input[type="checkbox"]+span {  position:relative; display:block; padding-left:30px; cursor:pointer }
form input[type="radio"]+span:before,form input[type="checkbox"]+span:before {  content:"\f00c"; font-family:fontawesome; color:#024236 ; position:absolute; left:0px; top:4px; font-size:0; width:15px; height:15px; display:block; border:1px solid #024236;
    transition:all ease .3s; -webkit-transition:all ease .3s; text-align:center; line-height:14px }
form input[type="radio"]+span:before {  border-radius:50% }
form input[type="radio"]:checked+span:before {  background:#024236 ; border-color:#024236  }
form input[type="checkbox"]:checked+span:before {  border-color:#024236 ; font-size:12px; background:#024236 ; color:#fff; letter-spacing:0; }
.white-popup form input[type="radio"]+span:before,.white-popup form input[type="checkbox"]+span:before {border-color: #fff;/* color: #fff; */} 
.white-popup form input[type="radio"]:checked + span::before { background: #fff; }

li.hs-form-radio label {
    font-weight: 400;
}

/* Inputs - checkbox/radio */

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

.inputs-list > li {
  display: block;
  margin: 0.7rem 0;
  padding: 0;
  width: 100%;
}

.inputs-list input,
.inputs-list span {
  font-size: 0.875rem;
  vertical-align: middle;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  border: none;
  cursor: pointer;
  height: auto;
  line-height: normal;
  margin-right: 0.35rem;
  padding: 0;
  width: auto;
}

/* Inputs - datepicker */

.hs-fieldtype-date .input .hs-dateinput:before {
  color: #33475B;
  content:'\01F4C5';
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-today .pika-button {
  color: #343A40;
}

.fn-date-picker td.is-selected .pika-button {
  background: #343A40;
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover {
  background-color: #343A40 !important;
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

input[type=file] {
  background-color: transparent;
  border: initial;
  box-shadow: none;
  line-height: 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;
}

form .header {
  background-color: transparent;
  border: none;
}

/* GDPR */

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

/* Validation */

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

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

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
  font-weight: 400;

}

/* Submit button */

form input[type=submit],
form .hs-button {
  background-color: #494A52;
  border: 1px solid #494A52;
  border-radius: 6px;
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  font-weight: normal;
  height: auto;
  line-height: 1.1;
  margin: 0;
  padding: 15px 53px;
  position: relative;
  text-align: center;
  
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
  width: auto;
  word-break: break-word;
}

form input[type=submit]:hover,
form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:focus {
  background-color: #21222A;
  border-color: #21222A;
  
  color: #FFF;
}

form input[type=submit]:active,
form .hs-button:active {
  background-color: #71727A;
  border-color: #71727A;
  
  color: #FFF;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border: 1px solid;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table Cells */

th,
td {
  border: 1px solid;
  padding: 0.75rem;
  vertical-align: top;
}

/* Table Header */

thead th,
thead td {
  border-bottom: 2px solid;
  vertical-align: bottom;
}

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

.HeaderInner {position: relative;z-index: 999;}
.header__container.content-wrapper {width: 100%;display: flex;flex-wrap: wrap;justify-content: center;align-items: center;}
.header_logo.header_site_logo {width: 200px;display: block;}
.header_logo.header_site_logo img {max-width: 100%;}
.Navigation_row {width: calc(100% - 200px);display: block;}
.Navigation_Inner ul {width: 100%;display: flex;flex-wrap: wrap;justify-content: flex-end;}
.Navigation_Inner ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children > a { padding: 5px 0;text-transform: uppercase;position: relative;font-size: 16px;color: #fff;display: block;}
.Navigation_Inner ul li.hs-item-has-children>a:after {content: "\f107";position: relative;color:#57bf98;display: inline-block;vertical-align: middle;font-family: 'fontAwesome';padding-left: 8px;font-size: 22px;line-height: 16px;padding-bottom: 3px;}
.Navigation_Inner ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children + li.hs-menu-item.hs-menu-depth-1.hs-item-has-children {margin-left: 25px;}
.Navigation_Inner {padding-top: 12px;border-top: 1px solid #57bf98;}
.Navigation_Box {display: inline-block;text-align: left;}
.Navigation_row {text-align: right;}
.ClickSearchIcon {cursor: pointer}
.ClickSearchIcon i {-webkit-transition: all ease .3s;-moz-transition: all ease .3s;-o-transition: all ease .3s;-ms-transition: all ease .3s;transition: all ease .3s}
.searchInnerMain {width: 100%;}
.searchMain {position: fixed;top: 0;left: 0;margin: 0 auto;padding: 0 26px;width: 100%;height: 100vh;  background:rgba(2,66,54,1.0);z-index: 9999;display: table;opacity: 0;visibility: hidden;-webkit-transition: all ease .6s;-moz-transition: all ease .6s;-o-transition: all ease .6s;-ms-transition: all ease .6s;transition: all ease .6s}
.searchMain.active {opacity: 1;visibility: visible}
.closeSearch {position: absolute;width: 30px;top: 25px;right: 30px;cursor: pointer}
.closeSearch svg {width: 100%;height: 100%}
.searchInnerMain {display: table-cell;vertical-align: middle}
.search-box {position: relative;width: 100%;max-width: 500px;height: 60px;border-radius: 120px;margin: 0 auto}
.search-icon {left: 0;pointer-events: none;font-size: 1.22em;will-change: transform;color: #fff}
.search-icon,.go-icon {position: absolute;top: 0;height: 60px;width: 86px;line-height: 61px;text-align: center}
#search {position: absolute;top: 0;left: 0;width: 100%;height: 100%;border-radius: 120px;border: 0;background: rgba(255,255,255,0);padding: 0 68px 0 68px;color: #fff !important;font-size: 1.32em;font-weight: 400;outline: 0;border: 2px solid #fff}
.searchBar {text-align: right}
.searchInnerMain {text-align: center}
.searchInnerMain h4 {padding-bottom: 25px;color: #fff}
.ClickSearchIcon:hover {color: #f63}
.Navigation_BoxTop ul {list-style: none;padding: 0;display: flex;margin: 0;align-items: center;justify-content: flex-end;}
.Navigation_BoxTop ul li a {color: #fff;font-size: 14px;text-decoration: none;display: block;}
.Navigation_BoxTop ul li a span {margin-left: 5px;display: inline-block;vertical-align: middle;}
.Navigation_BoxTop ul li a svg {height: 18px;width: auto;display: inline-block;vertical-align: middle;}
.Navigation_BoxTop {padding-bottom: 17px;}
.Navigation_BoxTop ul li+li {padding-left: 25px;}
/* .Navigation_BoxTop ul li:last-child a {padding: 6px 15px;color: #024236;background-color: #57bf98;} */
.Navigation_BoxTop ul li:last-child a span {margin: 0;}
.Navigation_Inner ul li a {text-decoration: none;}
.Navigation_Inner ul li {position: relative;}
.Navigation_Inner ul {list-style: none;padding: 0;margin: 0;}
.header_logo.header_site_logo a {display: block;}
.header_logo.header_site_logo a img {width: 100%;height: auto;}
.V2 .header__container.content-wrapper {justify-content: start;}

.Navigation_Inner .hs-menu-wrapper ul.hs-menu-children-wrapper ul {box-shadow: none;position: relative;border-top: none;}
.Navigation_Inner .hs-menu-wrapper ul.hs-menu-children-wrapper ul li a {font-size: 15px;}
.Navigation_Inner ul li.hs-item-has-children ul li a:after {display: none;}
span.NavBtn {padding: 6px 15px;color: #024236;background-color: #57bf98;font-size: 14px;text-decoration: none;display: inline-block;}
span.NavBtn:hover {background-color: #fff;}

.Navigation_BoxTop.Navigation_Inner ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>a {padding: 0;font-size: 14px;}
.Navigation_BoxTop.Navigation_Inner {padding-top: 0;border-top: none;}
.Navigation_BoxTop.Navigation_Inner ul li.hs-item-has-children>a:after {display: none;}
.Navigation_BoxTop ul ul li+li {padding-left: 0;}
.Navigation_BoxTop.Navigation_Inner .hs-menu-wrapper ul.hs-menu-children-wrapper li a {font-size: 14px;}
.Navigation_BoxTop.Navigation_Inner ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>a {padding: 5px 0;}
.Navigation_BoxTop.Navigation_Inner ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children+li.hs-menu-item.hs-menu-depth-1.hs-item-has-children {margin-left: 0;}
a.expandMenu span.menuText {display: none;}
.Navigation_Inner .hs-menu-wrapper ul.hs-menu-children-wrapper ul {z-index: 1;}

@media (min-width: 992px) { 
  .Navigation_Inner .hs-menu-wrapper ul.hs-menu-children-wrapper {background: #57bf98;width: 260px;box-shadow: 0 2px 5px 0 rgb(29 44 76 / 15%);visibility: hidden;opacity: 0;display: block;width: 260px;text-align: left;-webkit-transition: opacity 0.4s;position: absolute;z-index: -1;right: 0;}
  .Navigation_Inner  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper {left: inherit;opacity: 1;top: 100%;visibility: visible;right: 0;}
  /*   .Navigation_Inner .hs-menu-wrapper ul.hs-menu-children-wrapper li a {font-size: 1rem;padding: 10px 20px;display: block;} */
  .Navigation_Inner .hs-menu-wrapper ul.hs-menu-children-wrapper li + li {border-top: 1px solid rgba(29, 44, 76, 0.05);}
  a.expandMenu {display: none;}
  .Navigation_Inner .hs-menu-wrapper ul li:hover ul.hs-menu-children-wrapper {opacity: 1;visibility: visible;}
  .Navigation_Inner .hs-menu-wrapper ul.hs-menu-children-wrapper {background: #024236 !important;padding: 10px 0;}
  .Navigation_Inner .hs-menu-wrapper ul.hs-menu-children-wrapper ul {padding: 0;}
  .Navigation_Inner .hs-menu-wrapper ul.hs-menu-children-wrapper li a {font-size: 15px;padding: 6px 20px;display: block;}
  .Navigation_Inner ul ul li a {color: rgb(255 255 255) !important;}
  .Navigation_Inner ul li a:before {content: '';width: 0;height: 3px;background: #57bf97;position: absolute;bottom: 0;left: 0;-webkit-transition: all ease .4s;-moz-transition: all ease .4s;-o-transition: all ease .4s;-ms-transition: all ease .4s;transition: all ease .4s}
  .Navigation_Inner ul li:hover a:before ,.Navigation_Inner ul li.active-branch a:before  {width: calc(100% - 21px);}
  .Navigation_Inner ul li ul a:before ,.Navigation_BoxTop  ul li a:before  {display:none;}

}

/* Mobile styles */
@media (max-width: 991px) {
  .header_logo.header_site_logo {width: 180px;display: block;}
  .HeaderInner {padding: 20px 0;}
  .expandMenu { display:block; }
  a.expandMenu { position:absolute; right:20px; top:50%; transform:translateY(-50%); }
  a.expandMenu i { position:relative; transition:all ease .3s; -webkit-transition:all ease .3s; width:35px; left:0; height:4px; opacity:1; display:block; background:#57bf98; margin:5px 0; }
  a.expandMenu.open i:first-child { transform:rotate(135deg); -webkit-transform:rotate(135deg); top:9px; position:relative; }
  a.expandMenu.open i:nth-child(2) { position:relative; left:-46px; opacity:0; }  
  a.expandMenu.open i:last-child { transform:rotate(-135deg); -webkit-transform:rotate(-135deg); top:-9px; position:relative; }

  .childExpand { position:absolute; top:7px; right:5px; width:30px; text-align:center; height:30px; margin:0; padding:8px; cursor:pointer; }
  .childExpand i { position:relative; width: 15px; left:0; height: 1px; opacity:1; display: block; background: #fff; margin: 6px 0; transition:all ease 0.3s; -webkit-transition:all ease 0.3s; -moz-transition:all ease 0.3s; }
  .childExpand i + i { position: relative; transform: rotate(90deg); -moz-transform: rotate(90deg); -webkit-transform: rotate(90deg); top: -7px; }
  .childExpand.open i { transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); }
  .childExpand.open i+i { transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); }


  .HeaderInner .header__container { justify-content: left; }
  .header__logo { width:170px; }
  .Navigation_row {border-top: 1px solid #fff;width: 100%;position: absolute;padding: 10px 0px;left: 0;top: 100%;display: none;background: #57bf98;text-align: left;box-shadow: 0px 4px 4px 0px rgb(153 153 153 / 30%);}
  .Navigation_Inner { padding:15px 0px; }
  .Navigation_Inner ul li a { padding: 10px 20px; display: block;}
  .Navigation_Inner .hs-menu-wrapper li.hs-menu-depth-1 > a:after { content:normal; }
  .Navigation_Inner .hs-menu-wrapper > ul > li { width:100%; }
  .Navigation_Inner .hs-menu-wrapper > ul > li + li { border-top:1px solid rgba(29, 44, 76, 0.05);  }
  .Navigation_Inner.hs-menu-wrapper ul.hs-menu-children-wrapper { display:none; position:static; opacity:1; visibility:visible; width:100%; border-top:none; box-shadow:none; padding-left:15px; }
  .Navigation_Inner ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children+li.hs-menu-item.hs-menu-depth-1.hs-item-has-children {margin-left: 0;}
  .Navigation_Box {display: block;text-align: left;padding: 0 20px;}
  .Navigation_BoxTop ul li a {color: #024236;}
  .Navigation_Inner ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>a {padding: 9px 0;text-transform: uppercase;position: relative;font-size: 16px;color: #024236;display: block;}
  .Navigation_Inner .hs-menu-wrapper ul.hs-menu-children-wrapper {background: transparent !important;border-top: none;box-shadow: none;display: none;width: 100%;position: relative;}
  .Navigation_Inner .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children>.hs-menu-children-wrapper {display: none;left: inherit !important;opacity: 1 !important;visibility: visible;top: 0 !important;border-top: 1px solid rgba(29,44,76,0.05);}
  .Navigation_BoxTop ul li a svg path, .Navigation_BoxTop ul li a svg polygon,.Navigation_BoxTop ul li a svg text {fill: #024236;}
  .Navigation_BoxTop ul li a svg line,.Navigation_BoxTop ul li a svg circle {stroke: #024236;}
  .Navigation_BoxTop ul li a:hover {color: #fff !important;}
  .Navigation_BoxTop {padding-bottom: 9px;border-bottom: 1px solid #fff;}
  .Navigation_BoxTop ul {justify-content: center;}
  /*   .Navigation_BoxTop ul li:last-child a {padding: 6px 15px;color: #024236;background-color: #ffffff;} */
  .Navigation_Inner ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children:hover>a {color: #fff !important;}
  .Navigation_BoxTop ul li+li {padding-left: 0;}
  .Navigation_Inner ul ul li a:hover, .Navigation_Inner ul ul li.active-branch>a:hover {color: #ffffff !important;}
  span.NavBtn {color: #57bf98;background-color: #024236;}
  /*   .Navigation_BoxTop ul li:last-child a:hover {color: #57bf98 !important;background-color: #fff;} */
  .Navigation_BoxTop.Navigation_Inner ul li.hs-menu-item.hs-menu-depth-1.hs-item-has-children>a {padding: 10px 0;}
  .searchBar {text-align: left;}
  .Navigation_BoxTop.Navigation_Inner ul li a {padding: 10px 0;color: #024236;}
}

@media (max-width: 650px) {

  .closeSearch {width: 20px;} 
  .search-box {max-width: 300px;height: 40px;}
  .search-icon, .go-icon {height: 40px;width: 60px;line-height: 41px;}
  /*   .Navigation_BoxTop ul li+li {padding-left: 0;}
  .Navigation_BoxTop ul li {width: 50%;padding: 10px 0;}
  .searchBar {text-align: left;}
  .Navigation_BoxTop ul {justify-content: start;flex-wrap: wrap;}
  .Navigation_BoxTop ul li:last-child {text-align: center;margin: 0 auto;} */
  .header_logo.header_site_logo {width: 175px;display: block;}

}
.footerLinkRow {display: flex;justify-content: start;flex-wrap: wrap;}
.footerCenter {display: flex;justify-content: start;flex-wrap: wrap;}
.footerLogo {max-width: 210px;}
.footerLinkInner {display: flex;justify-content: start;flex-wrap: wrap;}
.footer_simple_menu ul {padding: 0;margin: 0;list-style: none;}
.footer_simple_menu ul a {font-size: 16px;display: block;padding: 5px 0;}
.footer_simple_menu {padding: 25px 0;}
.footerbottomInner span {display: inline-block;vertical-align: middle;font-size: 14px;color:#57bf97 !important;line-height: 1;}
.footerbottomInner ul {list-style: none;padding: 0;margin: 0;padding-left: 15px;display: inline-block;vertical-align: middle;}
.footerbottomInner ul li {padding: 0 15px;display: inline-block;vertical-align: middle;margin: 0px !important;line-height: 1;border-left: 1px solid #57bf97;}
.footerbottomInner ul li {font-size: 16px;color: #57bf97;}
.footerbottom {padding: 40px 0;}
.footerColForm input[type=email]{background-color: transparent;border: none;border-bottom: 2px solid #57bf98;color: #fff !important;border-radius: 0;color: #33475b;display: inline-block;font-size: 16px;padding: 2px 50px 6px 0;width: 100% !important;}
.footerColForm  .hs-form-field {margin-bottom: 0;}
.footerColForm .actions {position: absolute;top: 6px;right: 4px;line-height: 0;}
.footerColForm form {position: relative;}
.footerColForm form input[type=submit],.footerColForm form .hs-button {background-color: transparent !important;font-size: 0;border: 0px solid #024236;border-radius: 0px;color: #fff;padding: 0;width: 17px;background-position: center !important;height: 16px;background-repeat: no-repeat;background-size: cover;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Layer_1' x='0px' y='0px' width='10.5px' height='9.875px' viewBox='0 0 10.5 9.875' enable-background='new 0 0 10.5 9.875' xml:space='preserve'%3E%3Cpolyline fill='none' stroke='%2357bf98' stroke-width='0.756' stroke-miterlimit='10' points='-350.699,-1068.383 -346.074,-1073.008 -350.699,-1077.634 ' style='&%2310;'/%3E%3Cline fill='none' stroke='%2357bf98' stroke-width='0.756' stroke-miterlimit='10' x1='-346.074' y1='-1073.009' x2='-355.958' y2='-1073.009'/%3E%3Cpolyline fill='none' stroke='%2357bf98' stroke-width='0.756' stroke-miterlimit='10' points='-350.699,-1068.383 -346.074,-1073.008 -350.699,-1077.634 '/%3E%3Cline fill='none' stroke='%2357bf98' stroke-width='0.756' stroke-miterlimit='10' x1='-346.074' y1='-1073.009' x2='-355.958' y2='-1073.009'/%3E%3Cpolyline fill='none' stroke='%2357bf98' stroke-width='0.756' stroke-miterlimit='10' points='-291.699,-1047.383 -287.074,-1052.008 -291.699,-1056.634 '/%3E%3Cline fill='none' stroke='%2357bf98' stroke-width='0.756' stroke-miterlimit='10' x1='-287.074' y1='-1052.009' x2='-296.958' y2='-1052.009'/%3E%3Cpolyline fill='none' stroke='%2357bf98' stroke-width='0.756' stroke-miterlimit='10' points='5.5,9.617 10.125,4.992 5.5,0.365 '/%3E%3Cline fill='none' stroke='%2357bf98' stroke-width='0.756' stroke-miterlimit='10' x1='10.125' y1='4.99' x2='0.241' y2='4.99'/%3E%3C/svg%3E")!important;}
.footerColRight {max-width: 380px;width: 100%;margin: 0 0 0 auto;display: block;padding-top: 20px;}
.footerFormIcon span {font-size: 16px;color: #57bf98 !important;font-weight: 500;}
.footerFormIcon ul {list-style: none;padding: 0;margin: 0;padding-top: 15px;}
.footerFormIcon ul li {display: inline-block;vertical-align: middle;margin-right: -4px;}
.footerFormIcon ul li a {display: block;line-height: 1;}
/* .footerFormIcon ul li a svg {height: 22px;width: auto;} */
.footerFormIcon ul li+li {padding-left: 20px;}
/* .footerFormIcon ul li a svg path {fill: #4cbf98;} */
.footerFormIcon ul li:before {
    display: none;
}

@media (max-width:1080px){
  .footerCol {width: 100%;}
  .footerColRight {margin: 0 auto;max-width: 700px;}
  .footerCenter {justify-content: center;}
  .footerTop {padding-bottom: 30px;}
}
@media (max-width:767px){
  .footerbottomInner ul li {padding: 10px 0;display: block;border-left: 0;}
  .footerbottomInner ul {padding-left: 0;padding-top: 10px;}
  .footerbottomInner span {display: block;}
  .footerCenter {justify-content: center;text-align: center;}
  .footerLinkCol {width: 100%;}
  .footerLogo {max-width: 210px;width: 100%;margin: 0 auto;}
  .footerTop {padding-top: 50px;}
}


@media (max-width:480px){
  .footer_simple_menu {width: 100%;}
}