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

/*  ----------- RESET CSS --------- */
*, ::before, ::after {
   margin: 0;
   padding: 0;
   outline: none;
   border: 0;
   box-sizing: border-box;
   -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
   
}

body{
    
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6,
span,
div,
figure,
a {
  padding: 0;
  margin: 0;
}

a,a:focus,a:hover {
  text-decoration: none;
  outline:none;
}

img {
   max-width:100%;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -o-appearance: none; 
}

select::-ms-expand {/* Remove IE default v icon*/
  display: none;
}

input::-ms-clear {  /* Remove IE default x icon */
  display: none;
}
/*! 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;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

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

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

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

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

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

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

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

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

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

/* Responsive Grid */

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

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

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

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

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

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

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

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

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

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

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

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

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

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

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

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

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

.container-fluid {
    *zoom: 1;
}

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

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

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

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

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

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

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

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

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

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Clearfix */

.clearfix {
    *zoom: 1;
}

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

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

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

/* Responsive Visibilty Classes */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/
/* @import url('http://example.com/example_style.css'); */

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
















/* Transition */


/* Box Shadow */


/* Border Radius */

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


/* Banner Style One CSS */

.slider-main h1 {
  margin-bottom: 20px;
}

.slider-main h4 {
  margin-bottom: 20px;
}

.item.banner-text-white p {
  color: #fff;
}

.banner-slider ul.slick-dots li::before {
  display:none; 
}

.slider-main .heading-block {
  margin-bottom: 50px;
}

.item { 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.item .item-inner {
  max-width: 100%;
  z-index: 11;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
}

.item.b_center .item-inner {  
  margin: 0 auto;
  text-align: center;  
}

.item.b_left .item-inner {
  margin: 0;
  text-align: left;
  padding-left: 150px;
}

.item.b_right .item-inner {
  margin: 0 0 0 auto;
  text-align: right;
  padding-right: 150px;
}

.slider-main .btn-group .btn {
  margin-bottom: 0px;
}

/*  banner overlay css */

.slider-main .overlay {
  display: none;
}

.slider-main .overlay,
.slider-main .overlay {
  display:block;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.item.banner-text-white .heading-block * {
  color: #fff;
}
  
.banner-text-white .large_btn.bordered_btn,
.banner-text-white .medium_btn.bordered_btn, 
.banner-text-white .small_btn.bordered_btn {
  border-color: #fff;
  color: #fff;
}


.bannner_description {
  margin-bottom: 50px;
}

.btn-group .btn {
  margin-right: 16px;
}

/* Slick Slider Reset CSS  */
.slick-next::before, .slick-prev::before {
  font-size: 32px;
}

.slick-prev ,.slick-next{
  width: 32px;
  height: 32px;
}

.slider-main .slick-next,
.slider-main .slick-prev {
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.slider-main .slick-next.arrow_hide,
.slider-main .slick-prev.arrow_hide{
  visibility: visible;
  opacity: 1;
}

.banner-slider .slick-next::before,.banner-slider .slick-prev::before {
  display:none;
}

.banner-slider .slick-prev,.banner-slider .slick-next {
  position: absolute;
  top: 50%;
  z-index: 111;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
}


.banner-slider .slick-next,.banner-slider .slick-prev {
  left: initial;
  right: 60px;
  width: 56px;
  height: 56px; 
  background-image: url("https://4057429.fs1.hubspotusercontent-na1.net/hubfs/4057429/Regal_Core_Theme/Icons/banner_right_arrow.png");
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 100%;
  background-color: rgba(113,108,103,0.30);
}

.banner-slider .slick-prev {
  left: 60px;
  right: initial;
  background-image: url("https://4057429.fs1.hubspotusercontent-na1.net/hubfs/4057429/Regal_Core_Theme/Icons/banner_left_arrow.png");
}

.banner-slider .slick-prev:hover,
.banner-slider .slick-next:hover {
  background-color: #fff;
}

.banner-slider .slick-prev:hover {
  background-image: url('https://4057429.fs1.hubspotusercontent-na1.net/hubfs/4057429/Regal_Core_Theme/Icons/banner_left_black_arrow.png');
}

.banner-slider .slick-next:hover {
  background-image: url('https://4057429.fs1.hubspotusercontent-na1.net/hubfs/4057429/Regal_Core_Theme/Icons/banner_right_black_arrow.png');
}

.slick-slider .slick-list, .slick-slider .slick-track {
  height: 100%;
}

/*  Banner video CSS */
.item video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*  Down arrow CSS */
.downarrow-main{
  position: absolute;
  bottom: 60px;
  right: 0;
  left: 0;
  text-align: center;
}

.downarrow-inner {
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.downarrow-inner img {
  max-width: 28px;    
  animation: scroll 1.5s infinite;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  -ms-filter: brightness(0) invert(1);
  -moz-filter: brightness(0) invert(1);
  -o-filter: brightness(0) invert(1);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  
}

.downarrow-inner:hover img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  -ms-filter: brightness(0) invert(1);
  -moz-filter: brightness(0) invert(1);
  -o-filter: brightness(0) invert(1);
}

@keyframes scroll {0% {transform: translateY(5px);} 50% {transform: translateY(13px);} 100% {transform: translateY(5px);}}
@-webkit-keyframes scroll {0% {transform: translateY(5px);} 50% {transform: translateY(13px);} 100% {transform: translateY(5px);}}

.item {
  display: flex !important;
  align-items: center !important;
}

.item.b_left .item-inner {
  padding-left: 0;
}

.item .item-inner {
  position: static;
  top: initial;
  transform: initial;
  right: initial;
  left: initial;
}

.banner-item-wrap {
  position: relative;
  z-index: 11;
}

.item.b_right .item-inner {
  padding-right: 0;
}


.banner-top-space-without-topbar .item.b_center .item-inner{
  margin-top: 0;
}

.banner-top-space-without-topbar .item.b_right .item-inner{
  margin-top: 0;
}

.banner-top-space-without-topbar .item.b_left .item-inner{
  margin-top: 0;
}

/* Banner Style One */
.telno-block span {display: block;}
.telno-block a {font-weight: 600;}
.banner-text-white .telno-block span {color: #fff;}
.banner-text-white .telno-block a {color: #fff;}

.slider-main {
    position: relative;
}

/* Banner Animated Text Headline CSS */
.slider-main .h1.cd-headline {
  margin-bottom: 30px;
}

.slider-main .item.banner-text-white .h1.cd-headline {
  color: #fff ;
}


/* Responsive CSS  */

@media only screen and (max-width: 1024px) { 
  
  .downarrow-main {
    bottom: 60px;
  }
  
  .slider-main .item {
    padding: 100px 0 70px 0;
  }  
}
  
@media only screen and (max-width:1023px) {
  .banner-slider .slick-next,
  .banner-slider .slick-prev {
    width: 46px;
    height: 46px;
  }
  
  .banner-slider .slick-prev {
    left: 30px;
  }
  
  .banner-slider .slick-next {
    right: 30px;
  }
  
  .item.b_left .item-inner {
    padding-left: 100px;
  }
  
  .item.b_right .item-inner {
    padding-right: 100px;
  }
  
  .slider-main .item {
    padding: 100px 0 70px 0;
  }
}

@media only screen and (max-width:991px){
     
  .item.b_left .item-inner {
    padding-left: 0;
  }
  
  .item.b_right .item-inner {
    padding-right: 0;
  }
  
  .without-banner-slider .item {
    padding: 100px 0 90px 0;
  }
}

@media only screen and (max-width:767px){

  .item.b_left .item-inner {
    padding-left: 70px;
    padding-right: 70px;
  }

  .item.b_right .item-inner {  
    padding-right: 70px;
    padding-left: 70px;
  }
  
  .bannner_description {
    margin-bottom: 40px;
  }
  
  .banner-slider .slick-prev {
    left: 20px;
  }
  
  .banner-slider .slick-next {
    right: 20px;
  }
  
  .banner-slider .slick-next, 
  .banner-slider .slick-prev {
    width: 36px;
    height: 36px;
  }
  
  .downarrow-main {
    bottom: 60px;
  }  
  
  .slider-main .item {
    padding: 70px 0;
  } 
  
  .downarrow-main {
    bottom: 30px;
  }
  
  
  .without-banner-slider .item {
    padding: 70px 0 70px 0;
  }   
}

@media only screen and (max-width:560px){
  .slider-main .slick-next.arrow_hide,
  .slider-main .slick-prev.arrow_hide{
    display:none !important;
  }
  
  .slider-main .slick-next,
  .slider-main .slick-prev{
    display:none !important;
  }
  
  .item.b_left .item-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .item.b_right .item-inner {  
    padding-right: 20px;
    padding-left: 20px;
  }
  
  .item.b_center .item-inner {  
    padding-right: 20px;
    padding-left: 20px;
  }
  
  .slider-main .heading-block {
    margin-bottom: 40px;
  }
}


@media only screen and (max-width:479px ){
  .slider-main .btn-group .btn {
    margin-bottom: 15px !important;
  }  
}

@media only screen and (min-width: 1025px) {  
  .slider-main .item {
    padding: 150px 0;     
  }   
  
}

@media only screen and (min-width: 1366px) {  
  .slider-main .item {
    
     min-height: 614px;
  } 
  
  .dnd-section.dnd_area-row-0-force-full-width-section .banner-slider {
    min-height: 614px;
  }
}

@media only screen and (min-width: 1600px) {
  .dnd-section.dnd_area-row-0-force-full-width-section .banner-slider {
    min-height: 698px;
  }
  
  .slider-main .item {
    min-height: 698px;
  }
}

@media only screen and (min-width: 1800px) {
  .dnd-section.dnd_area-row-0-force-full-width-section .banner-slider {
    min-height: 750px;
  }
  
  .slider-main .item {
    min-height: 750px;
  }
}

@media only screen and (min-width: 1920px) {
  .dnd-section.dnd_area-row-0-force-full-width-section .banner-slider {
    min-height: 855px;
  }
  
  .slider-main .item{
    min-height: 855px;
  }
}

@media only screen and (min-width: 2560px) {
  .dnd-section.dnd_area-row-0-force-full-width-section .banner-slider {
    min-height: 1165px;
  }
  
  .slider-main .item {
    min-height: 1165px;
  }
}

@media only screen and (min-width: 3840px) {
  .dnd-section.dnd_area-row-0-force-full-width-section .banner-slider {
    min-height: 1795px;
  }
  
  .slider-main .item {
    min-height: 1795px;
  }
}
/* @import url('http://example.com/example_style.css'); */

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

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

/* Layout for search container */
.search {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;	
}

.js .search {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

.search::before,
.search::after {
	content: '';
	position: absolute;
	width: calc(100% + 15px);
	height: calc(100% + 15px);
	pointer-events: none;
	
}

.search::before {
	top: 0;
	left: 0;
	border-right-width: 0;
	border-bottom-width: 0;
}

.search::after {
	right: 0;
	bottom: 0;
	border-top-width: 0;
	border-left-width: 0;
}

.btn--search-close {
	font-size: 2em;
	position: absolute;
	top: 1.25em;
	right: 1.25em;
	display: none;
}

.js .btn--search-close {
	display: block;
  width: 35px;
  height: 35px;
  border: 0;
  background: transparent;
}

.search__form {
	margin: 5em 0;
}

.search__input {
	font-family: inherit;
	font-size: 5vw;
	line-height: 1;
	display: inline-block;
	box-sizing: border-box;
	width: 75%;
	padding: 0.05em 0;
  color: #323B4B;
	border-bottom: 2px solid;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

.search__input:hover,
.search__input:focus{
  border-color: #323B4B;
}


.search.text-white .search__input {color: #fff;}
.search.text-white .search__input:hover,
.search.text-white .search__input:focus{
  border-color: #fff;
}

#btn-search-close i {color: #323B4B;}
.search.text-white #btn-search-close i {color:#fff;}

.btn.btn--search-close:focus,
.search__input:focus{
  outline: none;
}

.search.text-white .btn {
  background-color: transparent;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
} 
.search.text-white #btn-search-close:hover i {opacity: 0.8;}
.search__input::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	opacity: 0.2;
	color: #377DFF;
}

.search__input::-moz-placeholder {
	opacity: 0.2;
	/* Mozilla Firefox 19+ */
	color: ;
}

.search__input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	opacity: 0.2;
	color: ;
}


.search.text-white .search__input::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	opacity: 0.2;
	color: #fff;
}

.search.text-white .search__input::-moz-placeholder {
	opacity: 0.2;
	/* Mozilla Firefox 19+ */
	color: #fff;
}

.search.text-white .search__input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	opacity: 0.2;
	color: #fff;
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
	-webkit-appearance: none;
}

.search__input::-ms-clear {
	display: none;
}

.btn.btn--search-close {cursor: pointer;}

.search__info {
	font-size: 90%;
	font-weight: bold;
	display: block;
	width: 75%;
	margin: 0 auto;
	padding: 0.85em 0;
	text-align: right;
  color: #323B4B;
}

.search__form.text-white .search__info {color: #fff;}

.search__related {
	display: flex;
	width: 75%;
	pointer-events: none;
}

.search__suggestion {
	width: 33.33%;
	text-align: left;
}

.search__suggestion:nth-child(2) {
	margin: 0 3em;
}

.search__suggestion h3 {
	font-size: 1.35em;
	margin: 0;
}

.search__suggestion h3::before {
	content: '\21FE';
	display: inline-block;
	padding: 0 0.5em 0 0;
}

.search__suggestion p {
	font-size: 1.15em;
	line-height: 1.4;
	margin: 0.75em 0 0 0;
}

/************************/
/* Transitions 			*/
/************************/

.js .search {
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s;
}

.js .search--open {
	pointer-events: auto;
	opacity: 1;
}

/* Border */
.search::before,
.search::after {
	transition: transform 0.5s;
  border: 0;
}

.search::before {
	transform: translate3d(-15px, -15px, 0);
}

.search::after {
	transform: translate3d(15px, 15px, 0);
}

.search--open::before,
.search--open::after {
	transform: translate3d(0, 0, 0);
}

/* Close button */
.btn--search-close {
	opacity: 0;
	transform: scale3d(0.8, 0.8, 1);
	transition: opacity 0.5s, transform 0.5s;
}

.search--open .btn--search-close {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

/* Search form with input and description */
.js .search__form {
	opacity: 0;
	transform: scale3d(0.8, 0.8, 1);
	transition: opacity 0.5s, transform 0.5s;
  flex-direction: column;
}

.js .search--open .search__form {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

.search__suggestion {
	opacity: 0;
	transform: translate3d(0, -30px, 0);
	transition: opacity 0.5s, transform 0.5s;
}

.search--open .search__suggestion {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.search--open .search__suggestion:nth-child(2) {
	transition-delay: 0.1s;
}

.search--open .search__suggestion:nth-child(3) {
	transition-delay: 0.2s;
}

.btn.btn--search-close {
	cursor: pointer;
}

#btn-search-close i {
  color: #323B4B;
}

.header form {
    display: flex;
    align-items: center;
    border: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.search .btn--search-close {
	font-size: 1.6em;
	position: absolute;
	top: 1.25em;
	right: 1.25em;
	
}

@media screen and (max-width:40em) {
	.search__form {
		margin: 5em 0 1em;
	}
	.btn--search-close {
		font-size: 1.25em;
		top: 1.5em;
		right: 1.5em;
	}
	.search__info {
		text-align: left;
	}
	.search__suggestion {
		font-size: 80%;
		width: 100%;
	}
	.search__suggestion:nth-child(2),
	.search__suggestion:nth-child(3) {
		display: none;
	}
}
/* @import url('http://example.com/example_style.css'); */

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
















/* Transition */


/* Box Shadow */


/* Border Radius */

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


/******************** INNER BANNER CSS  *****************/

.inner-banner-main.banner-text-white .heading-block * {
  color: #fff;
}

.inner-banner-main {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  float: left;
  width: 100%;
}

.inner-banner-main .overlay {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.inner-banner-main .dnd-section { 
  padding: 130px 20px 125px 20px;
  display: block;
  float: left;
  width: 100%;
}

.transparent-top-space .inner-banner-main {
  padding-top: 42px;
}

.inner-banner-wrap {
  float: left;
  width: 100%;
  position: relative;
}

.inner-banner-main.b_left .inner-banner-wrap {
  margin: 0;
  text-align: left;
  padding-left: 70px;
}

.inner-banner-main.b_right .inner-banner-wrap {
  margin: 0 0 0 auto;
  text-align: right;
  padding-right: 70px;
}

/* On Load Animation Inner Banner */

.inner-banner-main {
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}




/* On Load Animation Main Banner */


.slider-main {
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


.innerbanner-subscribe-form h3 {
  display: none;
}

.innerbanner-subscribe-form {
  margin-top: 30px;
}

.innerbanner-subscribe-form form {
  padding: 0;
  background: transparent;
  border: none;
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

.inner-banner-main.b_left .innerbanner-subscribe-form form {
  margin: 0;
}


.inner-banner-main.b_left .innerbanner-subscribe-form form {
 margin: auto 0 auto auto;
}


.innerbanner-subscribe-form form .hs_email {
  margin-bottom: 0;
  width: 80%;
}

.innerbanner-subscribe-form form .hs_email > label {
  display: none;
}


.innerbanner-subscribe-form form input[type="submit"], 
.innerbanner-subscribe-form form .hs-button {
  min-width: 180px;
  font-size: 14px;
  padding: 18px 30px;
  margin-left: 15px;
  background-color: #2DCA8C;
  color: #fff;
}


/* Responsive CSS  */

@media only screen and (max-width: 1024px) {
  .with-top-bar-panel .inner-banner-main {
    margin-top: 54px;
  }
  
  .inner-banner-main.withsecondary-menu {    
    margin-top: 0;
  } 
}
  
@media only screen and (max-width:1024px) {  
  .inner-banner-main.b_left .inner-banner-wrap {  
    padding-left: 0px;
  }

  .inner-banner-main.b_right .inner-banner-wrap {  
    padding-right: 0px;
  }
  
  .inner-banner-main .dnd-section {
    padding: 120px 20px 80px 20px;
  }
}

@media only screen and (max-width:991px){
  
  .banner-top-space-without-topbar .inner-banner-main .dnd-section {
    padding: 100px 20px 90px 20px;
  }
  
  .with-top-bar-panel .inner-banner-main.withsecondary-menu {
    margin-top: 0;
  }
  
   
  /* With Breadcrumbs inner banner CSS  */
  .banner-top-space-without-topbar .inner-banner-main .dnd-section.inner-banner-top-space {
    padding: 165px 20px 90px 20px;
  }
}

@media only screen and (max-width:767px){
  
    /* With Breadcrumbs inner banner CSS  */
  .banner-top-space-without-topbar .inner-banner-main .dnd-section.inner-banner-top-space {
    padding: 135px 20px 90px 20px;
  }
  
  .inner-banner-main .dnd-section {
    padding: 80px 20px 40px 20px;
  }
}

@media only screen and (max-width:479px ){  
  
  .with-top-bar-panel .inner-banner-main {
    margin-top: 0;
  }  
  
  /* inner banner form css  */
  .innerbanner-subscribe-form form .hs_email {
    margin-bottom: 15px;
    width: 100%;
  } 
  
  .innerbanner-subscribe-form form {
    flex-wrap: wrap;
  }
  
  .innerbanner-subscribe-form form input[type="submit"], 
  .innerbanner-subscribe-form form .hs-button {
    min-width: 100%;
    margin-left: 0;
  }
  
  .innerbanner-subscribe-form form .hs_submit.hs-submit {
    width: 100%;
  }
}
body {
  line-height: 1.4;
  word-break: break-word;
}

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
}

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 14px;
  word-break: normal;
}
/* @import url('http://example.com/example_style.css'); */

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
















/* Transition */


/* Box Shadow */


/* Border Radius */

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


/* 1a. Containers */




/* 1b. Colors */




/* 1c. Typography */








/* 1d. Buttons */






/* Button CSS  */

.btn {  
  text-transform: none;
  color:#2DCA8C;
  text-decoration: none;
  display: inline-block;  
  margin-bottom: 30px;
  font-weight: 600;
  font-family: ;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}


.btn:hover,
.btn:active {
  text-decoration: none;
}

.large_btn {  
  min-width: 210px;
  font-size: 20px;
  padding: 17px 52px;
  border-radius: 10px;
  text-align: center;
  font-family: ;
 
}

.large_btn.text_btn,
.medium_btn.text_btn,
.small_btn.text_btn {
  min-width: initial;
  padding: 0px;
  border-radius: 0px;
  text-align: initial;
  background-color: transparent;
  text-decoration: underline;
  color: #2DCA8C;
}

.large_btn.text_btn:hover,
.medium_btn.text_btn:hover,
.small_btn.text_btn:hover,
.large_btn.text_btn:active,
.medium_btn.text_btn:active,
.small_btn.text_btn:active {
  text-decoration: none;
}

.large_btn.bordered_btn,
.medium_btn.bordered_btn,
.small_btn.bordered_btn {
  border-radius: 10px;
  background-color: transparent;
}

.large_btn.filled_btn,
.medium_btn.filled_btn,
.small_btn.filled_btn {
  border:none !important;
  border-radius: 10px;
}

.medium_btn {
  min-width: 173px;
  font-size: 18px;
  padding: 14px 30px;
  border-radius: 4px;
  text-align: center;
}

.small_btn {
  min-width: 125px;
  font-size: 16px;
  padding: 6px 28px;
  border-radius: 3px;
  text-align: center;
}

.small_btn.bordered_btn {
  border-width: 1px;
  border-style: solid;
  border-color: #2DCA8C;
  background-color: transparent;
}

.align_btn_left {
  text-align:left;
}

.align_btn_center {
  text-align:center;
}

.align_btn_right {
  text-align:right;
}


/* Base Color CSS */
.btn.bordered_btn.base_color {
  border-color: #323B4B;
  color: #323B4B;
}

.btn.filled_btn.base_color {
  background-color: #323B4B;
}

.btn.filled_btn.base_color:hover {  
  color: #fff; 
}

.btn.text_btn.base_color {
  color: #323B4B;
}

/* Primary Color CSS */

.btn.bordered_btn.primary_color {
  border-color: #2DCA8C;
  color: #2DCA8C;  
}


.btn.filled_btn.primary_color {
  background-color: #2DCA8C;  
}

.btn.filled_btn.primary_color:hover {  
  color: #fff;
}

.btn.text_btn.primary_color {
  color: #2DCA8C;
}

/* Secondary  CSS */

.btn.bordered_btn.secondary_color {
  border-color: #377DFF;
  color: #377DFF;
}

.btn.filled_btn.secondary_color {
  background-color: #377DFF;
}

.btn.filled_btn.secondary_color:hover { 
  color: #fff;  
}

.btn.text_btn.secondary_color {
  color: #377DFF;
  
}

/* Danger color CSS */

.btn.bordered_btn.danger_color {
  border-color: #eb5252;
  color: #eb5252;
}


.btn.filled_btn.danger_color {
  background-color: #eb5252;
}

.btn.filled_btn.danger_color:hover {  
  color: #fff;
}


.btn.text_btn.danger_color {
  color: #eb5252;
}

/* Warning color CSS */

.btn.bordered_btn.warning_color {
  border-color: #ff9a4c;
  color: #ff9a4c;
}

.btn.filled_btn.warning_color {
  background-color: #ff9a4c;
}

.btn.filled_btn.warning_color:hover { 
  color: #fff;
}

.btn.text_btn.warning_color {
  color: #ff9a4c;
}

/* success color CSS */

.btn.bordered_btn.success_color {
  border-color: #68d452;
  color: #68d452;
}

.btn.filled_btn.success_color {
  background-color: #68d452;
}

.btn.filled_btn.success_color:hover {  
  color: #fff;
}

.btn.text_btn.success_color {
  color: #68d452;
}

/* dark color CSS */

.btn.bordered_btn.dark_color {
  border-color: #C1C7D0;
  color: #C1C7D0;
}

.btn.filled_btn.dark_color {
  background-color: #C1C7D0;
}

.btn.filled_btn.dark_color:hover { 
  color: #fff;   
}

.btn.text_btn.dark_color {
  color: #C1C7D0;
}

/* dark color gray CSS */

.btn.bordered_btn.dark_color_gray {
  border-color: ;
  color: ;
}

.btn.filled_btn.dark_color_gray {
  background-color: ;
}

.btn.filled_btn.dark_color_gray:hover {  
  color: #fff;  
}

.btn.text_btn.dark_color_gray {
  color: ;
}

/* light color CSS */

.btn.bordered_btn.light_color {
  border-color: #FAFBFC;
  color: #377DFF;
}

.btn.filled_btn.light_color {
  background-color: #FAFBFC;
  color: #377DFF;
}

.btn.text_btn.light_color {
  color: #377DFF;
}

/* light color gray CSS */

.btn.bordered_btn.light_color_gray {
  border-color: ;
  color: #377DFF;
}

.btn.filled_btn.light_color_gray {
  background-color: ;
  color: #377DFF;
}
.btn.filled_btn.light_color_gray:hover {  
  color: #377DFF;  
}


.btn.text_btn.light_color_gray {
  color: #377DFF;
}


/* Button White Color */
.btn.bordered_btn.white_color {
	border-color: #fff;
	color: #fff;
}

.btn.filled_btn.white_color {
	background-color: #fff;
	color: #377DFF;
}

.btn.filled_btn.white_color:hover{  
  color: #377DFF;  
}

.btn.text_btn.white_color {
  color: #fff;
}

/*  Button New Style CSS */
.btn {
  position: relative;
}

.btn-arrow {
  position: relative;
  transition: background-color 0.4s ease-in-out;
}
.btn-arrow span {
  display: inline-block;
  position: relative;
  transition: all 0.4s ease-in-out;
  will-change: transform;
}

.btn-arrow.text_btn:hover span {
	transform: translate3d(0, 0, 0);
}

.btn-arrow.small_btn.text_btn:hover i {	
	right: -1.7rem;
}

.btn-arrow.text_btn span {
  position: relative;
  line-height: 22px;
}
.btn-arrow.text_btn span {
  border-bottom: 2px solid;  
}

.btn-arrow.small_btn.text_btn span {
  border-bottom: 1px solid;  
}

/*  New Button Style */
.link__graphic {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	fill: none;
  stroke: #2DCA8C;
	stroke-width: 1px;
}

.link__graphic--slide {
	top: -4px;
	stroke-width: 2px;
	transition: transform 0.7s;
	transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}

.btn.text_btn:hover .link__graphic--slide {
	transform: translate3d(-66.6%, 0, 0);
}

.btn.text_btn{
  overflow: hidden;
  padding: 0 0 7px 0;
}

.btn.text_btn span {
  border-bottom: 0 !important;
}

.btn.text_btn::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #2DCA8C;
  top: 100%;
  left: 0;
  pointer-events: none;  
}

.btn.text_btn.small_btn .link__graphic--slide{
  top: -8px;
}

.btn.text_btn.medium_btn .link__graphic--slide{
  top: -6px;
}

/* New Button Hover Effect */
.bordered_btn,
.filled_btn{ 
  position: relative;
  box-shadow: 0 20px 27px rgba(0, 0, 0, 0.05);
	transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;  
  -ms-transform-style: preserve-3d;  
  -moz-transform-style: preserve-3d;  
  -o-transform-style: preserve-3d;  
}

.bordered_btn .btn-inner,
.filled_btn .btn-inner {
  transform: translateZ(50px);
  -webkit-transform: translateZ(50px);  
  -ms-transform: translateZ(50px);  
  -moz-transform: translateZ(50px);  
  -o-transform: translateZ(50px);  
}

.bordered_btn > span,
.filled_btn > span{
	display: inline-block; 
}

.custom-btn {
  display: inline-block;
}


/* Responsive CSS  */

@media only screen and (max-width: 1024px) {
  .btn {
    margin-bottom: 0 !important;
  }  
}

@media only screen and (max-width: 991px){
  .button-page .row-fluid-wrapper > .row-fluid {
    flex-wrap: wrap;
  }
  .button-page .span3 {
    width: auto;  
    flex-wrap: wrap;
    padding-bottom: 20px !important;
  } 
  
  .large_btn {	
    font-size: 18px;
    padding: 17px 25px;	
    line-height: 24px;
  }
  
  .medium_btn {    
    font-size: 16px;
    padding: 12px 20px;
  }  
}

@media only screen and (max-width: 479px) {
  
  .btn-group a.btn:last-of-type {
    margin-bottom: 0 !important;
  }
}
/* @import url('http://example.com/example_style.css'); */

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


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


/* Form */

form {
  font-family: ;
}

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

/* Labels */

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

/* Help text - legends */

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

/* Inputs */

.input {
  position: relative;
}

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

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

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

::-webkit-input-placeholder {
  color: #BFBFBF;
}

::-moz-placeholder {
  color: #BFBFBF;
}

:-ms-input-placeholder {
  color: #BFBFBF;
}

:-moz-placeholder {
  color: #BFBFBF;
}

::placeholder {
  color: #BFBFBF;
}

/* Inputs - checkbox/radio */

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

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

.inputs-list > li::before {
  display:none;
}
.inputs-list input,
.inputs-list span {
  font-size: 0.875rem;
  vertical-align: middle;
}

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

/* Inputs - datepicker */

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

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

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

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

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

/* Headings and text */

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

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

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

/* GDPR */

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

/* Validation */

.hs-form-required {
  color: red;
}

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

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

/* Submit button */

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

  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
  width: auto;
  word-break: break-word;
}

form input[type=submit]:hover,
form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:focus {
  background-color: #2DCA8C;
  border-color: #2DCA8C;

  color: #FFF;
}

form input[type=submit]:active,
form .hs-button:active {
  background-color: #2DCA8C;
  border-color: #2DCA8C;

  color: #FFF;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

.form-columns-2 .hs-form-field:last-child {
  margin-left: 30px ;
}

fieldset.form-columns-2 .hs-form-field{
  width:calc(50% - 15px) !important;
}

fieldset.form-columns-3 .input,
fieldset.form-columns-2 .input,
fieldset.form-columns-1 .input{  
  margin-right: 0px !important;
}

.form-columns-3 .hs-form-field:nth-child(2) {
  margin-left: 30px;
  margin-right: 30px !important;
}



.form-columns-3 .hs-form-field:nth-child(2) {
  margin-left: 30px;
  margin-right: 30px;
}

fieldset.form-columns-3 .hs-form-field{
  width:calc(32.89% - 15px) !important;
}

fieldset.form-columns-2 .hs-form-field input{
    width:100% !important;
  } 

fieldset.form-columns-3 .hs-form-field input{
    width:100% !important;
  } 

fieldset.form-columns-1 .hs-input {
  width: 100% !important;
}

.hs-fieldtype-checkbox .hs-input[type="checkbox"],
.hs-fieldtype-booleancheckbox .hs-input[type="checkbox"]{
  position: relative;
  top: 0;
  width: 20px !important;
  height: 20px;
  border: 2px solid #dfdfdf;
  border-radius: 4px; 
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
}

input[type="checkbox"]::before {
    position: absolute;
    content: "\f00c";
    font-family: 'FontAwesome';
    top: 0;
    right: 0;
    left: 0px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    font-size: 14px;
    color: #fff;
}

.hs-fieldtype-checkbox .hs-input[type="checkbox"]:checked:before,
.hs-fieldtype-booleancheckbox .hs-input[type="checkbox"]:checked:before{
  opacity: 1;
  visibility: visible;
}

.hs-fieldtype-checkbox .hs-input[type="checkbox"]:checked,
.hs-fieldtype-booleancheckbox .hs-input[type="checkbox"]:checked{
  background-color: #2DCA8C;
  border-color: #2DCA8C;
}



.hs-fieldtype-checkbox .hs-input[type="checkbox"]:focus,
.hs-fieldtype-booleancheckbox .hs-input[type="checkbox"]:focus{
  outline: 0;
}

form .hs-input[type="radio"],
form .hs-input[type="radio"]{
  position: relative;
  top: 0;
  width: 20px !important;
  height: 20px;
  border: 2px solid  #dfdfdf;
  border-radius: 4px; 
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 100%;
  -wbkit-border-radius: 100%;
}

input[type="radio"]::before {
	position: absolute;
	content: "";
	top: 50%;
	right: 0;
	left: 0px;
	text-align: center;
	visibility: hidden;
	opacity: 0;
	background-color: #2DCA8C;
	width: 12px;
	height: 12px;
	display: inline-block;
	border-radius: 100%;
	transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
	margin: 0 auto;
}

form .hs-input[type="radio"]:checked:before,
form .hs-input[type="radio"]:checked:before{
    opacity: 1;
  visibility: visible;
}

form .hs-input[type="radio"]:focus,
form .hs-input[type="radio"]:focus {
  outline: 0;
}

.hs_upload_resume .hs-input[type="file"] {
  padding: 10px;
  background-color: #f7f7f7;
  border: 2px solid #dfdfdf;
}

/*  Responsvie css */

@media only screen and (max-width:1210px) {
  
  .form-columns-3 {
    display:flex;
  }
  
}

@media only screen and (max-width:767px) {
  .form-without-bg-main {
    margin-top: 30px;
  }
  
    .form-columns-2 .hs-form-field:last-child {
    margin-left: 0px;
  }

  fieldset.form-columns-2 .hs-form-field{
    width:100% !important;
  } 
  
  fieldset.form-columns-2 .hs-form-field input{
    width:100% !important;
  }
  
  .form-columns-3 {
    flex-wrap: wrap;
  }
  
  fieldset.form-columns-3 .hs-form-field {
    width: 100% !important;
  }
  
  .form-columns-3 .hs-form-field:nth-child(2) {
    margin-left: 0;
    margin-right: 0 !important;
  }
}
/* @import url('http://example.com/example_style.css'); */

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
















/* Transition */


/* Box Shadow */


/* Border Radius */

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.table-section {
  float: left;
  width: 100%;
}

/****** Table CSS  *******/

/*  Table  Pages Css */
.table-main table{
  border: 0 !important;
}
.table-main td {
  border-bottom:2px solid #FAFBFC;
}

.table-main table th {
  border-bottom:2px solid #323B4B;
  border-top:0;
  background-color: #323B4B;
  color:#fff;
  font-weight: 600;
}

.table-main table th:first-child {
  border-radius: 15px 0 0 0;
}

.table-main table th:last-child {
  border-radius: 0 15px 0 0;
}

.table-main table td {
  border-left: 0;
  border-right: 0;
  font-size:16px;
  font-weight:400;
  text-align: right;
}
.table-main table th {
  border-left:0;
  border-right:0;;
  color:#fff;
  text-align:right;
  
}

.table-main table tr,.table-main table td {
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;;
}

.table-main table tr:hover {
  background-color: #2DCA8C;
}

.table-main table tr:first-child:hover {
  background-color: transparent;
}

.table-main table tr:hover td {
  color: #fff;
}

.table-main th,
.table-main  td {
  padding: 15px;
}

.table-main table th:first-child {
    text-align:left;
    
}

.table-main table td:first-child {
  text-align:left;
  
}

/*********** Table Style Two CSS  ***********/
.table-main .tablestyletwo table th {
  background-color: #323B4B;
  border: 0;
  color: #fff;
}

.table-main .tablestyletwo table td {
  border: 0;
}

.table-main .tablestyletwo table tr:nth-child(odd) {
  background-color:#FAFBFC;
}

.table-main .tablestyletwo table tr:nth-child(odd):hover {
  background-color: #2DCA8C;  
}


/*************** Responsive CSS  **************/
@media only screen and (max-width: 1024px){
  
  
  .table-main table th {
    width: 23% !important;
  }
  
  .table-main table th:first-child {
   
    width: 31% !important;
  } 
}

@media only screen and (max-width: 991px){
  .table-main table th {
	  width: 32% !important;
  }
  
  
  .table-main table th:first-child {
    
    width: 31% !important;
  }
  
  
}

@media only screen and (max-width:767px) {
  .table-main table {
    table-layout: initial !important;
    width: 150% !important;
    display: block;
    
    border-collapse: 0 !important;
  }
  
  .table-main > div {
    overflow-x: scroll;
  }
  
  .table-main table th:first-child {
    
    width: 25% !important;
  }
  
  .table-main table th:first-child {
    width: 8% !important;
  }  
  .table-main table th {
    width: 20% !important;
  } 
  
   .table-main table th:nth-child(2) {
    width: 26% !important;
  }
  
  .table-main table th:last-child {
    width: 22% !important;
  }
  
  .table-main {
    overflow: hidden;
  }
}

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

















/* Transition */


/* Box Shadow */


/* Border Radius */


/* Header CSS Start */
.header {
  position: fixed; 
  width: 100%; 
  top: 0; 
  z-index: 1111; 
  background-color: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.02);
}

.sticky-header {
  -webkit-box-shadow: 0 5px 10px rgba(154,161,177,0.1);
    -moz-box-shadow: 0 5px 10px rgba(154,161,177,0.1);
    -o-box-shadow: 0 5px 10px rgba(154,161,177,0.1);
    -ms-box-shadow: 0 5px 10px rgba(154,161,177,0.1);
    box-shadow: 0 5px 10px rgba(154,161,177,0.1);;
}

.header .btn {
  margin-bottom: 0;
  box-shadow: none;
}

.header .hs_cos_wrapper_type_module.widget-type-logo a {
  display:flex;
  align-items: center;
}

.header .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 a {
  color: #323B4B;
  padding: 29px 20px;
  white-space: nowrap;
  max-width: none;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  line-height: 26px;
  font-size: 16px;
  font-weight: 600;
  float:left;
}

.header .dnd-section .row-fluid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header .hs-menu-wrapper > ul > li.hs-item-has-children > a::before {
	position: absolute;
	content: "\f107";
	font-family: FontAwesome;
	right: 15px;
	top: 28px;
	font-size: 16px;
	color: #323B4B;
	-webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.hs-item-has-children > a {
	padding-right: 30px !important;
}

.header .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
  float:left;
}

.header .hs-menu-wrapper.hs-menu-flow-horizontal > ul li {
	margin: 0;
	padding-left: 0;
}

.header .hs-menu-wrapper > ul ul {
	max-width: 230px;
	min-width: 230px;
	background: #fff;
}

.header .widget-type-menu .hs-menu-wrapper > ul ul {
	padding: 15px 0;
}

.header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
	line-height: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .4s;
	position: absolute;
	z-index: 10;
	left: 0;
  -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;;
}

.header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
	transition: opacity 0s linear .2s,visibility 0s linear .2s;	
  -webkit-box-shadow: 0 30px 30px rgba(0,0,0,0.10);
    -moz-box-shadow: 0 30px 30px rgba(0,0,0,0.10);
    -o-box-shadow: 0 30px 30px rgba(0,0,0,0.10);
    -ms-box-shadow: 0 30px 30px rgba(0,0,0,0.10);
    box-shadow: 0 30px 30px rgba(0,0,0,0.10);;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
	margin: 0 -100px;
	left: 50% ;
  border-top: 5px solid #2DCA8C;
	-webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children {
	position: relative;
}

.header .widget-type-menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li {
	margin: 0;
	padding-left: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
  left:50%;
	opacity: 1;
	visibility: visible;
}

.header .widget-type-menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul ul li {
	padding: 0 15px;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
	font-size: 16px;
	font-weight: 500;
	color: #323B4B;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.header .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a:hover {
  color: #2DCA8C;
}

.header .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a:hover::before {
  color: #2DCA8C;
}

.header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
	padding: 5px 15px;
  font-weight: 500;
  font-size: 16px;	
}

.header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
	white-space: break-spaces;
	max-width: none;
	overflow: visible;
	text-overflow: initial;
	line-height: 26px;
  text-transform: capitalize;
  float: none;
  width: 100%;
  position: relative;
}

.header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper > li.hs-item-has-children > a::before {
	position: absolute;
	content: "\f107";
	font-family: FontAwesome;
	top: 5px;
	right: 15px;
	font-size: 14px;
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
}

.header .widget-type-menu .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
	left: 100%;
	max-width: 230px;
	min-width: 230px;
	margin: 0;
}

.header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
	padding: 5px 15px;	
}

.header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
	float: none;
	width: 100%;
	position: relative;
  
}

.header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
	white-space: break-spaces;
	max-width: none;
	overflow: visible;
	text-overflow: initial;
	line-height: 26px;
}

.header .widget-type-menu .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
	left: 100%;
	top: -20px;
}

.header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover {
  background: #FAFBFC;	
}

#btn-search {	
  cursor: pointer;
	width: 50px;
	height: 50px;
	display: inline-block;
  color: #323B4B;	
	border-radius: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

#btn-search:hover {
  color: #2DCA8C;
}


.header .search-icon:hover {
  background-color: #FAFBFC;
}

.header .small_btn,
.header .large_btn {
  padding: 10px 18px;
}

/* Languages CSS */
.header .lang_switcher_class {
  width: 50px;
	height: 50px;
	display: inline-block;
  color: #323B4B;	
	border-radius: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.header .lang_switcher_class:hover {
  background-color: #FAFBFC;
}

.header .lang_list_class::after, 
.header .lang_list_class::before {	
	margin-top: 18px;  
}

.header .lang_list_class::before {  
  display: none;
}

.header .lang_list_class::after {
  border-bottom-color: #2DCA8C;
}

.header .lang_list_class li {
  border-color: rgba(0,0,0,0.07);
  padding: 0;  
}

.header .lang_list_class li a {
  padding: 10px 20px;
  font-weight: 500 !important;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.header .lang_list_class li a:hover {
  color: #2DCA8C;
	background-color: #FAFBFC;
}

.header .lang_list_class {
	padding: 35px 0 0;
	width: 200px;
	text-align: left;
  top: 30px;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.header .lang_list_class li:first-child {
  border-radius: 10px 10px 0 0;
  border-top: 5px solid #2DCA8C;
}

.header .lang_list_class li:last-child {
  border-radius: 0 0 10px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

/* No Navigation Header CSS */
.header.header--no-navigation {
  -webkit-box-shadow: 0 5px 10px rgba(154,161,177,0.1);
    -moz-box-shadow: 0 5px 10px rgba(154,161,177,0.1);
    -o-box-shadow: 0 5px 10px rgba(154,161,177,0.1);
    -ms-box-shadow: 0 5px 10px rgba(154,161,177,0.1);
    box-shadow: 0 5px 10px rgba(154,161,177,0.1);;
}



/* Header New CSS */
.o-header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1111;
	background-color: #fff;
  box-shadow: 0 5px 10px rgba(154,161,177,0.1);
  -webkit-box-shadow: 0 5px 10px rgba(154,161,177,0.1);	
}

.header {
	padding: 0;
	border: 0;
}

.o-header-resp-menu {
  display: none;
}

.o-header-inner {
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.o-header-logo-wrap {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 15%;
	        flex: 0 0 15%;
}

.o-header-navi-main {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 85%;
	        flex: 0 0 85%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
  -webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.o-header-button-wrap .btn {
  margin-bottom: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
	font-size: 16px;
	font-weight: 500;
  color: #323B4B;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 a {
	color: #323B4B;
	padding: 29px 20px;
	white-space: nowrap;
	max-width: none;
	overflow: hidden;
	text-overflow: ellipsis;
	text-decoration: none;
	line-height: 26px;
	font-size: 16px;
	font-weight: 600;
	float: left;
}

.o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal > ul li {
	margin: 0;
	padding-left: 0;
}

.o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal > ul li {
	margin: 0;
	padding-left: 0;
}

.hs-menu-wrapper ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
	float: left;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children {
	position: relative;
}

.o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal > ul li {
	margin: 0;
	padding-left: 0;
}

.hs-item-has-children > a {
	padding-right: 30px !important;
}

.o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 a {
	color: #323B4B;
	padding: 29px 20px;
	white-space: nowrap;
	max-width: none;
	overflow: hidden;
	text-overflow: ellipsis;
	text-decoration: none;
	line-height: 26px;
	font-size: 16px;
	font-weight: 600;
	float: left;
}

.o-header-menu-inner .hs-menu-wrapper > ul ul {
	max-width: 230px;
	min-width: 230px;
	background: #fff;
}

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

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
	left: -9999px;
	opacity: 0;
	position: absolute;
}

.o-header-menu-inner .hs-menu-wrapper > ul ul {
	padding: 15px 0;
}

.o-header-menu-inner .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
	line-height: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .4s;
	position: absolute;
	z-index: 10;
	left: 0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	border-radius: 10px;
}

.o-header-menu-inner .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
	transition: opacity 0s linear .2s,visibility 0s linear .2s;
	-webkit-box-shadow: 0 30px 30px rgba(0,0,0,0.10);
	-moz-box-shadow: 0 30px 30px rgba(0,0,0,0.10);
	-o-box-shadow: 0 30px 30px rgba(0,0,0,0.10);
	-ms-box-shadow: 0 30px 30px rgba(0,0,0,0.10);
	box-shadow: 0 30px 30px rgba(0,0,0,0.10);
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
	margin: 0 -100px;
	left: 50%; 
  border-top: 5px solid #2DCA8C;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
	left: 0;
	opacity: 1;
	top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
	left: 50%;
	opacity: 1;
	visibility: visible;
}

.o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a:hover {
  color: #2DCA8C;
}

.o-header-menu-inner  .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
	padding: 5px 15px;
	font-weight: 500;
	font-size: 16px;
}

.o-header-menu-inner  .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
	white-space: break-spaces;
	max-width: none;
	overflow: visible;
	text-overflow: initial;
	line-height: 26px;
	text-transform: capitalize;
	float: none;
	width: 100%;
	position: relative;
}

.o-header-menu-inner  .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
	padding: 5px 15px;
}

.o-header-menu-inner  .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
	float: none;
	width: 100%;
	position: relative;
}

.o-header-menu-inner  .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
	white-space: break-spaces;
	max-width: none;
	overflow: visible;
	text-overflow: initial;
	line-height: 26px;
}

.o-header-menu-inner  .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover {
	background: #fafbfc;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
	margin: 0 -100px;
	left: 50%;
  border-top: 5px solid #2DCA8C;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
	left: 100%;
	max-width: 230px;
	min-width: 230px;
	margin: 0;
}

.o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
	left: 100%;
	top: -20px;
}

.o-header-menu-inner .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
	padding: 5px 15px;
}

.o-header-menu-inner  .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
	padding: 5px 15px;
	font-weight: 500;
	font-size: 16px;
}

.o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal > ul ul li {
	padding: 0 15px;
}

.o-header-menu-inner .hs-menu-wrapper > ul > li.hs-item-has-children > a::before {
	position: absolute;
	content: "\f107";
	font-family: FontAwesome;
	right: 15px;
	top: 28px;
	font-size: 16px;
	color: #323b4b;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}


.o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a:hover::before {
  color: #2DCA8C;
}

.o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a:hover::before {
	color: #2DCA8C;
}

.o-header-menu-inner .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper > li.hs-item-has-children > a::before {
	position: absolute;
	content: "\f107";
	font-family: FontAwesome;
	top: 5px;
	right: 15px;
	font-size: 14px;
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
}

.o-header-button-main {
	margin-left: 18px;
}

.o-header-search-main {
	margin-left: 5px;
}

.o-header-search-lang-group-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.o-header-menu-inner .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  width: 100%;
  display: inline-block;
  
}

/*  Header REsponsive CSS */
@media only screen and (max-width: 1280px) {
  .header .span10 .row-fluid-wrapper > .row-fluid {
    justify-content: flex-end;
  }
  
  .header .span10 .row-fluid-wrapper > .row-fluid > .widget-span {
    width: auto !important;;
  }
}

@media only screen and (min-width:1025px)and (max-width:1222px) {
  .header .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 a {
    font-size: 15px;
  }
}

@media only screen and (max-width:1180px) {
  .header .btn {
    font-size: 14px;
    padding: 10px 20px;    
    min-width: 150px;
  }
  
  .header .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 a {
    font-size: 14px;
  }
  
  .o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 a {
    padding: 29px 10px;
  }
}

@media only screen and (max-width:1024px) {
  .header.header--no-navigation .header-top-row-0-padding {
    padding-top: 0px !important;
    padding-bottom: 0px !important;    
  }
  
  .header {
    padding: 12px 0;
  }
  /*  Toggle menu css */
  .togglemenu {
    position: relative;    
    width: 30px;
    margin-top: -32px;
    margin-top: 0;
    display: block;
    top: 0;
    right: 0;
    height: 25px;
  }
  
  .togglemenu span {
    position: absolute;
    height: 3px;
    background-color: #fff;
    top: 11px;
    right: 0;
    left: 0;
  }

  .togglemenu span {
    position: absolute;
    height: 3px;
    background-color: #fff;
    top: 11px;
    right: 0;
    left: 0;
  }

  .togglemenu span {
    background-color: #323B4B;
  }
  
  .togglemenu span::before {
    position: absolute;
    content: "";
    height: 3px;
    top: -9px;
    right: 0;
    left: 0;
    background-color: #fff;
  }
  
  .togglemenu span::before,
  .togglemenu span::after {
    transition-property: top,transform;
    -webkit-transition-property: top,-webkit-transform;
  }
  
  .togglemenu span::before, 
  .togglemenu span::after {
    background-color: #323B4B;
  }
  
  .togglemenu span::after {
    position: absolute;
    content: "";
    height: 3px;
    top: 9px;
    right: 0;
    left: 0;
    background-color: #fff;
  }
  
  .togglemenu span::before, .togglemenu span::after {
    transition-property: top,transform;
    -webkit-transition-property: top,-webkit-transform;
  }
  
  .togglemenu span::before, .togglemenu span::after {
    transition-duration: .3s,0.3s;
    transition-delay: .3s,0s;
    -webkit-transition-duration: .3s,0.3s;
    -webkit-transition-delay: .3s,0s;
  }
  
  .togglemenu span::before, 
  .togglemenu span::after {
    background-color: #1a1a1a;
  }
  
  .togglemenu.active span {
    background: 0;
  }
  
  .togglemenu span::before, 
  .togglemenu span::after {
    background-color: #323B4B;
  }
  
  .togglemenu.active span::before {
    top: 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  
  .togglemenu.active span::before, 
  .togglemenu.active span::after {
    transition-delay: 0s,0.3s;
    -webkit-transition-delay: 0s,0.3s;
  }
  
  .togglemenu.active span::after {
    top: 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  
  /* menu css  */
  
  .js-enabled .hs-menu-wrapper {
    height: initial;
    overflow: scroll;
    position: absolute;
    top: 60px;
    padding: 0;
    display: none;
    left: 0;
    right: 0;
    border-top: 1px solid #e0e0e0;
  }  
  
  .js-enabled .hs-menu-wrapper {
    height: 90vh;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
  }
  
  .js-enabled .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    width: 100%;
    background-color: #fff;
  }
  
  .header .js-enabled .hs-menu-wrapper.hs-menu-flow-horizontal > ul li {
    float: left;
    width: 100%;
  }
  
  .header .js-enabled .hs-menu-wrapper > ul > li.hs-item-has-children > a::before {
    position: absolute;
    content: "\f107";
    font-family: FontAwesome;
    right: 15px;
    top: 17px;
    font-size: 16px;
    right: 22px;
    color: #323B4B;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;;
  }
  
  .header .js-enabled .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a::before, 
  .header .js-enabled .hs-menu-wrapper > ul li.hs-item-has-children a::before {
    transform: rotate(0);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;;
  }
  
  .header .js-enabled .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 a {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .header .js-enabled .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
    float: left;
    width: 100%;
  }
  
  .child-trigger {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55px !important;
    min-width: 55px !important;
    height: 45px !important;
    padding: 0 !important;
    border-left: 1px dotted rgba(0,0,0,0.20);
  }
  
  .header .child-trigger {
    height: 57px !important;
  }
  
  .header .js-enabled .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    width: 100%;
    position: static !important;
  }
  
  .header .js-enabled .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    margin: 0;
    border-top: 0;
    max-width: 100%;
    background-color: transparent;
    padding: 0;
  }
  
  .header .js-enabled .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li {
    padding-right: 0;
  }
  
  .header .js-enabled .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    line-height: 26px;
  }
  
  .js-enabled .hs-menu-wrapper {
    top: 78px !important;;
  }
  
  .header .hs-menu-wrapper .hs-menu-depth-1 > .hs-menu-children-wrapper {
    top: initial !important;
    
  }
  
  .header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    box-shadow: none;
    border-radius: 0;
  }
  
  .header .hs-menu-wrapper ul.hs-menu-children-wrapper {
    visibility: visible !important;
    opacity: 1 !important;   
  }
  
  .header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    padding: 10px 15px;
  }
  
  .header .widget-type-menu .hs-menu-wrapper > ul ul li .child-trigger {
    height: 46px !important;
  }
  
  .header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper > li.hs-item-has-children > a::before {
    right: 22px;
    top: 10px;
    font-size: 16px;
    font-weight: 600;
    transform: rotate(0);
  }
  
  .header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a.selected-a::before, 
  .header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children a.selected-a::before {
	  transform: rotate(-180deg);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;;
  }
  
  .header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {    
    width: 100%;
  }
  
  .header .widget-type-menu .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li {
    width: 100%;
  }
  
  .header .widget-type-menu .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 100%;
    max-width: 100%;
    min-width: 100%;
    margin: 0;
  }
  
  .header .small_btn, .header .large_btn {
    margin-left: 15px;
  }
  
  .togglemenu {
    right: 15px;
  }
  
  .header .hs-menu-wrapper {
    display: none;
  }
  
  
  /*  Responsive Menu CSS   */

  .o-header-desk-menu {
    display: none;
  }
  
  .o-header-button-main {
    display: none;
  }
  
  .o-header-resp-menu {
    display: inline-block;
  }
  
  .o-header-navi-main,
  .o-header-logo-wrap{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  
  .o-header {
    padding: 10px 0;
  }
  
  .o-header-navi-main {
    -webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }
  
  .o-header-menu {
   margin-left: 20px;
    margin-top: 8px;
  }
  
  .togglemenu {
    right: 0;
  } 
  
  .js-enabled .hs-menu-wrapper {   
    background: #fff;
  }
  
  .o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li:last-child {
    width: initial;
    float: none;
    display: inline-block;
    text-align: left;
    margin-left: 20px;
  }
  
  .o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal > ul > li:last-child > a {
    background: #2DCA8C;
    color: #fff;
    min-width: 180px;
    width: initial;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    margin-left: 0;
    float: none;
    display: inline-block;
    font-size: 16px !important;
  }
  
  .o-header-menu-inner .js-enabled .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    box-shadow: none;
  }
  
  .header {
    padding: 0;
    border:0;
  }
  
  .o-header-logo {
    margin-top: 2px;
  }
  
  .header .js-enabled .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a::before, 
  .header .js-enabled .hs-menu-wrapper > ul li.hs-item-has-children a::before {
    top: 17px;
    font-size: 16px;
    right: 22px;
    font-weight: 700;
  }
  
  
  .o-header-menu-inner .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    max-width: 100%;
    min-width: 100%;
    
  }
  
  
}

@media only screen and (max-width:767px) { 
  
  .header .dnd-section > .row-fluid > .span12 {
    width: 100%;
    
  }
  
  .header .dnd-section .row-fluid .span2 {
    width: 30%;
  }
  
  .header .dnd-section .row-fluid .span10 {
    width: 70%;
  }
  
  .header .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 a {
    font-size: 14px;
  }
  
  .header .small_btn, .header .large_btn {    
    font-size: 14px;
    padding: 10px 15px;
    line-height: 24px;
  }
  
  .js-enabled .hs-menu-wrapper {
    top: 74px !important;;
  }
  
  .header .btn {
    margin-bottom: 0;
    padding: 10px;
    min-width: 140px;
    font-size: 14px;
    margin-left: 20px;
  }
}

@media only screen and (max-width: 479px) {
  #btn-search {	
    width: 40px;
    height: 40px;	
    font-size: 16px;
  }
  
  .header .lang_switcher_class {
    width: 40px;
    height: 40px;
  }
  
  .header .globe_class {
    background-size: 17px;
  }
  
  .header .dnd-section .row-fluid .span10 {
    width: 80%;
  }
  
  .header .dnd-section .row-fluid .span2 {
    width: 20%;
  }
  
  .js-enabled .hs-menu-wrapper {
    top: 68px !important;
  }
  
  .header .span10.widget-span.widget-type-cell.dnd-column .span1.widget-span.widget-type-cell.header-main-column-7-padding.dnd-column {
    display: none;
  }
  
  .header .btn {
    padding: 8px 10px;
    font-size: 14px;
    min-width: 120px;
    margin-left: 15px;
  }
  
  .search__info {
    line-height: 20px !important;
  }
  
  .search__input {
    padding-bottom: 5px !important;
  }
  
  
}
















/* Transition */


/* Box Shadow */


/* Border Radius */



/* Footer CSS */
.footer {
  float: left;
  width: 100%;
  position: relative;  
}

.footer h6 {
  font-size: ;
}

.footer .hs-menu-wrapper ul li {
  padding-left: 0;
  float: left;
  width: 100%;  
}

.footer .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.footer .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a:hover {
  color: #2DCA8C;
}

.social-links__link {
  display: flex;
}

.social-links__icon {
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.social-links__icon:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -o-transform: translateY(-5px);  
}

.social-links__icon:hover, 
.social-links__icon:focus {
  background-color: #2DCA8C !important;
}

.footer .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  color: #323B4B;
}

.footer {
  background-color: #ffffff;
}

.footer .social-links__icon {
  background-color: #FAFBFC;
  -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;;
}

.footer .social-links__icon svg {
  fill: #B0B7C3;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.footer .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  visibility: visible !important;
  opacity: 1 !important;
  margin: 0;
  left: initial;
  top: initial;
  position: relative;
  border-top: 0;
  padding-left: 10px;
  padding-left: 30px;  
  list-style: initial;
}

.footer .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  font-size: 14px;
}

/* Responsive CSS */
@media only screen and(max-width: 991px) {
  .footer .footer-row-0-padding {
    padding: 80px 0 !important;
  }
  
  
}


@media only screen and(max-width:767px) {
  .footer .footer-row-0-padding {
    padding: 60px 0 !important;
  }
  
  .footer .span6 .span4 {
    margin-bottom: 30px;
  }
  
  .footer .span6 .span4:last-child {
    margin-bottom: 0;
  }
  
  .footer .row-fluid-wrapper.row-depth-1.row-number-1 {
    padding-top:30px !important;
  }
  
  .footer .row-fluid-wrapper.row-depth-1.row-number-1.footer-column-1-row-1-vertical-alignment > .row-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .footer .row-fluid-wrapper.row-depth-1.row-number-1.footer-column-1-row-1-vertical-alignment > .row-fluid .span6{
    width: 50%;
  }
  
  .footer .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section {
    padding-top: 40px !important;
  }
  
  .footer.footer--no-navigation .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section {
    padding-top: 15px !important;
  }
   
}

@media only screen and(max-width:479px) {
  .footer .footer-row-0-padding {
    padding: 40px 0 !important;
  }
  
  .footer .row-fluid-wrapper.row-depth-1.row-number-1.footer-column-1-row-1-vertical-alignment > .row-fluid {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer .row-fluid-wrapper.row-depth-1.row-number-1.footer-column-1-row-1-vertical-alignment > .row-fluid .span6{
    width: 100%;
  }
  
  .footer p br {
    display: none;
  }
  
  
  .footer .span6.widget-span.widget-type-cell.footer-column-17-vertical-alignment.dnd-column.footer-column-17-padding .row-fluid  {
    display: flex;
    justify-content: flex-start;
  }
  
  .footer .social-links {
    margin-top: 15px;
  } 
}



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

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
















/* Transition */


/* Box Shadow */


/* Border Radius */

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

/********** 404 Page CSS ************/
.system-pages-wrapper h1 {
  margin-bottom: 25px;
}

.body-container-wrapper .system-pages-wrapper{
  padding-top: 144px;
  padding-bottom: 150px;
  float: left;
  width: 100%;

}

.body-container-wrapper.system-page-v-full .system-pages-wrapper{
  padding-top: 150px;
  padding-bottom: 150px;
}
.body-container-wrapper.with-top-bar-panel .system-pages-wrapper {
  padding-top: 196px;
  
}
.error-page {
    position: relative;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.error-page img{
  margin-bottom: 30px;
  max-width: 320px;
}

.error-page .overline {
  float: left;
  width: 100%;
  margin-bottom: 12px; 
  color: #2DCA8C;
}

.error-page__heading h1{
  margin-bottom: 30px !important;
  float:left;
  width: 100%;
}

.error-page p{
  margin-bottom: 30px;
}



/*********** 500 page css  ********/

.error-page .hs-search-field ul li {
  padding-left: 0;
}

.error-page .hs-search-field ul li::before {
  display: none;
}
.error-page .hs-search-field--open .hs-search-field__suggestions {
  border: 2px solid #bfbfbf !important;
  border-top: 0 !important;
  text-align: left;
  padding: 10px 15px;
  
}

.error-page .hs-search-field--open .hs-search-field__suggestions:hover {
  border-color: #2DCA8C !important;
}

/*************** Password Prompt Page CSS ************/
.error-page #hs-pwd-widget-password {
	height: initial !important;
  margin-top: 0px !important;
}

.error-page.password-page form {
  display: flex;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  margin-top: 30px;
}

.error-page.password-page form .hs-button.primary.large {
  min-width: 170px;
  margin-left: 15px;
  font-size: 14px;
}

.error-page.password-page form .hs-button.primary.large:focus {
  outline: none;
}

.error-page.password-page form {
	display: flex;
	max-width: 500px;
	margin: 0 auto;
  padding: 0;
  margin-top: 30px;
  
}


/****************  Email Unsubscribe Page CSS ***************/
.error-page #email-prefs-form h3 {
    display: none !important;
}

.error-page.emailunsubscribe .email-edit.hs-input {
  padding:.7rem !important;
  width: 315px !important;
}

.error-page.emailunsubscribe form .hs-button.primary {
	min-width: 170px;
	margin-left: 15px;
	padding: 17px 30px;
	font-size: 14px;
  background-color:#2DCA8C;
}

.error-page.emailunsubscribe form .hs-button.primary:focus {
  outline: none;
}

.error-page.emailunsubscribe .page-header {
  display: none !important;
}

.error-page.emailunsubscribe form  {
	max-width: 500px;
	margin: 0 auto;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  border-radius: 0;
  padding: 0;

}

.error-page.emailunsubscribe #content {
	display: flex;
}

.error-page.emailunsubscribe #content div {
  padding-bottom: 0px !important;
}

.error-page .btn {
  background-color: #2DCA8C;
}

.error-page .btn:hover {
  color: #fff;  
} 

/*************** Email Subscription Page CSS **************/

.system-pages-wrapper.email-subscription-wrapper .page-header h1 {
  display: none;
}

.system-pages-wrapper.email-subscription-wrapper .page-header h2 {
  display: none !important;
}

.system-pages-wrapper.email-subscription-wrapper .error-page.password-page.email-subscription h2 {
  float: none;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  color: #2DCA8C;
  text-decoration: underline;
  
}

.error-page.password-page.email-subscription form {
	max-width: 100%;
	display: inline-block;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}


.system-pages-wrapper.email-subscription-wrapper  .email-prefs .item {
	-moz-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
	padding-bottom: 1px;
	position: relative;
	margin: 20px 0px;
	cursor: pointer;
}

.system-pages-wrapper.email-subscription-wrapper .email-prefs .item {
  float: none;
  display: inline-block !important;
  vertical-align: top;
  text-align: left;
  width: 31%;
  min-height: 140px;
  margin: 12px !important;
  padding: 15px;
  background-color: #fff;
  border-radius: 12px;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.system-pages-wrapper.email-subscription-wrapper .item:hover {
  -webkit-box-shadow: 0 5px 12px 8px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 5px 12px 8px rgba(0,0,0,0.1);
    -o-box-shadow: 0 5px 12px 8px rgba(0,0,0,0.1);
    -ms-box-shadow: 0 5px 12px 8px rgba(0,0,0,0.1);
    box-shadow: 0 5px 12px 8px rgba(0,0,0,0.1);;
}

.system-pages-wrapper.email-subscription-wrapper .email-prefs .item .item-inner{
  max-width: initial;
  position: static;
  top: initial;
  transform: initial;
  right:initial;
  left: initial;
}


.system-pages-wrapper.email-subscription-wrapper {
  background-color: #f7f7f7;
}

.system-pages-wrapper.email-subscription-wrapper .email-prefs .item .item-inner {
	flex: 1;
}

.system-pages-wrapper.email-subscription-wrapper .checkbox-row span.fakelabel span {
	float: left;
	font-weight: 700;
	margin-left: 7px;
	vertical-align: top;
  color: #323B4B;
  line-height: 24px;
}

.system-pages-wrapper.email-subscription-wrapper .checkbox-row input {
	position: relative;
	top: 3px;
	width: 20px;
	height: 20px;
	border: 2px solid #dfdfdf;
  border-radius: 4px;  
}

.system-pages-wrapper.email-subscription-wrapper input::before {
	position: absolute;
	content: "\f00c";
	font-family: 'FontAwesome';
	top: -5px;
	right: 0;
	left: 0px;
	text-align: center;
  visibility: hidden;
  opacity: 0;
  font-size: 14px;
  color: #fff;
}

.system-pages-wrapper.email-subscription-wrapper .item.selected .item-inner input::before {
  visibility: visible;
  opacity: 1;
}

.system-pages-wrapper.email-subscription-wrapper .item.selected .item-inner input {
  border-color: #2DCA8C;
  background-color: #2DCA8C;
}

.system-pages-wrapper input[type=checkbox]:checked:after  {  
  background-color: #2DCA8C; 
}  


.system-pages-wrapper.email-subscription-wrapper .checkbox-row input:focus {
  outline: none;
}

.system-pages-wrapper.email-subscription-wrapper .checkbox-row span.fakelabel span {
	width: 90%;
  float: none;
  display: inline-block;
}

.system-pages-wrapper.email-subscription-wrapper .email-prefs .item p {
	margin: 5px 20px 0px 28px;
}

.system-pages-wrapper.email-subscription-wrapper form .header {
  text-align: center;
}

.system-pages-wrapper.email-subscription-wrapper .page-header  br{
  display: none;
}

.system-pages-wrapper.email-subscription-wrapper .page-header {
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.system-pages-wrapper.email-subscription-wrapper #content {
	text-align: center;
}

.system-pages-wrapper.email-subscription-wrapper  .subscribe-options {
	margin-top: 50px;
}

.system-pages-wrapper.email-subscription-wrapper .subscribe-options input[type="checkbox"] {
  position: relative;
	top: 3px;
	width: 30px;
	height: 30px;
	border: 2px solid #dfdfdf;
  border-radius: 4px;
  margin-right: 8px;
  
}

.system-pages-wrapper.email-subscription-wrapper .subscribe-options #globalunsub::before {
  font-size: 18px;
  top: 0;
}

.system-pages-wrapper.email-subscription-wrapper .subscribe-options .vbefore #globalunsub:focus {
  outline: 0;
}

.system-pages-wrapper.email-subscription-wrapper .subscribe-options .vbefore #globalunsub::before {
  visibility: visible;
  opacity: 1;
}

.system-pages-wrapper.email-subscription-wrapper .subscribe-options .vbefore #globalunsub{
  border-color: #2DCA8C;
  background-color: #2DCA8C;
}

.system-pages-wrapper.email-subscription-wrapper .subscribe-options {
  text-align: center;
}


.system-pages-wrapper.email-subscription-wrapper .subscribe-options  p {
  display: flex;
  justify-content: center;
  float: left;
  width: 100%;
}



.system-pages-wrapper.email-subscription-wrapper .subscribe-options  label span {
  font-size: 18px;
  color: #323B4B;
  margin-top: 5px;
}

.system-pages-wrapper.email-subscription-wrapper .subscribe-options label {
  display: flex;
  align-items: center;
  justify-content: center;
}

.system-pages-wrapper.email-subscription-wrapper .item.disbled {
  opacity: .6;
  cursor: not-allowed;
}

.system-pages-wrapper.email-subscription-wrapper.subscribe-options .hs-button.primary:focus {
  outline: 0;
}

.system-pages-wrapper.email-subscription-wrapper.subscribe-options .hs-button.primary {
  padding: 18px 52px;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.system-pages-wrapper form,
.system-pages-wrapper.email-subscription-wrapper form {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  padding: 0;
}

/* email-subscription-confirmation PAge CSS */
.email-subscription-confirmation {
  text-align: center;
}

.email-subscription-confirmation-inner {  
  max-width: 860px;
  margin: 0 auto;
}

.email-subscription-confirmation-inner img {
  max-width: 320px;
  margin-bottom: 10px;
}

.email-subscription-confirmation-inner .page-header h2 {
  font-size: 36px;
}

.email-subscription-confirmation-inner .page-header{
  max-width: 60%;
  margin: 0 auto;
  margin-bottom: 20px !important;
}

.email-subscription-confirmation-inner .page-header br {
  display: none;
}

.email-subscription-confirmation-inner .success {
  font-weight: 600;
  color: #68d452;
}

/************* Coming Soon Page CSS  ****************/
.sysyem-page-form-wrap .hs_email label span{
    display: none;
}

.sysyem-page-form-wrap .hs_email .hs_error_rollup {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: 0 auto;
	max-width: 400px;
}

.sysyem-page-form-wrap .hs_email > label {
  display: none;
}

.sysyem-page-form-wrap .hs-button.primary.large {
  min-width: 170px;
  margin-left: 15px;
  padding: 18px 30px;
  font-size: 14px;
}

.sysyem-page-form-wrap form {
  display: flex;
  margin: 0 auto;
  max-width: 470px;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  padding: 0;
}

.sysyem-page-form-wrap form .hs_error_rollup {
	position: absolute;
	bottom: -20px;
	right: 0;
	left: 0;
	margin: auto;
	max-width: 300px;
}

.system-pages-wrapper .error-page #hs_cos_wrapper_content p {
  margin-bottom: 0;
}

.system-pages-wrapper .error-page.emailunsubscribe #hs_cos_wrapper_content p {
  margin-bottom: 25px;
}

#hs_form_target_Coming_Soon {
  margin-top: 30px;
}

.hs-search-field__bar {
	margin-top: 30px;
}

/* Search Result CSS  */
.search-keyword {
  color: #2DCA8C;
}

.hs-search-results__listing li::before {
  display: none;
}

.hs-search-results__listing li {
  margin-left: 0;
  text-align: left;
  background-color: #fff;
  max-width: 100%;
  margin: 0 auto !important;
  margin-bottom: 25px !important;
  padding: 30px !important;
  -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -o-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}


.hs-search-results__listing li:hover {
  -webkit-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -o-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -ms-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    box-shadow: 0 20px 27px rgba(0,0,0,0.05);;
}

.hs-search-results__title {	
  color: #377DFF;
	font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}

.search-result-page {
  background-color: #f7f7f7;
}

.hs-search-results__description {
  margin-bottom: 0 !important;
  -webkit-line-clamp: 2;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.hs-search-results__listing {
    margin-top: 30px !important;
}

.body-container-wrapper .system-pages-wrapper.search-result-page {
    padding-top: 150px;
}

.system-coutndown-wrap {
  margin-top: 40px;
}

.email-subscription-wrapper .header.sticky-header,
.email-subscription-wrapper .header {
  position: initial;
  box-shadow: none;
  background-color: transparent;
}


.body-container-wrapper.system-page-v-full {
  height: 100vh;
  display: flex;
  align-items: center;
}
/************** Responsive CSS  ****************/
@media only screen and (min-width: 1601px) {
  .body-container-wrapper.system-page-v-full {
    height: 100vh;
  }
  
  .body-container-wrapper.system-page-v-full .system-pages-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 1600px) {
  .body-container-wrapper.system-page-v-full {
    height: auto;
  }
}

@media only screen and (max-width: 1180px) {
  .system-pages-wrapper.email-subscription-wrapper .checkbox-row span.fakelabel span {
	  width: 80%;
  }
}

@media only screen and (max-width: 1024px ){
  .body-container-wrapper.system-page-v-full {
    height: 100vh;
  }
  .body-container-wrapper .system-pages-wrapper {
    padding-bottom: 100px;
  }
  
  .body-container-wrapper.system-page-v-full .system-pages-wrapper{
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 991px ){
  .body-container-wrapper .system-pages-wrapper {
    padding-bottom: 80px;
  }
  
  .system-pages-wrapper.email-subscription-wrapper .email-prefs .item {
    width: 46.2%;
  }
  
  .body-container-wrapper .system-pages-wrapper.search-result-page {
    padding-top: 70px;
  }
  
  .body-container-wrapper.system-page-v-full .system-pages-wrapper{
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width:767px){
  .system-pages-wrapper h1 {
    margin-bottom: 15px;
  }
  
  .body-container-wrapper .system-pages-wrapper {
    padding-top: 134px;
    padding-bottom: 50px;
  }
  
  .error-page img {
    max-width: 300px;
  }
  
  .error-page {
    max-width: 100%;
  }
  
  .error-page.password-page form .hs-button.primary.large {
      min-width: 130px;      
      padding: 17px 30px;
  }
  
  .error-page.password-page form {      
      max-width: 380px;
   }
  
  /*  Email Unsubscribe CSS   */
  .error-page.emailunsubscribe form .hs-button.primary {
    min-width: 130px;  
    padding: 17px 28px;
  }
  
  .error-page.emailunsubscribe .email-edit.hs-input {
    width: 100% !important;
  }
  
  /* Email Subscription preferences page css    */
  .system-pages-wrapper.email-subscription-wrapper .email-prefs .item {
    width: 100%;
    margin: 15px 0 !important;
    min-height: auto;
  }
  
  .system-pages-wrapper.email-subscription-wrapper .subscribe-options {
    margin-top: 20px;
  }
  
  .system-pages-wrapper.email-subscription-wrapper .subscribe-options label span {
    font-size: 16px;
  }
  
  /* Coming Soon Page css   */
  .sysyem-page-form-wrap .hs-button.primary.large {
    min-width: 130px;
    padding: 18px 28px;
  }
  
  .sysyem-page-form-wrap form .input .hs-input {
    width: 100%;
  }
  
  .sysyem-page-form-wrap form {
    max-width: 380px;
  }
  
  /* Email Subscribe Confirmation page css    */
  .email-subscription-confirmation-inner .page-header{
    max-width: 100%;
  }
  
  .body-container-wrapper .system-pages-wrapper {
    padding-top: 90px;
    padding-bottom: 40px;
  }
  
  .hs-search-results__listing li {
    max-width: 100%;
  }
  
  .hs-search-results__listing {
    margin-top: 15px !important;
  }
  
  .body-container-wrapper .system-pages-wrapper.search-result-page {
    padding-top: 50px;
  }
  
  .body-container-wrapper.system-page-v-full .system-pages-wrapper{
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 479px) {
  .error-page.password-page form {
      flex-wrap: wrap;
   }
    
    .error-page img {
      max-width: 220px;
    }
  
    .error-page #hs-pwd-widget-password {
      margin-bottom: 15px;
    }

    .error-page.password-page form .hs-button.primary.large {
      min-width: 100%;
      margin-left: 0px;
    }
  
    .error-page.password-page form {
      max-width: 100%;      
    }
  
    /*  Email Unsubscribe CSS   */
    .error-page.emailunsubscribe form  {
      max-width: 100%;
    }
    .error-page.emailunsubscribe form .email-edit.hs-input { 
      margin-bottom: 15px;
    }
    .error-page.emailunsubscribe form .hs-button.primary {
      min-width: 100%;  
      padding: 17px 30px;
      margin-left:0;
    }
  
    .error-page.emailunsubscribe #content {
      flex-wrap: wrap;
    }
  
    .error-page.emailunsubscribe #content div {
      width: 100%;
      float: left;
    }
  
  .system-pages-wrapper.email-subscription-wrapper form .hs-button {
    padding: 17px 30px !important;
    font-size: 14px;
  }
  
  .system-pages-wrapper.email-subscription-wrapper .subscribe-options label {
    margin-left:0;  
  }
  
  .system-pages-wrapper.email-subscription-wrapper .subscribe-options label span {
    font-size: 14px;
    max-width: 65%;
    line-height: 18px;
  }
 
  .system-pages-wrapper.email-subscription-wrapper .subscribe-options #globalunsub::before {
    top: -2px;
  }
  
  .system-pages-wrapper.email-subscription-wrapper .subscribe-options input[type="checkbox"] {
    width: 25px;
   height: 25px;
  }
  
  /* Coming soon Page CSS    */
  .sysyem-page-form-wrap form {
    max-width: 100%;
    flex-wrap: wrap;
  }
  
  .sysyem-page-form-wrap form .hs_email,.sysyem-page-form-wrap form .hs_submit {
    float:left;
    width: 100%;
  }
  
  .sysyem-page-form-wrap .hs-button.primary.large {
    min-width: 100%;
    margin-left: 0;
  }
  
  /* Email Subscribe confirmation page css    */
  .email-subscription-confirmation-inner img {
    max-width: 220px;
  }
  
  .email-subscription-confirmation-inner .page-header h2 {
    font-size: 24px;
  }
  
  .sysyem-page-form-wrap {
    margin-bottom: 25px;
  }
  
  .body-container-wrapper.system-page-v-full .system-pages-wrapper{
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
/* @import url('http://example.com/example_style.css'); */

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

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


.contact-info-iconbox .btn{
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 0;
  margin-top: 20px;
}


.career-details .inner-iconbox .img-icon{
  display: none;
}

.career-details .inner-iconbox .icon{
  display: none;
}

.career-details .inner-iconbox .btn {
  margin-bottom: 0;
}

.career-details .iconbox-main .iconbox .inner-iconbox-wrap {  
  background-color: #FAFBFC;
}

.career-details .iconbox-main .inner-iconbox-wrap {
  padding: 40px;
}

.career-details .heading-block  ul li {
  margin-bottom: 22px
}

.career-details .heading-block  ul li:last-child {
  margin-bottom: 0px
}


.margin-bottom-rm {
  margin-bottom: 0;
}

.pricing-main .pricing-item .bordered_btn .btn-inner, 
.pricing-main .pricing-item .filled_btn .btn-inner,
.resources-content-group .filled_btn .btn-inner,
.resources-content-group .bordered_btn .btn-inner{
  transform: translateZ(10px);
  -webkit-transform: translateZ(10px);
  -ms-transform: translateZ(10px);
  -moz-transform: translateZ(10px);
  -o-transform: translateZ(10px);
}


/*  Responsive CSS */
@media only screen and (max-width: 991px){
  .career-details .iconbox-main .inner-iconbox-wrap {
    padding: 30px;
  }
}
/* @import url('http://example.com/example_style.css'); */

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
















/* Transition */


/* Box Shadow */


/* Border Radius */

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

/* Ladnding Page TWo CSS */

.subscribe-form-oneline .form-without-bg-main form {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.subscribe-form-oneline .form-without-bg-main form .hs_email {
  flex: 80%;
}

.subscribe-form-oneline .form-without-bg-main form .hs-button {
  padding: 18px 22px;
  margin-left: 15px;
}


.lead-capture-page .hs-button.primary.large {
  width: 100%;
}

.o-lp-header {
	padding: 15px 0;
}

.lead-capture-page ul li {
  padding-left: 0;
}

.lead-capture-page .logo-slider {
  padding: 0 45px;
}

.lead-capture-page hr {
  height: initial;
}

.footer.footer--no-navigation {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
}

.hs-content-id-65295617854 .footer.footer--no-navigation {
	position: relative;
	bottom: intial;
	left: intial;
	right: intial;
	width: 100%;
}

.thank-you-page  .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section.dnd_area-row-0-padding{
  padding-top: 0 !important;
}


.container-fluid.body-container.lead-capture-page.thank-you-page {
	top: 50%;
	position: absolute;
	right: 0;	
	left: 0;
	margin: 0 auto;
	transform: translateY(-50%);
  margin-top: 80px;
}
/* Responsive CSS */

@media only screen and (max-width: 1400px) {
  .thank-you-page  .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section.dnd_area-row-0-padding{
  padding-top: 250px !important;
 }
  
  .container-fluid.body-container.lead-capture-page.thank-you-page {
    margin-top: 0;
  }
}

@media only screen and (max-width:1024px) {
  
  
  .o-lp-header {
    padding: 15px 0;
  }
  
  
  .lead-capture-page .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section.dnd_area-row-0-padding {
    padding-top: 100px !important;
  }
  
}

@media only screen and (max-width:767px) {
 
  .lead-capture-page {padding-top: 60px;}
   
  
  .lead-capture-page .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section.dnd_area-row-0-padding {
    padding-top: 50px !important;
  }
  
  .lead-capture-page .logo-slider {
    padding: 0 40px;
  }
  
  .lead-capture-page .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section.dnd_area-row-0-padding {
    padding-top: 30px !important;
  }
}

@media only screen and (max-width:479px) {
  /* Landing Page Two CSS   */
  .subscribe-form-oneline .form-without-bg-main form {
    flex-wrap: wrap;
  }
  
  .subscribe-form-oneline .form-without-bg-main form .hs_email {
    flex: 100%;
  }
  
  .subscribe-form-oneline .form-without-bg-main form .hs-button {
    margin-left: 0px;
    min-width: 100%;
  }
  
  .subscribe-form-oneline .form-without-bg-main form .hs_submit {
      width: 100%;
  }
  
  .subscribe-form-oneline .form-without-bg-main form .hs_submit {
      max-width: 100%;
  }
  
  .lead-capture-page {
    padding-top: 20px;
  }
  
  
  
}
/* @import url('http://example.com/example_style.css'); */

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

















/* Transition */


/* Box Shadow */


/* Border Radius */


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

.blog-filter li::before {display: none;}
.blog-filter li {padding-left: 0;}

/*************************************************** Featured Article ******************************************************/
.featured-article {    
    background-size: cover;
    background-position: center;
    display: table;
    width: 100%;
}

.featured-article #hubspot-topic_data {
    display: block;
    margin-bottom: 0 !important;
}

.featured-article .inner {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color:#fff;
    text-align:center;
   padding: 150px 0 120px 0;
}

.featured-article .inner .page-center{
    max-width:800px;
    margin: 0 auto;
}
.featured-article .inner h1 {
    line-height: 60px;
    margin: 20px 0 40px 0;
}
.featured-article .inner h1 a{ color:#fff; }
.featured-article .inner .topic-link{
    color:#fff;
    text-transform:uppercase;
    text-decoration:underline;
    font-size:14px;
    font-weight:bold;
}
.featured-article .inner p {
    text-transform: uppercase;
    font-weight: 600;
}
.featured-article .read-more {
    background: #fff;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}


/* BLog listing CSS  */

.body-container--blog-index {
  background-color: ;
}


.blog-listing-one {
  padding: 45px 0;
}

.blog-listing-five .blog-listing-one .post-item {
    width: 100%;
}

.related-posts .related-post-item img {
  max-width: 100%;
}

#hubspot-topic_data {
    display: none;
}

.blog-topics { 
    text-align:center; 
    margin-top:0;
    padding: 0;
    background: #eaebed;
}

.blog-topics ul {
    padding: 0 0 0 0;
    margin: 0;
}

.blog-topics ul li {
    display: inline-block;
    margin-bottom: 0;
}

.blog-topics ul li::before {
  display: none;
}

.blog-topics ul li a{ 
    padding:20px 15px; 
    display:inline-block;
    font-weight: 600;
    font-size: 18px;
    color: #323B4B;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.blog-topics ul li a:hover {
  color: #2DCA8C;
}

.blog-topics ul li a:focus {
  color: #2DCA8C;
}

.blog-topics ul li a:active {
  color: #2DCA8C;
}

.blog-listing-one .post-item {
    width: 33.33%;
    text-align: left;
    padding:0 15px 0 0px !important;
    display: inline-block;
    margin: 15px -2px;
    vertical-align: top;
}
.post-item .post-inner .hs-featured-image-wrapper {
    position: relative;
    text-align: center;
    border-radius: 15px 15px 0 0;
}
.post-item .post-inner .hs-featured-image-wrapper .read-more {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform:translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);    
    background: #fff;
    padding: 10px 20px; 
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    opacity:0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}
.post-item .post-inner .hs-featured-image-wrapper .read-more:hover{
    background: #2DCA8C;
    color:#fff;
} 

.post-item .post-inner:hover .hs-featured-image-wrapper .read-more{
    opacity:1;
}
.blog-listing-one .post-item .post-inner{
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
    
}
.blog-listing-one .post-item .post-inner:hover {
    -webkit-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -o-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -ms-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    box-shadow: 0 20px 27px rgba(0,0,0,0.05);;
}
.blog-listing-one .post-item .short-desc {
    font-size: 16px;
    padding: 10px 30px 20px 30px;
    display: inline-block;
    background: #fff;
    width: 100%;
    font-weight:bold;    
    min-height:150px;
}
.blog-listing-one .post-item .short-desc .post-title {
    font-size: 21px;
    line-height: normal;
    font-weight: bold;
    opacity: 1;
    min-height: 110px;
    display: inline-block;
    color: #323B4B;
}
.blog-listing-one .post-item .short-desc .post-title:hover{
  color: #2DCA8C;
}
.blog-listing-one .post-item img{
    margin:0 !important;
}
.blog-pagination {
  text-align: center;
}

.blog-pagination ul {
  margin: 20px 0;
}

.blog-pagination .next-posts-link,
.blog-pagination .previous-posts-link{
    float:none;
}
.blog-pagination li{
    list-style:none;
    display:inline-block;
    margin-bottom: 0;
    padding-left: 0;
}

.blog-pagination li::before {
  display: none;
}
.blog-pagination a{
    font-size: 14px;    
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
    
}
.blog-pagination a:hover{
    background: transparent;
    box-shadow: none;
}
.blog-pagination .active a{
  color: #2DCA8C;
}
.blog-pagination .hide{
    display:none;
}
.blog-pagination a .fa-angle-right {
    margin-left: 5px;
    font-size: 20px;
}
.blog-pagination ul{
    padding:0;
}
.blog-pagination a .fa-angle-left {
    margin-right: 5px;
    font-size: 20px;
}
.blog-listing-one .topic-link, 
.blog-listing-one .hubspot-topic_data {
    color: #323B4B;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
}
.hooke-style {
    font-size: 24px;
    line-height: 32px;
    margin: 35px 0;
}
.photo-credit-caption {
    color: #808080;
    font-size: 16px;
    text-align: center;
    margin-bottom:20px;
}

.recent-blog-main.blog-s2 .post-item .post-inner {
  -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;;
}

.recent-blog-main.blog-s2 .short-desc.blog-content-group {
  padding: 40px;
}

/*  Blog Lsiting Style Two CSS */

.recent-blog-main.blog-s2 .post-item .post-inner {
  border: 0;  
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.recent-blog-main .post-item:hover .post-inner {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
}

.recent-blog-main.blog-s2 .short-desc.blog-content-group {
  height: 100%;
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
}

.recent-blog-main.blog-s2 .short-desc.blog-content-group .post-title h4 {
  -webkit-line-clamp: 3;
}

.blogstyle2-content-group {
    margin-bottom: 50px;
}

.recent-blog-main.blog-s2 .post-item .post-inner .blogstyle2-content-group span {
  margin-bottom: 10px;
  display: inline-block;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.blog-content-group .btn {
  margin-bottom: 0 !important;
}

/*  One Column Blog CSS */
.blog-listing-five .post-item .post-inner {
    display: table;
    width: 100%;
    background: #fff;
}

.blog-listing-five .post-item .post-inner .hs-featured-image-wrapper {
    position: relative;
    text-align: center;
    display: table-cell;
    width: 50%;
    vertical-align: middle;
}

.hs-featured-image-wrapper .hs-featured-image-link {
    display: block;
}

.blog-listing-one .post-item img {
    margin: 0 !important;
}

.hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    border-width: 0;
    max-height: initial;
    max-width: 100%;
    display: inline-block !important;
    float: none !important;
    margin: 10px 0px 10px 0px;
}

.blog-listing-one .post-item img {
    margin: 0 !important;
}

.post-item .post-inner .hs-featured-image-wrapper .read-more {
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transition: ease-in-out all .4s;
    -webkit-transition: ease-in-out all .4s;
    -ms-transition: ease-in-out all .4s;
    -o-transition: ease-in-out all .4s;
    background: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    opacity: 0;
}

.blog-listing-one .post-item .short-desc {
    font-size: 16px;
    padding: 10px 30px 20px 30px;
    display: inline-block;
    background: #fff;
    width: 100%;
    font-weight: bold;
    min-height: 150px;
}

.blog-listing-five .post-item .short-desc {
    font-weight: normal;
    font-size: 14px;
    display: table-cell;
    width: 50%;
    vertical-align: middle;
}

.blog-listing-one .post-item {
    text-align: left;
}

.blog-listing-five .post-item .short-desc .date {
  color: #323B4B;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 0;
    width: 100%;
    display: inline-block;
}

.blog-listing-one .post-item .short-desc .post-title {
    font-size: 21px;
    line-height: normal;
    font-weight: bold;
    opacity: 1;
    min-height: 110px;
    display: inline-block;
  color: #323B4B;
}

.blog-listing-five .post-item .post-inner .post-title {
    font-size: 21px;
    font-weight: 700;
    line-height: normal;
    min-height: auto;
  margin-bottom: 10px;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.blog-listing-five .post-item .post-inner .short-desc .tag-color {
  color: #323B4B;
}

.blog-listing-five .post-item .post-inner .short-desc #hubspot-author_data {
    float: none !important;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 10px;
}

.blog-listing-five .post-item .post-inner .short-desc #hubspot-author_data .hs-author-avatar {
    width: 35px !important;
    border-radius: 100%;
    float: left;
    margin-right: 15px !important;
  height: 35px;
  overflow: hidden;
}

.blog-listing-five .post-item .post-inner .short-desc #hubspot-author_data .author-img {    
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 100%;
}

.post-item .post-inner .short-desc #hubspot-author_data img {height: 35px;}

.blog-listing-five .post-item .post-inner .short-desc #hubspot-author_data .author-link {
    font-size: 12px;
    font-weight: 700;
    margin-top: 5px;
    display: inline-block;
 transition: all .4s ease-in-out;
}

/****************************************************************** Blog Post **********************************************************************/
.blog-post-section .widget-type-blog_content {
    background: #fff;    
    box-shadow: 0 0 6px #e0e0e0;
    padding: 30px 40px 40px 40px;
}
.blog-listing-five {
  padding-bottom: 60px;
}

.blog-post-section {
    padding: 0 0 60px 0;
}



.body-container-wrapper.transparent-top-space .body-top-space .fixedsocailmedia-block {
  top: 242px;
}

.blog-post-section .comment-header {
  float:left;
  width:100%;
}

.blog-post-wrapper .hs-featured-image {
    margin: 30px 0 20px 0 !important;
    width: 100% !important;
    max-width: none !important;
}

.blog-post-wrapper p {
  margin-bottom: 0;
}

.blog-post-wrapper p:last-child {
  margin-bottom: 1.4rem;
}

.blog-post .category {
    display: inline-block;
}

.blog-post .category .topic-link::before {
    font-family: FontAwesome;
    content: "\f02c";
    display: inline-block;
    padding-right: 10px;
    vertical-align: middle;
    color: #999;
}
.blog-post .date {
    display: inline-block;
    padding:0 15px;
}
.blog-post .date::before {
    font-family: FontAwesome;
    content: "\f017";
    display: inline-block;
    padding-right: 5px;
    vertical-align: middle;
    color: #999;
    margin-left: 10px;
}
.blog-post .blog-listing-author {
    display: inline-block;
    color: #377DFF;
    
}

.blog-listing-author span {
    color: #323B4B;
    text-decoration: underline;
    font-weight: 600;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}
.blog-post .blog-listing-author:hover span {
  color: #2DCA8C;
}

.hs-blog-social-share{
    width:100%;
}

#hs_cos_wrapper_blog_social_sharing {
  display: none;
}

.blog-post  .blog-listing-wrapper.style-one.cell-wrapper {
    margin: 10px 0;
    display: inline-block;
    width: 100%;
    font-size: 15px;
}
.blog-post-section .widget-type-blog_subscribe {
    background: #0585fc;
    color: #fff;
    text-align: center;
    padding: 30px;
    margin-top:30px;
}
.blog-post-section .widget-type-blog_subscribe h3 {
    font-size: 18px;
    text-transform:uppercase;
}
.blog-post-section .widget-type-blog_subscribe input {
    width: 100% !important;
    border-radius: 0;
    border: none;
    height:45px;
}
.blog-post-section .widget-type-blog_subscribe .hs-button.primary.large {
    background: #fff;
    border: navajowhite;
    border-radius: 0;
    width: 100%;
    margin-top: 15px;
    padding: 12px 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    height:auto;
}
.blog-post-section .widget-type-blog_subscribe .hs-button.primary.large:hover{
    color:#000;
}
.blog-post-section .widget-type-blog_subscribe .hs-error-msgs label {
    color: red;
    text-shadow: none;
    font-size: 14px;
    text-align: left !important;
    font-weight: normal;
}
.blog-post-section .recent-post{
    margin-top:25px;
}
.blog-post-section .recent-post ul {
    padding: 0 0 10px 17px;
}
.blog-post-section .recent-post ul li {
    margin: 15px 0;
}
.blog-post-section .post-by-tag ul {
    padding: 0 0 0 17px;
}
.blog-post-section .post-by-tag ul li {
    margin: 15px 0;
}

.blog-post-section .hs-button.primary {
  min-width: 100%; 
}

.blog-post-section .hs-button.primary:focus,
.blog-post-section .hs-button.primary:active {
  outline: 0;
  box-shadow: none;
}

.blog-post-section .hs-search-module .input{
    position:relative;
}

.blog-post-section .hs-search-module .input input:focus{
    box-shadow:none !important;
}

.blog-post-section .widget-type-google_search label {
    font-size: 36px;    
    display: block;
    margin: 0 0 0;
}
.blog-post-section .section.post-footer {
    background: #fff;
    box-shadow: 0 0 6px #e0e0e0;
    float: left;
}

.blog-post-section .hs-form  {  
    padding: 40px 25px;
    border: none;
    border-radius: 0;
}

.blog-post-section .hs-form  .hs_firstname, 
.blog-post-section .hs-form  .hs_lastname, 
.blog-post-section .hs-form  .hs_email, 
.blog-post-section .hs-form  .hs_website {
    width: 50%;
    display: inline-block;
    padding:0 15px;
    vertical-align: top;
}

.blog-post-section .hs-form  .hs-error-msgs.inputs-list {
    margin: 0;
}

.blog-post-section .hs-form  .hs_comment.field {
    display: inline-block;
    width: 100%;
    padding: 0 15px;
}

.blog-post-section .hs-form .hs_submit,
.blog-post-section .hs-form .hs_subscribe{
    padding:0 15px;
}

.blog-post-section .hs-form .hs_recaptcha.hs-recaptcha.field.hs-form-field {
    margin-left:15px;
}

.blog-post-section .hs-form .hs_recaptcha.hs-recaptcha.field.hs-form-field .grecaptcha-badge {
  margin: 0;
  
}

.comment-date {
    font-size: 0.8em;
    color: #666;
    display: inherit !important;
    text-align: left;
}
.comment-from h4 {
    font-size: 16px !important;
    text-transform:uppercase;
    margin: 0;
    color: #0585fc;
}
.comment-from h4 a:hover{
    color:#0585fc;
}
.comment-reply-to.hs-button {
    position: absolute;
    top: 36px;
    right: 0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    width: 55px;
    overflow: hidden;
    height: 20px;
}
.comment {
    position: relative;
    border:none;
}
.comment.depth-0{
    border:none !important;
}
.comment-reply-to::before{
    display:none;
}
.comment-reply-to em{
    display:none;
}
.comment-body{
    padding:0;
}
.related-posts {
    display: inline-block;
    width: 100%;
    padding: 40px;
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 0 6px #e0e0e0;
    margin-top: 30px;
}
.related-posts .related-post-item {
    width: 33.33%;
    float: left;
    padding: 0 30px 0 0;
}
.related-posts h5 {
    margin-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    font-size: 20px;
    text-transform: uppercase;
}
.related-posts .related-title a {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
    display: inline-block;
    line-height: 24px;
}
.blog-post-section .comment-header {
    background: #fff;
    padding: 30px 40px;
    box-shadow: 0 0 6px #e0e0e0;
}
.blog-post-section .comment-header h4 {
    float: left;
    margin: 12px 0 0 0;
    font-size: 16px;
    text-transform: uppercase;
}

.blog-post-section .comment-header p {
  margin: 0;
}

.blog-post-section .comment-header a {
    float: right;
    background: #2DCA8C;
    font-size: 14px;
    padding: 14px 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin-top:0px;
    border-radius: 4px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.blog-post-section .comment-header a:hover {
  background: #2DCA8C;
}
#comments-listing {
    border-bottom: 0 !important;
    padding: 0 !important;
    /*background: #fff;*/
    padding: 0 60px 30px;
    margin-bottom: 0;
    margin-top: 0;
    /*box-shadow: 0 0 6px #e0e0e0;*/
    border-bottom: 1px solid #e0e0e0;
}
.blog-post-section .author-detail {
    display: inline-block;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 6px #e0e0e0;
    padding: 40px;
    margin-top: 30px;
}
.blog-post-section .author-detail .author-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 0 0 12px 0;
    margin-bottom: 30px;
}
.blog-post-section .author-detail .author-header h6{
    font-size: 20px;
    text-transform: uppercase;
}
.blog-post-section .author-detail .image {
    width: 120px;
    height: 120px;
    float: left;
    margin-right:30px;
    border-radius:100%;
    overflow: hidden;
}

.blog-post-section .author-detail .image .hs-author-avatar {
  height: 100%;
  width: 100%;
  display: block;
}

.blog-post-section .author-detail .image .hs-author-avatar {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.blog-post-section .author-detail .image img{
    width:100%;
    border-radius:100%;
    height: 100%;
}

.blog-post-section .author-detail .author-description a.hs-author-social-link {
    padding-right: 10px;
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.blog-post-section .author-detail .author-description a.hs-author-social-link:hover {
  transform: translateY(-3px);
}

.fixedsocailmedia-block ul li a i {
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.fixedsocailmedia-block ul li a:hover i {
  transform: translateY(-3px);
}


.blog-post-section .author-detail .author-description .author-link {
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 5px;
}

.blog-post-section ul li::before,
.blog-post-section ol li::before {
  display: none;
  
}

.blog-post-wrapper ul,
.blog-post-wrapper ol {
  padding-left: 45px;
  margin-bottom: 30px;
}

.blog-post-wrapper ul 
  list-style-type: disc;
}



.blog-post-section ul li,
.blog-post-section ol li {
  padding-left: 0;
}

.blog-post-wrapper ul li
  padding-left: 5px !imporatant;
}


/* ******************* Blog Post Fixed Social Media CSS ******************* */
.fixedsocailmedia-block ul li a {
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.fixedsocailmedia-block {
    position: fixed;
    left: 0;
  top: 250px;
  width:40px;
  z-index:111;
}
  
.fixedsocailmedia-block ul {
  padding-left:0;
  list-style:none;
  margin:0;
  float:left;
  width:100%;
  text-align:center;
}

.fixedsocailmedia-block ul li {
  float:left;
  width:100%;
  margin-bottom:2px;
  padding-left: 0;
}

.fixedsocailmedia-block ul li::before {
  display: none;

}
.fixedsocailmedia-block ul li:last-child {
  margin-bottom:0;
}

.fixedsocailmedia-block ul li a {
  color:#fff;
  float:left;
  width:100%;
  padding:5px;
}

.social-twi {
  background-color:#55acee;
}
.social-lin {
  background-color:#007bb5;
}
.social-fac {
  background-color:#3b5998;
}


@media (max-width:1170px) {
  .fixedsocailmedia-block {top: 242px;}
}

@media (max-width:1023px) {
  .fixedsocailmedia-block {top: 238px;}
}

@media (max-width:767px) {
  .fixedsocailmedia-block {top: 235px;}
  
  .blog-post-section .author-detail .image {
      width: 120px;
      float: left;
      margin-right: 30px;
      margin: 0 auto;
      float: none;
      margin-bottom: 30px;
    }
  
    .author-description {
      width: 100%;
      float: left;
      text-align: center;
    }

    .span9.blog-post-section {
      width: 100%;
      float: left;
    }

    .span3.sidebar {
      width: 100%;
      margin: 0;
      float: left;
    }
  
    .author-description p {
      margin-bottom: 10px;
    }
}

@media only screen and (max-width: 479px) {
  .comment-header h4 {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .blog-post-section .comment-header p {
    margin: 0;
    float: left;
    width: 100%;
    text-align: center;
  }
  
  .blog-post-section .section.post-footer {
    float: none;
    display: block;
  }
  
  .blog-post-section .comment-header a {
    float: none;
    padding: 12px 30px; 
    display: inline-block;
    margin-top: 15px;
  }
  
  .blog-post-section .hs-form .hs_firstname, .blog-post-section .hs-form .hs_lastname, .blog-post-section .hs-form .hs_email, .blog-post-section .hs-form .hs_website {
    width: 100%;
  }
  
  #hs_cos_wrapper_blog_comments {
      float: left;
      width: 100%;
    }
  
  .blog-post-wrapper ul, .blog-post-wrapper ol {
    padding-left: 25px;
  }
  
  .blog-post-section .hs-button.primary {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*******************************  Blog Side Bar  CSS *******************/
.blog-listing-five .sidebar {
    padding-top: 60px;
}

.sidebar h3 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom:20px;
}

.subscrib_form_main ul.inputs-list {
  margin:0 !important;
}
.subscrib_form_main .hs-form-required {
  display: none;
}

.subscrib_form_main .hs-button.primary {
  min-width: 100%;
}

.subscrib_form_main .hs-button.primary:focus {
  outline: 0;
}

.subscrib_form_main {
  margin-bottom : 30px;
}

/******************************  About Company CSS ***************************/
.aboutusinfo {
  margin-bottom:30px;
}

.aboutusinfo h3 {
  margin-bottom: 12px;
}

/***************************** Recent Post CSS *******************************/

.sidebar .widget-type-blog_subscribe h3 {
    font-size: 18px;
    text-transform: uppercase;
}
.sidebar .widget-type-blog_subscribe .hs-form-required{
    display:none;
}

.sidebar .widget-type-blog_subscribe input{
    width: 100% !important;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    height: 45px;
}
.sidebar .widget-type-blog_subscribe input:focus{
    box-shadow:0 0 16px #e0e0e0;
}


.sidebar .related-post .image {
    width: 70px;
    float: left;
}
.sidebar .related-post {
    display: inline-block;
    width: 100%;
}
 .sidebar .detail {
    padding-left: 85px;
    line-height:normal;
    padding-bottom:20px;
}
.sidebar .detail .date{
    font-size:14px;
    margin-top:5px;
}
.sidebar .tabber-content{
    padding:30px 15px;
    border:none;
    background:transparent;
}
.sidebar .tabber-tabs li a{
    border-left:none !important;
    border-right:none !important;
    border-top:none !important;
    border-bottom:4px solid transparent;
    font-weight: 700;
    
}
.sidebar .detail a{
    font-size:14px;
    font-weight:600;
    color: #323B4B;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
 .sidebar .detail a:hover{
  color:#2DCA8C;
}
 .sidebar .tabber-tabs  li{
    width:50%;
    padding-left: 0;
    margin-bottom: 0;
}

.tabber-tabs > li {
    float: left;
}

.sidebar .tabber-tabs li::before {
  display: none;
}

.sidebar .tabber-tabs a {
  color: #323B4B;
  font-size: 18px;
  font-weight:400;
  text-transform: uppercase;
}

.tabber-tabs > li > a {
    padding-right: 12px;
    padding-left: 12px;
    margin-right: 2px;
    line-height: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 20px;
    border: 1px solid transparent;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -o-border-radius: 4px 4px 0 0;
    -ms-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    text-decoration: none;
    display: block;
}

 .sidebar .tabber-tabs .active a{
    border-color: #2DCA8C;
    background:transparent;
    color: #2DCA8C;
    font-weight: 700;
}

.body-container .tabber-tabs {
    border-bottom: 1px solid #ddd;
    list-style: none;
    padding: 0;
    margin: 0 0 -2px;
}
.sidebar .topic-list h3 {    
    font-size: 16px;
    text-transform: uppercase;
}
.sidebar .topic-list ul{
    margin:0;
    padding:0;
}

.sidebar .topic-list ul li {
  padding-left: 0;
  margin-bottom: 0;
  
}

.sidebar .topic-list ul li::before {
  display: none;
}
.sidebar .topic-list ul li a {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #e0e0e0;
    padding: 7px 13px;
    display: inline-block;
    margin: 5px 0;
    border-radius: 4px;
    color: #323B4B;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}
.sidebar .topic-list ul li a:hover {
  color: #fff;
}
.sidebar .topic-list ul li {
    display:inline-block;
}
.sidebar .topic-list ul li a:hover{
  background: #2DCA8C;
  color:#fff;
  border-color: #2DCA8C;
}

.sidebar .tabber-content {
    padding-bottom: 20px;
}

/**************************** CAll To Action CSS  ***********************/

.calltoactionblock a img {
  width: 100%;
  height: auto;
}

.calltoactionblock {
  display:block;
  margin-bottom:30px;
  position:relative;
}
.calltoactionblock span {
  position: absolute;
  color: #fff;
  background: #0585fc;
  min-width: 110px;
  font-weight: 500;
  text-align: center;
  padding: 8px;
}

.calltoactionblock a {
  display: flex;
  justify-content: center;
  align-items: center;
}


/*################################### THree Coloumn Blog Listing CSS  ######################## */
.blog-listing-five .blog-listing-one.blog-listing-threecol .post-item {
    width: 33.33%;
    text-align: left;
    padding:0 15px 0 15px !important;
    display: inline-block;
    margin: 15px -2px;
    vertical-align: top;
}

.blog-listing-five .blog-listing-one.blog-listing-threecol .post-item .post-inner .hs-featured-image-wrapper {
  display: block;
  width: 100%;
}

.blog-listing-five .blog-listing-one.blog-listing-threecol .post-item .short-desc {
    display: block;
  width: 100%;
}

.blog-listing-five .blog-listing-one.blog-listing-threecol .post-listing {
  margin: 0 -15px;
}

.hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
  width: 100%;
}

.blog-listing-five .blog-listing-one.blog-listing-threecol .post-item .post-inner .post-title {
    height: initial;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



/* Blog Module CSS */

.recent-blog-main {
    display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.recent-blog-main .post-item{
  display: flex;
  justify-content: center;
}

.recent-blog-main .post-item  .post-inner{  
    margin: 15px;
  border: 2px solid #f7f7f7;
  -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
  
}
.recent-blog-main .post-title h4 {
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}
.recent-blog-main .post-title:hover h4 {
  color: #2DCA8C;
}

.recent-blog-main .post-item .post-inner.bottom-padding-desc {
  padding: 30px 30px 20px 30px;
}

#\33.post-item {
    max-width: 33.33%;
}

#\33.post-item .post-inner{
    max-width: 100%
}
#\34.post-item {
    max-width: 25%;
}

#\34.post-item .post-inner {
    max-width: 100%;
}

#\32.post-item {
  max-width: 50%;
}

#\32.post-item .post-inner {
  max-width: 100%;
  
}

#\32.post-item .post-inner .hs-featured-image-link {
 height: 300px;
}


#\31.post-item {
    width: calc(100%);
}

#\31.post-item .post-inner{
   max-width: 30%;
      
}

.recent-blog-main .post-item .post-inner:hover {
  -webkit-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -o-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -ms-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    box-shadow: 0 20px 27px rgba(0,0,0,0.05);;
  border-color: rgba(0,0,0,0.1);
}

.recent-blog-main {
  margin: 0 -15px;
}

.recent-blog-main .hs-featured-image-link {
    height: 220px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  width: 100%;
  border-radius: 15px 15px 0 0;
  
}

.recent-blog-main .post-item .post-inner {
  border-radius: 0;
}

.short-desc.blog-content-group {
  padding: 30px;
}

.short-desc.blog-content-group p {
  margin-bottom: 0;
  
}

.short-desc.blog-content-group h4{
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.view-blog img {
  width: 25px;
}

.comment-blog img {
  width: 22px;
}

.blog-counter {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 0 0;
    border-top: 1px solid #e7e7e7;
  margin-top: 40px;
}

.recent-blog-main .post-item p,
.recent-blog-main .post-item h4,
.recent-blog-main .post-item .comment-blog img,
.recent-blog-main .post-item .view-blog img,
.recent-blog-main .post-item .blog-counter span {
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}



.btn.text_btn.read-more {
    background: transparent;
    margin-top: 25px;
  position: relative;
  margin-bottom: 0;
  font-size: 15px;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;

}
.btn.text_btn.read-more:hover {
  color: #2DCA8C;
}

.btn.text_btn.read-more::before {
    position: absolute;
    right: -30px;
    font-family: FontAwesome;   
    content: '\f178';
    font-size: 15px;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;;
}

.btn.text_btn.read-more:hover::before {
  color: #2DCA8C;
}

.span9.blog-listing-one-main {
  float: none;
  margin: 0 auto !important;
}


/* Blog Post CSS */

.hs-blog-post .body-container-wrapper.transparent-top-space .body-container--blog-index{
  padding-top: 85px;
}

.blog-listing-one-main .blog-listing-one .post-item {
  padding-right: 0 !important;
}

.span10.blog-post-section {
    float: none;
    margin: 0 auto !important;
}

.blog-post-section .widget-type-blog_content,
.blog-post-section .author-detail,
.related-posts,
.blog-post-section .comment-header{
  -webkit-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -o-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -ms-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    box-shadow: 0 20px 27px rgba(0,0,0,0.05);;
}

.blog-post-section .widget-type-blog_content {
  padding: 60px 0;
}

.blog-post-section .hs-featured-image {
  margin: 45px 0 55px 0 !important;
}

.blog-post-section .blog-post {
    max-width: 670px;
    margin:0 auto;
}

.blog-post-section .section.post-body #hs_cos_wrapper_post_body {
  max-width: 100% !important;
  margin:0;
  display: block;
 
}

.blog-post-container {
  padding-bottom: 150px;
}

.body-container-wrapper.banner-top-space-without-topbar .fixedsocailmedia-block {
  top: 245px;
}

.body-container-wrapper.with-top-bar-panel .fixedsocailmedia-block {
  top: 355px;
}

.body-container-wrapper {
  float: left;
  width: 100%;
}

.body-container-wrapper .blog-detail-wraper {
  padding-top: 80px;
  position: relative;
}

.body-container-wrapper.with-top-bar-panel {
  float: left;
  width: 100%;
  padding-top: 0;
}

.body-container-wrapper.transparent-top-space  .fixedsocailmedia-block {
  top: 350px;
}




/* Blog Post New Change CSS */
.body-container-wrapper.blog-post-new .body-container--blog-index {
  background-color: #fff;
}

.blog-banner-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: initial;
  
}

.blog-banner-img.featured-article .inner {
  padding: 150px 0;
}

.blog-banner-img h1,
.blog-banner-img .blog-listing-author,
.blog-banner-img .blog-listing-author span{
  color: #fff;
}

.body-container-wrapper.blog-post-new .blog-post-section .widget-type-blog_content {    
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.body-container-wrapper.blog-post-new .blog-listing-wrapper.style-one.cell-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-banner-img .blog-listing-author {
  margin-right: 30px;
}

.body-container-wrapper.blog-post-new .blog-comments h5 {
  font-size: 20px;
}

.body-container-wrapper.blog-post-new .blog-post-section .author-detail .author-header {
  border: 0;
  padding: 0;
}

.body-container-wrapper.blog-post-new .author-detail,
.body-container-wrapper.blog-post-new .related-posts,
.body-container-wrapper.blog-post-new .blog-comments{
  max-width: 100%;
  margin: 0 auto;
  display: block;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.body-container-wrapper.blog-post-new .author-detail-wrap,
.body-container-wrapper.blog-post-new .related-posts-wrap,
.body-container-wrapper.blog-post-new .blog-comment-wrap{
  width: 100%;
  float: left;
}

.body-container-wrapper.blog-post-new .related-posts-wrap {padding-bottom: 50px;}

.body-container-wrapper.blog-post-new .blog-post-section .hs-form,
.body-container-wrapper.blog-post-new .blog-post-section .section.post-footer{
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.body-container-wrapper.blog-post-new .blog-post-section .hs-form {
  margin: 0 -15px;
}

.body-container-wrapper.blog-post-new .author-detail {
    margin-top: 60px;
    margin-bottom: 50px;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 50px;
}

.body-container-wrapper.blog-post-new .blog-pagination {
    margin-top: 40px;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 40px;
    max-width: 100%;
    margin: 0 auto;
}

.body-container-wrapper.blog-post-new .related-posts {
  margin-bottom: 50px;
}


.body-container-wrapper.blog-post-new  .related-posts h5 {
  padding-bottom: 0;
  border: 0;
}

.body-container-wrapper.blog-post-new .blog-pagination {
  margin-top: 40px;
}

.body-container-wrapper.blog-post-new .author-description {
    padding-left: 150px;
}

.body-container-wrapper.blog-post-new .blog-comments {
    padding-top: 50px;
    border-top: 1px solid #e4e4e4;
}

.featured-article .inner h1 {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 20px;
}

.hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {  
  height: 246px;
  object-fit: cover;
}

.related-image img {
  height: 128px;
  width: 100%;
  object-fit: cover;
}

.blog-listing-five .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
  height: 275px;
object-fit: cover;
}

.blog-listing-five .post-item .post-inner .post-title {
  overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}

.short-desc.blog-content-group {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.recent-blog-main .post-item .post-inner {
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.blog-s1-content-group {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}


/* Blog Style New */
.post-inner .date i {
  color: #2DCA8C;
  margin-right: 10px;
}

.post-inner .date span {
    margin-right: 15px;
}

.post-inner .date span:last-child {
  margin-right: 0px;
}

.new-blog-style-one .post-item .short-desc {
  text-align: center;
}

.new-blog-style-one .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    height: auto;
}

.new-blog-style-one .post-item .post-inner .post-title {
  font-size: 32px;
  display: inline-block;
}

.new-blog-style-one .post-item .short-desc .date {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
}

.new-blog-style-one .blog-descritions {
  text-align: left;
  margin-top: 30px;  
}

.new-blog-style-one .blog-descritions .btn {
  margin-bottom: 0;
}

.new-blog-style-one .blog-listing-one .post-item .short-desc {
  padding: 30px;
  padding-bottom: 20px;
}

.new-blog-style-one .blog-pagination a {  
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-blog-style-one .blog-pagination li.active a {
  background-color: #2DCA8C;
  color: #fff;
}

.new-blog-style-one .blog-pagination li {
  margin: 0 5px;
}

.new-blog-style-one .blog-pagination li.last-posts-link a,
.new-blog-style-one .blog-pagination li.first-posts-link a{
  width: initial;
  height: initial;
  background-color: initial;   
}

.new-blog-style-one .blog-listing-one .post-item .post-inner:hover {
  box-shadow: none;
}

.new-blog-style-one .hs-featured-image-wrapper .hs-featured-image-link {
  overflow: hidden;
  height: 245px;
}

.new-blog-style-one .hs-featured-image-wrapper .hs-featured-image-link img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);  
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
}

.new-blog-style-one .blog-listing-one .post-item:hover .hs-featured-image-link img{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
}

.new-blog-style-one .blog-listing-one .topic-link {
  font-weight: normal;
  text-transform: none;
  font-size: 14px;
  color: #323B4B;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.new-blog-style-one .blog-listing-one .topic-link:hover {
  color: #2DCA8C;
}

.new-blog-style-one .post-inner .date .author-link {
  color: #323B4B;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.new-blog-style-one .post-inner .date .author-link:hover {
  color: #2DCA8C;
}

.new-blog-style-one .post-item .post-inner .short-desc .tag-color {
  color: #323B4B;
}

.new-blog-style-one .social-links__icon svg {
  height: 16px;
}

.social-media-custom-module li {
  margin-right: 5px;
}

.social-media-custom-module li:last-child {
  margin-right: 0;
}

.social-media-custom-module li a {
  margin: 0;
}

/* New Blog With Right Sidebar CSS */
.new-blog-style-one.new-blog-style-one-withrightsidebar .span9.blog-listing-one-main {
  margin: 0 !important;
  float: left;
}

.new-blog-style-one.new-blog-style-one-withrightsidebar .blog-listing-one .post-item .short-desc {
    padding: 30px 30px 30px 0;
  text-align: left;
}

.span3.blog-listing-withsidebar {
  padding-top: 10px;
}

.blog-listing-withsidebar .topic-list ul{
  padding: 0;
  list-style: none;
}

.blog-listing-withsidebar .topic-list ul li {
  padding-left: 0;
  margin-right: 5px;
  display: inline-block;
}

.blog-listing-withsidebar .topic-list ul li a {
  padding: 6px 10px;
  border-radius: 20px;
  color: #323B4B;
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(45, 202, 140,0.1);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
}

.blog-listing-withsidebar .topic-list ul li a:hover {
  background-color: rgba(45, 202, 140,1);
  color: #fff;
}

.blog-search-bar form {
  padding: 0;
  box-shadow: none;
  border: 0;
  display:flex;
}

.blog-search-bar .hs-search-field__bar {
  margin-top: 0;
}


.blog-search-bar form button {
  border: 0;
  background-color: transparent;
  position: absolute;
  right: 15px;
  top: 12px;
  
}

.blog-search-bar form .hs-search-field__input {
  padding-right: 40px;
}

.blog-search-bar .hs-search-field__bar button svg {
    height: 16px;
}

.blog-search-bar #hs_cos_wrapper_search_input_ {
    display: inline-block;
    margin-top: 4px;
}

.content-block-space {
    margin-bottom: 40px;
}

.topic-list.content-block-space {
  margin-bottom: 30px;
}

.blog-social-media-wrap ul{
  padding-left: 0;
  list-style: none;
}

.blog-social-media-wrap ul li {
  display: inline-block;
  padding-left:0;
}

.blog-social-media-wrap ul li a {
  margin-right: 15px;
  
}

.blog-social-media-wrap ul li a i {
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
}

.blog-social-media-wrap ul li a:hover i {
  transform: translate3d(0,-3px,0);
  -webkit-transform: translate3d(0,-3px,0);
  opacity: 0.8;
}

.span3.blog-listing-withsidebar {
  position: relative;
}

.blog-listing-withsidebar-inner {
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  width: 285px
   position: relative;
}


.blog-listing-withsidebar-inner.sticky-sidebar {
  position: fixed;
  top: 0px;
  width: 285px;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition:all 0.5s ease-in-out;
  margin-top: 130px;  
}

.blog-listing-withsidebar-inner .social-links {
  justify-content: flex-start;
}

.blog-listing-withsidebar-inner.sticky-sidebar-hide {
  transition:all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  position: relative;
  top: initial;
}

.fixed-remove-sidebar {
  float:left;
  width: 100%;
  height: 1px;
}

.blog-listing-withsidebar-inner .hs-search-field--open .hs-search-field__suggestions {
    border: 2px solid rgba(221,221,228,1);
    padding: 15px 0;
    border-top: 0;
  border-radius: 0 0 3px 3px;
}

.blog-listing-withsidebar-inner .hs-search-field--open .hs-search-field__suggestions li a {
  padding: 0 15px;
}

.blog-listing-withsidebar-inner .hs-search-field--open .hs-search-field__suggestions #results-for {
    padding: 0 15px;
}



/* With Left Side Bar CSS */
.new-blog-style-one.blog-listing-leftsidebar .blog-listing-one .post-item .short-desc {
  padding-left: 30px;
  padding-right: 0;
}

.new-blog-style-one.blog-listing-leftsidebar .span9.blog-listing-one-main { 
    margin-left: 2.127659574% !important;
}

/* New Blog Two Column Style CSS  */

.two-column-blog-style .post-listing {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  justify-content: center;
}

.blog-listing-five .two-column-blog-style .blog-listing-one .post-item {
    width: calc(50% - 30px);
    margin: 15px;
}

.blog-listing-five .two-column-blog-style .post-item .post-inner {
  display: block;
  border-radius: 15px;
  height: 100%;
}

.blog-listing-five .two-column-blog-style .post-item .post-inner .hs-featured-image-wrapper {
  text-align: center;
  display: inline-block;
  width: 100%;
  border-radius: 15px 15px 0 0;
}

.blog-listing-five .two-column-blog-style .post-item .post-inner .hs-featured-image-wrapper .hs-featured-image-link {
  border-radius: 15px 15px 0 0;
}

.blog-listing-five .two-column-blog-style .post-item .post-inner .short-desc {
  text-align: left;
  display: inline-block;
  width: 100%;
  border-radius: 0 0 15px 15px;
}

.new-blog-style-one .two-column-blog-style .blog-descritions {
  margin-top: 0;
}

.new-blog-style-one .two-column-blog-style .post-item .short-desc .date {
  margin-bottom: 10px;
}

.new-blog-style-one .two-column-blog-style .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
  height: 380px;
}

.blog-listing-five .two-column-blog-style .post-item:hover .post-inner{
  -webkit-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -o-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    -ms-box-shadow: 0 20px 27px rgba(0,0,0,0.05);
    box-shadow: 0 20px 27px rgba(0,0,0,0.05);; 
}



/*  Two Column With Right Sidebar CSS */
.new-blog-style-one.new-blog-style-one-withrightsidebar .two-column-blog-style .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    height: 280px;
}

.new-blog-style-one.new-blog-style-one-withrightsidebar .post-item .post-inner .post-title {
  font-size: 26px;
}

.new-blog-style-one.new-blog-style-one-withrightsidebar .two-column-blog-style .blog-listing-one .post-item .short-desc {
  padding: 30px;
}

.new-blog-style-one.new-blog-style-one-withrightsidebar .two-column-blog-style .blog-listing-one {
  padding-top: 80px;
}

.new-blog-style-one.new-blog-style-one-withrightsidebar .span9.blog-listing-one-main.two-column-blog-style {
  padding-right: 50px;
}

/*  Two Column With LEft Sidebar CSS */
.new-blog-style-one-withrightsidebar.two-column-style .span9.blog-listing-one-main.two-column-blog-style {
  padding-right: 0px;
  padding-left: 50px;
  margin-left: 2.127659574% !important;
}


.new-blog-style-one.blog-center-align .span8.blog-section.blog-listing-one {
  float: none;
  margin: 0 auto !important;
}

.new-blog-style-one.blog-center-align .two-column-blog-style .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    height: 245px;
}
/* Three Column Style CSS */

.blog-listing-five.three-column-style .two-column-blog-style .blog-listing-one .post-item {
    width: calc(33.33% - 30px); 
}

.new-blog-style-one.three-column-style .two-column-blog-style .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    height: 245px;
}

.new-blog-style-one.three-column-style .post-item .post-inner .post-title {
    font-size: 26px;    
}

.new-blog-style-one.three-column-style .post-item .short-desc .date .tag-name,
.new-blog-style-one.three-column-style .post-item .short-desc .date .comtent-counter{
  float:left;
}

/*  Four Column Full Width Blog CSS */
.body-container-wrapper.four-column-full-width-blog .full-width {
  padding: 0 100px;
}

.new-blog-style-one.four-column-style .two-column-blog-style .blog-listing-one .post-item {
    width: calc(25% - 30px);
    margin: 15px;
}

.new-blog-style-one.four-column-style .two-column-blog-style .post-listing {
  margin:  0 -15px;
}

.new-blog-style-one.four-column-style .blog-listing-one {
  padding-top: 80px;
}

.new-blog-style-one.four-column-style .two-column-blog-style .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    height: 245px;
}

.new-blog-style-one.four-column-style .blog-listing-one .post-item .short-desc {
    padding: 30px;
}

.new-blog-style-one.four-column-style .post-item .post-inner .post-title {
  font-size: 24px;
}

.blog-listing-five.four-column-style .post-item .short-desc .date {
  padding-top: 0;
}

/*  Minimal Blog Style CSS */
.new-blog-style-one.minimal-blog-style .blog-descritions {
  margin-top: 0;
}

.new-blog-style-one.minimal-blog-style .post-item .short-desc .date {
    margin-bottom: 10px;    
}

.new-blog-style-one.minimal-blog-style .blog-descritions {
    text-align: center;
}

.new-blog-style-one.minimal-blog-style .blog-listing-one-main {
  float: none;
  margin: 0 auto !important;
}

.new-blog-style-one.minimal-blog-style.new-blog-style-one-withrightsidebar .blog-descritions  {
  text-align: left;
}

.new-blog-style-one .post-item .short-desc {
    text-align: left;
}

.new-blog-style-one.minimal-blog-style .post-item .short-desc {
    text-align: center;
}

.new-blog-style-one.three-column-style .blog-listing-one {
  padding-top: 80px;
}

/*  Masonry Blog CSS */

.blog-listing-five.new-blog-style-one .masonry-blog .post-item .post-inner .post-title {
    overflow: initial;
    display: -webkit-box;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
}


.blog-listing-five.new-blog-style-one .two-column-blog-style .masonry-blog .grid-item.post-item {
  width: 50%;
    margin: 0;
    padding: 15px !important;
}

.blog-listing-five.new-blog-style-one.three-column-style .two-column-blog-style .masonry-blog .grid-item.post-item {
  width: 33.33%;
}

.blog-listing-five.new-blog-style-one.four-column-style .two-column-blog-style .masonry-blog .grid-item.post-item {
  width: 25%;
}


/*  Alternate Blog CSS */
.blog-listing-five.alternate-blog-style .post-item .post-inner {
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
}

.blog-listing-five.alternate-blog-style .post-item .post-inner .hs-featured-image-wrapper {
    position: relative;
    text-align: center;
    display: inline-block;
    width: 50%;
}

.blog-listing-five.alternate-blog-style .post-item .post-inner .btn {
  margin-bottom: 0px;
}

.blog-listing-five.alternate-blog-style .hs-featured-image-wrapper .hs-featured-image-link {    
    height: 100%;
}

.blog-listing-five.alternate-blog-style .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    border-width: 0;
    max-height: initial;
    max-width: 100%;
    display: inline-block !important;
    float: none !important;
    margin: 10px 0px 10px 0px;
    height: 100%;
    object-fit: cover;
    -webkit-object-fit: cover;
    -ms-object-fit: cover;
  width: 100%;
  border-radius: 5px 0 0 5px;
}

.blog-listing-five.alternate-blog-style .post-item .short-desc {    
    display: inline-block;
    width: 50%;
  padding: 30px;
  border-radius: 0 5px 5px 0;
}

.blog-listing-five.alternate-blog-style .blog-listing-one {
    padding-top: 80px;
}

.blog-listing-five.alternate-blog-style .post-item .short-desc .date {
  font-weight: 400;
  font-size: 14px;
}

.blog-listing-five.alternate-blog-style .span9.blog-listing-one-main {
    margin: 0 !important;
    float: left;
}

.blog-listing-five.alternate-blog-style.new-blog-style-one-withrightsidebar .blog-listing-one {
  padding-right: 30px;
}

.blog-listing-five.alternate-blog-style.blog-listing-leftsidebar .span9.blog-listing-one-main {
  margin-left: 2.127659574% !important;
}

.blog-listing-five.alternate-blog-style.blog-listing-leftsidebar .span9.blog-listing-one-main .blog-listing-one {
  padding-right: 0px;
  padding-left: 30px;
}

.blog-listing-five.alternate-blog-style .span9.blog-listing-one-main.blog-center-align {
  float: none;
  margin: 0 auto !important;
}

.blog-listing-five.alternate-blog-style .blog-pagination a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-listing-five.alternate-blog-style .blog-pagination li.active a {
    background-color: #2DCA8C;
    color: #fff;
}

.blog-listing-five.alternate-blog-style .blog-pagination li.last-posts-link a, 
.blog-listing-five.alternate-blog-style .blog-pagination li.first-posts-link a {
    width: initial;
    height: initial;
    background-color: initial;
}

.blog-subscription-main .innerbanner-subscribe-form {
  margin-top: 0;
}

.blog-subscription-main {
  padding: 50px 0;
  background-color: #f7f7f7;
  float: left;
  width: 100%;
  border-top: 1px solid #e4e4e4;
}

.blog-subscription-main .innerbanner-subscribe-form {
    margin-top: 0;
    float: left;
    width: 60%;
}

.blog-subscription-title {
    float: left;
    width: 40%;
    text-align: left;
    margin-bottom: 0px;
}

.container-fluid.body-container  .blog-subscription-main .blog-subscription-title p {
  margin-bottom: 0 !important;
}

.blog-subscription-main .blog-subscription-title h4 {
 margin-bottom: 5px;
}

.blog-subscription-main .blog-subscription-title p {
  margin-bottom: 0;
}

.blog-subscription-main .innerbanner-subscribe-form form {
  max-width: 100%;
  box-shadow: none;
}

.blog-subscription-main .blog-subscription-inner {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-banner-img #hubspot-topic_data .separator {
  color: #fff;
}

.blog-topics {
  background: transparent;
  border-bottom: 1px solid #e4e4e4;
}

.blog-topics ul li a {
  padding: 15px 10px;
  font-weight: 400;
}

.blog-listing-page .container,
.blog-post-new .container{
  padding: 0 20px;
}

.blog-listing-page .banner-text-white h1 {
  color: #fff;
}



.blog-post-new .blog-post-two-col .span9.blog-post-section {
  padding-right: 80px;
}

.blog-listing-page .inner-banner-main.b_center {
  text-align: center;
}

.blog-listing-page .inner-banner-main.b_left {
  text-align: left;
}

.blog-listing-page .inner-banner-main.b_right {
  text-align: right;
}

.blog-post-container .social-links__icon {
  background-color: #fafbfc;
  border-radius: 10px;
}

.blog-post-container .social-links__icon svg {
	fill: #b0b7c3;
  -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;;
}


.blog-post-container .social-links__icon:hover, .blog-post-container .social-links__icon:focus {
  background-color:  !important;
}

/***************************** Blog Listing Page Responsive CSS   ********************/
@media only screen and (max-width: 1365px) {
  .blog-post-new .container {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .body-container-wrapper.four-column-full-width-blog .full-width {
    padding: 0 70px;
  }
  
  
  
  
}

@media only screen and (max-width: 1199px) {
  .blog-listing-withsidebar-inner,
  .blog-listing-withsidebar-inner.sticky-sidebar{
    width: 230px;
  }  
  
  
} 
@media only screen and (max-width:1024px) {
  .recent-blog-main .hs-featured-image-link {
    height: 180px;
  }
  
  .post-item .post-inner .hs-featured-image-wrapper .read-more {
    padding: 8px 10px;
  }
  
  #\31 .post-item .post-inner {
    max-width: 40%;
  }
  
  .hs-blog-post .body-container-wrapper.transparent-top-space .body-container--blog-index {
    padding-top: 60px;
  }
  
  .fixedsocailmedia-block {
    top: 160px;
  }
  
  .body-container-wrapper.banner-top-space-without-topbar .fixedsocailmedia-block {
    top: 215px;
  }
  
  .body-container-wrapper.transparent-top-space .fixedsocailmedia-block {
    top: 325px;
  }

  .featured-article .inner {
    padding: 100px 0 70px 0;
  }
  
/*   New Blog CSS */
  .new-blog-style-one .blog-listing-one .post-item .short-desc {
    padding: 30px 15px;
  }
  
  .blog-listing-withsidebar-inner,
  .blog-listing-withsidebar-inner.sticky-sidebar{
    width: 220px;
  }
  
  .new-blog-style-one .two-column-blog-style .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    height: 320px;
  }
  
  .new-blog-style-one .blog-listing-one .post-item .short-desc {
    padding: 0;
  }
  
  .blog-listing-five .two-column-blog-style .post-item .post-inner .short-desc {
    padding: 30px;
  }
  
   .body-container-wrapper.four-column-full-width-blog .full-width {
    padding: 0 15px;
  }
  
  .blog-subscription-main .innerbanner-subscribe-form {    
    width: 60%;
  }
  
}

@media only screen and (max-width:991px ){
  .blog-listing-five .span9,.blog-listing-five .span3 {
    width: 100%;
    margin:0;
  }
  
  .blog-listing-five .span3.sidebar {
    padding-top:0;
  }
  
  .featured-article .inner h1 {
       margin: 15px 0 20px 0;
  }
  
  .featured-article .inner .page-center {
    padding: 30px 20px;
  }
  
  .featured-article #hubspot-topic_data {
    margin-bottom: 0;
  }
  
  /* ********** Blog Three Column CSS   ***********   */
  .blog-listing-five .blog-listing-one.blog-listing-threecol .post-item {
    width: 50%;
  }
  
  /*  Blog Module CSS   */
  #\33 .post-item {
    max-width: 50%;
  }
  
  #\34 .post-item {
    max-width: 50%;
  }
  
  #\32 .post-item .post-inner .hs-featured-image-link {
    height: 220px;
  }
  
  #\31 .post-item .post-inner {
    max-width: 50%;
  }
  
  .blog-post-section .blog-post {
    max-width: 80%;
  }
  
 .blog-post-section .section.post-body #hs_cos_wrapper_post_body {
    max-width: 80%;
  }
  
  .body-container-wrapper.transparent-top-space .fixedsocailmedia-block {
    top: 310px;
  }
  
  .body-container-wrapper.transparent-top-space .fixedsocailmedia-block.withsecondary-menu {
    top: 350px;
  }
  
  .body-container-wrapper.blog-post-new .author-detail, 
  .body-container-wrapper.blog-post-new .related-posts, 
  .body-container-wrapper.blog-post-new .blog-comments,
  .body-container-wrapper.blog-post-new .blog-pagination{
    max-width: 80%;
  }
  
  .blog-banner-img.featured-article .inner {
    padding: 100px 0;
  }
  
  .blogstyle2-content-group {
    margin-bottom: 30px;
  }
  
  .recent-blog-main.blog-s2 .short-desc.blog-content-group {
    padding: 30px;
  }
  
/*   New Blog Pages CSS */
    
  .new-blog-style-one.new-blog-style-one-withrightsidebar .blog-listing-one .post-item .short-desc {
    padding-right: 0;
  }
  
  .new-blog-style-one.new-blog-style-one-withrightsidebar .blog-listing-one .post-item .short-desc {
    padding: 0;   
  }
  
  .new-blog-style-one .blog-listing-one-main .blog-listing-one .post-item {
    margin-bottom: 30px;
  }
  
   
  .span3.blog-listing-withsidebar {
    padding-top: 0;
  }
  
  .blog-listing-withsidebar-inner {
    width: 100%;
  }
  
  .new-blog-style-one.new-blog-style-one-withrightsidebar .span3.blog-listing-withsidebar { 
    float: left;
  } 
  
/*   New Blog With Sidebar CSS */
  .blog-listing-leftsidebar .row-fluid {
    display: flex;
    flex-direction: column-reverse;
  }
  
  .new-blog-style-one.blog-listing-leftsidebar .span9.blog-listing-one-main {
    margin-left: 0 !important;
  }
  
  .new-blog-style-one .two-column-blog-style .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    height: 236px;
  }
  
  .new-blog-style-one .two-column-blog-style .blog-listing-one .post-item .short-desc {
    padding: 15px;
    padding-bottom: 25px;
  }
  
  .blog-listing-five.new-blog-style-one {
    padding-bottom: 20px;
  }
  
  .new-blog-style-one.new-blog-style-one-withrightsidebar .span9.blog-listing-one-main.two-column-blog-style {
    padding-right: 0px;
  }
  
  .new-blog-style-one-withrightsidebar.two-column-style .span9.blog-listing-one-main.two-column-blog-style {
    padding-right: 0px;
    padding-left: 0px;
    margin-left: 0 !important;
  } 
  
  .blog-listing-five.three-column-style .two-column-blog-style .blog-listing-one .post-item {
    width: calc(50% - 30px);    
  }
  
  .new-blog-style-one.four-column-style .two-column-blog-style .blog-listing-one .post-item {
    width: calc(50% - 30px);
  }
  
  .new-blog-style-one.blog-center-align .span8.blog-section.blog-listing-one {
    float: left;
    margin: 0;
    width: 100%;
  }
  
  .blog-listing-five.new-blog-style-one.three-column-style .two-column-blog-style .masonry-blog .grid-item.post-item,
  .blog-listing-five.new-blog-style-one.four-column-style .two-column-blog-style .masonry-blog .grid-item.post-item {
    width: 50%;
  }
  
/*  Alternate Blog Style  */
  .blog-listing-five.alternate-blog-style.new-blog-style-one-withrightsidebar .blog-listing-one {
    padding-right: 0;
  }
  
  .blog-listing-five.alternate-blog-style.new-blog-style-one-withrightsidebar .span3.blog-listing-withsidebar {
    float: left;
    width: 100%;
  }
  
  .blog-listing-five.alternate-blog-style.blog-listing-leftsidebar .span9.blog-listing-one-main {
    margin-left: 0;
  }
  
  .blog-listing-five.alternate-blog-style.blog-listing-leftsidebar .span9.blog-listing-one-main .blog-listing-one {
    padding-right: 0px;
    padding-left: 0;
  }
  
  .blog-post-new .blog-post-two-col .span9.blog-post-section {
    padding-right: 0;
    width: 100%;
    padding: 0 40px;
  }
  
  .body-container-wrapper.blog-post-new .author-detail, .body-container-wrapper.blog-post-new .related-posts, .body-container-wrapper.blog-post-new .blog-comments, .body-container-wrapper.blog-post-new .blog-pagination {
    max-width: 100%;
  }
  
  .span3.blog-listing-withsidebar {
    padding-top: 0;
    width: 100%;
    margin-left: 0 !important;
    padding: 0 40px;
    margin-top: 50px;
  }
  
  .blog-listing-withsidebar-inner.sticky-sidebar-hide,
  .blog-listing-withsidebar-inner.sticky-sidebar{
    width: 100%;
    position: initial !important;
    top: initial !important;
  }
  
  .body-container.body-container--blog-index.blog-post-container {
    padding-bottom: 60px !important;
  }
  
  .blog-listing-withsidebar-inner, .blog-listing-withsidebar-inner.sticky-sidebar {
    width: 100%;
    margin-top: 0 !important;
  }
  
  
}

@media only screen and (max-width: 767px ){
  .featured-article .inner .page-center {
    max-width: 100%;   
  }
  
  .featured-article .inner h1 {
    margin: 12px 0 20px 0;
    line-height: 42px;
  }
  
  .blog-topics ul li {
    padding-left: 0;
  }
  
  .blog-listing-five .post-item .post-inner .hs-featured-image-wrapper {
    display: block;
    width: 100%;
  }
  
  .blog-listing-five .post-item .short-desc {
    display: block;
    width: 100%;
  }
  
  .blog-listing-one {
      padding: 35px 0;
  }
  
  .blog-listing-one .post-item .short-desc {
    padding: 10px 25px 20px 25px;
  }
  
  .blog-listing-five .post-item .post-inner p {
    margin-bottom: 10px;
  }
  
  .blog-listing-five .blog-listing-one .post-item {
    padding: 0 !important;
  }
  
  .featured-article .inner {
      padding-top: 160px;
  }
  
  .blog-topics ul li a {
    padding: 8px 15px;
  }
  
  .blog-listing-five {
        padding-bottom: 0;
  }
  
  /* ********** Blog Three Column CSS   ***********   */
  .blog-listing-five .blog-listing-one.blog-listing-threecol .post-item {
    width: 100%;
  }
  
  /*  Blog Module CSS   */
  #\33 .post-item {
    max-width: 100%;
  }
  
  #\34 .post-item {
    max-width: 100%;
  }
  
  #\32 .post-item {
    max-width: 100%;
  }
  
  #\32 .post-item .post-inner{
    max-width: 100%;
  }
  
  .recent-blog-main .hs-featured-image-link {
    height: 220px;
  }
  
  #\31 .post-item .post-inner {
    max-width: 100%;
  }
  
  .blog-post-container {
    padding-bottom: 50px;
  }
  
  .fixedsocailmedia-block {
    top: 120px;
  }
  
  .body-container-wrapper .blog-detail-wraper {
    padding-top: 60px;
  }
  
  .body-container-wrapper.banner-top-space-without-topbar .fixedsocailmedia-block {
    top: 195px;
  }
  
  .body-container-wrapper.blog-post-new .author-detail {
    margin-top: 0;
    margin-bottom: 30px;   
  }
  
  .body-container-wrapper.blog-post-new .blog-pagination {    
    margin-bottom: 50px;
    max-width: 80%;
  }
  
  .body-container-wrapper.blog-post-new .related-posts {
    margin-bottom: 30px;    
  }
  
  .body-container-wrapper.blog-post-new .author-description {
    padding-left:0px;
  }
  
  .body-container-wrapper.blog-post-new .blog-post-section .author-detail .author-header {  
    text-align: center;
    padding-top: 0;
  }
  
  .body-container-wrapper.blog-post-new .author-description {
    width: initial;
    float: none;    
  }
  
  .blog-banner-img.featured-article .inner {
    padding: 80px 0;
  }
  
  .featured-article .inner {
    padding: 80px 0 50px 0;
  }
  
  .related-posts .related-post-item {width: 100%;padding:0;margin-bottom: 30px;}
  .related-posts .related-post-item:last-child {margin-bottom: 0;}
  .body-container-wrapper.blog-post-new .related-posts-wrap {
    padding-bottom: 40px;
  }
  
  .blog-banner-img.featured-article .inner.inner-banner-top-space {
    padding-top: 100px;
  }
  
  .related-image img {
    height: 246px;
  }
  
  .blogstyle2-content-group {
    margin-bottom: 20px;
  }
  
  .new-blog-style-one .post-item .post-inner .post-title {
    
    overflow: initial;
    display: inline-block;
    font-size: 28px;
  }
  
  .blog-listing-withsidebar .topic-list ul li {
    margin-right: 4px;
  }
  
  .blog-listing-five .two-column-blog-style .blog-listing-one .post-item {
    width: 100%;
  }
  
  .new-blog-style-one .two-column-blog-style .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    height: 256px;
  }
  
  .blog-listing-five .two-column-blog-style .post-item {
    margin-top: 0;
  }
  
  .blog-listing-five .two-column-blog-style .blog-listing-one {
    padding-top: 45px;
  }
  
  .new-blog-style-one.new-blog-style-one-withrightsidebar .two-column-blog-style .blog-listing-one {
    padding-top: 45px;
  } 
  
  .blog-listing-five.three-column-style .two-column-blog-style .blog-listing-one .post-item {
    width: 100%;    
  }
  
  .blog-listing-five.three-column-style .two-column-blog-style .blog-listing-one .post-item {
    margin-top: 0;
  }
  
  .blog-listing-five.three-column-style .two-column-blog-style .blog-listing-one {
    padding-top: 45px;
  }
  
  .new-blog-style-one.four-column-style .two-column-blog-style .blog-listing-one .post-item {
    width: 100%;
  }
  
  .new-blog-style-one.four-column-style .two-column-blog-style .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    height: 250px;
  }
  
  .new-blog-style-one.four-column-style .two-column-blog-style .blog-listing-one .post-item {    
    margin-top: 0;
  }
  
  .blog-listing-five.four-column-style .two-column-blog-style .blog-listing-one {
    padding-top: 45px;
  }
  
  .new-blog-style-one.four-column-style .two-column-blog-style .blog-listing-one .post-item {    
    margin: 0;
    margin-bottom: 30px;
  }
  
  .blog-listing-five.four-column-style .two-column-blog-style .blog-listing-one {
    padding-top: 55px;
  }
  
  .new-blog-style-one.four-column-style .two-column-blog-style .post-listing {
    margin: 0;
  }
  
  .blog-listing-five.new-blog-style-one .two-column-blog-style .masonry-blog .grid-item.post-item {
    width: 100%;
    margin: 0;
  }
  
  .blog-listing-five.new-blog-style-one.three-column-style .two-column-blog-style .masonry-blog .grid-item.post-item,
  .blog-listing-five.new-blog-style-one.four-column-style .two-column-blog-style .masonry-blog .grid-item.post-item {
    width: 100%;
    margin: 0;
  }
  
  /* Alternate Blog CSS  */
  .blog-listing-five.alternate-blog-style .post-item .post-inner .hs-featured-image-wrapper {   
    width: 100%;
    border-radius: 5px 5px 0 0;
  }
  
  .blog-listing-five.alternate-blog-style .post-item .short-desc {
    width: 100%;
    border-radius: 0 0 5px 5px;
  }
  
  .blog-listing-five.alternate-blog-style .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    border-radius: 5px 5px 0 0;
  }
  
  .blog-listing-five.alternate-blog-style .blog-listing-one {
    padding-top: 35px;
  }  
  
  .blog-subscription-title {   
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .blog-subscription-main .innerbanner-subscribe-form {   
    float: left;
    width: 100%;
  }
  
  .blog-subscription-main .innerbanner-subscribe-form .form-without-bg-main {
    margin-top: 15px;
  }
  
  .blog-subscription-title {
    margin-bottom: 0;
  }
  
  .span3.blog-listing-withsidebar {
    padding-top: 0;
    width: 100%;
    margin-left: 0 !important;
    margin-top: 50px;
    padding: 0 40px;
  }
  
  .blog-listing-withsidebar-inner, .blog-listing-withsidebar-inner.sticky-sidebar {
    width: 100%;
  }
  
  .body-container.body-container--blog-index.blog-post-container {
    padding-bottom: 60px;
  }
  
  .span3.blog-listing-withsidebar {	
    float: left;
  }
  
  .blog-banner-img.featured-article .inner {
    padding: 40px 0;
  }
  
  .fixedsocailmedia-block {
    top: 165px;
  }
  
  .body-container-wrapper.blog-post-new .blog-pagination {    
    max-width: 100%;
  }
  
  .body-container-wrapper.blog-post-new .related-posts-wrap {    
    padding-top: 20px;
  }
  
  .body-container.body-container--blog-index.blog-post-container {
    padding-bottom: 30px !important;
  }
  
  .blog-subscription-title p {
    margin-bottom: 15px !important;
  }

}

@media only screen and (max-width:479px){
  .featured-article .inner h1 {
    line-height: 42px;
    font-size: 36px;
  }
  
  .recent-blog-main .hs-featured-image-link {
    height: 160px;
  }
  
  #\32 .post-item .post-inner .hs-featured-image-link {
    height: 160px;
  }
  
  .hs-blog-post .body-container-wrapper.transparent-top-space .body-container--blog-index {
    padding-top: 50px;
  }
  
  .body-container-wrapper.transparent-top-space .fixedsocailmedia-block.withsecondary-menu {
    top: 418px;
  }
  
  .blog-banner-img.featured-article .inner {
    padding: 60px 0;
  }
  
  .featured-article .inner {
    padding: 60px 0 30px 0;
  }
  
  .blog-banner-img.featured-article .inner.inner-banner-top-space {
    padding-top: 110px;
  }
  
  .blog-listing-five .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    height: 246px;
    object-fit: cover;
  }
  
  .new-blog-style-one .post-item .post-inner .post-title {
    font-size: 32px;
    overflow: initial;
    display: inline-block;
    font-size: 28px;
  }
  
   
  .new-blog-style-one .two-column-blog-style .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    height: 290px;
  }
  
  .new-blog-style-one.new-blog-style-one-withrightsidebar .two-column-blog-style .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    height: 220px;
  }
  
  .new-blog-style-one .post-item .post-inner .post-title {
    font-size: 24px;
  }
  
  .new-blog-style-one.new-blog-style-one-withrightsidebar .two-column-blog-style .blog-listing-one .post-item .short-desc {
    padding: 15px 15px 25px 15px;
  }
  
  .new-blog-style-one .two-column-blog-style .post-inner .date i {
    padding-left: 0;
    margin-left: 0;
  }
  
  .new-blog-style-one.new-blog-style-one-withrightsidebar .two-column-blog-style .blog-listing-one,
  .new-blog-style-one .blog-listing-one{
    padding-bottom: 25px;
  }
  
  .new-blog-style-one.three-column-style .post-item .post-inner .post-title {
    font-size: 24px;
  }
  
  .new-blog-style-one.four-column-style .two-column-blog-style .hs-featured-image-wrapper .hs-featured-image-link img.hs-featured-image {
    height: 220px;
  }
  
  .blog-listing-five.four-column-style .two-column-blog-style .blog-listing-one {
    padding-top: 45px;
  }
  
  .blog-listing-five.new-blog-style-one .two-column-blog-style .masonry-blog .grid-item.post-item {
    width: 100%;
    margin: 0;
    position: static !important;
  }
  
  .blog-listing-five.new-blog-style-one.three-column-style .two-column-blog-style .masonry-blog .grid-item.post-item,
  .blog-listing-five.new-blog-style-one.four-column-style .two-column-blog-style .masonry-blog .grid-item.post-item{
    width: 100%;
    margin: 0;
  }
  
  .blog-listing-five.alternate-blog-style .blog-listing-one {
    padding-top: 35px;
  }
  
  .blog-listing-five.alternate-blog-style .post-item .short-desc {
    padding: 20px;
  }
  

}