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

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

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

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

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

/* Font Family */

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


.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Anchors */

a {
  cursor: pointer;
  display:inline-block;
}

.p-14 p{
  font-size: 14px;
  line-height: 21px;
}

.p-16 p{
  font-size: 16px;
  line-height: 150%;
}


.p-22 p{
  line-height:30px;
  font-size:22px;
}

.p-23 p{
  line-height:27px;
  font-size:23px;
}

.p-28 p{
  font-size:28px;
  line-height:160.714%;
}

.h-40 h3{
  font-size:40px;
  line-height:100%;
  text-transform:uppercase;
}





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


/* colAdjust */

.row-fluid .two-col-adjust>span{
  display:-webkit-box;
  display:-moz-box;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:flex;
  -webkit-box-align:stretch;
  -moz-box-align:stretch;
  -webkit-align-items:stretch;
  -ms-flex-align:stretch;
  align-items:stretch;
  flex-wrap:wrap;
  -wevkit-flex-wrap:wrap;
  flex-direction:row;
  -webkit-flex-direction:row;
  margin-right:-2.5%;
}
body .row-fluid .two-col-adjust span>.hs_cos_wrapper{
  display:-webkit-box;
  display:-moz-box;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:flex;
  flex-basis:46%;
  -webkit-flex-basis:46%;
  float:left;
  margin-right:4%;
  margin-top:40px;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
  position:relative;
}

/*==================================================
Three Col Adjust
==================================================*/
.row-fluid .three-col-adjust>span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  -wevkit-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  margin-right: 0%;
}
body .row-fluid .three-col-adjust span>.hs_cos_wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;

  flex-basis: 32.4%;
  -webkit-flex-basis: 32%;
  float: left;
  margin-right: 1.1%;
  margin-top: 2%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position:relative;
  flex-direction: column;
  -webkit-flex-direction: column;
}

/*==================================================
Four Col Adjust
==================================================*/
.row-fluid .four-col-adjust>span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  -wevkit-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  margin-right: -2.565%;
}
body .row-fluid .four-col-adjust span>.hs_cos_wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-basis: 22.5%;
  -webkit-flex-basis: 22.5%;
  float: left;
  margin-right: 2.5%;
  margin-top: 2.43%;
  box-sizing:border-box;
  position:relative;
}

/*==================================================
Five Col Adjust
==================================================*/
.row-fluid .five-col-adjust>span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  -wevkit-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  margin-right: -2.565%;
}
body .row-fluid .five-col-adjust span>.hs_cos_wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-basis: 17.5%;
  -webkit-flex-basis: 17.5%;
  float: left;
  margin-right: 2.5%;
  margin-top: 2.43%;
  box-sizing:border-box;
  position:relative;
}

/*==================================================
Six Col Adjust
==================================================*/
.row-fluid .six-col-adjust>span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  -wevkit-flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  margin-right: -2.565%;
}
body .row-fluid .six-col-adjust span>.hs_cos_wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-basis: 14%;
  -webkit-flex-basis: 14%;
  float: left;
  margin-right: 2.5%;
  box-sizing:border-box;
  position:relative;
}

.footer{
  padding-top:50px;
}

body .submitted-message {
  padding: 60px 20px ;
}


@media(max-width:1024px) and (min-width:768px){
  /*   font-size  */
  body .h1-45 h1{
    font-size: 45px;
    letter-spacing: -0.675px;
    line-height: normal;
  }
  body .h2-60 h2{
    font-size: 60px;
    line-height: 93.333%;
    letter-spacing: -0.9px;
  }
  body .h2-51 h2{
    font-size: 51.975px;
    font-weight: 500;
  }
  body .h3-38 h3{
    font-size: 38px;
  }
  body .p-20 p{
    font-size: 18px;
  }
  body .p-28 p{
    line-height: 125%;
    letter-spacing: normal;
    font-size: 22px;
  }
  body .cta-20 a.cta_button{
    font-size: 20px;
  }
  body .cta-18 a.cta_button{
    font-size: 18px;
  }
}
/*   font-weight */
body .h3-600 h3{
  font-weight: 600;
}
body .all-text-white.black_span span{
  color: #000000;
}
body .all-text-white.green_span span{
  color: #000000;
}
body .center {
  text-align: center;
}
body .left {
  text-align: left;
}
body .right {
  text-align: right;
}
body p{
  line-height: 134%;
}
body .p-16 p{
  font-size: 16px;
}
html {
  scroll-behavior: smooth;
  scroll-margin-top: 130px;
}
body a.cta_button,
body div.primary_button a.cta_button,
body div.secondary_cta a.cta_button{
  width: -webkit-fill-available;
}

body .margin-zero h1,
body .margin-zero h2,
body .margin-zero h3,
body .margin-zero h4,
body .margin-zero h5,
body .margin-zero h6,
body .margin-zero p{
  margin-bottom: 0;
}
@media(max-width: 767px){
  br{
    display: none;
  }
  .h-40 h3{
  font-size:26px;
  line-height:100%;
}
}

/************************************ Layout Css For Row Fluid ********************************************************  */
.row_fluid {
  width: 100%;
}

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

.row_fluid .span11 {
  width: 91.489361693%;
}

.row_fluid .span10 {
  width: 82.97872339599999%;
}

.row_fluid .span9 {
  width: 74.468085099%;
}

.row_fluid .span8 {
  width: 65.95744680199999%;
}

.row_fluid .span7 {
  width: 57.446808505%;
}

.row_fluid .span6 {
  width: 48.93617020799999%;
}

.row_fluid .span5 {
  width: 40.425531911%;
}

.row_fluid .span4 {
  width: 31.914893614%;
}

.row_fluid .span3 {
  width: 23.404255317%;
}

.row_fluid .span2 {
  width: 14.89361702%;
}

.row_fluid .span1 {
  width: 6.382978723%;
}

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

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

  .row_fluid .span11 {
    width: 91.436464082%;
  }

  .row_fluid .span10 {
    width: 82.87292817100001%;
  }

  .row_fluid .span9 {
    width: 74.30939226%;
  }

  .row_fluid .span8 {
    width: 65.74585634900001%;
  }

  .row_fluid .span7 {
    width: 57.182320438000005%;
  }

  .row_fluid .span6 {
    width: 48.618784527%;
  }

  .row_fluid .span5 {
    width: 40.055248616%;
  }

  .row_fluid .span4 {
    width: 31.491712705%;
  }

  .row_fluid .span3 {
    width: 22.928176794%;
  }

  .row_fluid .span2 {
    width: 14.364640883%;
  }

  .row_fluid .span1 {
    width: 5.801104972%;
  }
}

@media (min-width: 1280px) {
  .row_fluid {
    width: 100%;
  }

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

  .row_fluid .span10 {
    width: 82.905982906%;
  }

  .row_fluid .span9 {
    width: 74.358974359%;
  }

  .row_fluid .span8 {
    width: 65.81196581200001%;
  }

  .row_fluid .span7 {
    width: 57.264957265%;
  }

  .row_fluid .span6 {
    width: 48.717948718%;
  }

  .row_fluid .span5 {
    width: 40.170940171000005%;
  }

  .row_fluid .span4 {
    width: 31.623931624%;
  }

  .row_fluid .span3 {
    width: 23.076923077%;
  }

  .row_fluid .span2 {
    width: 14.529914530000001%;
  }

  .row_fluid .span1 {
    width: 5.982905983%;
  }
}


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

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  padding: 0px;
  width: 100%;
}
form input[type=text]:focus-visible,
form input[type=search]:focus-visible,
form input[type=email]:focus-visible,
form input[type=password]:focus-visible,
form input[type=tel]:focus-visible,
form input[type=number]:focus-visible,
form input[type=file]:focus-visible,
form select:focus-visible,
form textarea:focus-visible {
  outline:none;
}
form textarea {
  resize: none !important;
  overflow: hidden;
  min-height:185px;
  height:auto;
  max-height:max-content;
}

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

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

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

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

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

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

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

/* Validation */

.hs-form-required {
  color: #EF6B51;
}
/* 
.hs-input.invalid.error {
border-color: #EF6B51;
} */

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

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

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


/*    Error Message     */

form ul.hs-error-msgs{
  position: relative;
}
form .inputs-list > li{
  display: block;
  margin:0;
}
ul.hs-error-msgs li label.hs-error-msg {
  font-size: 12px;
  line-height: 14px;
  position: absolute;
  text-align: left;
}
ul.hs-error-msgs li label.hs-error-msg a{
  display:none;
}
form .hs_error_rollup{
  display: none;
}
body .submitted-message{
  font-size: 22px;
  line-height: 120%;
  text-align: center;
}
@media(max-width: 767px){
  body form ul.hs-error-msgs li label.hs-error-msg{
    font-size: 10px;
    line-height: 10px;
  }
  body form .hs-form-field{
    margin-bottom: 15px;
  }
  body .submitted-message{
    font-size: 15px;
  }
}
/* 

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



td,
th {
  vertical-align: top;
}



thead th {
  vertical-align: bottom;
}
 */

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

header .header-container .header-wrapper{
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 20px;
}

header .header-container{
  position:Fixed;
  top:0px;
  right:0px;
  left:0px;
  z-index:99;
  transform: translate3d(0px, 0px, 0px);
  background: linear-gradient(90deg, #061F46 0%, #092F6B 100%);
}

header .header-container .header-wrapper.equal-height-container.header_main {
  padding-top: 30px;
  padding-bottom: 23px;
}
header.header.fixed .header-container .header-wrapper.equal-height-container.header_main{
  padding-bottom: 23px;
  padding-top: 30px;
}
header .header-container.fixed .header-wrapper.equal-height-container.header_main {
  padding-top: 10px;
  padding-bottom: 10px;
}

header .header-container.fixed{
  position:fixed;
  top:0px;
  left:0px;
  right:0px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px); /* Safari/Chrome */
  -moz-backdrop-filter: blur(25px); /* Firefox */
  -o-backdrop-filter: blur(25px); /* Opera */
  -ms-backdrop-filter: blur(25px); /* Edge */
  box-shadow: 0px 4px 20px 0px rgb(0 0 0 / 15%);
}

header .header-container .header-wrapper > .row-fluid-wrapper > .row-fluid{
  align-items:center;
}

header .header-container .header-menu-container ul li.hs-menu-item a{
  color: #ffffff;
  letter-spacing: normal;
}
header .header-container .header-menu-container ul li.hs-menu-item.hs-menu-depth-2 {
  display: inline-block;
  margin: 0;
  padding: 5px 13px;
  width: 100%;
}

header .header-container .header-menu-container ul li.hs-menu-item.hs-menu-depth-1 {
  display: inline-block;
  float: left;
  margin: 0;
}
header.header.fixed .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper.open_dropdown{
  padding-top: 25px;
}

@media(min-width: 1025px) and (max-width: 1260px){
  body header .header-container .header-menu-container ul li.hs-menu-item a{
    font-size: 16px;
    padding: 2vw 1.6vw;
  }
}

@media(min-width:768px){
  header .header-container .header-menu-container ul li.hs-menu-item.hs-menu-depth-1:last-child {
    padding-right: 0px;
  } 
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper.open_dropdown{
    top:60px;
  }
  body header.header.fixed .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper.open_dropdown{
    padding-top:50px;
    top:60px;
  }
  body header.header .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper.open_dropdown{
    padding-top:50px;
    top:60px;
  }
  header .header-container .header-menu-container ul li.hs-menu-item a:hover{
    opacity:0.8;
  }
}
@media(min-width:1025px){
  header .header-container .header-menu-container ul li.hs-menu-item a{
    padding: 20px 24px 20px;
    cursor:pointer;
  }
  header .header-container{
    min-height:118px;
  }
}
header .header-container .header-cta-container .flex_me{
  display:flex;
  align-items:center;
  text-align: right;
  justify-content:flex-end;
}

body main.body-container-wrapper {
  padding-top: 117px;
}

div#hs_menu_wrapper_header_menu_ {
  line-height: 0;
}
header .header-container .logo-container.span3.vertical-center a{
  line-height: 0;
}
div#hs_cos_wrapper_header_logo {
  line-height: 0;
}

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

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

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper.open_dropdown {
  left: 0;
  opacity: 1;
  top: 64px;
  padding-top: 37px;
  display: block !important;
}
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper.open_dropdown {
  left: 100%;
  opacity: 1;
  top: 0;
}

footer.footer .hs_cos_wrapper_type_logo img {
  display: block;
  margin:0 auto;
}

/* Menu and simple menu */
.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  justify-content:end;
  padding-left: 0;
}
/* Horizontal menu */
.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

/* Vertical menu */
.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

header .header-container .header-menu-container ul li.hs-menu-item a{
  position:relative;
  z-index:1;
}
/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}
@media(min-width:1025px){
  header .header-container .header-menu-container ul li.hs-menu-item ul li a{
    font-size: 18px;
  }
  body .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children>.hs-menu-children-wrapper {
    min-width: 370px;
  }
}
@media(max-width:1024px) and (min-width:768px){
  header .header-container .header-menu-container ul li.hs-menu-item{
    margin:0px 10px;
  }
  header .header-container .header-wrapper.equal-height-container.header_main, header.header.fixed .header-container .header-wrapper.equal-height-container.header_main{
    padding-top:15px;
    padding-bottom:15px;
  }
  body .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children>.hs-menu-children-wrapper:before{
    top:90px !important;
  }
  body header .header-container .header-menu-container ul li.hs-menu-item a{
    font-size:14px;
    line-height: normal;
    letter-spacing: normal;
    padding: 2vw 0.9vw;
  }
  body header .header-container .header-menu-container ul li.hs-menu-depth-1.hs-item-has-children a{
    padding-right:20px;
  }
  body main.body-container-wrapper {
    padding-top: 80px;
  }
  header .header-container{
    min-height:80px;
  }
  body .footer .footer_container .right_column .social_share .social_share ul li {
    margin-right: 15px !important;
  }
  header .header-container .header-wrapper.equal-height-container.header_main{
    padding-top: 15px;
    padding-bottom:15px;
  }
  header .header-container .header-menu-container ul li.hs-menu-item ul li a{
    font-size: 14px;
  }
  body .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children>.hs-menu-children-wrapper {
    min-width: 290px;
  }
}
@media(min-width:768px){
  amp-sidebar#hs-amp-sidebar {
    display: block !Important;
  }
  div#hs_menu_wrapper_header_menu_{
    display:block !important;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
  }

  header .header-container .header-menu-container ul li.hs-menu-item a.active:before {
    position: absolute;
    content: '';
    right: 0;
    top: 45%;
    bottom: 0;
    z-index: 1;
    display: flex;
    height: 20px;
    width: 15px;
    background: url(https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/Arrow%20Down%20White.svg);
    background-repeat: no-repeat;
    background-size: contain;
    justify-content: center;
    align-items: center;
  }

  body .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children>.hs-menu-children-wrapper:before {
    position: fixed;
    content: '';
    left: 0;
    right: 0;
    top: 118px;
    background: var(--primary-color);
    z-index: 0;
    height: 100%;
    width: 100%;
    min-width: 1000px;
    min-height: 305px;
    transition:all 0.3s ease-in-out;
  }
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
    visibility:hidden; 
  }
}
header .header-container .header-menu-container ul li.hs-menu-item ul li a{
  background: var(--primary-color);
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0 100%);
  line-height: 144.44%;
  margin-bottom: 0;
  padding: 4px 12px;
  position: relative;
  padding-right: 21px;
  display: inline-block;
}
header .header-container .header-menu-container ul li.hs-menu-item ul li a:hover{
  background: #0D2B5B;
}
@media(max-width:767px){
  .fliping-banner .left-text .sentence{
    margin-bottom:40px !important;
  }
  .fliping-banner .right-text .slider span br{
    display:block !important;
  }

  header .header-container .header-wrapper.equal-height-container.header_main, header.header.fixed .header-container .header-wrapper.equal-height-container.header_main{
    padding-bottom: 25px;
    padding-top: 24px;
  }
  header .header-container .header-menu-container ul li.hs-menu-item.hs-menu-depth-2{
    padding: 5px 16px;
  }
  header .header-container .header-menu-container ul li.hs-menu-item ul li a:hover{
    background: #385A90;
  }
  header .header-container .header-menu-container ul li.hs-menu-item ul li a{
    background: none;
  }
  body main.body-container-wrapper {
    padding-top: 93px;
  }
  header .header-container .search_block {
    display: none;
  }
  header .header-container .logo-container{
    display:inline-block;
    width:50%;
    position: relative;
    z-index: 1;
    max-width:140px;
  }
  body.mobile-open header .header-container.fixed {
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0); /* Safari/Chrome */
    -moz-backdrop-filter: blur(0); /* Firefox */
    -o-backdrop-filter: blur(0); /* Opera */
    -ms-backdrop-filter: blur(0); /* Edge */
  }
  header .header-container{
    background-color:transparent;
  }

  header .header-container.fixed {
    background-color: ;
  }

  header .header-container .header-menu-container ul li.hs-menu-item ul li a{
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 144.444%;
    text-transform: uppercase;
  }

  header .header-container .header-menu-container .mobile-trigger{
    display: inline-block;
    float: right;
    position: absolute;
    right: 30px;
    padding: 15px 5px;
    cursor:pointer;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: max-content;
  }

  header .header-container .header-menu-container .mobile-trigger i{
    background-color:var(--white-color);
    height:2px;
    width:25px;
    display: block; 
  }

  header .header-container .logo-container.span3.vertical-center a img {
    min-width: 169.556px;
    min-height: 44.33px;
  }

  header .header-container .header-menu-container .mobile-trigger i::after{
    background-color:var(--white-color);
    height:2px;
    width:25px;
    display: block;
    transform: rotate(-360deg);
    content:'';
    position:relative;
    bottom:-7px;
  }

  header .header-container .header-menu-container .mobile-trigger i::before{
    background-color:var(--white-color);
    height:2px;
    width:25px;
    display: block;
    transform: rotate(-360deg);
    content:'';
    position:relative;
    bottom:8px;
  }

  header .header-container .header-menu-container .header-cta-container {
    display: block !important;
    padding-bottom: 42px;
  }

  body.mobile-open header .header-container .header-menu-container #hs_menu_wrapper_header_menu_ {
    display: unset !important;
    opacity: 1;
    visibility: visible;
    width: 100%;
    right: 0;
    width: 100%;
    display:block !important;
  }

  body.mobile-open header .header-container .header-menu-container .header-cta-container,
  body.mobile-open header .header-container .header-menu-container #hs_menu_wrapper_header_menu_{
    width: 100%;
  }

  body header .header-container .header-menu-container #hs_menu_wrapper_header_menu_{
    background: linear-gradient(117deg, #061f46 33.59%, #092F6B 119.12%);
    height: 100vh;
    margin-left: auto;
    top: 0;
    z-index: 1;
    max-width: 335px;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    width: 100%;
    left:auto;
    right:0;
    bottom:0;
  }

  header .header-container .header-wrapper.equal-height-container.header_main {
    padding-bottom: 25px;
    padding-top: 24px;
  }

  header .header-container .header-wrapper {
    padding: 0 30px;
  }

  header .header-container{
    padding-bottom: 0px;
    position: fixed;
    backdrop-filter: unset;
    box-shadow: unset;
  }

  header .header-container .header-menu-container #hs_menu_wrapper_header_menu_ > ul {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    padding-bottom: 100px;
    padding-top: 24px;
    padding-left: 23px;
    padding-right: 24px;
  }

  header .header-container .header-menu-container ul li.hs-menu-item.hs-menu-depth-1 {
    padding: 10px;
  }

  .header-cta-container.clone .header-cart-container,
  header .header-cta-container {
    display: none;
  }

  body.mobile-open header .header-container .header-menu-container .mobile-trigger {
    padding: 6px;
    right: 32px;
    z-index: 2;
    top: 25.5px;
  }

  body.mobile-open header .header-container .header-menu-container .mobile-trigger i:after {
    content: unset;
  }
  body.mobile-open header .header-container .header-menu-container .mobile-trigger i {
    position: relative;
    background-color: transparent;
    width: 14px;
    height: 25px; /* Updated height to 25px */
    transform: rotate(45deg);
  }

  body.mobile-open header .header-container .header-menu-container .mobile-trigger i::before,
  body.mobile-open header .header-container .header-menu-container .mobile-trigger i::after {
    content: "";
    position: absolute;
    background-color: var(--white-color);
  }

  body.mobile-open header .header-container .header-menu-container .mobile-trigger i::before {
    width: 2px;
    height: 25px; /* Updated height to 25px */
    top: 0px;
    left: 6px;
  }

  body.mobile-open header .header-container .header-menu-container .mobile-trigger i::after {
    width: 25px;
    height: 2px;
    top: 11px; /* Adjusted top position for vertical line */
    left: -5px;
  }

  header .header-container.fixed .header-wrapper.equal-height-container.header_main {
    padding-top: 23px;
    padding-bottom: 20px;
  }  

  body.search-open header .header-container .header-menu-container ul li {
    display: none;
  }

  body.search-open header .header-container .header-cta-container .header-search-container form {
    position: unset;
    opacity: 1;
    visibility: visible;
    padding-top: 10px;
  }

  header .header-container .header-cta-container .header-search-container form .hs-search-field__suggestions-container ul {
    border: none;
    margin: unset;
    padding: unset;
    display: block;
  }

  .header-social.clone {
    display: block;
    margin-top: 55px;
  }

  header .header-container .header-menu-container .mobile-trigger {
    height: 25px;
    max-width: 25px;
    position: absolute;
    right: 38px;
    top: 30.5px;
  }

  amp-sidebar#hs-amp-sidebar {
    display: none;
  }

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

  header ul li.hs-item-has-children .child-trigger i{
    width: 12px;
    height: 8px;
    right: -6px;
    top: 24px;
  }

  header ul li.hs-item-has-children .child-trigger i:before{
    background: url(https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/Arrow%20Down%20White.svg) no-repeat;
    color: var(--white-color);
    content: "";
    cursor: pointer;
    font-style: normal;
    height: 10px;
    position: absolute;
    right: 10px;
    top: 20px;
    width: 15px;
    z-index: 1;
    padding: 0;
  }

  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }

  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper{
    top:10px;
  }
}


@media(max-width:350px){
  header .header-container .header-menu-container ul li.hs-menu-item.hs-menu-depth-2{
    padding:5px;
  }
}



/************** 1.  Variables Started   **************/




/**********    default      **************/

body .banner_slider_section .slick-next.slick-disabled:before,
body .banner_slider_section .slick-prev.slick-disabled:before{
  opacity: 1;
}
body .slick-next:before,
body .slick-prev:before{
  opacity: 1;
}

@media(max-width: 900px){
  .mobile_space{
    padding: 60px 0;
  }
}

body.compensate-for-scrollbar {
  margin-right: 0 !important;
}

.two_col_pdf .secondary_cta a.cta_button{
  text-transform: uppercase;
} 
/**************  Variables Ended   **************/
/************** 2. Banner Slider Section Started   **************/

.banner_slider_section .main_conta span{
  color:#ffff;
  line-height:normal;
  position:relative;
}

.banner_slider_section .slick-slide{
  margin:0 15px;
}

.banner_slider_section .cta_conta {
  margin-left: 0px;
}
.banner_slider_section .main_conta h1{
  text-transform: uppercase;
}

.banner_slider_section .image_container {
  position: relative;
  left: -25px;
  top:2px;
} 

.banner_slider_section .main_conta{
  display:flex;
  gap:30px;
  width:100%;
}

.banner_slider_section .main_conta .left_col{
  max-width:725px;
  width:71%;
  margin-left:22px;
}

.banner_slider_section .main_conta .right_col{
  width:40%;
}

.banner_slider_section .main_conta .right_col img{
  transform: scale(1.18);
}

.banner_slider_section .desc_conta{
  margin: 15px 0 52px 0px;
  max-width: 658px;
}

.banner_slider_section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}

.banner_slider_section .background_image_conta{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -2;
}

.banner_slider_section video#myVideo{
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -2;
  height:100%;
  width: 100%;
  max-width: 100%;
}

.banner_slider_section .content_wrapper{
  margin: 0 auto;
  padding: 0 40px;
}

.banner_slider_section .slick-track {
  display: flex;
  align-items: center;
}

.banner_slider_section .inner_conta .cta_conta a.cta_button{
  padding-left: 12px;
  padding-right: 12px;
}

.banner_slider_section {
  position: relative;
  z-index: 1;
}

.banner_slider_section  ul.slick-dots {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 0 10px;
  margin-top: 70px;
  margin-bottom:0;
}

.banner_slider_section  ul.slick-dots li{
  font-size: 0;
  line-height: 0;
  margin: 0;
}

.banner_slider_section  ul.slick-dots button{
  background-color: #D9D9D9;
  border: none;
  height: 13px;
  width: 13px;
  border-radius: 0%;
  padding: 0;
  font-size: 0;
  cursor: pointer;
}
.banner_slider_section  ul.slick-dots li.slick-active button{
  background-color: #a2bec5;
}

@media(max-width: 1024px) and (min-width: 768px){
  .banner_slider_section .main_conta .left_col {
    margin-left: 0px;
  }
  .banner_slider_section .main_conta h1{
    line-height:1.2;
  }
  .banner_slider_section ul.slick-dots{
    margin-top: 60px;
  }
}

@media(max-width: 767px){
  .banner_slider_section .content_wrapper {
    padding: 0 15px 0 25px;
  }
  .banner_slider_section ul.slick-dots{
    margin-top:0px;
  }
  .banner_slider_section .main_conta .right_col img {
    transform: scale(1);
  }
  .banner_slider_section .desc_conta {
    margin: 15px 0 33px 0px;
    max-width: 198px;
  }
  .banner_slider_section .image_container {
    left: 0%;   
    max-width: 100%;
    margin-left: auto;
  }
  .banner_slider_section .main_conta{
    flex-direction:column;
    gap: 5px;
  }
  .banner_slider_section .main_conta h1 {
    line-height: 43px;
    font-size: 40px;
  }
  .banner_slider_section .main_conta .p-23 p {
    font-size: 15px;
    line-height: 18px;
  }
  .banner_slider_section .main_conta a.cta_button, button {
    font-size: 10px;
    padding: 11px 45px;
  }

  .banner_slider_section .main_conta .left_col {
    width: 100%;
    margin-left: 0px;
  }
  .banner_slider_section .main_conta{
    position:relative;
  }
  .banner_slider_section .main_conta .right_col{
    width: 100%;
  }
}

@media(max-width:350px){
  .banner_slider_section .content_wrapper {
    padding: 0 15px;
  }
}


/* Slick arrow css */
.banner_slider_section button.slide-arrow.prev-arrow.slick-arrow,
.banner_slider_section button.slide-arrow.next-arrow.slick-arrow{
  position: absolute;
  top: 45.3%;
  bottom: auto;
  z-index: 1;
  cursor:pointer;
  border: none;
  background: transparent;
  padding: 0;
}

@media(min-width: 1341px){
  .banner_slider_section button.slide-arrow.prev-arrow.slick-arrow{
    left: -4%;
    right: auto;
  }
  .banner_slider_section button.slide-arrow.next-arrow.slick-arrow{
    left: auto;
    right: -5%;
  }
}

@media(max-width: 1340px) and (min-width: 768px){
  .banner_slider_section button.slide-arrow.prev-arrow.slick-arrow{
    left: -30px;
  }
  .banner_slider_section button.slide-arrow.next-arrow.slick-arrow{
    right: -30px;
  }
}

@media(max-width: 767px){
  .banner_slider_section button.slide-arrow.prev-arrow.slick-arrow,
  .banner_slider_section button.slide-arrow.next-arrow.slick-arrow{
    display:none !important;
  }
}

text {
  line-height:1;
  position: relative;
  z-index: 1;
  display: inline-block;
}

text:before {
  background: #91b7c5;
  bottom: 0;
  content: "";
  left: -5px;
  position: absolute;
  right: -5px;
  top: 0;
  z-index: -1;
}

/**************  Banner Slider Section Ended   **************/


/* bannner module css start */
.banner_section .main_conta h1{
  text-transform: uppercase;
}

.banner_section .main_conta .heading_conta.margin-zero {
  margin-bottom: 26px;
}

.banner_section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}

.banner_section video#myVideo{
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -2;
  height:100%;
  width: 100%;
  max-width: 100%;
}

.banner_section .content_wrapper{
  padding: 0 40px;
}


@media(max-width: 767px){
  .banner_section .content_wrapper {
    padding: 0px 30px;
  }


  .banner_section .desc_conta {
    margin: 15px 0 28px 10px;
    max-width: 100%;
  }

  .banner_section .main_conta .p-23 p {
    font-size: 15px;
    line-height: 18px;
  }

  .banner_section .main_conta .heading_conta.margin-zero {
    margin-bottom: 26px;
  }
  .banner_section br{
    display:block;
  }
}





/* two_col_with_image module css start */
.two_col_with_image .image_container .image_content{
  position: absolute;
  bottom: -86px;
  z-index: 5;
  width:50%;
}

.two_col_with_image{ 
  position: relative;
}

.two_col_with_image:before{
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  height: 1000px;
  left: 0;
  position: absolute;
  top: -175px;
  width: 100%;
  z-index: -5;
  background-image:url(https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/image%207-4.png);
}

.two_col_with_image h2{
  text-transform:uppercase;
  line-height:53.72px;
}

.two_col_with_image .heading_conta {
  margin-bottom: 30px;
}

.two_col_with_image .flex_container{
  display: flex;
}

.two_col_with_image.all-text-white span{
  color: var(--secondary-color);
}
@media(max-width: 767px){
  .two_col_with_image .image_container .image_content{
    position:relative;
    bottom: 0px;
    width:100%;
  }
  .two_col_with_image .image_container {
    margin-bottom: 0px;
    margin-top: -50px;
  }
  .two_col_with_image .desc_conta {
    max-width: 229px;
  }
  .two_col_with_image h2 {
    font-size: 40px;
    line-height: 95%;
  }
  .two_col_with_image .heading_conta {
    margin-bottom: 0;
  }
}


@media(max-width: 360px){
  .two_col_with_image .image_container {
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
/* two_col_with_image module css end */


/* table  module css start */

.table_section tr:nth-child(2) td:nth-child(2) {
  position: relative;
}
.table_section tr td:nth-child(2) {
  position: relative;
}

.table_section tr.header{
  top: 36px;
}

.table_section tr td:nth-child(2):after{
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: -1;
  border-left:1px solid #FFF;
  border-right:1px solid #FFF;
  background-repeat: no-repeat;
  width: 100%;
  box-shadow: 0px 0px 10px 0px #A5BEC6;
  background-color:#A5BEC6;
}

.table_section tr:nth-child(2) td:nth-child(2):after{
  border-radius: 7px 7px 0 0;
  border-top: 1px solid #fff;
  height: 32%;
  width: 100%;
  bottom: 0;
} 

.table_section tr:last-child td:nth-child(2):after{
  height: 146%;
  border-radius:0 0 7px 7px ;
  bottom: -24px;
  border-bottom: 1px solid #ffff;
} 
.table_section tr td:nth-child(2):before{
  background-color:#ffff;
}
.table_section tr td:nth-child(2){
  border:none;
}
.table_section tr.tab-1 td {
  border-right: none;
}
.table_section tr.tab-1:nth-child(2) td {
  border-top: none ;
}
.table_section tr:nth-child(2) td:nth-child(2):before{
  background-repeat: no-repeat;
  bottom: 0;
  content: "";
  height: 76px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
  width: 100%;
  max-width: 76px;
  margin: 0 auto;
  background:url(https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/Icon_table.png);
}
.table_section tr td:nth-child(2) img{
  filter: brightness(0) invert(1);
  width: 29px;
  height: 19px
}

.table_section td:first-child,body .table_section th:first-child  {
  width: 52%;
  text-align: left;
  padding-right: 10px;
  padding-bottom: 12px;
}

.table_section tr{
  position:relative;
}

.table_section h6{
  line-height: normal;
}
.table_section td:first-child .dfs_container{
  display: flex;
  width:100%;
  align-items:center;
  gap: 10px;
}
.table_section td:first-child .dfs_container span{
  display: flex;
  align-items:center;
}
.table_section th{
  width:8.8%;
}
.table_section table{
  max-width:100%;
  margin-left: 66px;
  margin-top: 5px;
}
.table_section td{
  padding-bottom: 10px;
  padding-top: 5px;
  width: 8.8%;
  position:relative;
  text-align: center;
}
.table_section tr td:nth-child(2){
  width:12.75%;
}
.table_section img.hover_img{
  width: 20px;
  height: 20px;
}
.table_section  h6{
  margin:0;
  font-weight: 500;
}
.table_section td.title_bold h6{
  font-weight: 700;
}
.table_section .arrow_icon {
  height: 19px;
  width: 22px;
  display: block;
  margin: auto;
}
.table_section tr td:nth-child(2) .arrow_icon{
  width:30px;
}
.table_section .icon_img {
  left: -46px;
  max-height: 44px;
  max-width: 42.383px;
  position: absolute;
  top: 13px;
}
.table_section table {
  border-collapse: separate;
  border-spacing: 0; /* Removes the space between cells */
  border-radius: 10px; /* Rounds the corners of the table */
}
.table_section td {
  border: 1px solid #C2D1D9;
  min-width: 92px;
  border-bottom:none;
}
.table_section tr.tab-1 td{
  padding-top:22px;
}
.table_section td:last-child{
  border-right: none;
}
.table_section tr:last-child td{
  border-bottom: 1px solid #C2D1D9;
}
.table_section tr:first-child th {
  border-top: none;
  font-size: 14px;
}
.table_section tr:last-child td:nth-child(2){
  border:none;
}
.table_section tr td{
  border-left:none;
}
.table_section .top_container{
  text-align: center;
}
.table_section .top_container p {
  line-height: 120%;
  margin: 0;
}
.table_section .top_container h3 {
  margin: 0 0 .9rem;
}

@media(max-width: 1024px){
  .table_section tr:last-child td:nth-child(2):after{
    height: 155%;
  }
  .table_section td:first-child, body .table_section th:first-child {
    width: 35%;
  }
  .table_section h6{
    font-size: 16px;
  }
  .table_section .icon_img {
    left: -36px;
    max-height: 30px;
    max-width: 30.383px;
    top: 25px;
  }
  .table_section table {
    margin-left: 38px;
  }

  .table_section tr:first-child th {
    font-size: 12px;
  }
  .table_section td:first-child .dfs_container {
    gap: 5px;
  }
  .table_section .top_container {
    margin-bottom: 30px;
  }
  .table_section .top_container h3{
    font-size:40px;
  }
  .table_section td {
    min-width: 72px;
  }
}

@media(max-width: 767px){
  .table_section tr:last-child td:nth-child(2):after{
    height: 155%;
  }
  .table_section .top_container h3{
    line-height:38px;
  }
  .table_section .top_container {
    max-width: 206px;
    margin: 0 auto 16px;
    text-align: center;
  }
  .table_section table {
    margin-top: 0;
    max-width: 100%;
    width: 100%;
    min-width:767px;
  }
  .table_section .table_container {
    overflow: auto;
    overflow-y: hidden;
    padding-bottom: 40px;
  }
  .table_section .arrow_icon {
    height: 16px;
    width: 18px;
  }
  .table_section tr td:nth-child(2) .arrow_icon {
    width: 24px;
  }
  .table_section img.hover_img {
    height: 16px;
    width: 17px;
  } 
  .table_section td {
    min-width: 72px;
  }
}

@media(max-width: 350px){
  .table_section tr:first-child th {
    font-size: 12px;
  }
  .table_section h6{
    font-size: 12px;
  } 
  .table_section .icon_img {
    left: -35px;
    max-height: 30px;
    max-width: 30.383px;
    top: 24px;
  }
  .table_section td {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
/* table  module css end */

/* two_col_text_slider  module css start */
.two_col_text_slider .right_coll{
  max-width: 62%;
}

.two_col_text_slider .right_coll .desc_conta{
  max-width: 577px;
}

.two_col_text_slider .left_coll {
  max-width: 34%;
}

.two_col_text_slider .desc_conta p{
  font-weight:500;
} 

.two_col_text_slider .desc_conta p span{
  font-weight:800;
} 

.two_col_text_slider .slide-content .main_conta{
  display:flex;
  gap: 76px;
  margin-bottom: 40px;
}

.two_col_text_slider button.slick-prev.slick-arrow,
.two_col_text_slider button.slick-next.slick-arrow{
  background: transparent;
  border: none;
  bottom: auto;
  font-size: 0;
  padding: 0;
  position: absolute;
  bottom: -5px;
  height: 41px;
  width: 21px;
  z-index: 1;
}

.two_col_text_slider button.slick-prev.slick-arrow{
  left: 41.5%;;
  right: auto;
}
.two_col_text_slider button.slick-next.slick-arrow{
  left: auto;
  right:53%;;
}

.two_col_text_slider {
  position: relative;
  z-index: 1;
}

.two_col_text_slider  ul.slick-dots {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 25px 0;
  margin: 0;
}

.two_col_text_slider  ul.slick-dots li{
  font-size: 0;
  line-height: 0;
  margin: 0;
}

.two_col_text_slider  ul.slick-dots button{
  background-color: #D9D9D9;
  border: none;
  border-radius: 0%;
  font-size: 0;
  height: 13px;
  cursor:pointer;
  padding: 0;
  width: 12px;
}

.two_col_text_slider  ul.slick-dots li.slick-active button{
  background-color: #A5BEC6;
}

.two_col_text_slider button.slick-prev.slick-arrow::before,
.two_col_text_slider button.slick-next.slick-arrow::before{
  background-image: url('https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/%231.svg');
  position: absolute;
  z-index: 2;
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.two_col_text_slider button.slick-prev.slick-arrow::before{
  right: auto;
  left: 0;
  transform: rotate(0deg);
}
.two_col_text_slider button.slick-next.slick-arrow::before{
  right: 0;
  left: auto;
  transform: rotate(180deg);
}
.two_col_text_slider .slide-content {
  margin: 10px;
}

@media(max-width: 1024px)and (min-width: 768px){
  .two_col_text_slider .slide-content .main_conta {
    gap: 30px;
  }
  .two_col_text_slider button.slick-prev.slick-arrow{
    left: 38%;
  }
  .two_col_text_slider button.slick-next.slick-arrow{
    right: 55%;
  }

  .two_col_text_slider button.slick-next.slick-arrow, .two_col_text_slider button.slick-prev.slick-arrow{
    height: 36px;
    width: 18px;
  }
  .two_col_text_slider h3 {
    font-size: 45px;
    line-height: 45px;
  }
}

@media(max-width: 767px){
  .two_col_text_slider ul.slick-dots li.slick-active button {
    background-color: var(--secondary-color);
  }
  .two_col_text_slider  ul.slick-dots button{
    background-color: #D9D9D9;
    border: none;
    border-radius: 20%;
    font-size: 0;
    cursor:pointer;
    height: 13px;
    padding: 0;
    width: 12px;
  }

  .two_col_text_slider br {
    display: block;
  }

  .two_col_text_slider .p-28 p {
    font-size: 15px;
    line-height: 140.714%;
  }

  .two_col_text_slider h3 {
    font-size: 40px;
    line-height: 38px;
  }

  .two_col_text_slider  .left_coll br {
    display: block ;
  }

  .two_col_text_slider .right_coll{
    max-width: 100%;
  }
  .two_col_text_slider .right_coll .desc_conta{
    max-width: 100%;
  }
  .two_col_text_slider .left_coll {
    max-width: 265px;
    margin: 0 auto 46px;   
    text-align:center;
  }

  .two_col_text_slider .slide-content .main_conta {
    display: block;
  }
  .two_col_text_slider button.slick-prev.slick-arrow{
    left: 3%;
  }
  .two_col_text_slider button.slick-next.slick-arrow{
    right: 5%;
  }
  .two_col_text_slider button.slick-prev.slick-arrow,
  .two_col_text_slider button.slick-next.slick-arrow{
    bottom: 2%;
    height: 28px;
    width: 14px;
  }

  .two_col_text_slider ul.slick-dots {
    padding: 15px 0;
  }
  .two_col_text_slider .top_container {
    padding-bottom: 0px;
  }
  .two_col_text_slider .flex_conta {
    gap: 5%;
  }
  .two_col_text_slider .left_col{
    max-width: none;
    width: 37%;
  }
  .two_col_text_slider .image_conta{
    max-width: none;
  }
}

/* two_col_text_slider  module css end */
/* text list  module css start */
.text_list:after{
  background-image: url(https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/Galatea%20vector.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  height: 94%;
  left: -5%;
  pointer-events: none;
  position: absolute;
  width: 111%;
  z-index: 0;
}
.text_list  .heading_conta{
  max-width:770px;
  margin:0 auto;
  text-align: center;
}
.text_list h2{
  line-height: 95%;
  text-transform: uppercase;
  margin:0;
}
.text_list ul {
  list-style: none;
  padding:0;
  display: flex;
  gap:10px;
  margin-top: 100px;
  position:relative;
}
.text_list ul li{
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  padding: 10px;
  position:relative;
  min-width: 359px;
  padding-bottom: 60px;
}
@media(min-width:768px){
  .text_list ul:before{
    background: #a5bec6;
    bottom: 0;
    content: "";
    height: 1px;
    pointer-events: none;
    position: absolute;
    max-width: 66%;
    right: 17%;
    width: 100%;
    z-index: -1;
    margin: 0 auto;
  }

  .text_list ul li:before{
    border-radius: 50%;
    bottom: -20.5px;
    height: 44px;
    left: 44%;
    z-index: 1;
    width: 44px;
    border: 14px solid #061f46;
    background: #a5bec6;
    content: "";
    pointer-events: none;
    position: absolute;
  }

  .text_list ul li:first-child:before{
    left: 45%;
  }

  .text_list ul li:last-child:before{
    right: 44.5%;
  }
}
@media(max-width: 1140px) and (min-width:1025px){
  .text_list ul li {
    min-width: 300px;
  }
}

@media(max-width: 1024px) and (min-width:768px){
  .text_list ul li {
    min-width: 232px;
    font-size: 32px;
    line-height: 42px;
  }
}

@media(max-width:767px){
  .text_list:after {
    bottom: 10%;
    height: 78%;
    left: -31%;
    width: 131%;
  }
  .text_list h2 {
    font-size: 40px;
  }
  .text_list ul {
    gap: 10px;
    flex-direction: column;
  }
  .text_list ul li {
    font-size: 32px;
    line-height: 38px;
    max-width: 225px;
    margin-left: 48px;
    padding-bottom: 40px;
    min-width: 225px;
  }
  .text_list ul li:last-child{
    padding-bottom:0;
  } 

  .text_list ul:before{
    content: "";
    pointer-events: none;
    position: absolute;
    right: 0;
    width: 1px;
    z-index: -1;
    background: #a5bec6;
    top: 16%;
    height: 100%;
    left: 34px;
    max-height: 70%;
  }

  .text_list ul li:before{
    background: #a5bec6;
    content: "";
    pointer-events: none;
    position: absolute;
    border: 14px solid #061f46;
    border-radius: 50%;
    height: 44px;
    top: 20%;
    left: -36.5px;
    width: 44px;
    z-index: 1;
  }
}
/* text list  module css end */
/* before_after_slider  module css start */
.before_after_slider iframe {
  aspect-ratio: 16/7;
}
.before_after_slider img {
  display: block;
  max-width: 100%;
}
.before_after_slider .container {
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  --position: 75%;
}

.before_after_slider .image-container {
  max-width: 100%;
  max-height: 700px;
}

.before_after_slider .slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.before_after_slider .image-before {
  position: absolute;
  inset: 0;
  width: var(--position);
}

.before_after_slider .slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.before_after_slider .slider:focus-visible ~ .slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}

.before_after_slider .slider-line {
  position: absolute;
  inset: 0;
  width: .2rem;
  height: 100%;
  background-color: #fff;
  /* z-index: 10; */
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}

.before_after_slider .slider-button {
  position: absolute;
  background-color: #fff;
  color: black;
  padding: .5rem;
  border-radius: 100vw;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* z-index: 100; */
  box-shadow: 1px 1px 1px hsl(0, 50%, 2%, .5);
}

@media (max-width:767px){
  .before_after_slider .slider-image {
    object-position: left;
  }
  .before_after_slider .container {
    --position: 88%;
  }
  .before_after_slider .slider-button {
    padding:0.3rem;
  }
  .before_after_slider .slider-button svg{
    width: 20px !important;
    height: 20px  !important;
  }
}
/* before_after_slider  module css end */
/* two_col_text_img module css start */
.two_col_text_img{
  position:relative;
  clip-path: polygon(0 0, 400% 0, 73.5% 100%, 44.67% 94%, 0 100%, 0 40%);
  shape-outside: polygon(0 0, 33.33% 100%, 66.67% 0, 100% 0, 100% 100%, 0 0);
}

.two_col_text_img .text_container{
  max-width:59%;
  position: relative;
  z-index: 5;
}

.two_col_text_img .flex_container{
  display: flex;
  width:100%;
  gap: 5%;
}

.two_col_text_img .desc_conta.default {
  max-width: 524px;
}
.two_col_text_img h2 {
  line-height: 53px;
}

.two_col_text_img  p {
  line-height: 139%;
}

.two_col_text_img .image_container .image_content{
  bottom: 56px;
  position: relative;
  right: 20%;
  transform: scale(1.34);
  width: 100%;
  z-index: 0;
}

.two_col_text_img.all-text-white span{
  color: #A5BEC6;
}
.two_col_text_img .text_container .inner_container{
  padding-right:15px;
}

@media(min-width: 768px) and (max-width: 1024px){
  .two_col_text_img .image_container .image_content {
    bottom: 56px;
    position: relative;
    right: 0%; 
  }
  .two_col_text_img h2 {
    line-height: 46px;
  }
  .two_col_text_img p {
    line-height: 120%;
  }
}

@media(min-width: 768px) and (max-width: 1275px){
  .two_col_text_img .image_container .image_content{
    transform: scale(1);
  }
}

@media(max-width: 767px){
  .two_col_text_img h2 {
    line-height: 38px;
    font-size: 40px;
  }
  .two_col_text_img{
    clip-path: polygon(0 0, 1600% 0, 66.5% 100%, 34.67% 98%, 0 99%, 0 37%);
    shape-outside: polygon(0 0, 33.33% 100%, 66.67% 0, 100% 0, 100% 100%, 0 0);
  }
  .two_col_text_img .image_container .image_content {
    right: 0%;
    transform: scale(1);
    width: 100%;
    z-index: 0;
  }
  .two_col_text_img .image_container.column-2 {
    width: 100%;
  }
  .two_col_text_img .text_container{
    max-width:100% ;
  }
}

/* two_col_text_img module css end */

/* two_col_accordion module css start */
.accordion_answer .icon_img{
  right: 2.5%;
  position:absolute;
  display:none;
}
.two_col_accordion .main .left_content{
  width: 43%;
  display: flex;
  gap: 30px;
}
.expanded .accordion_answer .icon_img{
  display:flex; 
}
.two_col_accordion .header .icon_img{
  display: flex;
  align-items: center;
}
.two_col_accordion  .icon_img img{
  width: 21px;
  height: 14px;
}
.two_col_accordion .accordion_answer .icon img{
  width: 78px;
  height: 78px;
}
.two_col_accordion .header .icon img{
  width: 65px;
  height: 50px;
}
.two_col_accordion .top_detail .description p{
  line-height: 26px;
}
.two_col_accordion .main .text_detail .description p{
  line-height: 31px;
}
.two_col_accordion h2{
  text-transform: uppercase;
}
.cta_container.primary_button.cta_hide {
  max-width: 286px;
  margin: 116px auto 0;
}
.two_col_accordion .content-wrapper{
  max-width: 1275px;
}
.two_col_accordion .image_content{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width:100%;
  min-height: 323px;
}
.two_col_accordion{
  position: relative;
  clip-path: polygon(0 0, 500% 0, 76% 100%, 47.67% 96.5%, 0 99.5%, 0 40%);
  shape-outside: polygon(0 0, 33.33% 100%, 66.67% 0, 100% 0, 100% 100%, 0 0);
}
.two_col_accordion .top_detail{
  text-align:center;
  max-width:735px;
  margin: 0px auto 43px;
}
.two_col_accordion h4{
  margin:0;
}
.two_col_accordion .header {
  align-items: center;
  display: flex;
  cursor:pointer;
  margin: 0 auto;
  max-width: 560px;
  gap: 35px;
  margin-bottom: 80px;
}
.two_col_accordion .header .title {
  max-width: 400px;
  padding-right: 20px;
}
.two_col_accordion .play_btn img {
  width: 50px;
}
.two_col_accordion .accordion {
  position:relative;
}
.header_flex{
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.two_col_accordion .accordion.expanded .text_detail{
  cursor:pointer;
}
.two_col_accordion .image_container{
  display:flex;
  overflow:hidden;
  position:relative;
  align-items:center;
}
.two_col_accordion .main {
  display: flex;
  gap:7%;
  width: 100%;
  align-items: center;
  background: #051A3B;
}
.two_col_accordion .main .right_content{
  width:50%;
}
.two_col_accordion .accordion.expanded .accordion_answer{
  margin-bottom:80px;
}
.two_col_accordion .accordion.expanded .accordion_answer .text_detail .description{
  max-width: 333px;
}
.two_col_accordion .accordion .accordion_title{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.two_col_accordion .feature_image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  min-height: 323px;
  align-items: center;
}
.two_col_accordion .image_content.target{
  transition: transform 0.5s ease;
}
.two_col_accordion .image_container .zoom_btn{
  position:absolute;
  bottom:25px;
  left:25px;
}
.two_col_accordion .image_container button.btn {
  max-width: 44px;
  padding: 0;
  cursor: pointer;
  background:transparent;
  border:none;
}
.two_col_accordion .image_container .zoom_btn .zoom-out{
  display:none;
}
@media (min-width:768px){
  .two_col_accordion .icon.mobile_icon{
    display:none;
  } 
}
@media(min-width: 768px) and (max-width: 1024px){
  .two_col_accordion .main .left_content {
    gap: 20px;
    width: 45%;
  }
  .two_col_accordion .accordion .accordion_title {
    margin-bottom: 10px;
  }
  .two_col_accordion .main {
    gap: 4%;
  }
  .two_col_accordion .main .right_content {
    width: 51%;
  }
}

@media (max-width:767px){
  .cta_container.primary_button.cta_hide {
    max-width: 206px;
    margin: 60px auto 0;
  }
  .cta_container.primary_button.cta_hide   a.cta_button{
    font-size: 10px;
    padding: 11px 19px;
  }
  .two_col_accordion h4 {
    font-size: 18px;
    line-height: 19px;
    max-width: 180px;
  }
  .two_col_accordion h2 {
    line-height: 38px;
  }
  .two_col_accordion  .top_detail .description p {
    line-height: 18px;
    font-size: 15px;
  }
  .two_col_accordion .main .text_detail .description p{
    line-height: 17px;
    font-size: 12px;
  }
  .two_col_accordion .image_content{
    min-height: 36.5vw;
    margin-top: 14px;
  }
  .two_col_accordion .image_container button.btn {
    max-width: 30px;
  }
  .two_col_accordion .image_container .zoom_btn {
    bottom: 15px;
    left: 15px;
  }
  .two_col_accordion{
    clip-path: polygon(0 0, 1600% 0, 66.5% 100%, 34.67% 98%, 0 99%, 0 37%);
    shape-outside: polygon(0 0, 33.33% 100%, 66.67% 0, 100% 0, 100% 100%, 0 0);
  }
  .two_col_accordion .accordion.expanded .accordion_answer .text_detail .description {
    max-width:100%;
  }
  .two_col_accordion .accordion .accordion_title{
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .two_col_accordion .icon.desktop_icon{
    display:none;
  }
  .two_col_accordion .header {
    gap: 20px;
    max-width: 85%;
    margin: 0 auto 40px;
  }
  .two_col_accordion .header .icon img {
    width: 29px;
  }
  .two_col_accordion .accordion_answer .icon img {
    width: 35px;
  }
  .two_col_accordion .accordion .accordion_answer .icon_img img{
    width: 18px;
    height: 10px;
  }
  .two_col_accordion .accordion .header .icon_img img{
    width: 16px;
    height: 11px;
  }
  .two_col_accordion .accordion .accordion_answer .icon_img{
    position:static;
    transform: rotate(180deg);
  }
  .two_col_accordion .header .title {
    max-width: 168px;
    padding-right: 0px;
  }
  .two_col_accordion .main{
    display:block;
  }
  .two_col_accordion .main .right_content{
    width:100%;
  }
  .two_col_accordion .main .left_content {
    width: 100%;
  }
  .two_col_accordion .accordion.expanded .accordion_header:after {
    right: 13%;
    top: 14%;
    transform: rotate(179deg);
    height: 10px;
    width: 18px;
  } 
  .two_col_accordion .accordion.expanded .accordion_answer {
    margin-bottom: 56px;
  }
  .two_col_accordion .top_detail {
    margin: 0 auto 54px;
    max-width:283px;
  }
  .two_col_accordion .flex_mobile {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
}
/* two_col_accordion module css end */

/****************** 3. Card Section Started ******************/

.card_section .card .content .cta_group a{
  padding: 15px 52px;
  font-size: 15px;
  font-style: normal;
  display:inline-block;
  font-weight: 500;
  text-transform: uppercase;
}
.card_section .content-wrapper{
  max-width:1275PX;
}
.card_section .card_container{
  position:relative;
  z-index:52;
}
.card_section .card-1 .content .cta_group a:hover, .card_section .card-3 .content .cta_group a:hover{
  background: var(--white-color);
  color: var(--primary-color) !important;
}
.card_section .card-2 .content .cta_group a:hover{
  color:var(--white-color) !important;
  background-color:var(--primary-color);
}
.card_section .card .content {
  padding-top: 50px;
  padding-right: 30px;
  padding-bottom: 40px;
  padding-left: 40px;
}
.card_section .icon_container img {
  width: 45px;
}
.card_section .cta_group{
  display: flex;
  justify-content: center;
  margin-top: 27px;
}
.card_section .card .content h3{
  font-size:48px;
  font-weight:500;
  line-height:45px;
}
.card_section .card .content h3 span{
  font-weight:700;
}
.card_section .card .content p{
  font-size:16px;
  line-height: 24.188px;
}
.card_section .bottom_card_container .content-wrapper {
  max-width: 1140px;
}
.card_section .icon_container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}
.card_section .top_content .content{
  width:100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(min-width:768px){
  body .card_section .cta_group {
    display: flex;
    justify-content: center;
    margin-top: 27px;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
  }
  body .card_section .card .content {
    padding: 50px 30px 104px 40px;
  }
  body .row-fluid .card_section .three-col-adjust span > .hs_cos_wrapper:nth-child(3n){
    margin-right: 0%;
  }
  .card_section .top_content.mobile{
    display:none;
  }
}

.row-fluid .card_section .three-col-adjust > span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  -wevkit-flex-wrap: wrap;
  flex-direction: row;
  gap: 3.05%;
  -webkit-flex-direction: row;
  margin-right: -3.2%;
  width: 100%;
}
body .row-fluid .card_section .three-col-adjust span > .hs_cos_wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  flex-basis: 31.3%;
  -webkit-flex-basis: 31.3%;
  flex-direction: column;
  -webkit-flex-direction: column;
  float: left;
  margin-top: 0%;
  margin-right: 0%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  flex-direction: column;
  -webkit-flex-direction: column;
}

@media(max-width: 1024px) and (min-width: 768px){
  .card_section .card .content h3 {
    font-size: 40px;
    line-height: 40px;
  }
  body .row-fluid .card_section .three-col-adjust span > .hs_cos_wrapper {
    flex-basis: 48.2%;
    -webkit-flex-basis: 48.2%;
  }
  .row-fluid .card_section .three-col-adjust > span {
    gap: 25px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .card_section .description {
    margin-bottom: 30px;
  }
  .card_section .icon_container {
    margin-bottom: 25px;
  }
  .card_section .card .content h3 {
    font-size: 31px;
    line-height: 29px;
    margin-bottom: 12px;
  }
  .card_section .card .content .cta_group a{
    padding: 11px 30px;
    font-size: 10px;
  }
  .card_section .cta_group {
    margin-top: 20px;
  }
  .card_section .card .content {
    padding-top: 33px;
    padding-right: 25px;
    padding-bottom: 27px;
    padding-left: 25px;
  }
  .row-fluid .card_section .three-col-adjust > span {
    display: block;
    margin-right: 0;
  }

  body .row-fluid .card_section .three-col-adjust span > .hs_cos_wrapper {
    display: block;
    width: 100%;
    margin: 0;
    margin-top: 20px;
    max-width: 70%;
    width: 100%;
    margin: 14px auto 0;
    float: none;
  }
  .card_section .card .content p {
    font-size: 10px;
    line-height: 15.188px;
    margin:0;
  }
  .card_section .top_content.desktop{
    display:none;
  }  
  .card_section .top_content.mobile{
    display:block;
  }  
  .card_section .top_content {
    margin-bottom: 25px;
  }
  .card_section .icon_container img {
    width: 29px;
  }
}

@media (max-width: 767px) {
  .card_section .card_container.three-col-adjust {
    margin-bottom: -140px;

  }
  body .row-fluid .card_section .three-col-adjust span>.hs_cos_wrapper{
    max-width:90%
  }
}

@media (max-width: 380px) {
  body .row-fluid .card_section .three-col-adjust span>.hs_cos_wrapper {
    max-width: 100%;
  }
}

/****************** 3. Card Section Ended ******************/
/************* 4. Card Repeater Section Started *************/
.card_repeater_section .image_container {
  min-height: 318px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
}
.card_repeater_section .top_container {
  max-width: 818px;
  margin: 0 auto;
  padding-bottom: 22px;
}
.card_repeater_section .main_heading h3{
  margin-bottom: 11px;
}
.card_repeater_section .desc_container{
  max-width: 493px;
  margin: 0 auto;
}
.card_repeater_section h5{
  margin-bottom: 10px;
}
@media(min-width: 901px){
  .card_repeater_section .row-fluid{
    flex-wrap: wrap;
    row-gap: 32px;
  }
  .card_repeater_section .span6.column {
    max-width: 513px;
  }
}
@media(max-width: 900px){
  .card_repeater_section .row-fluid {
    row-gap: 30px;
  }
  .card_repeater_section .image_container{
    min-height: 45vw;
    margin-bottom: 20px;
  }
}

/************* 4. Card Repeater Section Ended  *************/
/************** 5. Column Adjust Section Started *******************/


.column_adjust_section .inner_conta {
  display: flex;
  gap: 24px;
}
.column_adjust_section .inner_conta .logo_conta img{
  max-width: max-content !important;
}
.column_adjust_section .left-col {
  width: 80px;
}
.column_adjust_section h6 {
  margin-bottom: 8px;
}
.column_adjust_section .right-col {
  width: calc( 100% - 80px - 24px );
  max-width: 275px;
}
.column_adjust_section .cta_container{
  padding-top: 37px;
}
.column_adjust_section .column_container {
  width: 100%;
}
.column_adjust_section .cta_container a.cta_button{
  max-width: calc( 321px - 14px);
  padding-left: 5px;
  padding-right: 5px;
}

@media(max-width: 900px){
  .column_adjust_section .inner_conta{
    flex-direction: column;
    align-items: center;
  }
  .column_adjust_section .right-col{
    text-align: center;
    max-width: 100%;
    width: 100%;
  }
}

/************** 5. Column Adjust Section Ended  *******************/
/************* 6. Column Adjust with Background Started ************/

.column_adjust_bg_section{
  background-color: #000;
}
.column_adjust_bg_section.all-text-white h3 span{
  color: #2CB34A;
}
.column_adjust_bg_section h6 {
  margin-bottom: 13px;
}
.column_adjust_bg_section .full_width {
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
.column_adjust_bg_section .desc_conta{
  margin: 0 auto;
}
.column_adjust_bg_section .logo_conta {
  min-height: 90px;
  display: flex;
  align-items: center;
}
.column_adjust_bg_section .column_container {
  width: 100%;
}
.column_adjust_bg_section .cta_container a.cta_button{
  max-width: calc( 430px - 14px);
  padding-left: 5px;
  padding-right: 5px;
}
@media(max-width: 900px){
  .column_adjust_bg_section .main_heading {
    padding-bottom: 0px;
    max-width: 80%;
    margin: 0 auto;
  }
  .column_adjust_bg_section .hs_cos_wrapper.card_conta{
    padding-bottom: 10px;
  }
  .column_adjust_bg_section .hs_cos_wrapper.card_conta:last-child{
    padding-bottom: 0px;
  }
  .column_adjust_bg_section .cta_container a.cta_button{
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/************* 6. Column Adjust with Background Ended  ************/
/**************** 7. Full Width Two Column Started ****************/

.full_width_two_col_section .image_container{
  width: 50%;
}
.full_width_two_col_section .flex_container {
  display: flex;
  align-items: center;
  gap: 7.2%;
}
.full_width_two_col_section .text_container {
  width: calc( 50% - 7.2% );
  padding-left: 15px;
  padding-right: 15px;
}
.full_width_two_col_section .img_conta img{
  vertical-align: middle;
}
.full_width_two_col_section .heading_conta h3{
  margin-bottom: 8px;
}
.full_width_two_col_section .desc_conta p{
  margin-bottom: 24px;
}
.full_width_two_col_section .cta_container a.cta_button{
  max-width: calc( 231px - 14px);
  padding-left: 5px;
  padding-right: 5px;
}
@media(max-width: 900px){
  .full_width_two_col_section .flex_container {
    display: flex;
    align-items: center;
  }
  .full_width_two_col_section .image_container,
  .full_width_two_col_section .text_container {
    width: 100%;
  }
  .full_width_two_col_section .text_container{
    padding: 30px 15px;
  }
}

/**************** 7. Full Width Two Column Ended  ****************/
/************************* 8. Logo Slider Started ******************************/

.logo_slider_section{
  position: relative;
}
.logo_slider_section .logo_conta {
  max-width: 247px;
  margin: 0 auto;
  padding: 0 15px;
}
.logo_slider_section .logo_slider.slick-slider {
  max-width: 843px;
  margin: 0 auto;
  position: initial;
}
.logo_slider_section  .slick-track {
  display: flex;
  align-items: center;
}
.logo_slider_section .main_heading{
  padding-bottom: 46px;
}
.logo_slider_section button.slick-next.slick-arrow,
.logo_slider_section button.slick-prev.slick-arrow {
  background: transparent;
  border: none;
  bottom: auto;
  font-size: 0;
  height: 46px;
  padding: 0;
  position: absolute;
  top: 51.9%;
  width: 23px;
  z-index: 1;
}
.logo_slider_section button.slick-next.slick-arrow {
  left: auto;
  right: -27px;
}
.logo_slider_section button.slick-prev.slick-arrow {
  left: -27px;
  right: auto;
}
.logo_slider_section button.slick-next.slick-arrow:before,
.logo_slider_section button.slick-prev.slick-arrow:before {
  background-image: url(https://21056208.fs1.hubspotusercontent-na1.net/hubfs/21056208/Clover/Logo/Green%20angle-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  cursor: pointer;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.logo_slider_section button.slick-next.slick-arrow:before {
  left: auto;
  right: 0;
  transform: rotate(180deg);
}
.logo_slider_section button.slick-prev.slick-arrow:before {
  left: 0;
  right: auto;
  transform: rotate(0deg);
}
@media(max-width: 900px){
  .logo_slider_section button.slick-next.slick-arrow {
    right: -32px;
  }
  .logo_slider_section button.slick-prev.slick-arrow {
    left: -32px;
  }
  .logo_slider_section button.slick-next.slick-arrow, .logo_slider_section button.slick-prev.slick-arrow {
    top: 35%;
    height: 30px;
    width: 15px;
  }
  .logo_slider_section .logo_slider.slick-slider {
    position: relative;
  }
  .logo_slider_section .logo_conta {
    padding: 0 10px;
  }
  .logo_slider_section .main_heading {
    padding-bottom: 10px;
  }
}

/************************* 8. Logo Slider Ended ******************************/
/*********************** 9. Rich Text Started ************************/

.rich_text_section .title_container h3{
  font-weight: 600;
  margin-bottom: 8px;
}

/*********************** 9. Rich Text Ended ************************/
/******************* 10. Simple Two Column Started ********************/

.simple_two_col_section h6{
  margin-bottom: 14px;
}
.simple_two_col_section .cta_container a.cta_button{
  max-width: calc(340px - 14px);
  padding-left: 5px;
  padding-right: 5px;
}
.simple_two_col_section .flex_container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 14px;
}
.simple_two_col_section .flex_container .inner_text_conta:nth-child(odd){
  width: 42%;
}
.simple_two_col_section .flex_container .inner_text_conta:nth-child(even){
  width: 53.6%;
}

.simple_two_col_section .cta_container{
  padding-top: 30px;
}
@media(min-width: 901px){
  .simple_two_col_section .image_conta{
    max-width: 481.5px;
    margin-left: 0;
    margin-right: auto;
  }
  .simple_two_col_section .main_heading{
    max-width: 465px;
    padding-bottom: 32px;
  }
  .simple_two_col_section  .main_flex_container {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  .simple_two_col_section .left-column {
    width: 45%;
  }
  .simple_two_col_section .right-column {
    width: 52.2%;
    padding-top: 64px;
    padding-bottom: 40px;
  }
  .simple_two_col_section .flex_container .inner_text_conta:nth-child(odd) .desc_conta{
    max-width: 225px;
  }
  .simple_two_col_section .flex_container .inner_text_conta:nth-child(even) .desc_conta{
    max-width: 290px;
  }
}
@media(max-width: 900px){
  .simple_two_col_section .image_conta {
    max-width: 500px;
    margin: 0 auto;
  }
  body .simple_two_col_section .p-16 p {
    font-size: 16px;
    letter-spacing: -.64px;
  }
  .simple_two_col_section .right-column{
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .simple_two_col_section .flex_container {
    gap: 10px;
  }
  .simple_two_col_section .flex_container .inner_text_conta:nth-child(odd),
  .simple_two_col_section .flex_container .inner_text_conta:nth-child(even){
    min-width: 220px;
  }
  .simple_two_col_section .cta_container {
    padding-top: 20px;
  }
  .simple_two_col_section .main_heading{
    padding-bottom: 10px;
  }
}
@media(max-width: 545px){
  .simple_two_col_section .flex_container .inner_text_conta:nth-child(odd),
  .simple_two_col_section .flex_container .inner_text_conta:nth-child(even){
    width: 100%;
  }
}

/******************* 10. Simple Two Column Ended ********************/
/********************** 11. Simple Two Column With Radius Started ******************************/

.simple_two_col_with_radius h4{
  margin-bottom: 14px;
}
.simple_two_col_with_radius .cta_container a.cta_button{
  max-width: calc(340px - 14px);
  padding-left: 5px;
  padding-right: 5px;
}
.simple_two_col_with_radius .cta_container{
  padding-top: 12px;
  padding-bottom: 5px;
}
.simple_two_col_with_radius  .main_flex_container {
  display: flex;
}
@media(min-width: 901px){
  .simple_two_col_with_radius .image_conta{
    max-width: 599px;
    margin-left: 0;
    margin-right: auto;
  }
  .simple_two_col_with_radius  .main_flex_container {
    justify-content: space-between;
    align-items: center;
  }
  .simple_two_col_with_radius .left-column {
    width: 38%;
  }
  .simple_two_col_with_radius .right-column {
    width: 55.6%;
  }
}
@media(max-width: 900px){
  .simple_two_col_with_radius .image_conta {
    max-width: 500px;
    margin: 0 auto;
  }
  .simple_two_col_with_radius .main_flex_container {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .simple_two_col_with_radius .text_container {
    text-align: center;
  }
  .simple_two_col_with_radius .cta_container {
    padding-bottom: 0;
    padding-top: 0;
  }
}

/********************** 11. Simple Two Column With Radius Ended ******************************/
/************************ 12. Two Col form Section Started ****************************/

body .two_col_form_section form select{
  -webkit-appearance: none!important;
  -moz-appearance: none!important;
  -ms-appearance: none!important;
  background: url(https://44749128.fs1.hubspotusercontent-na1.net/hubfs/44749128/angle-right.svg)no-repeat;
  background-position: 96%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  cursor: pointer;
}
body .two_col_form_section .hs-form-field {
  margin-bottom: 10px !important;
}

body .two_col_form_section label.hs-error-msg.hs-main-font-element {
  font-size: 12px;
  margin: 0;
  position: absolute;
  bottom: -8px;
  left: 5px;
}
body .two_col_form_section .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field {
  position: relative;
}


body .two_col_form_section select,
body .two_col_form_section textarea {
  width: 100% !important;
}
body .two_col_form_section .form-container{
  max-width:580px;
  margin-left:auto
}

body .two_col_form_section h3{
  display:none;
}
.two_col_form_section .content-wrapper{
  max-width:1199px;
}
body .two_col_form_section .contact img{
  width:22px;
}

body .two_col_form_section .contact{
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
  margin-bottom: 42px;
}
body .two_col_form_section .contact select{
  color:rgba(6, 31, 70, 0.2);
}
.map_section form input[type=submit]:hover{
  border-color: #061F46 !important;
}


body .two_col_form_section .contact a{
  font-size:28px;
}
body .two_col_form_section .hs-form-field {
  margin-bottom: 0.4rem;
}

body .two_col_form_section .link {
  border-bottom: 1px solid #2CB34A;
  margin-bottom: 25px;
}
body .two_col_form_section .link_container .link a{
  text-decoration: none;
}
body .two_col_form_section .link_container {
  max-width: 370px;
  margin-top: 60px;
}

body .two_col_form_section .left-col {
  max-width: 402px;

}
body .two_col_form_section input.hs-button.primary.large{
  padding: 14px 74px;
}
body .two_col_form_section .hs_submit.hs-submit {
  padding-top: 20px;
}
.hs_phone .input, .hs_lastname .input, .hs_business_type .input, .hs_message .input{
  margin-right:0 !important;
}

@media(min-width: 901px){
  body .two_col_form_section .form-container{
    margin-top: 3px;
  }
  body .two_col_form_section .link_container .link p{
    margin-bottom: 25px;
  }
}

@media(max-width:900px){
  body .two_col_form_section .form-container{
    max-width:100%;
  }

  body .two_col_form_section .link_container {
    max-width: 100%;
  }

  @media(max-width:767px){
    body .two_col_form_section .contact {
      margin-bottom: 24px;
    }

    body .two_col_form_section .contact a{
      font-size:20px;
    }
  }
  body .two_col_form_section .hs_submit.hs-submit {
    padding-top: 6px;
  }
  body .two_col_form_section .link_container {
    margin-top: 40px;
    max-width: 100%;;
  }
  body .two_col_form_section .left-col {
    max-width: 100%;
  }
}
@media(max-width:400px){
  body .two_col_form_section label.hs-error-msg.hs-main-font-element {
    bottom: -15px;
  }
  body .two_col_form_section .hs-form-field {
    margin-bottom: 20px !important;
  }
  body .two_col_form_section form .input input{
    width: 100%!important ;
  }
  .hs_firstname .input, .hs_email .input{
    margin-right:0 !important;
  }
  body .two_col_form_section form .hs_lastname{
    margin-top: 0.75rem;
  } 
}
.two_col_form_section ul.no-list.hs-error-msgs.inputs-list li label.hs-error-msg.hs-main-font-element{
  display: block;
}

.two_col_form_section ul.no-list.hs-error-msgs.inputs-list li label{
  display: none;
}
.two_col_form_section .submitted-message.hs-main-font-element{
  text-align:center;
}

/************************ 12. Two Col form Section Ended ****************************/
/************************ 13. Two Col Image Text Section Started *******************************/

.two_col_img_text{
  background-color: #828994;
  border-top-left-radius: 239.5px;
  position: relative;
}
.two_col_img_text h3{
  font-weight:600;
}
.two_col_img_text .image_container.column-2 {
  width: 40%;
}
.two_col_img_text .image_container .image_content{
  position: absolute;
  bottom: 0;
}
.two_col_img_text .text_container.column-1{
  display: flex;
  align-items: center;
}
.two_col_img_text .flex_container{
  display: flex;
}
.two_col_img_text.all-text-white span{
  color: #000000;
}
.two_col_img_text .text_container .inner_container{
  padding-right:15px;
}

@media(min-width: 901px) and (max-width: 1035px){
  .two_col_img_text .image_container.column-2 {
    width: 50%;
  }
}


@media(max-width: 900px){
  .two_col_img_text .text_container .inner_container{
    padding-left: 15px;
  }
  .two_col_img_text{
    border-top-left-radius: 100px;
    min-height: 100%;
  }
  .two_col_img_text .image_container.column-2 {
    width: 100%;
  }
  .two_col_img_text .image_container .image_content {
    position: relative;
  }
}

@media(min-width: 1441px){
  .two_col_img_text .two_col_wrapper{
    max-width:1924px;
    margin:0 auto;
  }
  .two_col_img_text {
    max-width: 1924px;
    margin: 0 auto;
  }
}

/************************ 13. Two Col Image Text Section Ended *******************************/
/************************ 14. Two Col Text Section Started *****************************/

.two_col_text_section .right_text h3{
  color: #FFF;
  font-size: 34.712px;
}
.two_col_text_section .span6.left-col{
  margin-left: 32px;
} 
.two_col_text_section .right_text{
  background: #2cb34a;
  border-radius: 256px 0 331.5px 0;
  max-width: 522px;
  padding: 98px 90px 127px 108px;
  margin-top: 43px;
  margin-left: 78px;
}
.two_col_text_section .right_text img{
  width: 60px;
}
.two_col_text_section .right_text .icon {
  margin-bottom: 27px;
}

@media(max-width:1200px){
  .two_col_text_section .right_text{
    border-radius: 200px 0 250.5px 0;
    padding: 70px ;
    margin-left: 30px;
  }
}

@media(max-width:900px){
  .two_col_text_section .right_text{
    max-width: 100%;
    padding:80px;
    margin-left: 0;
  }
  .two_col_text_section .span6.left-col {
    margin-left: 0px;
  }
  .two_col_text_section .right_text h3 {
    font-size: 28.712px;
  }
}

@media(max-width:767px){
  .two_col_text_section .right_text img {
    width: 40px;
  }
  .two_col_text_section .right_text{
    border-radius: 156px 0 231.5px 0;
  }
  .two_col_text_section .right_text h3 {
    font-size: 24.712px;
  }
  .two_col_text_section .right_text {
    padding: 70px 40px;
  }
}

/************************ 14. Two Col Text Section Ended *****************************/
/************************** 15. Two Column Slider Section Started *******************************/
.two_col_slider_section .slide-content .main_conta{
  display:flex;
  gap:50px;
}
.two_col_slider_section button.slick-prev.slick-arrow,
.two_col_slider_section button.slick-next.slick-arrow{
  background: transparent;
  border: none;
  bottom: auto;
  font-size: 0;
  height: 46px;
  padding: 0;
  position: absolute;
  cursor:pointer;
  bottom: 63.1%;
  width: 23px;
  z-index: 1;
}
.two_col_slider_section button.slick-prev.slick-arrow{
  left: -5.5%;
  right: auto;
}
.two_col_slider_section button.slick-next.slick-arrow{
  left: auto;
  right: -5.5%;
}
.two_col_slider_section {
  position: relative;
  z-index: 1;
}
.two_col_slider_section  ul.slick-dots {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0;
  margin: 0;
}
.two_col_slider_section  ul.slick-dots li{
  font-size: 0;
  line-height: 0;
  margin: 0;
}
.two_col_slider_section  ul.slick-dots button{
  background-color: #D9D9D9;
  border: none;
  border-radius: 0%;
  font-size: 0;
  height: 13px;
  cursor:pointer;
  padding: 0;
  width: 12px;
}
.two_col_slider_section  ul.slick-dots li.slick-active button{
  background-color: #A5BEC6;
}
.two_col_slider_section button.slick-prev.slick-arrow::before,
.two_col_slider_section button.slick-next.slick-arrow::before{
  background-image: url('https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/%231.svg');
  position: absolute;
  z-index: 2;
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.two_col_slider_section button.slick-prev.slick-arrow::before{
  right: auto;
  left: 0;
  transform: rotate(0deg);
}
.two_col_slider_section button.slick-next.slick-arrow::before{
  right: 0;
  left: auto;
  transform: rotate(180deg);
}
.two_col_slider_section .top_container{
  text-align: center;
  margin-bottom: 38px;
}
.two_col_slider_section p span{
  color:#91B7C5;
}
.two_col_slider_section .flex_conta {
  display: flex;
  gap: 36px;
}

.two_col_slider_section .main_heading h3{
  margin-bottom: 10px;
}
.two_col_slider_section .slide-content {
  margin: 10px;
}

.two_col_slider_section p {
  color: #061f46;
  font-weight: 500;
}

.two_col_slider_section p span {
  font-weight: 800;
}

.two_col_slider_section .main_conta{
  width:100%
}
.two_col_slider_section .left_coll,
.two_col_slider_section .right_coll{
  width:48%;
}

.two_col_slider_section .left_coll .inner_conta {
  max-width: 480px;
  margin-left:auto;
}

.two_col_slider_section .right_coll .inner_conta {
  max-width: 480px;
  margin-right:auto;
}

@media(max-width: 1340px) and (min-width: 768px){
  .two_col_slider_section button.slick-prev.slick-arrow{
    left: -24px;
    right: auto;
  }
  .two_col_slider_section button.slick-next.slick-arrow{
    left: auto;
    right: -24px;
  }

  .two_col_slider_section button.slick-prev.slick-arrow,
  .two_col_slider_section button.slick-next.slick-arrow{
    height: 38px;
    width: 20px;
  }
}

@media(max-width: 767px){
  .two_col_slider_section .top_container h2 {
    font-size: 40px;
    line-height: 38px;
  }

  .two_col_slider_section .left_coll .inner_conta {
    max-width: 100%;
  }
  .two_col_slider_section .left_coll, .two_col_slider_section .right_coll {
    width: 100%;
  }
  .two_col_slider_section .left_coll{
    margin-bottom: 40px;
  }
  .two_col_slider_section .right_coll{
    margin-bottom: 58px;
  }
  .two_col_slider_section .slide-content .main_conta {
    display: block;
  }
  .two_col_slider_section button.slick-prev.slick-arrow{
    left: 3%;
  }
  .two_col_slider_section button.slick-next.slick-arrow{
    right: 5%;
  }
  .two_col_slider_section button.slick-prev.slick-arrow,
  .two_col_slider_section button.slick-next.slick-arrow{
    bottom: 2%;
    height: 28px;
    width: 14px;
  }

  .two_col_slider_section ul.slick-dots {
    padding: 15px 0;
  }
  .two_col_slider_section .top_container {
    padding-bottom: 0px;
    margin-bottom: 37px;
  }
  .two_col_slider_section .flex_conta {
    gap: 5%;
  }
  .two_col_slider_section .left_col{
    max-width: none;
    width: 37%;
  }
  .two_col_slider_section .image_conta{
    max-width: none;
  }
  .two_col_slider_section .right_col{
    width: calc( 100% - 37% - 5% );
  }
}

@media(max-width: 767px){
  .two_col_slider_section .left_col{
    width: 100%;
    max-width: 193px;
    margin: 0 auto;
  }
  .two_col_slider_section .right_col{
    width: 100%;
    text-align: center;
  }
  .two_col_slider_section .flex_conta {
    flex-direction: column;
    gap: 20px;
  }
}

/************************** 15. Two Column Slider Section Ended *******************************/
/*************************** 16. Two Column Slider With Tabber Started *****************************/

.two_col_slider_with_tabber.all-text-white .primary_button a.cta_button{
  border-color:#ffffff;
}
.two_col_slider_with_tabber .cta_flex_conta{
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
}
.two_col_slider_with_tabber h2,
.two_col_slider_with_tabber h3,
.two_col_slider_with_tabber h4,
.two_col_slider_with_tabber h5,
.two_col_slider_with_tabber h6{
  margin-bottom: 0;
}
.two_col_slider_with_tabber .cta_container a.cta_button{
  padding-left: 5px;
  padding-right: 5px;
  max-width: 100%;
  width: calc(340px - 14px);
}
.two_col_slider_with_tabber .image_container .image_content{
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.two_col_slider_with_tabber .main_tabber_container {
  position: relative;
  z-index: 1;
}
.two_col_slider_with_tabber .tabber_container{
  position: absolute;
  top: 57px;
  right: 0;
  left: auto;
  bottom: auto;
  z-index: 2;
}
.two_col_slider_with_tabber .tabber_content{
  display: none;
}
.two_col_slider_with_tabber .tabber_content.active {
  display: block;
}
.two_col_slider_with_tabber button.slick-next.slick-arrow,
.two_col_slider_with_tabber button.slick-prev.slick-arrow {
  background: transparent;
  border: none;
  bottom: auto;
  font-size: 0;
  height: 46px;
  padding: 0;
  position: absolute;
  top: 49.8%;
  width: 23px;
  z-index: 1;
}
.two_col_slider_with_tabber button.slick-next.slick-arrow {
  left: auto;
  right: -43px;
}
.two_col_slider_with_tabber button.slick-prev.slick-arrow {
  left: -43px;
  right: auto;
}
.two_col_slider_with_tabber button.slick-next.slick-arrow:before,
.two_col_slider_with_tabber button.slick-prev.slick-arrow:before {
  background-image: url(https://21056208.fs1.hubspotusercontent-na1.net/hubfs/21056208/Clover/Logo/Green%20angle-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  cursor: pointer;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.two_col_slider_with_tabber button.slick-next.slick-arrow:before {
  left: auto;
  right: 6px;
  transform: rotate(180deg);
}
.two_col_slider_with_tabber button.slick-prev.slick-arrow:before {
  left: 6px;
  right: auto;
  transform: rotate(0deg);
}
.two_col_slider_with_tabber .tabber_cta a.tab{
  color: #FFF;
  font-size: 20px;
  border-radius: 35px;
  background: #C4C4C4;
  padding: 9px 5px 10px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  padding-left: 26px;
  padding-right: 26px;
  min-width: max-content;
}
.two_col_slider_with_tabber .tabber_cta a.tab:hover{
  text-decoration: none;
}
.two_col_slider_with_tabber .tabber_cta a.tab.active{
  background: #2CB34A;
}
.two_col_slider_with_tabber .tabber_flex_container {
  display: flex;
  gap: 11px;
  overflow-y: auto;
  width: 100%;
}
.two_col_slider_with_tabber .slider_container .slick-track{
  display: flex;
  align-items: center;
}
.two_col_slider_with_tabber .tabber_flex_container{
  padding-bottom: 5px;
}
.two_col_slider_with_tabber .tabber_flex_container::-webkit-scrollbar{
  height: 4px;
}
.two_col_slider_with_tabber .tabber_flex_container::-webkit-scrollbar-track{
  background: #c4c4c4;
}
.two_col_slider_with_tabber .tabber_flex_container::-webkit-scrollbar-thumb{
  background: #2cb34a;
}
@media(max-width: 1440px) and (min-width: 901px){
  .two_col_slider_with_tabber .tabber_cta a.tab{  
    font-size: 1.388888vw;
    padding-left: 1.8vw;
    padding-right: 1.8vw;
  }
}
@media(min-width: 901px){
  .two_col_slider_with_tabber .flex_container .image_container{
    display: flex;
    align-self: center;
  }
}
@media(max-width: 900px){
  .two_col_slider_with_tabber .cta_flex_conta{
    justify-content: center;
  }
  .two_col_slider_with_tabber .text_container .inner_container{
    text-align: center;
  }
  .two_col_slider_with_tabber .content-wrapper{
    padding: 0;
  }
  .two_col_slider_with_tabber .text_container .inner_container{
    max-width: none;
  }
  .two_col_slider_with_tabber .image_container .image_content{
    margin: 0 auto;
  }
  .two_col_slider_with_tabber .flex_container{
    flex-direction: column;
  }
  .two_col_slider_with_tabber .cta_container a.cta_button{
    max-width: -webkit-fill-available;
    width: calc(340px - 14px);
  }
  .two_col_slider_with_tabber .tabber_container{
    position: relative;
    top: 0;
  }
  .two_col_slider_with_tabber button.slick-next.slick-arrow {
    right: -24px;
  }
  .two_col_slider_with_tabber button.slick-prev.slick-arrow {
    left: -24px;
  }
  .two_col_slider_with_tabber button.slick-next.slick-arrow, 
  .two_col_slider_with_tabber button.slick-prev.slick-arrow {
    top: 35%;
    height: 30px;
    width: 15px;
  }
  .two_col_slider_with_tabber .tabber_cta {
    text-align: center;
  }
  .two_col_slider_with_tabber .tabber_cta a.tab {
    font-size: 18px;
    max-width: 25vw;
    min-width: max-content;
    padding: 8px 4vw 9px;
  }
  .two_col_slider_with_tabber .tabber_flex_container {
    gap: 5px;
  }
  .two_col_slider_with_tabber .tabber_slide_container {
    padding-top: 25px;
  }
}
@media(max-width: 450px){
  .two_col_slider_with_tabber .tabber_cta a.tab {
    font-size: 3vw;
  }
}

/*************************** 16. Two Column Slider With Tabber Ended *****************************/



/************************** 17. Two Column With Background Started *******************************/

.two_col_with_background .flex_container{
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: relative;
}
.two_col_with_background .text_container{ 
  width: 48%;
}
.two_col_with_background .image_container{ 
  width: 52%;
}
.two_col_with_background .flex_container{
  flex-direction: row;
}
.two_col_with_background .text_container .inner_container{
  margin-left: auto;
  margin-right: 0;
}
.two_col_with_background .image_container .image_content{
  margin-right: auto;
  margin-left: 0;
}
.two_col_with_background .text_container .inner_container{
  max-width: 464px;
}
.two_col_with_background .desc_conta{
  margin-bottom: 26px;
}
.two_col_with_background.all-text-white span{
  color: #000000;
}
.two_col_with_background.all-text-white .primary_button a.cta_button{
  border-color:#ffffff;
}
.two_col_with_background .cta_flex_conta{
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
}
.two_col_with_background {
  position: relative;
  z-index: 1;
}
.two_col_with_background::before {
  z-index: -1;
  content: '';
  position: absolute;
  background-color: #2CB34A;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-top-right-radius: 169.5px;
  pointer-events: none;
}
@media(min-width: 901px){
  .two_col_with_background .image_content {
    bottom: auto;
    height: 100%;
    left: auto;
    max-width: 738px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: -36.9%;
    width: 62%;
    z-index: -1;
  }
  .two_col_with_background h5{
    font-size: 28px;
  }
  .two_col_with_background .cta_conta a.cta_button{
    font-size: 18px;
  }
} 
@media(max-width: 1230px) and (min-width: 901px){
  .two_col_with_background .image_content{
    top: -9vw;
    width: 60vw;
  }
} 
@media(max-width: 900px){
  .two_col_with_background .text_container,
  .two_col_with_background .image_container{ 
    width: 100%;
  }
  .two_col_with_background .text_container .inner_container{
    max-width: none;
  }
  .two_col_with_background .image_container .image_content{
    margin: 0 auto;
    max-width: 500px;
  }
  .two_col_with_background::before {
    width: 100%;
    height: 100%;
    top: 0;
    border-top-right-radius: 100px;
  }
  .two_col_with_background .flex_container{
    flex-direction: column-reverse;
    gap: 20px;
  }
  .two_col_with_background .cta_flex_conta {
    justify-content: center;
  }
  .two_col_with_background .text_container .inner_container{
    text-align: center;
  }
  .two_col_with_background .text_container .inner_container{
    margin-bottom: 0;
  }
  .two_col_with_background .cta_conta a.cta_button{
    max-width: calc( 270px - 14px);
  }
}

/************************** Two Column With Row Reverse ***************************/

.two_col_with_row_reverse .desc_conta h5{
  text-transform:uppercase;font-size: 24px;
  font-weight: 700;
  line-height: 139%;
  color:var(--primary-color);
  margin-bottom: 30px;
}

.two_col_with_row_reverse .flex_container{
  display: flex;
}
/************************** 17. Two Column With Background Ended *******************************/

/************************** 17. Two Column image  *******************************/


.two_col_with_row_reverse.all-text-white .primary_button a.cta_button{
  border-color:#ffffff;
}
.two_col_with_row_reverse .cta_flex_conta{
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
}
.two_col_with_row_reverse .cta_conta {
  width: 100%;
}
.two_col_with_row_reverse .feature_image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media(min-width: 768px){
  .two_col_with_row_reverse h4{
    font-size: 30px;
    line-height: 133.333%;
    letter-spacing: -1.2px;
  }
  .two_col_with_row_reverse h5{
    font-size: 28px;
  }
  .two_col_with_row_reverse .cta_conta a.cta_button{
    font-size: 18px;
  }
  .two_col_with_row_reverse .feature_image {
    min-height: 341px;
  }
}
@media(max-width: 1170px) and (min-width: 901px){
  .two_col_with_row_reverse .feature_image {
    min-height: calc(30vw - 16px);
  }
}
@media(max-width:767px){
  .two_col_with_row_reverse .feature_image {
    min-height: 332px;
  }
  .two_col_with_row_reverse .cta_flex_conta {
    justify-content: center;
  }
  .two_col_with_row_reverse .play-button,
  .two_col_with_row_reverse .play-wistia-video{
    height: 10vw;
    max-width: 8vw;
  }
}
@media(max-width: 600px){
  .two_col_with_row_reverse .feature_image {
    min-height: calc(56vw - 16px);
  }
}
/*************************** 18. Two Column Wrapper Option Started ***************************/

.two_column_wrapper_section .content_wrapper{
  margin-left: auto;
  max-width:1260px;
  margin-right: auto;
  float: none;
  padding: 0 15px;
}

.two_column_wrapper_section .title_container {
  margin-bottom: 24px;
}

.two_column_wrapper_section .left_column{
  width: 100%;
}
.two_column_wrapper_section .two_column_inner{
  position: relative;
}
.two_column_wrapper_section .left_column .content_container{
  margin-right: auto;
  margin-left:0;
}

.two_column_wrapper_section  a.cta_button{
  padding: 16px 110px 18px;
}

.two_column_wrapper_section .text_content{
  max-width:425px;
  margin-left: 50px;
}

.two_column_wrapper_section .mobile_view{
  line-height:0;
}

@media(min-width: 901px){

  .two_column_wrapper_section .left_column .content_container{
    width:44%;
  }
  .two_column_wrapper_section .mobile_view{
    display: none;
  }

  .two_column_wrapper_section .left_column .list_container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top:22px;
  }
  .two_column_wrapper_section .left_column .cta-button-container{
    margin-top: 42px;
  }
  .two_column_wrapper_section.reverse-column .left_column .cta-button-container{
    margin-top: 48px;
  }
  .two_column_wrapper_section .title_container h3{
    font-size: 40px;
    font-weight: 500;
    line-height: 52px;
  }
}

@media(max-width: 900px){
  .two_column_wrapper_section a.cta_button {
    padding: 12px 70px 12px;
    width: auto;
  }  
  .two_column_wrapper_section .mobile_view{
    display: block;
    width: 100%;
  }
  .two_column_wrapper_section .text_content {
    margin-left: 0;
    max-width: 100%;
  }
  body .two_column_wrapper_section .content_wrapper{
    max-width: 100%;
  }
  .two_column_wrapper_section .left_column .cta-button-container{
    margin:  25px 0 30px;
  }
  .two_column_wrapper_section .title_container h2,
  .two_column_wrapper_section .title_container h3{
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
  }
  .two_column_wrapper_section .left_column .list_container .featured_list ul li br{
    display: none;
  }
}

@media(min-width: 901px){
  .two_column_wrapper_section .two_column_inner:after{
    border-radius: 30px 0px 0px 30px;
    right: 0;
    width: 42.235%;
  }
  .two_column_wrapper_section.reverse-column .two_column_inner:after{
    border-radius: 0px 30px 30px 0px;
    left: 0;
    width: 53.7%;
  }
  .two_column_wrapper_section.reverse-column .left_column .content_container{
    margin-right: 0;
    margin-left: auto;
  }
}

@media(min-width: 2500px){
  .two_column_wrapper_section.reverse-column .two_column_inner:after{
    width: 45.7%;
  }
  .two_column_wrapper_section .left_column .content_container {
    width: 64%;
  }
  .two_column_wrapper_section .text_content {
    margin-left: 100px;
    max-width: 600px;
  }
}

/*************************** 18. Two Column Wrapper Option Ended ***************************/
/****************************** 19. Video PopUp Started *********************************/
.video_popup_section h2{
  line-height:62px;
}

.video_popup_section p{
  line-height:26px;
}
.video_popup_section{
  text-align: center;
}
.video_popup_section .main_heading {
  margin-top: 20px;
}

.video_popup_section .cta_container a.cta_button{
  max-width: calc(340px - 14px);
  padding-left: 5px;
  padding-right: 5px;
}
.video_popup_section .cta_container{
  padding-top: 63px;
}
.video_popup_section .video_container {

  position: relative;
  z-index: 2;
}
.video_popup_section .feature_image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fancybox-slide--iframe .fancybox-content{
  aspect-ratio:16/9;
  background:none !important;
  height:auto !important;
}
.video_popup_section .all-text-white span{
  color:#91B7C5;
}
.video_popup_section .desc_conta p span{
  color: #90C2B3;
  font-weight: 600;
}

.video_popup_section .desc_conta{
  max-width: 597px;
  text-align:left
}
.video_popup_section .top_container{
  display:flex;
  justify-content:space-between;
}

@media(max-width: 1024px) and (min-width: 768px){
  .video_popup_section .desc_conta{
    max-width: 487px;
  }  
}

@media(max-width: 767px){
  .video_popup_section h2 {
    line-height: 42px;
  }
  .video_popup_section .desc_conta.p-18 {
    margin: 22px 0 60px;
  }
  .video_popup_section .main_heading {
    margin-top: 10px;
  }
  .video_popup_section .top_container {
    display: block;
    text-align:left;
  }
  .video_popup_section .desc_conta{
    max-width: 100%;
  }  
  .video_popup_section .play-wistia-video {
    max-width: 8vw;
    height: 10vw;
  }
  body .fancybox-container .fancybox-slide{
    padding: 15px;
  }
  .video_popup_section .play-button {
    height: 10vw;
    max-width: 8vw;
  }
  .video_popup_section .cta_container {
    padding-top: 40px;
  }
}

/****************************** 19. Video PopUp Ended *********************************/
/****************************** 20. External CDN CSS Started *********************************/

/* Slider */
.slick-slider
{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus{
  outline: none;
}
.slick-list.dragging{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list{
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track{
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after{
  display: table;
  content: '';
}
.slick-track:after{
  clear: both;
}
.slick-loading .slick-track{
  visibility: hidden;
}

.slick-slide{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide{
  float: right;
}
.slick-slide img{
  display: block;
}
.slick-slide.slick-loading img{
  display: none;
}
.slick-slide.dragging img{
  pointer-events: none;
}
.slick-initialized .slick-slide{
  display: block;
}
.slick-loading .slick-slide{
  visibility: hidden;
}
.slick-vertical .slick-slide{
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}

/****************************** 20. External CDN CSS Ened *********************************/

/*  Our Value Css */
.our-value ul.anchor-conta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 586px;
  margin: 0 auto;
  padding:0;
}
.our-value ul.anchor-conta li{
  list-style-type:none;
  margin:0;
}
.our-value ul.anchor-conta li a{
  font-size: 20px;
  font-weight: 900;
  line-height: 95%; 
  text-transform: uppercase;
  color:var(--primary-color);
}
body .row-fluid .our-value .value-container .two-col-adjust span>.hs_cos_wrapper{
  margin-top: 25px !important;
}

@media(min-width:768px) and (max-width:1024px){
  .our-value .value-container .inner-conta {
    margin-left: 4%;
    max-width: 245px;
  }

  body .row-fluid .our-value .value-container .two-col-adjust span>.hs_cos_wrapper{
    display:block;
  }
  body .row-fluid .our-value .value-container .two-col-adjust span>.hs_cos_wrapper .image-container-1 {
    max-width: 100px;
    margin-bottom: 15px;
  }
}

@media(min-width:768px){
  .our-value .middile-main-headinng-conta.align-center {
    margin-bottom: 78px;
  }
  .our-value .top-container .image-container {
    max-width: 500px;
  }
  .our-value .top-container .inner_conta_left {
    width: 49%;
    float: left;
  }
  .our-value .top-container .inner_conta_right {
    width: 48%;
    float: right;
    margin-left: 1%;
  }
  .our-value .top-container{
    justify-content: center;
    display: flex;
    align-items: center;
  }
  .our-value .top-container .heading_conta h2{
    text-transform:uppercase;
    margin-bottom:40px;
  }
  .our-value .list-item-container {
    padding-bottom: 105px;
  }
  .our-value .top-container .desc_conta h5{
    color:var(--primary-color);
    font-size:24px;
    line-height:139%;
    font-weight:700;
    text-align:left;
    margin-bottom:43px;
  }
  .our-value .top-container .desc_conta p{
    margin-bottom:32px;
  }
  .our-value .top-container {
    padding-bottom: 55px;
  }
  .our-value .value-container .inner-conta {
    max-width: 348px;
    margin-left: auto;
  }
  .our-value .value-container {
    max-width: 1045px;
    margin: 0 auto;
  }
}


@media(max-width:767px){
  .our-value .list-item-container {
    padding-bottom: 50px;
  }
  .our-value ul.anchor-conta li a{
    font-size: 10px;
    line-height: 95%; 
  }
  .our-value .top-container .desc_conta h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 139%;
  }
  .our-value .image-container {
    padding-top: 10px;
  }
  .our-value .top-container {
    padding-bottom: 78px;
  }
  body .row-fluid .our-value .value-container .two-col-adjust>span, body .row-fluid .our-value .value-container .two-col-adjust span>.hs_cos_wrapper{
    display:block;
    max-width: 251px;
    margin: 0 auto;
    text-align: center;
  }
  body .row-fluid .our-value .value-container .two-col-adjust span>.hs_cos_wrapper .image-container-1 {
    max-width: 123px;
    margin:0 auto;
    margin-bottom: 18px;
  }
  .middile-main-headinng-conta.align-center {
    padding-bottom: 20px;
  }
  body .row-fluid .our-value .value-container .two-col-adjust span>.hs_cos_wrapper{
    margin-bottom:30px; 
  }
  .our-value .top-container .heading_conta h2{
    text-transform: uppercase;
    margin-bottom: 36px;
    font-size:40px;
    line-height:95%;
  }
  .our-value .middile-main-headinng-conta h2{
    font-size:40px;
    line-height:95%;
    margin-bottom:40px;
  }
  .our-value .hs_cos_wrapper .heading-conta h3{
    margin-bottom:7.5px;
    font-size:32px;
    line-height:120%;
  }
}

/* 88888888888888888888888888888888888888888888888  Our Board Of Directotrs ******************************************/

.our-board-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}

.our-board-section video#myVideo{
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -2;
  height:100%;
  width: 100%;
  max-width: 100%;
}

.our-board-section .content_wrapper{
  padding: 0 32px;
}
.our-board-section .heading_conta h2{
  text-transform:uppercase;
  margin-bottom:28px;
  text-align: right;
}

.our-board-section .desc_conta h5{
  color:var(--primary-color);
  text-transform:uppercase;
  font-size:24px;
  line-height:95%;
  font-weight:700;
}

.our-board-section .main-team-container .image-container{
  width:100%;
  overflow:hidden;
  position:relative;
  z-index:1;
}
.our-board-section .heading-conta h3 {
  text-transform: uppercase;
}

.our-board-section .main-team-container .description-conta {
  max-height: 358px;
  overflow: auto;
}

.our-board-section .main-team-container .description-conta::-webkit-scrollbar {
  display: none;
}

.our-board-section .main-team-container .description-conta {
  -ms-overflow-style: none;  
  scrollbar-width: none; 
}

.our-board-section .main-team-container .inner-conta {
  padding: 50px 66px;
  display:inline-block;
  width:100%;
  margin-top:352px;
}

.our-board-section .inner-conta.active .heading-conta:after{
  background: url(https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/chevron-down.svg) no-repeat;
  background-position: 50%;
  background-size: contain;
  content: "";
  height: 19px;
  position: absolute;
  right: 0;
  top: 15px;
  width: 33px;
  z-index: 1;
}


.our-board-section .team-container .inner-conta .heading-conta:before {
  position: absolute;
  content: '';
  z-index: 1;
  height: 19px;
  width: 20px;
  right: 0;
  background: url(https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/Blue%20Check%20Down.svg) no-repeat;
  background-size: contain;
  background-position: center;
  top:15px;
  filter: brightness(2) invert(0);
}

.our-board-section .team-container .inner-conta .heading-conta:after{
  opacity:0;
  font-size:0;
  height:0;
  width:0;
}

.our-board-section .team-container .inner-conta.active .heading-conta::before{
  position: absolute;
  content: '';
  z-index: 1;
  height: 19px;
  width: 33px;
  right: 0;
  background: url(https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/chevron-down.svg) no-repeat;
  background-size: contain;
  background-position: center;
  top:15px;
}

.our-board-section .heading-conta {
  position: relative;
  z-index: 1;
  padding-right: 45px;
  cursor:pointer;
}



.our-board-section .team-container .inner-conta {
  background:rgba(165, 190, 198, 0.8);
}
.our-board-section .team-container .inner-conta.active {
  background: rgba(6, 31, 70, 0.8);
}

.our-board-section .team-container .inner-conta.active .heading-conta h3 {
  color:var(--white-color);
}

@media(min-width:2000px){
  .our-value .content_wrapper:after{
    max-width:1440px;
    margin:0 auto;
    width:100%;
  }
}

@media(min-width:1025px) and (max-width:1200px){
  .our-board-section .heading_conta h2 {
    font-size: 46.54px;
    line-height: 111%;
  }
}

@media(min-width:1025px){
  .our-board-section .inner_conta {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }
  .our-board-section .inner_conta .right-col {
    max-width: 566px;
    text-align: left;
  }
  .our-board-section .inner_conta .left-col {
    max-width: 335px;
    margin-left: 6%;
  }
  .our-board-section .desc_conta p {
    font-weight: 500;
    line-height: 111%;
    font-size: 25px;
  }
  .our-board-section .inner_conta{
    margin-bottom:73px;
  }
}

@media(min-width:768px) and (max-width:1024px){
  .our-board-section .main-team-container .inner-conta{
    padding: 40px 30px;
  }
}

@media(max-width:767px){
  .our-board-section .main-team-container {
    max-width: 332px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .our-board-section .main-team-container .inner-conta{
    padding: 35px 32px 16px 36px;
  }
  body .our-board-section .desc_conta p{
    line-height:150%;
    font-size:11px;
  }
  .our-board-section .heading-conta:before {
    height:15px;
    width:26px
  }
  .our-board-section .desc_conta h5 {
    font-size: 15px;
    line-height: 120%;
    text-transform: inherit;
  }
  .our-board-section .desc_conta p{
    font-size: 15px;
    line-height: 120%;
  }
  .our-board-section .heading_conta h2 {
    margin-bottom: 41px;
    font-size: 40px;
    line-height: 95%;
    text-align: center;
  }
  .our-board-section .p-16 p {
    font-size: 11px;
    letter-spacing: normal;
    line-height: 150%;
  }
  .our-board-section .heading-conta h3{
    margin-bottom:0px;
  }
}

/* ****************************************** Our team ******************************** */
.team-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}

.team-section video#myVideo{
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -2;
  height:100%;
  width: 100%;
  max-width: 100%;
}

.team-section .content_wrapper{
  padding: 0 32px;
}
.team-section .heading_conta h2{
  text-transform:uppercase;
  margin-bottom:28px;
}

.team-section .desc_conta h5{
  color:var(--primary-color);
  text-transform:uppercase;
  font-size:24px;
  line-height:95%;
  font-weight:700;
}

.team-section .desc_conta p{
  line-height:95%;
  font-weight:400;
}

.team-section .main-team-container .image-container{
  width:100%;
  overflow:hidden;
  position:relative;
  z-index:1;
}
.team-section .heading-conta h3 {
  text-transform: uppercase;
}

.team-section .main-team-container .description-conta {
  max-height: 358px;
  overflow: auto;
}

.team-section .main-team-container .description-conta::-webkit-scrollbar {
  display: none;
}

.team-section .main-team-container .description-conta {
  -ms-overflow-style: none;  
  scrollbar-width: none; 
}

.team-section .main-team-container .inner-conta {
  padding: 50px 66px;
  display:inline-block;
  width:100%;
  background:var(--primary-color);
}

.team-section .heading-conta:before {
  position: absolute;
  content: '';
  z-index: 1;
  height: 16px;
  width: 33px;
  right: -16px;
  background: url(https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/chevron-down.svg) no-repeat;
  background-size: contain;
  background-position: center;
  top:10px;
  transform: rotate(90deg);
}
.team-section .heading-conta {
  position: relative;
  z-index: 1;
  padding-right: 45px;
  cursor:pointer;
}

@media(min-width:1025px){
  .team-section .team-container {
    display: flex;
    gap: 42px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap:wrap;
  }

  .team-section .main-team-container {
    flex-basis: 47.5%;
    width: 47.5%;
    -webkit-flex-basis: 47.5%;
  }
}

.team-section {
  position: relative;
  z-index: 1;
} 
.team-section .author-container:before {
  background-image: url(https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/Team%20Vector.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  bottom: 0%;
  content: "";
  left: 0;
  left: 0%;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 250px;
  width: 100%;
  height:100%;
  z-index: -1;
}

@media(min-width:1500px){
  .team-container.all-text-white:before {
    max-width:1900px;
    margin:0 auto;
    width:100%;
    left:0;
  }
}

@media(min-width:768px) and (max-width:1024px){
  .team-section .team-container {
    display: flex;
    gap: 42px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap:wrap;
  }
  .team-section .main-team-container {
    flex-basis: 45.5%;
    width: 45.5%;
    -webkit-flex-basis: 45.5%;
  }
  .team-section .main-team-container .inner-conta{
    padding: 40px 30px;
  }
  .our-board-section .main_conta .inner_conta {
    margin-bottom: 50px;
  }
  .our-board-section .inner-conta h3{
    font-size:30px;
    line-height:95%;
  }
  .team-section .inner-conta h3{
    font-size:30px;
    line-height:95%;
  }
}

@media(max-width:767px){
  .team-section .main-team-container {
    max-width: 332px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .team-section .heading-conta br{
    display:block;
  }

  body .team-section .desc_conta p{
    line-height:150%;
    font-size:11px;
  }

  .team-section .heading-conta:before {
    height: 12px;
    width: 15px;
    right: 5px;
  }

  .team-section .desc_conta h5 {
    font-size: 15px;
    line-height: 120%;
    text-transform: inherit;
    margin-bottom:17px;
  }
  .team-section .main_conta .desc_conta p{
    font-size: 15px;
    line-height: 120%;
  }
  .team-section .heading_conta h2 {
    margin-bottom: 41px;
    font-size: 40px;
    line-height: 95%;
    text-align: center;
  }
  .team-section .p-16 p, .our-board-section .p-16 p {
    font-size: 11px;
    letter-spacing: normal;
    line-height: 150%;
    margin-bottom:13px;
  }
  .team-section .heading-conta h3{
    margin-bottom:15px;
  }
  .team-section .main-team-container .inner-conta{
    padding: 35px 32px 16px 36px;
  }
  .our-board-section .inner_conta .heading_conta h2{
    text-align:left;
    margin-bottom:20px;
  }
  .our-board-section .inner_conta {
    margin-bottom: 47px;
  }
  .our-board-section .inner-conta .heading-conta h3 br{
    display:block;
  }
  .our-board-section .heading-conta{
    margin-bottom:20px;
  }
  .our-board-section .team-container .inner-conta.active{
  }
  .our-board-section .main-team-container .inner-conta {
    padding: 35px 32px 16px 36px;
  }
  .team-section .main-team-container .image-container{
    height:236px !important;
  }
  .our-board-section .main-team-container .image-container{
    height:100% !important;
  }
  .our-board-section .main-team-container .inner-conta{
    margin-top:235px;
  }

  .two_col_with_row_reverse .desc_conta p {
    margin-bottom: 17px;
    line-height: 139%;
    text-align: left;
  }
}

/* Contact Us CSS Start Here */

.map_container{
  width: 100%;
  max-width: 568px;
  max-height: max-content;
}
.map_container .hs-embed-wrapper{
  border: 1px solid var(--black-color) ;
}

.map_section .contact_icon {
  display: flex;
}

.map_section .contact_icon img{
  width:23px;
  height: 23px !important;
}

.map_section .flex_container{
  display:flex;
  gap: 20px;
  align-items: center;
}

.map_section .contact_detail a{
  display: flex;
  gap: 15px;
  align-items: center;
}

.hs_email.hs-email.hs-fieldtype-text.field.hs-form-field input {
  text-transform: lowercase;
}

.map_section .contact_detail.contact-1 {
  margin-bottom: 42px;
}
.map_section .contact_detail{
  margin-bottom: 7px;
}
.map_section .hs_email.hs-email.hs-fieldtype-text.field.hs-form-field {
  position: relative;
}
.map_section  form .hs_email label {
  font-size: 12px;
}

.map_section .contact_detail h6{
  font-size: 22px;
  font-weight: 400;
  margin:0;
  line-height: 139%;
}

.map_section .detail_text{
  max-width: 372px;
}
/* form  */
.map_section .bottom_container {
  display: flex;
  gap: 42px;
  margin:0 1px;
}
.map_section .form-title {
  display:none;
}

.map_section .left-col .hs_submit.hs-submit,
.map_section .left-col .hs_message.hs-message.hs-fieldtype-textarea.field.hs-form-field{
  display:none;
}
.map_section .right-col .hs-form-field {
  margin-bottom: 0;
  margin-top: 5px;
}
.map_section .right-col .hs_submit.hs-submit {
  padding-top: 15px;
}

.map_section .right-col form .hs-button, form input[type=submit]{
  width: 100%;
  line-height: 139%;
  padding: 9.5px 20px;
}

.map_section .bottom_container select{
  background: #FFFFFF url(https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/angle-down.png)no-repeat!important;
  -webkit-appearance: none !important;
  -moz-appearance: none;
  -ms-appearance: none;
  background-position: 96.5% !important;
  background-size: 20.41px !important;
}

.map_section .bottom_container textarea{
  height: 282px;
}

.map_section form input[type=email],.map_section form input[type=file],.map_section form input[type=number],.map_section form input[type=password],.map_section form input[type=search],.map_section form input[type=tel],.map_section form input[type=text],.map_section form select,.map_section form textarea{
  padding: 9.5px 16px;
  background-color: var(--white-color);
}

.map_section .description {
  padding: 74px 0 10px;
}

form select::placeholder,
form textarea::placeholder,
form input::placeholder {
  opacity: 0.2;
}
@media(max-width: 1024px) and (min-width: 768px){
  .map_container{
    max-width: 400px;
    overflow: hidden;
  } 
  .map_section .description {
    padding: 40px 0 15px;
  }
  .map_section .contact_detail h6 {
    font-size: 20px;
  }
  .map_section select,
  .map_section textarea,
  .map_section input{
    font-size:18px;
  }
  .map_section select::placeholder,
  .map_section textarea::placeholder,
  .map_section input::placeholder {
    font-size: 18px;
  }
}
@media(max-width: 767px){

  .map_section .right-col .hs-form-field {
    margin-top: 0px;
  }
  .map_section .contact_detail h6{
    font-size: 15px;
  }
  .map_section .flex_container {
    flex-direction: column;
  }
  .map_section .content-wrapper{
    padding:0;
  }
  .map_container{
    max-width: 400px;
    overflow: hidden;
    margin:0 auto;
  } 

  .map_section .contact_icon img {
    width: 20px;
    height: 20px !important;
  }
  .map_section .contact_detail.contact-1 {
    margin-bottom: 23px;
  }
  .map_section  .inner_container {
    padding: 0 30px;
  }
  .map_section h3 {
    font-size: 32px;
    line-height: 95%;
  }
  .map_section .detail_text {
    max-width: 295px;
  }

  .map_section .bottom_container{
    flex-direction:column;
    padding: 0 30px;
    gap: 0px;
    margin:0;
  }

  .map_section .description {
    text-align: center;
    padding: 40px 50px 12px;
  }

  .bottom_container .left-col.span6{
    width:100%;
  }

  .map_section form input[type=email],.map_section form input[type=file],.map_section form input[type=number],.map_section form input[type=password],.map_section form input[type=search],.map_section form input[type=tel],.map_section form input[type=text],.map_section form select,.map_section form textarea,
  .form_text_section form input[type=email],.form_text_section form input[type=file],.form_text_section form input[type=number],.form_text_section form input[type=password],.form_text_section form input[type=search],.form_text_section form input[type=tel],.form_text_section form input[type=text],.form_text_section form select,.form_text_section form textarea{
    font-size:14px;
    padding: 6.5px 16px;
  }

  .map_section textarea::placeholder,
  .map_section textarea,
  .form_text_section textarea::placeholder,
  .form_text_section textarea,
  .form_text_section .hs-fieldtype-checkbox label{
    font-size:15px;
  }
  .map_section input::placeholder,
  .form_text_section input::placeholder{
    font-size:14px;
  }

  .map_section .bottom_container select {
    background-position: 98% !important;
    background-size: 16.41px !important;
  }

  .map_section .hs-form-field {
    margin-bottom: 15px;
  }

  .map_section .contact_detail a {
    margin-bottom: 5px;
  }

  .map_section .bottom_container textarea {
    height: 284px;
    margin-top: 10px;
  }

  .map_section .right-col .hs_submit.hs-submit {
    padding-top: 10px;
  }

  .map_section form .hs-button, form input[type=submit],
  .form_text_section form input[type=submit]{
    padding: 11.5px 20px;
    font-size: 20px;
  }    
  .form_text_section form input[type=submit]{
    width: 100%;
  }
  .form_text_section form .actions{
    padding-top: 0px;
  }
}


/* Contact Us CSS End Here */
.map_section,
.form_text_section{
  position:relative;
}

.map_section:before,
.form_text_section:before{
  background-image: url(https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/Vector-2.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
}

@media(max-width: 767px){
  .map_section:before{
    bottom: -21%;
    height: 68%;
  }
}
/* Video  Module CSS Start Here */

.video_section .play-button {
  position: relative;
}

.video_section h2{
  line-height:62px;
}

.video_section p{
  line-height:26px;
}
.video_section{
  text-align: center;
}
.video_section .main_heading {
  margin-top: 20px;
}

.video_section .cta_container a.cta_button{
  max-width: calc(340px - 14px);
  padding-left: 5px;
  padding-right: 5px;
}
.video_section .cta_container{
  padding-top: 63px;
}
.video_section .video_container {
  position: relative;
  z-index: 2;
}

.video_section .feature_image {
  background-position: center;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fancybox-slide--iframe .fancybox-content{
  aspect-ratio:16/9;
  background:none !important;
  height:auto !important;
}
.video_section .all-text-white span{
  color:#91B7C5;
}
.video_section .desc_conta p span{
  color: #90C2B3;
  font-weight: 600;
}

.video_section .desc_conta{
  max-width: 597px;
  text-align:left
}
.video_section .top_container{
  display:flex;
  justify-content:space-between;
}

@media(max-width: 1024px) and (min-width: 768px){
  .video_section .desc_conta{
    max-width: 487px;
  }  
}

@media(max-width: 767px){
  .video_section p {
    line-height: 18px;
  }
  .video_section h2 {
    line-height: 44px;
    font-size: 40px;
  }
  .video_section .desc_conta.p-18 {
    margin: 32px 0 78px;
  }
  .video_section .main_heading {
    margin-top: 10px;
  }
  .video_section .top_container {
    display: block;
    text-align:left;
  }
  .video_section .desc_conta{
    max-width: 100%;
  }  
  .video_section .play-wistia-video {
    max-width: 8vw;
    height: 10vw;
  }
  body .fancybox-container .fancybox-slide{
    padding: 15px;
  }
  .video_section .play-button {
    height: 10vw;
    max-width: 8vw;
  }
  .video_section .cta_container {
    padding-top: 40px;
  }
}

/* Video  Module CSS End Here */
/* Edits From Client */

/* .compliance_automation_software-row-5-force-full-width-section .two_col_text_img .image_container .image_content{
right: 0;
bottom:0;
transform: scale(1);
}

.compliance_automation_software-row-5-force-full-width-section .two_col_text_img .image_container.column-2{
display: flex;
justify-content: center;
align-items: center;
} */

.compliance_automation_software-row-5-force-full-width-section .two_col_text_img .image_container .image_content{
  bottom:-12%;
  right: 16%;
}
.our-value .content_wrapper:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 25%;
    bottom: 0;
    height: 60%;
    width: 100%;
    background: url(https://6181724.fs1.hubspotusercontent-na1.net/hubfs/6181724/image%209.png) no-repeat;
    background-position: bottom;
    background-size: cover;
    z-index: -1;
}
.our-value ul.anchor-conta li a:hover{
  color:var(--secondary-color);
}

@media(min-width:768px){
  .our-value .inner-des p{
    margin-top:63px;
  }
}

body.fancybox-active .fancybox-container{
  display:none !important;
}

body.fancybox-active .popup-vimeo + .fancybox-iframe{
  display:none !important;
}

.video_section .vimeo_vd .play-button {
  width: 100%;
  cursor: pointer;
  inset: 0;
  position: absolute;
  z-index: 999;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video_section .vimeo_vd .play-button .play-btn{
  width: max-content;
  height: max-content;
  display: flex;
}

.vimeo_vd.active .play-button{
  display:none;
}

#digital_waste{
  margin:0 !important;
  padding: 0 !important;
}

#digital_waste .content-wrapper{
  padding: 0 !important;
}

@media(max-width:767px){
  .video_section .vimeo_vd .play-button{
    max-width: 54px;
    margin: 0 auto;
  }
}

#digital_waste .vimeo_vd .play-button{
  max-width: 54px;
  margin: 0 auto;
}

@media (max-width: 1024px) and (min-width: 768px){
  .body-container--compliance_automation_software .compliance_automation_software-row-1-padding .rich_text_section h2 {
    font-size: 40px;
    line-height: 38px !important;
  }
}

@media(max-width:767px){
  .body-container--compliance_automation_software .compliance_automation_software-row-1-padding .rich_text_section h2 {
    font-size: 34px;
    line-height: 32px !important;
  }
  .body-container--compliance_automation_software .compliance_automation_software-row-1-padding .rich_text_section .description_container >div{
    max-width:100% !important;
  }
}

/* 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: 900px) {
  .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;
  }
}