/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/
*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

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

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

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * 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 ;
    }
}
.text-right{
  text-align: right !important; 
}
.text-left{
  text-align: left !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;
}

@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('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
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;
  padding: 0 0 13px 0;
}

/* 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;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

button:hover,
button:focus,
.button:hover,
.button:focus {
  text-decoration: none;
}

button:active,
.button:active {
  text-decoration: none;
}
/* Form fields */

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

/* Labels */

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

/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - datepicker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

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

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

/* Table Cells */

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

/* Table Header */

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

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

/* Header DND sections */

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 20px;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 20px 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 30px;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 28px;
  margin-top: 7px;
}

.header__logo--main {
  padding-top: 20px;
}

/* Search bar */

.header__search {
  padding: 0 22px;
  width: auto;
}

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 15px;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 10px 15px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 20px 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 30px;
  }
}


/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 35px;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 6px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 10px 15px;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  background-color: #EBEFF3;
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 18px;
  margin-bottom: 5px;
  margin-left: 10px;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 10px;
  margin-top: 3px;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 30px;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 30px;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 22px;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover {
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {

  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    height: calc(100vh - 115px);
    left: 0;
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 26px;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}

.rt-search-box2 .search-btn2 {
  cursor: pointer;
}

.block2 {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: #fff;
  box-shadow: 0px 10px 30px 0px rgb(222 222 247 / 33%);
  border: 0;
  margin: 0;
  padding: 100px 0;
  z-index: 99;
}

.search-area-grid {
  width: 100%;
  color: #000;
  background: 0 0;
  border-bottom: 1px solid #000;
  overflow: hidden;
  margin: 0;
}

#search-box2 {
  position: relative;
  width: 100%;
  float: left;
  padding: 0;
}

#search-form {
  overflow: hidden;
  padding: 0 2px;
}

#close-btn2 {
  margin: 0;
  float: right;
  text-align: right;
  padding: 3px 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  text-align: right;
}

/* HEADER START*/

.header-data-contact.hidden-xs {
  display: inline-block;
  width: auto;
}

.header-data-social {
  width: auto;
  display: inline-block;
  vertical-align: top;
  padding-left: 25px;
  margin-top: 12px;
}

.header-data-social p {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 13px;
  color: #bcc8e4;
  line-height: 22px;

}

.header-data-contact p {
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 11px;
  color: #fff;
  line-height: 23px;
  letter-spacing: 1px;
  position: relative;
  padding-right: 25px;
}

.header-data-contact p strong a {
  margin-bottom: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 300;
  font-size: 14px;
  color: #e5ecfa;
  letter-spacing: 1px;
  text-decoration: none;
}

.header-data-contact p:after {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 0;
  content: " ";
  width: 1px;
  height: 22px;
  margin-top: -11px;
  background-color: rgba(255, 255, 255, 0.2);
}

.top-header {
  padding: 14px 0 13px 0;
  position: relative;
}

.top-header-text-left p {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 26px;
  letter-spacing: 0px;
  display: inline-block;
}

.top-header-text-left p a {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 26px;
  letter-spacing: 0px;
  text-decoration: none;
}

.top-header ul {
  list-style: none;
  padding: 0 0 0 0px;
  margin: 0;
  display: inline-block;
}

.top-header ul li {
  display: inline-block;
  padding: 0 4px;
  margin: 0;
  font-size: 13px;
}

.top-header ul li a {
  text-decoration: none;
  color: #fff;
  background: #dd4b39;
  border-radius: 50%;
  display: block;
  width: 22px;
  height: 22px;
  text-align: center;
  font-size: 10px;
  line-height: 22px;
  padding: 1px 2px;
  cursor: pointer;
}

.top-header ul.social-icons li a {
  background: transparent;
}


/* BOTTOM HEADER SOCIAL ICON START */

.transparent-header ul.social-icons {
  list-style: none;
  padding: 0 0 0 0px;
  margin: 0;
  display: inline-block;
}

.transparent-header ul.social-icons li {
  display: inline-block;
  padding: 0 4px;
  margin: 0;
  font-size: 13px;
}

.transparent-header ul.social-icons li a {
  text-decoration: none;
  color: #fff;
  background: #dd4b39;
  border-radius: 50%;
  display: block;
  width: 22px;
  height: 22px;
  text-align: center;
  font-size: 10px;
  line-height: 22px;
  padding: 1px 2px;
  cursor: pointer;
}

.transparent-header ul.social-icons li a {
  background: transparent;
}


/* BOTTOM HEADER SOCIAL ICON END */

.header {
  position: relative width:100%;
  z-index: 199;
  box-shadow: 8px 3px 30px 5px rgb(0 0 0 / 8%);
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
}

.header nav.navigation-primary ul li:hover .menu-arrow:after {
  transform: rotate(180deg);
  transition: all .3s ease-in-out;
}

.header .content-wrapper {
  position: relative;
  padding: 0;
}

.header .content-wrapper .header__column {
  width: 100%;
  padding: 0 0 5px 0;
  left: 0;
  right: 0;
  transition: all .4s ease-in-out;
}

.nav-item.dropdown > .navbar-nav.submenu.level-2.in {
  transition: all .5s ease-in-out;
}

.header .content-wrapper .header__column .header__logo--main,
.header .content-wrapper .header__column .hs_cos_wrapper_type_logo {
  float: left;
  font-size: 28px;
  position: relative;
  z-index: 1;
  transition: all .4s ease-in-out;
  padding: 0;
  width: 150px;
}

.header .content-wrapper .header__column .header__logo--main a > img,
.header .content-wrapper .header__column .header__logo--main a > img {
  vertical-align: inherit;
  transition: all .4s ease-in-out;
  height: auto;
  width: auto;
}

.header .header-navigation {
  width: 100%;
}

.header .content-wrapper .header__row-1 {
  padding: 0;
}

.header nav.navigation-primary ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  text-align: right;
}

.collapse.navbar-collapse.justify-content-md-end {
  float: left;
}

.header nav.navigation-primary ul li {
  border: 0;
  transition: all .3s ease;
  padding: 0 12px 0 0;
  margin-right: 24px;
  position: relative;
  display: inline-block;
  text-align: left;
  text-transform: uppercase;
  line-height: 20px;
  letter-spacing: 1px;
  /*font-weight: 400;
  font-style: normal;
  font-size: 13px;*/
  padding-top: 0px;
}

.header nav.navigation-primary ul li a {
  position: relative;
  padding: 30px 0 25px 0;
  line-height: 25px;
  letter-spacing: 0.7px;
  font-weight:500;
  font-style: normal;
  font-size: 17px;
  border-radius: 4px;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  transition: all .3s ease;
  text-transform: capitalize;
}

.header nav.navigation-primary > ul > li > a:after {
  content: '';
  width: 0;
  height: 3px;
  bottom: -3px;
  position: absolute;
  left: auto;
  right: 0;
  -webkit-transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
  transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
  background: currentColor;
  display: none;
}

.submenu.level-2 .menu-item .menu-link {
  display: inline-block;
}

.header nav.navigation-primary ul li a:hover:after {
  width: 100%;
  left: 0;
  right: auto;
  margin: 0;
}

.header nav.navigation-primary ul li .menu-arrow {
  position: absolute;
  z-index: 1;
  right: -4px;
  top: 30%;
  cursor: pointer;
}

.header nav.navigation-primary ul li .menu-arrow:after {
  transition: all .3s ease;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0px;
  content: "\e64b";
  font-family: 'themify';
  transition: all .3s ease-in-out;
  font-size: 8px;
  font-weight:600;
}

input[type="checkbox"]:checked ~ .submenu {
  padding-bottom: 20px;
  margin-top: 0px
}

.submenu.level-1 > li.has-submenu:hover .submenu.level-2,
.submenu.level-1 > li.has-submenu.focus .submenu.level-2 {}

.header nav.navigation-primary ul li ul {
  position: absolute;
  top: 60px !important;
  left: -20%;
  z-index: 1;
  width: auto !important;
  padding: 20px 10px 7px 10px;
  box-shadow: 0px 5px 20px rgb(0 0 0 / 15%);
  border-radius: 0px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  margin-top: 0px;
  -webkit-transform-origin: 0 0;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
  border: 0px none;
}

/*.header .navbar-nav .nav-item.active > .nav-link,
.header .navbar-nav .nav-item:active:focus > .nav-link,
.header .navbar-nav .nav-item:active > .nav-link,
.header .navbar-nav .nav-item:focus > .nav-link,
.header .navbar-nav .nav-item:hover > .nav-link {
  color: #ff0000;
}*/

.header nav.navigation-primary ul li:not(.hover-active):hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0)
}

.header nav.navigation-primary > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li {
  padding: 0 20px 22px 20px;
  text-align: left;
  display: block;
}

.header nav.navigation-primary ul li ul li a {
  padding: 0 !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px !important;
  background: none;
  text-transform: capitalize;
}

.header nav.navigation-primary ul li a:hover {
  background: none;
}

/* SUBMENU EFFECT CSS START */

.header nav.navigation-primary ul li ul li a {
    position:relative;
    transition:all .12s ease-in-out;
    -webkit-transition:all .12s ease-in-out;
    text-transform:capitalize;
}

.header nav.navigation-primary ul li ul li a:hover {
    -webkit-transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
    transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
}


/* SUBMENU EFFECT CSS END */

.nav-item.dropdown > .navbar-nav .nav-item .nav-link {
  padding: 15px 0;
  
}

.header nav > ul > li > ul > li > a:hover {
  background: none;
}

.header nav > ul > li > ul > li > a:after {
  content: '';
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  -webkit-transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
  transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
}

.header nav > ul > li ul > li > a:hover:after {
  width: 100%;
  left: 0;
  right: auto;
  margin: 0;
}

.header .content-wrapper .header__column .header__logo--main .widget-type-logo a img {
  padding: 12px 0 5px 0;
}

.header__container {
  padding: 0;
}

.navbar .submenu.level-1 > li {
  border: 0px none;
}

div.bsnav-mobile .navbar-nav .nav-item .nav-link {
  padding: 12px 0;
  max-width: 100%;
  display: block;
  width: 100%;
  position: relative;
  z-index: 999;
  font-weight:700;
  letter-spacing:1.1px;
  text-decoration: none;
  text-transform:capitalize;
}

div.bsnav-mobile .navbar-nav .nav-item .navbar-nav {
  margin-left: 0;
  box-sizing: inherit;
}

div.bsnav-mobile .navbar-nav .nav-item .navbar-nav li a {
  padding: 5px 0;
  font-weight:500 !important;
}

.hs-skip-lang-url-rewrite.in .navbar-nav.navbar-mobile.mr-0.submenu {
  padding: 0 15px;
}

div.bsnav-mobile.in .navbar {
  width: 100%;
}

.navbar-toggler {
  float: right;
  margin-top: 10px;
  width:24px !important;
}

.header-navigation .navbar-toggler .navbar-toggler-icon {
  height: 1px;
  width: 22px;
}

.header-navigation .navbar-toggler .navbar-toggler-icon::after {
  width: 18px;
  height: 1px;
  top: 13px !important;
}

.header-navigation .navbar-toggler .navbar-toggler-icon::before {
  width: 15px;
  height: 1px;
  top: 6px !important;
}

.toggler-spring.active .navbar-toggler-icon::before {
  width: 75%;
  top: 0 !important;
}

.toggler-spring.active .navbar-toggler-icon::after {
  width: 75%;
  top: 0 !important;
}

.rt-search-box2 {
  float: right;
  margin-top: 6px;
  padding-left: 0px;
  left: 0;
  position: relative;
}

.rt-search-box2 .search-btn2 {
  color: #000;
}

.rt-search-box2 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

#search-overlay2 .container {
  max-width: 1170px;
}

.search-btn2 {
  float: right;
  padding: 0;
  font-size: 18px;
  cursor: pointer;
}

.rt-search-btn2.fa-2x {
  font-size: 18px;
  cursor: pointer;
}

#search-overlay2 {
  display: none;
}

.block2 {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: #fff;
  box-shadow: 0px 10px 30px 0px rgba(222, 222, 247, .33);
  border: 0;
  margin: 0;
  padding: 100px 0;
  z-index: 99;
}

.block2:before {
  content: "";
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
}

.search-area-grid {
  width: 100%;
  color: #000;
  background: 0;
  border-bottom: 1px solid #000;
  overflow: hidden;
  margin: 0;
}

#search-box2 {
  position: relative;
  width: 96%;
  float: left;
  padding: 0;
}

#search-form {
  overflow: hidden;
  padding: 0 2px;
}

#search-text {
  font-size: 16px;
  text-transform: capitalize;
}

#search-box2 input[type=text] {
  width: 90%;
  padding: 0;
  float: left;
  outline: 0;
  color: #696969;
  font-size: 16px;
  line-height: 28px;
  height: 30px;
  background: 0;
  border-bottom: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

#search-box2 input[type=text]::-webkit-input-placeholder {
  color: #696969;
}

#search-box2 input[type=text]::-moz-placeholder {
  color: #696969;
}

#search-box2 input[type=text]:-ms-input-placeholder {
  color: #696969;
}

#search-button2 {
  width: 30px;
  height: 30px;
  background: 0;
  line-height: 30px;
  border: 0;
  cursor: pointer;
  float: left;
  padding: 0;
  text-align: left;
}

#close-btn2 {
  margin: 0;
  float: right;
  text-align: right;
  padding: 3px 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  text-align: right;
}

#header .rt-header-inner .dark-search .search-btn2,
#header #header-wrap .dark-search .search-btn2 {
  display: none;
}

#header .rt-header-inner .default-search .search-btn2,
#header #header-wrap .default-search .search-btn2 {
  display: block;
}


/* HEADER NEW CSS START */

.radiant-icon-box-wrapper.icon-box-parent-style-header-left {
  padding: 0px;
  -webkit-transition: background .3s, border .3s, -webkit-border-radius .3s, -webkit-box-shadow .3s;
  transition: background .3s, border .3s, -webkit-border-radius .3s, -webkit-box-shadow .3s;
  -o-transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, -webkit-border-radius .3s, -webkit-box-shadow .3s;
  background: transparent;
  box-shadow: none;
  margin: 0;
}


.contact-phone .radiant-icon-box-wrapper.icon-box-parent-style-header-left .radiant-icon-box-icon svg {
 width: 17px;
    margin-top: 8px;
}

.top-header.radiant-top-header.hm2-header .contact-phone .radiant-icon-box-wrapper.icon-box-parent-style-header-left .radiant-icon-box-icon svg {
  margin-top:-12px;
  width:20px;
}



.radiant-icon-box-wrapper.icon-box-parent-style-header-left h4 {
  margin-bottom: 7px;
  margin-top: 7px;
  padding: 0;
  font-size: 13px;
  line-height: 23px;
  font-weight: 400;
  color: #A56D55;
}

.radiant-icon-box-wrapper.icon-box-parent-style-header-left .radiant-icon-box-description {
  padding: 0;
  margin-right: 10px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-header-left .radiant-icon-box-description p {
  margin: 0;
}

.header-social-icons {
  width: auto;
  display: inline-block;
  vertical-align: top;
  /*padding-left: 25px;*/
  /*margin-right:-15px;*/
  margin-top:3px;
}

.header-social-icons .social-icons .social-links__icon svg path{
  fill:#808080;
  stroke:#808080;
}
.header-social-icons .social-icons  .contct-instagram .social-links__icon svg path{
  fill:none;}

.top-header ul {
  list-style: none;
  padding: 0 0 0 0px;
  margin: 0;
  display: inline-block;
}

.top-header ul li {
  display: inline-block;
  padding: 0 4px;
  margin: 0;
  font-size: 13px;
}

.header .top-header .row > * {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
/*
.header .header__container .contact-button .button.customizable-button {
  padding: 0px 20px;
  
}*/

.header .header__container .contact-button .button.customizable-button,  .header .header__container .hm2-contact-button .button.customizable-button, {
  box-shadow: none;
}

.header .header__container .rt-search-box2 {
  float: left;
  margin-top: 18px;
}

.header .header__container .contact-button, .header .header__container .hm2-contact-button {
  display: inline-block;
}

.header .header__container nav.navigation-primary ul {
  margin-left: 0;
}
/*
.header .header__container img {
  margin-top: 11px;
}*/

.top-header ul li.facebook-square a,
.top-header ul li.twitter a,
.top-header ul li.linkedin-in a {
  background: transparent;
}

.top-header.radiant-top-header {
  padding:4px 0;
}

.top-header.radiant-top-header.hm2-header .contact-mail svg,
.top-header.radiant-top-header.hm2-header .contact-phone svg {
  fill: #ffffff;
  margin-top:-6px;
}

.top-header.radiant-top-header.hm2-header {
  background:#2f59c5;
}

.top-header.radiant-top-header.hm1-header {
  background:#1a508b;
}

.top-header.radiant-top-header .contact-phone{float:right;text-align: right;}
.top-header.radiant-top-header .contact-address {float:left; width:37%}

@media only screen and (max-width: 1080px) {
  .header .header__container .rt-search-box2 {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  
  .submenu.level-1>.has-submenu>.menu-arrow {
    right: 0 !important;
    top: 17px !important;
}
  .top-header.radiant-top-header{padding:0;} 
  .header nav.navigation-primary ul li{margin-right: 15px;}
  
  .bsnav{background-color:transparent !important;}
  /*.header .header__container .contact-button .button.customizable-button {
    padding:0 10px; }*/
  
  .top-header.radiant-top-header .contact-address {float: left;
    width: 44%;}
.bsnav-mobile .navbar {padding: 20px 0 15px !important;}
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
  .top-header.radiant-top-header .contact-phone {
    float: left;
    width: 40%
  }

  .top-header.radiant-top-header .contact-mail {
    float: left;
    width: 28%
  }

  .top-header.radiant-top-header .contact-address {
    float: left;
    width: 44%
  }

  .header .header__container .rt-search-box2,
  .header .header__container .contact-button {
    display: none;
  }

  .header .content-wrapper .header__row-1 {
    margin-top: -44px;
    float:right;
    width:80%;
    margin-right: 25px;
  }
  
  .bsnav {
    background-color: transparent !important;
  }

  .submenu.level-2 .menu-item {
    background: transparent !important;
    border-bottom: 0;
    border-top: none !important;
    padding: 0;
  }

  .rt-dropdown-arrow:after {
    transition: all .3s ease;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0px;
    content: "\e64b";
    font-family: 'themify';
    transition: all .3s ease-in-out;
    font-size: 8px;
    margin-top: 8px;
  }

  .navbar .submenu.level-1 > li {
    border: 0px none;
    display: block;
    padding: 0;
    margin: 0;
  }

  .navbar .submenu.level-1 > li label {
    display: block;
  }

  div .submenu.level-1 > .has-submenu > .menu-arrow {
    right: 17px;
    top: 0px;
  }

  .submenu.level-1 > .has-submenu > .menu-arrow,
  .submenu > .has-submenu > .menu-arrow,
  .submenu .menu-arrow {
    border: 0;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
  }

  .submenu.level-1 > li .submenu.level-2 {
    border: 0;
    box-shadow: none;
    opacity: 1;
    position: static;
    transform: unset;
    visibility: visible;
    width: 100%;
    z-index: 2;
  }

  .bsnav-mobile,
  .bsnav-mobile .bsnav-mobile-overlay,
  .bsnav-sticky.navbar-fade,
  .bsnav-sticky.navbar-slide {
    top: 80px !important;
  }
  .bsnav-mobile .navbar {padding: 20px 0 15px !important;}
}

@media only screen and (max-width: 1070px) {
  .top-header.radiant-top-header {
    display:none;
  }
}

@media only screen and (max-width: 767px) {
  
  .top-header.radiant-top-header {
    padding: 0 0 10px 0;
    display:none;
  }

  .top-header.radiant-top-header .contact-phone {
    float: left;
    width: 100%
  }

  .top-header.radiant-top-header .contact-mail {
    float: left;
    width: 100%
  }

  .top-header.radiant-top-header .contact-address {
    float: left;
    width: 100%
  }

  .radiant-icon-box-wrapper.icon-box-parent-style-header-left h4 {
    margin-bottom: 0;
  }

  .header-social-icons {
    padding-left: 5px;
    display: block;
  }

  .top-header ul {
    float: left;
    display: block;
  }

  .header .header__container .rt-search-box2,
  .header .header__container .contact-button {
    display: none;
  }

  .header .content-wrapper .header__row-1 {
    margin-top: -44px;
    float:right;
    width:70%;
  }
  
  .bsnav {
    background-color: transparent !important;
  }

  .submenu.level-2 .menu-item {
    background: transparent !important;
    ;
    border-bottom: 0;
    border-top: none !important;
    ;
    padding: 0;
  }

  .rt-dropdown-arrow:after {
    transition: all .3s ease;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0px;
    content: "\e64b";
    font-family: 'themify';
    transition: all .3s ease-in-out;
    font-size: 8px;
    margin-top: 8px;
  }

  .navbar .submenu.level-1 > li {
    border: 0px none;
    display: block;
    padding: 0;
    margin: 0;
  }

  .navbar .submenu.level-1 > li label {
    display: block;
  }

  .bsnav-mobile,
  .bsnav-mobile .bsnav-mobile-overlay,
  .bsnav-sticky.navbar-fade,
  .bsnav-sticky.navbar-slide {
    top: 50px !important;
  }
  .bsnav-mobile .navbar {padding: 20px 0 15px !important;}
  
    .content-wrapper .header__column .hs_cos_wrapper_type_logo {
    margin-top:3px;
  }
}
/*.header-social-icons .social-icons .social-links__icon li.facebook-square svg {
  width:15px;
}*/

@media only screen and (min-width: 576px) and (max-width:766px) {
  .bsnav-mobile, .bsnav-mobile .bsnav-mobile-overlay, .bsnav-sticky.navbar-fade, .bsnav-sticky.navbar-slide {
    top: 50px !important;
}
}

@media (min-width: 1200px) {
  .header .top-header .row > * {
    margin-left: 0px;
    margin-right: 0px;
  }

  /*.header .header__container .row>* {
  margin-left:-10px;
  margin-right:-10px;
  }*/
  
}

@media (min-width: 1170px) {
  .header .header__container .hs_cos_wrapper_type_logo img {
    margin-left: -20px;
  }
  
 /* .header .header__container .row {
    margin-left: 0px;
    margin-right: 0px;
  }*/
}


/* HEADER NEW CSS END */

/* HEADER END*/

/* Footer SECTION START*/
.custom-footer .logo {
  margin-bottom: 15px;
}

.social-icon-wrapper .social-links {
  width: 100%;
  word-spacing: var(--grid-column-gap);
  margin-bottom: calc(-1 * var(--grid-row-gap));
  display: inline-blog;
}

.social-icon-wrapper .social-links a.social-links__icon {
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 10px;
  border: 0;
  text-align: left;
  font-size: 18px;
  color: #fff;
  padding: 0 15px 0 0;
  font-weight: 500;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  border-radius: 50%;
}

.social-icon-wrapper .social-links a.social-links__icon span svg {
  height: 20px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  filter: brightness(0) invert(1);
}

.body-wrapper .custom-footer h5 {
  margin-top: 0;
  margin-bottom: 25px;
  padding: 0;
}

.body-wrapper .footer-address p {
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 0;   
  padding-bottom: 10px;
  margin: 0;
} 
/*
.body-wrapper .footer-content p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  padding-bottom: 20px;
  margin: 0;
  padding-right: 15px;
}*/

.body-wrapper .footer-subscribe-form p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  padding-bottom: 20px;
  margin: 0;
  padding-right: 15px;
}

.body-wrapper .footer-address p br {
  display: none;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  position: relative;
  margin-bottom: 8px !important;
  padding-left: 0;
  font-weight: 400;
}

/*.footer-menu ul li:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #fff;
  left: 0;
  top: 8px;
  transform: rotate(180deg);
}*/

.custom-footer .footer-menu ul li a, .body-wrapper .footer-content p {
  text-decoration: none;
  padding: 0;
  background: none;
  border: 0px none;
  font-weight: 400;
 
}

.custom-footer .footer-menu ul li a:hover {
  border: 0px none;
}



.footer-menu-whitish ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-whitish ul li {
  position: relative;
  margin-bottom: 8px !important;
  padding-left: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.footer-menu-whitish ul li:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #fff;
  left: 0;
  top: 8px;
  transform: rotate(180deg);
}

.custom-footer .footer-menu-whitish ul li a {
  text-decoration: none;
  padding: 0;
  background: none;
  border: 0px none;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.custom-footer .footer-menu-whitish ul li a:hover {
  border: 0px none;
}

.custom-footer .footer-menu-whitish ul li a {
    color: #d3d6ef;
}

.footer-subscribe-form input[type=email] {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  background: #fafafa;
  height: 52px;
  padding: 0 20px;
  border-radius: 0px;
  width: 100%;
  box-shadow: 8px 8px 25px 0 rgb(42 67 113 / 15%);
  -webkit-box-shadow: 8px 8px 25px 0 rgb(42 67 113 / 15%);
  -moz-box-shadow: 8px 8px 25px 0 rgba(42, 67, 113, .15);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  border: 0px none;
}

.footer-subscribe-form input[type="submit"] {
  width: 100%;
  border-radius: 0px;
  display: inline-block;
  padding: 11px 0;
  letter-spacing: 0;
  line-height: 28px;
  font-size: 16px;
  letter-spacing: 0;
  border: none; 
  color: #fff;
  background: #ED1B24;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  font-weight: 600;
  margin-top: 10px;
}

.footer-subscribe-form .hs-form-field {
  margin-bottom: 0;
}

.body-wrapper .footer-copyright-section p {
  padding: 0;
  margin: 0;
  letter-spacing: 0;
  font-size: 15px;
  line-height: 28px;
  text-align: center;
  text-transform:capitalize;
} 

.footer-subscribe-form input[type="email"],
.footer-subscribe-form input[type="search"],
.footer-subscribe-form input[type="text"],
.footer-subscribe-form select {
  width: 100%;
  height: 42px;
  margin-bottom: 12px;
  padding-left: 17px;
  padding-right: 17px;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px #6e76a5 solid;
  border-radius: 30px;
  box-shadow: initial;
  font-size: 13px;
  color: #c3caf6;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.footer-subscribe-form input::placeholder {
  color: #c3caf6;
}

.footer-subscribe-form form input[type=submit] {
  padding-top: 11px;
  padding-right: 50px;
  padding-bottom: 11px;
  padding-left: 50px;
  background-color: transparent;
  border-radius: 35px;
  color: #505050;
  line-height: 20px;
  font-size: 16px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  text-transform: capitalize;
  font-weight: 500;
  text-decoration: none;
  line-height: 27px;
  letter-spacing: 0;
  z-index: 99;
  margin: 0;
  border:none !important;
}

.footer-subscribe-form .actions {
  display: inline-block;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 35px;
  background: #17be74;
  text-align: center;
}

.footer-subscribe-form .actions:hover {
  color: #fff !important;
}

.footer-subscribe-form .actions:hover::before {
  opacity: 1;
  width: 100%;
  color: #fff;
}

.footer-subscribe-form form input[type=submit]:hover,
.footer-subscribe-form form .hs-button:hover{
  background-color: none;
  border-color: #fff;
  color: #fff;
}

.footer-subscribe-form .actions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background-color: #17be74;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

/* Footer SECTION END*/

/* FOOTER NEW CSS STARTS */

.footer-module-6-flexbox-positioning > div {
  width: 100%;
}

.wraper_footer.custom-footer .header-social-icons {
    width: auto;
    display: inline-block;
    vertical-align: top;
    padding-left: 0px;
    margin-top: 0px;
}

.wraper_footer.custom-footer .header-social-icons ul {
    list-style: none;
    padding: 0 0 0 0px;
    margin: 0;
    display: inline-block;
}

.wraper_footer.custom-footer .header-social-icons ul li {
    display: inline-block;
    padding: 0 15px 0 0px;
    margin: 0;
    font-size: 13px;
}

.wraper_footer.custom-footer .header-social-icons ul li.facebook-square a, 
.wraper_footer.custom-footer .header-social-icons ul li.twitter a, 
.wraper_footer.custom-footer .header-social-icons ul li.linkedin-in a {
    background: transparent;
}

.wraper_footer.custom-footer .header-social-icons .social-icons .social-links__icon svg {
    width: auto;
    height: 20px;
}

@media screen and (max-width: 991px) {
  .wraper_footer.custom-footer .header-social-icons {
    margin-bottom:25px;
  }
  
 /* .submenu.level-1>.has-submenu>.menu-arrow, .submenu>.has-submenu>.menu-arrow, .submenu .menu-arrow {
    top:-7px;
  }*/
}

/* FOOTER NEW CSS ENDS */
.header .header__container .header__column .row-fluid .span5[data-x="7"]{
    
    display:inline-block; 
    align-items: center; 
    justify-content: space-between;
}
.header .top-header .row-fluid .span6{
  display: flex; 
    align-items: center;
  justify-content: space-between;}
.header .top-header .row-fluid{
  display: flex; }   
.header .header__container .header__column .row-fluid .span5[data-x="7"]{
  padding-left:85px;}  

.top-header.radiant-top-header .contact-mail .bold{
  letter-spacing:0.030em; 
  text-transform:uppercase;}

@media (max-width: 1180px){
.header .header__container .hm2-contact-button{
  display:none;}
.header .header__container .header__column .row-fluid .span5[data-x="7"]{
  justify-content: flex-end;}
}
.footer__container h4.footer-heading-text, .footer__container .footer-heading-text{
  letter-spacing: 0.030em;
  padding-bottom: 20px;
  margin-bottom: 29px;
  position:relative;
  text-transform:capitalize;}
.footer__container h4.footer-heading-text:after, .footer__container .footer-heading-text:after{
  position:absolute;
  width:50px;
  content:"";
  background:#B07D62;
  left:0;
  bottom:0;
  height:2px;}

@media (min-width: 768px) and (max-width:991px){
.header .header__container .header__column .row .col-lg-5.col-md-4{
  width:100%;}}
.bsnav-mobile .navbar-nav{
  padding: 40px 15px !important;}

@media (min-width: 992px) and (max-width:1100px){
.header .content-wrapper .header__row-1 {
  margin-left: -11px;
}}
.sticky .header .content-wrapper .header__column, .header .content-wrapper .header__column{
  margin-top: -4px;
}
@media (min-width: 1180px) and (max-width:1193px){
.header .header__container .header__column .row-fluid .span5[data-x="7"] {
    padding-left: 56px; 
}  }
@media (min-width: 1194px) and (max-width:1215px){
.header .header__container .header__column .row-fluid .span5[data-x="7"] {
    padding-left: 69px;
}  }
@media (min-width: 1216px) and (max-width:1230px){
.header .header__container .header__column .row-fluid .span5[data-x="7"] {
    padding-left: 65px;
}  }
@media (min-width: 1231px) and (max-width:1238px){
.header .header__container .header__column .row-fluid .span5[data-x="7"] {
    padding-left: 77px;
}  }
@media (min-width:992px) and (max-width:1180px){
 .header .header__container .header__column .row-fluid .span5[data-x="7"] .span6.widget-span.widget-type-custom_widget.dnd_area-2nd-module-6-flexbox-positioning.dnd-module {
    width: 100%;
    align-items: flex-end !important;
   padding-top:7px;
  }}
@media  screen  and (max-width: 991px) {
  
  .header .header__container .header__column .row-fluid .span5[data-x="2"]{
    width:100%;}
  .header .header__container .header__column .row-fluid .span5[data-x="7"] {
    display: none;}}
/* Menu and simple menu */

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

/* Horizontal menu */

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

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

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

/* Flyouts */

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

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

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

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

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

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

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

* {
  text-decoration: none !important;
  outline: none !important;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

/* HOMEPAGE ONE CSS STARTS */
body{-webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;}

.text-white {
  color:#fff !important;
}


.pull-left {
  float:left;
}
.pull-right {
  float:right;
}
header {
  position: relative;
  width: 100%;
  height: 60px;
  box-shadow: 8px 3px 30px 5px rgb(0 0 0 / 8%);
}
header.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  /*transform: translateY(0);*/
  transition: 0.2s transform cubic-bezier(.3,.73,.3,.74);
}

/* STICKY HEADER CSS FIX START */

body.down header.header.inner-page-header {
  transform: translateY(0%);
}

body.down header.header.inner-page-header {
  transform: translateY(0%);
}

body.down header.header.business,
body.down header.header.marketing,
body.down header.header.support {
  transform: translateY(-75%);
}

body.down header.header.advisor {
  transform: translateY(0);
}

body.down header.header.agency {
  transform: translateY(-5%);
}

@media only screen and (min-width: 992px) {
  body.down .header.business .content-wrapper.transparent-header,
  body.down .header.agency .content-wrapper.transparent-header{
    background: rgba(17, 48, 82, 1) !important;
  }

  body.down .header.support .content-wrapper.transparent-header {
    background: #2f59c5 !important;
  }

}

/* STICKY HEADER CSS FIX END */

.footer svg {
  height: 20px;
  width: auto;
  fill:#ffffff;}

.sticky {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 8px 3px 30px 5px rgb(0 0 0 / 8%);}

.sticky header.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(0);
  transition: 0.2s transform cubic-bezier(.3,.73,.3,.74);}

body.down .sticky header.header {
  transform: translateY(0);}

.header nav.navigation-primary ul li .menu-arrow {
  position: absolute;
  z-index: 1;
  right: -4px;
  cursor: pointer;}
.header .content-wrapper .header__column{
  padding:16px 0 16px 0 !important;}

.header__container .hm2-contact-button .button.customizable-button{
  height: 52px;
  padding: 15px 21px;}
.header .content-wrapper{
  background-color:#ffffff00; width:100%;max-width: 100%;
  /*box-shadow:0px 0px 30px 0px rgb(0 0 0 / 6%) !important;*/
  z-index:99;
  border-bottom:1px solid #DFDFDF;}

@media only screen and (min-width: 992px) {
  .header .content-wrapper.transparent-header{width:100%;max-width: 100%; box-shadow: none;}

  .header .content-wrapper.transparent-header .bsnav {
    background:transparent;
    padding-left: 40px;}

  .header .content-wrapper.transparent-header .rt-search-box2 .search-btn2 {
    color:#252525;
  }
  .header .content-wrapper.transparent-header nav.navigation-primary ul li .menu-arrow {
    color: #252525;
  }
  .header .content-wrapper.transparent-header nav .level-1 > li > a {
    color: #252525 !important;
  }}

@media only screen and (max-width: 991px) {
  .header .content-wrapper.transparent-header .white-logo {
    display:block;
  }}

.heading-main .container {
  padding-left:0;
  padding-right:0;
}
.heading-main .row {
  margin-left:0;
  margin-right:0;}

.heading-main .col-lg-12 {
  padding-left:0;
  padding-right:0;}

@media only screen and (max-width: 1249px) {
  .header .header__container .rt-search-box2 {
    display: none;}}

/* CONTAINER CSS START */

.body-container--home-two .banner-main .container .row,
.body-container--home .banner-main .container .row {
  margin-right: -15px;
  margin-left: -15px;
}}

/* CONTAINER CSS END */ 
/* FOOTER FIX CSS STARTS */

.footer-menu ul li:before {
  display:none;}

.footer-menu-whitish ul li:before {
  display:none;}

.flyouts ul {
  width: 100%;
  display: inline-block;
  vertical-align: top;}

.footer-subscribe-form input[type="email"], 
.footer-subscribe-form input[type="search"], 
.footer-subscribe-form input[type="text"], 
.footer-subscribe-form select {
  border-radius:4px;
  border: 1px rgb(255 255 255 / 20%) solid;
  color: #bfbfbf;}

.footer-subscribe-form input[type="email"]::placeholder, 
.footer-subscribe-form input[type="search"]::placeholder, 
.footer-subscribe-form input[type="text"]::placeholder, 
.footer-subscribe-form select::placeholder {
  color: #bfbfbf;}


.footer-widget-section .dnd-section {
  padding: 100px 15px 63px 15px !important;}

.footer-copyright-section .row-depth-1.row-number-2 {
  padding: 15px 25px;
  margin: 0!important;
  text-align: left;
  color: #333333;
  font-weight: 500;
  text-transform: capitalize;}

.footer_copyright-row-0-background-color .footer-widget-heading p a{
  font-weight:600;} 

.footer-subscribe-form form input[type=submit]{
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: 4px !important;
  text-align: center;
  -webkit-transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  -moz-transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  text-decoration:none;
  text-transform:capitalize;
  background:#f94144 !important;
  color:#fff !important;}

.footer-subscribe-form .actions{border-radius: 4px !important;}
.hm3-radiant-footer{padding:20px 0 20px 0; background:#113052;}

.wraper_footer.custom-footer .header-social-icons ul li {
  padding-right:10px;}}

/* FOOTER FIX CSS ENDS */

/* FORM CSS FIX START 
form input[type=text], 
form input[type=email], 
form input[type=password], 
form input[type=tel], 
form input[type=number], 
form input[type=file], 
form select, 
form textarea {
background-color: #FFF;
border: 1px solid;
border-radius: 3px;
display: inline-block;
font-size: .875rem;
padding: 0.55rem !important;
width: 100% !important;
}

form textarea {
height:100px;
}*/

/*form input[type=submit], form .hs-button {
padding: 12px 0px !important;
width: 100% !important;
margin-top:-9px;
}*/

/* FORM CSS FIX END */

/* HOME ONE BOX CSS STARTS 
@media (min-width: 992px) {
.row-depth-1.row-number-4.dnd-section .span6.dnd_area-column-6-padding,
.row-depth-1.row-number-13.dnd-section .span6.dnd_area-column-22-padding {
border-right:3px solid #808cab;
}
}
*/

/* radiant-icon-box2-wrapper icon-box2-parent-style-two CSS starts */

.radiant-icon-box-wrapper.icon-box-parent-style-one {
  padding: 0px;
  transition: background .3s,border .3s,border-radius .3s,box-shadow .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
  box-shadow: none;
  margin:11px 0 0 0;}

.hm1-last-sec .radiant-icon-box-wrapper.icon-box-parent-style-one{
  padding-bottom:6px;}
.radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon{
  display: block;
  text-align:left;
  position:absolute;}

.radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content {
  width: 100%;
  display: inline-block;}
.ser-icon-bx1 .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content{
  padding-left: 52px;}
.ser-icon-bx-one{
  padding-right: 146px;} 
.ser-icon-bx-one .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content{
  padding-left: 66px;}
.contact-button .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content{
  width: 100%;
  display: inline-block;
  padding-left: 43px;}
.contact-button .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon{
  padding-top:10px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-one .text-blue a{
  color:#7347FC !important;}
@media screen and (max-width:1059px){
  .contact-button{display:none}}
/* radiant-icon-box2-wrapper icon-box2-parent-style-two CSS ends */


.rt-icon-box10 a:before,.rt-icon-box10 a:hover {
  -webkit-transition:width .6s cubic-bezier(.25,.8,.25,1) 0s;
  transition:width .6s cubic-bezier(.25,.8,.25,1) 0s
}

/* BANNER CSS ENDS */ 
/* HOME ONE RESPONSIVE SECTION GAPPING END */
/* HOME TWO CSS STARTS */
@media (min-width: 576px) {
  .container, .container-md, .container-sm {
    max-width: 100% !important;
  }
}

@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 100% !important;
  }
}

@media (min-width: 992px) {
  .container, .container-md, .container-sm {
    max-width: 100% !important;
  }
}

@media (min-width: 1200px) {
  .container, .container-md, .container-sm {
    max-width: 1266px !important;
  }
  /* HOME TWO BANNER ICON BOX CSS STARTS */

  .button-iconbox .banner-botton, 
  .button-iconbox .hm2-banner-iconbox {
    float:left;
  }

  .button-iconbox .hm2-banner-iconbox .banner-icon {
    position:absolute;
    margin-top: 17px;
    margin-left: 30px;
  }

  .button-iconbox .hm2-banner-iconbox .banner-icon svg {
    fill: #d3d6ef;
    width:35px;
  }

  .button-iconbox .hm2-banner-iconbox .icon-content p,
  .button-iconbox .hm2-banner-iconbox .icon-content h6 {
    padding-bottom:0;
    margin-bottom:0;
  }

  .button-iconbox .hm2-banner-iconbox .icon-content {
    margin-top: 15px;
    margin-left: 40px;
  }

  @media screen and (max-width: 441px) {
    .button-iconbox .hm2-banner-iconbox .banner-icon {
      margin-left:20px;
    }

    .button-iconbox .hm2-banner-iconbox .icon-content {
      margin-left:70px;
    }
  }

  @media screen and (max-width: 431px) {
    .button-iconbox .hm2-banner-iconbox .banner-icon {
      margin-left:10px;
    }

    .button-iconbox .hm2-banner-iconbox .icon-content {
      margin-left:60px;
    }
  }

  @media screen and (max-width: 421px) {
    .button-iconbox .hm2-banner-iconbox .banner-icon {
      margin-left:0px;
    }

    .button-iconbox .hm2-banner-iconbox .icon-content {
      margin-left:60px;
    }
  }

  @media screen and (min-width: 992px) and (max-width: 1016px) {
    .button-iconbox .hm2-banner-iconbox {
      display:none;
    }
  }


  /* HOME 2 HOVER BOX CSS START */

  .hs_cos_wrapper_type_linked_image img {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
  }

  .hs_cos_wrapper_type_linked_image:hover img {
    transform: translate3d(-10px, 0, 0);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
  }

  /* HOME TWO CSS ENDS */

  /* HOME THREE(AGENCY) CSS START */


  /* HOME THREE BLOG CSS START */ 

  .recent-blogs {
    padding-bottom: 20px !important;
    padding-top: 10px !important;
  }

  .recent-blogs .swiper-horizontal>.swiper-pagination-bullets, 
  .recent-blogs .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0px !important;
    cursor:pointer;
  }

  /* HOME THREE BLOG CSS END */ 

  .hs-content-id-73757162875 .top-header {
    visibility:hidden;
  }


  @media screen and (min-width: 768px) {
    .hs-content-id-73757162875 .header__container.content-wrapper {
      margin-top:-30px;
    }
  }
  .text-bg {
    display: inline-block;
    background: #ffefef;
    border-radius: 20px;
    margin-bottom:12px;
  }

  .text-bg p {
    margin: 3px 18px;
    font-weight: 500;
    color: #f94144;
  }

  .text-bg-white {
    display: inline-block;
    background: #ffffff;
    border-radius: 20px;
    margin-bottom:12px;
  }

  .text-bg-white p {
    margin: 3px 18px;
    font-weight: 500;
    color: #f94144;
  }

  .text-bg-white-center {
    display: block;
    background: #ffefef;
    border-radius: 20px;
    margin:0 auto 12px auto;
    width:170px;
  }

  .text-bg-white-center p {
    margin: 0px 18px;
    font-weight: 500;
    color: #f94144;
  }


  /* HOME FIVE (SUPPORT) CSS START */

  @media only screen and (min-width: 992px) {

    .hs-content-id-74245607968 .header {background:transparent !important; box-shadow:none;}
  }

  .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon img.primary-img {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, .44, 1.18);
    transform: translate3d(0px, 0px, 0px);
  }

  .radiant-icon-box-wrapper.icon-box-parent-style-one:hover .radiant-icon-box-icon img.primary-img {
    opacity: 1;
    transform: scale(1.06);
    transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, .44, 1.18);
  }

  .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon img.primary-hover-img {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0%;
    top: 0%;
    z-index: 2;
    transition: 0.5s ease, transform 2s cubic-bezier(0, 0, .44, 1.18);
  }

  .radiant-icon-box-wrapper.icon-box-parent-style-one:hover .radiant-icon-box-icon img.primary-hover-img {
    opacity: 1;
    visibility: visible;
    transform: scale(1.06);
    transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, .44, 1.18);
  }

  .text-red {
    color:#f94144;
  }

  /* HOME FIVE FOOTER CSS STARTS */
  .hm2-radiant-footer .span3 .footer-widget-heading.space, .hm2-radiant-footer .span3 .footer-menu.space{
    padding-left:40px;}



  .footer-text-white {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 25px;
    line-height: 35px;
    color:#ffffff;
    padding-bottom:12px;}



  @media screen and (max-width: 991px) {
    .wraper_footer.custom-footer.hm5-radiant-footer .header-social-icons {
      margin-bottom: 18px;
    }
  }

  /* HOME FIVE ICON BOX CSS START (AFTER TEAM)*/

  .radiant-icon-box2-wrapper.icon-box2-parent-style-six .radiant-icon-box2-content h6.radiant-icon-box2-title svg {
    position:absolute;
    margin-top: 6px;
    fill:#ffffff;
  }

  .radiant-icon-box2-wrapper.icon-box2-parent-style-six .radiant-icon-box2-content h6.radiant-icon-box2-title {
    margin-left:65px;
    padding-bottom:10px;
    color:#ffffff;
  }

  .radiant-icon-box2-wrapper.icon-box2-parent-style-six .radiant-icon-box2-content h6.radiant-icon-box2-title svg {
    margin-left:-65px;
  }


  @media screen and (max-width: 1170px) {
    .consulting-counter1 .radiant-counter {
      border-right:none;
    }
  }



  /* INNERPAGE HEADER CSS STARTS */

  @media only screen and (min-width: 992px) {
    .inner-page-header.header {background:transparent !important; box-shadow:none;}
  }

  .inner-page-header .top-header {
    visibility:hidden;
  }
}
/*
@media screen and (max-width: 992px) {
.down .marketing .header__container.content-wrapper,
.down .support .header__container.content-wrapper,
.down .business .header__container.content-wrapper{
margin-top:35px;
}
}*/

.wraper_inner_banner.banner-one {
  margin-top:-70px;
}

.wraper_inner_banner.banner-one {
  padding-top: 263px;
  padding-bottom: 130px;
  background-position:top center !important;
  background-size:cover;
}

@media screen and (max-width: 991px) {
  .wraper_inner_banner.banner-one {
    padding-top: 215px;
    padding-bottom: 79px;
  }
}

.inner_banner_main {
  text-align: left;
}

.inner_banner_main h1.title {
  text-transform: capitalize;
  color: #fff;
}
.inner_banner_main .subtitle {
  color: #fff;
  margin:0 auto;
}

.wraper_inner_banner.banner-one .banner-inner h1 {
  color: #fff;
  padding-left: 0px;
  padding-bottom: 5px !important;
}

/* INNERPAGE HEADER CSS END */
/* SOCIAL ICON LIST CSS START */
.header-social-icons {
  width: auto;
  display: inline-block;
  vertical-align: top;
  padding-left: 0px;
  margin-top: 0px;
}

.header-social-icons ul {
  list-style: none;
  padding: 0 0 0 0px;
  margin: 0;
  display: inline-block;
}

.header-social-icons ul li {
  display: inline-block;
  padding: 0 22px 0 0px;
  margin: 0;
  font-size: 13px;
}


.header-social-icons-two {
  width: auto;
  display: inline-block;
  vertical-align: top;
  padding-left: 0px;
  margin-top: 0px;
}

.header-social-icons-two ul {
  list-style: none;
  padding: 0 0 0 0px;
  margin: 0;
  display: inline-block;
}

.header-social-icons-two ul li {
  display: block;
  padding: 0;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}

.header-social-icons-two ul li a {
  background:transparent;
}

.header-social-icons-two .social-icons .social-links__icon svg {
  width: 15px;
}

/* SOCIAL ICON LIST CSS ENDS */



/* NEW CSS START */

@media screen and (max-width: 992px) and (min-width: 768px) {
  .bsnav-mobile .navbar {
    margin-top:-22px;
  } 
}

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/
*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

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

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

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * 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 ;
    }
}
.text-right{
  text-align: right !important; 
}
.text-left{
  text-align: left !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;
}

@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('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
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;
  padding: 0 0 13px 0;
}

/* 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;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

button:hover,
button:focus,
.button:hover,
.button:focus {
  text-decoration: none;
}

button:active,
.button:active {
  text-decoration: none;
}
/* Form fields */

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

/* Labels */

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

/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - datepicker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

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

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

/* Table Cells */

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

/* Table Header */

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

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

/* Header DND sections */

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

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 20px;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 20px 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 30px;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 28px;
  margin-top: 7px;
}

.header__logo--main {
  padding-top: 20px;
}

/* Search bar */

.header__search {
  padding: 0 22px;
  width: auto;
}

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 15px;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 10px 15px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 20px 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 30px;
  }
}


/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 35px;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 6px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 10px 15px;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  background-color: #EBEFF3;
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 18px;
  margin-bottom: 5px;
  margin-left: 10px;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 10px;
  margin-top: 3px;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 30px;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 30px;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 22px;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover {
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {

  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    height: calc(100vh - 115px);
    left: 0;
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 26px;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}

.rt-search-box2 .search-btn2 {
  cursor: pointer;
}

.block2 {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: #fff;
  box-shadow: 0px 10px 30px 0px rgb(222 222 247 / 33%);
  border: 0;
  margin: 0;
  padding: 100px 0;
  z-index: 99;
}

.search-area-grid {
  width: 100%;
  color: #000;
  background: 0 0;
  border-bottom: 1px solid #000;
  overflow: hidden;
  margin: 0;
}

#search-box2 {
  position: relative;
  width: 100%;
  float: left;
  padding: 0;
}

#search-form {
  overflow: hidden;
  padding: 0 2px;
}

#close-btn2 {
  margin: 0;
  float: right;
  text-align: right;
  padding: 3px 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  text-align: right;
}

/* HEADER START*/

.header-data-contact.hidden-xs {
  display: inline-block;
  width: auto;
}

.header-data-social {
  width: auto;
  display: inline-block;
  vertical-align: top;
  padding-left: 25px;
  margin-top: 12px;
}

.header-data-social p {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 13px;
  color: #bcc8e4;
  line-height: 22px;

}

.header-data-contact p {
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 11px;
  color: #fff;
  line-height: 23px;
  letter-spacing: 1px;
  position: relative;
  padding-right: 25px;
}

.header-data-contact p strong a {
  margin-bottom: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 300;
  font-size: 14px;
  color: #e5ecfa;
  letter-spacing: 1px;
  text-decoration: none;
}

.header-data-contact p:after {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 0;
  content: " ";
  width: 1px;
  height: 22px;
  margin-top: -11px;
  background-color: rgba(255, 255, 255, 0.2);
}

.top-header {
  padding: 14px 0 13px 0;
  position: relative;
}

.top-header-text-left p {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 26px;
  letter-spacing: 0px;
  display: inline-block;
}

.top-header-text-left p a {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 26px;
  letter-spacing: 0px;
  text-decoration: none;
}

.top-header ul {
  list-style: none;
  padding: 0 0 0 0px;
  margin: 0;
  display: inline-block;
}

.top-header ul li {
  display: inline-block;
  padding: 0 4px;
  margin: 0;
  font-size: 13px;
}

.top-header ul li a {
  text-decoration: none;
  color: #fff;
  background: #dd4b39;
  border-radius: 50%;
  display: block;
  width: 22px;
  height: 22px;
  text-align: center;
  font-size: 10px;
  line-height: 22px;
  padding: 1px 2px;
  cursor: pointer;
}

.top-header ul.social-icons li a {
  background: transparent;
}


/* BOTTOM HEADER SOCIAL ICON START */

.transparent-header ul.social-icons {
  list-style: none;
  padding: 0 0 0 0px;
  margin: 0;
  display: inline-block;
}

.transparent-header ul.social-icons li {
  display: inline-block;
  padding: 0 4px;
  margin: 0;
  font-size: 13px;
}

.transparent-header ul.social-icons li a {
  text-decoration: none;
  color: #fff;
  background: #dd4b39;
  border-radius: 50%;
  display: block;
  width: 22px;
  height: 22px;
  text-align: center;
  font-size: 10px;
  line-height: 22px;
  padding: 1px 2px;
  cursor: pointer;
}

.transparent-header ul.social-icons li a {
  background: transparent;
}


/* BOTTOM HEADER SOCIAL ICON END */

.header {
  position: relative width:100%;
  z-index: 199;
  box-shadow: 8px 3px 30px 5px rgb(0 0 0 / 8%);
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
}

.header nav.navigation-primary ul li:hover .menu-arrow:after {
  transform: rotate(180deg);
  transition: all .3s ease-in-out;
}

.header .content-wrapper {
  position: relative;
  padding: 0;
}

.header .content-wrapper .header__column {
  width: 100%;
  padding: 0 0 5px 0;
  left: 0;
  right: 0;
  transition: all .4s ease-in-out;
}

.nav-item.dropdown > .navbar-nav.submenu.level-2.in {
  transition: all .5s ease-in-out;
}

.header .content-wrapper .header__column .header__logo--main,
.header .content-wrapper .header__column .hs_cos_wrapper_type_logo {
  float: left;
  font-size: 28px;
  position: relative;
  z-index: 1;
  transition: all .4s ease-in-out;
  padding: 0;
  width: 150px;
}

.header .content-wrapper .header__column .header__logo--main a > img,
.header .content-wrapper .header__column .header__logo--main a > img {
  vertical-align: inherit;
  transition: all .4s ease-in-out;
  height: auto;
  width: auto;
}

.header .header-navigation {
  width: 100%;
}

.header .content-wrapper .header__row-1 {
  padding: 0;
}

.header nav.navigation-primary ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  text-align: right;
}

.collapse.navbar-collapse.justify-content-md-end {
  float: left;
}

.header nav.navigation-primary ul li {
  border: 0;
  transition: all .3s ease;
  padding: 0 12px 0 0;
  margin-right: 24px;
  position: relative;
  display: inline-block;
  text-align: left;
  text-transform: uppercase;
  line-height: 20px;
  letter-spacing: 1px;
  /*font-weight: 400;
  font-style: normal;
  font-size: 13px;*/
  padding-top: 0px;
}

.header nav.navigation-primary ul li a {
  position: relative;
  padding: 30px 0 25px 0;
  line-height: 25px;
  letter-spacing: 0.7px;
  font-weight:500;
  font-style: normal;
  font-size: 17px;
  border-radius: 4px;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  transition: all .3s ease;
  text-transform: capitalize;
}

.header nav.navigation-primary > ul > li > a:after {
  content: '';
  width: 0;
  height: 3px;
  bottom: -3px;
  position: absolute;
  left: auto;
  right: 0;
  -webkit-transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
  transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
  background: currentColor;
  display: none;
}

.submenu.level-2 .menu-item .menu-link {
  display: inline-block;
}

.header nav.navigation-primary ul li a:hover:after {
  width: 100%;
  left: 0;
  right: auto;
  margin: 0;
}

.header nav.navigation-primary ul li .menu-arrow {
  position: absolute;
  z-index: 1;
  right: -4px;
  top: 30%;
  cursor: pointer;
}

.header nav.navigation-primary ul li .menu-arrow:after {
  transition: all .3s ease;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0px;
  content: "\e64b";
  font-family: 'themify';
  transition: all .3s ease-in-out;
  font-size: 8px;
  font-weight:600;
}

input[type="checkbox"]:checked ~ .submenu {
  padding-bottom: 20px;
  margin-top: 0px
}

.submenu.level-1 > li.has-submenu:hover .submenu.level-2,
.submenu.level-1 > li.has-submenu.focus .submenu.level-2 {}

.header nav.navigation-primary ul li ul {
  position: absolute;
  top: 60px !important;
  left: -20%;
  z-index: 1;
  width: auto !important;
  padding: 20px 10px 7px 10px;
  box-shadow: 0px 5px 20px rgb(0 0 0 / 15%);
  border-radius: 0px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  margin-top: 0px;
  -webkit-transform-origin: 0 0;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
  border: 0px none;
}

/*.header .navbar-nav .nav-item.active > .nav-link,
.header .navbar-nav .nav-item:active:focus > .nav-link,
.header .navbar-nav .nav-item:active > .nav-link,
.header .navbar-nav .nav-item:focus > .nav-link,
.header .navbar-nav .nav-item:hover > .nav-link {
  color: #ff0000;
}*/

.header nav.navigation-primary ul li:not(.hover-active):hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0)
}

.header nav.navigation-primary > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li,
.header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li {
  padding: 0 20px 22px 20px;
  text-align: left;
  display: block;
}

.header nav.navigation-primary ul li ul li a {
  padding: 0 !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px !important;
  background: none;
  text-transform: capitalize;
}

.header nav.navigation-primary ul li a:hover {
  background: none;
}

/* SUBMENU EFFECT CSS START */

.header nav.navigation-primary ul li ul li a {
    position:relative;
    transition:all .12s ease-in-out;
    -webkit-transition:all .12s ease-in-out;
    text-transform:capitalize;
}

.header nav.navigation-primary ul li ul li a:hover {
    -webkit-transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
    transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
}


/* SUBMENU EFFECT CSS END */

.nav-item.dropdown > .navbar-nav .nav-item .nav-link {
  padding: 15px 0;
  
}

.header nav > ul > li > ul > li > a:hover {
  background: none;
}

.header nav > ul > li > ul > li > a:after {
  content: '';
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  -webkit-transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
  transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
}

.header nav > ul > li ul > li > a:hover:after {
  width: 100%;
  left: 0;
  right: auto;
  margin: 0;
}

.header .content-wrapper .header__column .header__logo--main .widget-type-logo a img {
  padding: 12px 0 5px 0;
}

.header__container {
  padding: 0;
}

.navbar .submenu.level-1 > li {
  border: 0px none;
}

div.bsnav-mobile .navbar-nav .nav-item .nav-link {
  padding: 12px 0;
  max-width: 100%;
  display: block;
  width: 100%;
  position: relative;
  z-index: 999;
  font-weight:700;
  letter-spacing:1.1px;
  text-decoration: none;
  text-transform:capitalize;
}

div.bsnav-mobile .navbar-nav .nav-item .navbar-nav {
  margin-left: 0;
  box-sizing: inherit;
}

div.bsnav-mobile .navbar-nav .nav-item .navbar-nav li a {
  padding: 5px 0;
  font-weight:500 !important;
}

.hs-skip-lang-url-rewrite.in .navbar-nav.navbar-mobile.mr-0.submenu {
  padding: 0 15px;
}

div.bsnav-mobile.in .navbar {
  width: 100%;
}

.navbar-toggler {
  float: right;
  margin-top: 10px;
  width:24px !important;
}

.header-navigation .navbar-toggler .navbar-toggler-icon {
  height: 1px;
  width: 22px;
}

.header-navigation .navbar-toggler .navbar-toggler-icon::after {
  width: 18px;
  height: 1px;
  top: 13px !important;
}

.header-navigation .navbar-toggler .navbar-toggler-icon::before {
  width: 15px;
  height: 1px;
  top: 6px !important;
}

.toggler-spring.active .navbar-toggler-icon::before {
  width: 75%;
  top: 0 !important;
}

.toggler-spring.active .navbar-toggler-icon::after {
  width: 75%;
  top: 0 !important;
}

.rt-search-box2 {
  float: right;
  margin-top: 6px;
  padding-left: 0px;
  left: 0;
  position: relative;
}

.rt-search-box2 .search-btn2 {
  color: #000;
}

.rt-search-box2 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

#search-overlay2 .container {
  max-width: 1170px;
}

.search-btn2 {
  float: right;
  padding: 0;
  font-size: 18px;
  cursor: pointer;
}

.rt-search-btn2.fa-2x {
  font-size: 18px;
  cursor: pointer;
}

#search-overlay2 {
  display: none;
}

.block2 {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: #fff;
  box-shadow: 0px 10px 30px 0px rgba(222, 222, 247, .33);
  border: 0;
  margin: 0;
  padding: 100px 0;
  z-index: 99;
}

.block2:before {
  content: "";
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
}

.search-area-grid {
  width: 100%;
  color: #000;
  background: 0;
  border-bottom: 1px solid #000;
  overflow: hidden;
  margin: 0;
}

#search-box2 {
  position: relative;
  width: 96%;
  float: left;
  padding: 0;
}

#search-form {
  overflow: hidden;
  padding: 0 2px;
}

#search-text {
  font-size: 16px;
  text-transform: capitalize;
}

#search-box2 input[type=text] {
  width: 90%;
  padding: 0;
  float: left;
  outline: 0;
  color: #696969;
  font-size: 16px;
  line-height: 28px;
  height: 30px;
  background: 0;
  border-bottom: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

#search-box2 input[type=text]::-webkit-input-placeholder {
  color: #696969;
}

#search-box2 input[type=text]::-moz-placeholder {
  color: #696969;
}

#search-box2 input[type=text]:-ms-input-placeholder {
  color: #696969;
}

#search-button2 {
  width: 30px;
  height: 30px;
  background: 0;
  line-height: 30px;
  border: 0;
  cursor: pointer;
  float: left;
  padding: 0;
  text-align: left;
}

#close-btn2 {
  margin: 0;
  float: right;
  text-align: right;
  padding: 3px 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  text-align: right;
}

#header .rt-header-inner .dark-search .search-btn2,
#header #header-wrap .dark-search .search-btn2 {
  display: none;
}

#header .rt-header-inner .default-search .search-btn2,
#header #header-wrap .default-search .search-btn2 {
  display: block;
}


/* HEADER NEW CSS START */

.radiant-icon-box-wrapper.icon-box-parent-style-header-left {
  padding: 0px;
  -webkit-transition: background .3s, border .3s, -webkit-border-radius .3s, -webkit-box-shadow .3s;
  transition: background .3s, border .3s, -webkit-border-radius .3s, -webkit-box-shadow .3s;
  -o-transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, -webkit-border-radius .3s, -webkit-box-shadow .3s;
  background: transparent;
  box-shadow: none;
  margin: 0;
}


.contact-phone .radiant-icon-box-wrapper.icon-box-parent-style-header-left .radiant-icon-box-icon svg {
 width: 17px;
    margin-top: 8px;
}

.top-header.radiant-top-header.hm2-header .contact-phone .radiant-icon-box-wrapper.icon-box-parent-style-header-left .radiant-icon-box-icon svg {
  margin-top:-12px;
  width:20px;
}



.radiant-icon-box-wrapper.icon-box-parent-style-header-left h4 {
  margin-bottom: 7px;
  margin-top: 7px;
  padding: 0;
  font-size: 13px;
  line-height: 23px;
  font-weight: 400;
  color: #A56D55;
}

.radiant-icon-box-wrapper.icon-box-parent-style-header-left .radiant-icon-box-description {
  padding: 0;
  margin-right: 10px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-header-left .radiant-icon-box-description p {
  margin: 0;
}

.header-social-icons {
  width: auto;
  display: inline-block;
  vertical-align: top;
  /*padding-left: 25px;*/
  /*margin-right:-15px;*/
  margin-top:3px;
}

.header-social-icons .social-icons .social-links__icon svg path{
  fill:#808080;
  stroke:#808080;
}
.header-social-icons .social-icons  .contct-instagram .social-links__icon svg path{
  fill:none;}

.top-header ul {
  list-style: none;
  padding: 0 0 0 0px;
  margin: 0;
  display: inline-block;
}

.top-header ul li {
  display: inline-block;
  padding: 0 4px;
  margin: 0;
  font-size: 13px;
}

.header .top-header .row > * {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
/*
.header .header__container .contact-button .button.customizable-button {
  padding: 0px 20px;
  
}*/

.header .header__container .contact-button .button.customizable-button,  .header .header__container .hm2-contact-button .button.customizable-button, {
  box-shadow: none;
}

.header .header__container .rt-search-box2 {
  float: left;
  margin-top: 18px;
}

.header .header__container .contact-button, .header .header__container .hm2-contact-button {
  display: inline-block;
}

.header .header__container nav.navigation-primary ul {
  margin-left: 0;
}
/*
.header .header__container img {
  margin-top: 11px;
}*/

.top-header ul li.facebook-square a,
.top-header ul li.twitter a,
.top-header ul li.linkedin-in a {
  background: transparent;
}

.top-header.radiant-top-header {
  padding:4px 0;
}

.top-header.radiant-top-header.hm2-header .contact-mail svg,
.top-header.radiant-top-header.hm2-header .contact-phone svg {
  fill: #ffffff;
  margin-top:-6px;
}

.top-header.radiant-top-header.hm2-header {
  background:#2f59c5;
}

.top-header.radiant-top-header.hm1-header {
  background:#1a508b;
}

.top-header.radiant-top-header .contact-phone{float:right;text-align: right;}
.top-header.radiant-top-header .contact-address {float:left; width:37%}

@media only screen and (max-width: 1080px) {
  .header .header__container .rt-search-box2 {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  
  .submenu.level-1>.has-submenu>.menu-arrow {
    right: 0 !important;
    top: 17px !important;
}
  .top-header.radiant-top-header{padding:0;} 
  .header nav.navigation-primary ul li{margin-right: 15px;}
  
  .bsnav{background-color:transparent !important;}
  /*.header .header__container .contact-button .button.customizable-button {
    padding:0 10px; }*/
  
  .top-header.radiant-top-header .contact-address {float: left;
    width: 44%;}
.bsnav-mobile .navbar {padding: 20px 0 15px !important;}
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
  .top-header.radiant-top-header .contact-phone {
    float: left;
    width: 40%
  }

  .top-header.radiant-top-header .contact-mail {
    float: left;
    width: 28%
  }

  .top-header.radiant-top-header .contact-address {
    float: left;
    width: 44%
  }

  .header .header__container .rt-search-box2,
  .header .header__container .contact-button {
    display: none;
  }

  .header .content-wrapper .header__row-1 {
    margin-top: -44px;
    float:right;
    width:80%;
    margin-right: 25px;
  }
  
  .bsnav {
    background-color: transparent !important;
  }

  .submenu.level-2 .menu-item {
    background: transparent !important;
    border-bottom: 0;
    border-top: none !important;
    padding: 0;
  }

  .rt-dropdown-arrow:after {
    transition: all .3s ease;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0px;
    content: "\e64b";
    font-family: 'themify';
    transition: all .3s ease-in-out;
    font-size: 8px;
    margin-top: 8px;
  }

  .navbar .submenu.level-1 > li {
    border: 0px none;
    display: block;
    padding: 0;
    margin: 0;
  }

  .navbar .submenu.level-1 > li label {
    display: block;
  }

  div .submenu.level-1 > .has-submenu > .menu-arrow {
    right: 17px;
    top: 0px;
  }

  .submenu.level-1 > .has-submenu > .menu-arrow,
  .submenu > .has-submenu > .menu-arrow,
  .submenu .menu-arrow {
    border: 0;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
  }

  .submenu.level-1 > li .submenu.level-2 {
    border: 0;
    box-shadow: none;
    opacity: 1;
    position: static;
    transform: unset;
    visibility: visible;
    width: 100%;
    z-index: 2;
  }

  .bsnav-mobile,
  .bsnav-mobile .bsnav-mobile-overlay,
  .bsnav-sticky.navbar-fade,
  .bsnav-sticky.navbar-slide {
    top: 80px !important;
  }
  .bsnav-mobile .navbar {padding: 20px 0 15px !important;}
}

@media only screen and (max-width: 1070px) {
  .top-header.radiant-top-header {
    display:none;
  }
}

@media only screen and (max-width: 767px) {
  
  .top-header.radiant-top-header {
    padding: 0 0 10px 0;
    display:none;
  }

  .top-header.radiant-top-header .contact-phone {
    float: left;
    width: 100%
  }

  .top-header.radiant-top-header .contact-mail {
    float: left;
    width: 100%
  }

  .top-header.radiant-top-header .contact-address {
    float: left;
    width: 100%
  }

  .radiant-icon-box-wrapper.icon-box-parent-style-header-left h4 {
    margin-bottom: 0;
  }

  .header-social-icons {
    padding-left: 5px;
    display: block;
  }

  .top-header ul {
    float: left;
    display: block;
  }

  .header .header__container .rt-search-box2,
  .header .header__container .contact-button {
    display: none;
  }

  .header .content-wrapper .header__row-1 {
    margin-top: -44px;
    float:right;
    width:70%;
  }
  
  .bsnav {
    background-color: transparent !important;
  }

  .submenu.level-2 .menu-item {
    background: transparent !important;
    ;
    border-bottom: 0;
    border-top: none !important;
    ;
    padding: 0;
  }

  .rt-dropdown-arrow:after {
    transition: all .3s ease;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0px;
    content: "\e64b";
    font-family: 'themify';
    transition: all .3s ease-in-out;
    font-size: 8px;
    margin-top: 8px;
  }

  .navbar .submenu.level-1 > li {
    border: 0px none;
    display: block;
    padding: 0;
    margin: 0;
  }

  .navbar .submenu.level-1 > li label {
    display: block;
  }

  .bsnav-mobile,
  .bsnav-mobile .bsnav-mobile-overlay,
  .bsnav-sticky.navbar-fade,
  .bsnav-sticky.navbar-slide {
    top: 50px !important;
  }
  .bsnav-mobile .navbar {padding: 20px 0 15px !important;}
  
    .content-wrapper .header__column .hs_cos_wrapper_type_logo {
    margin-top:3px;
  }
}
/*.header-social-icons .social-icons .social-links__icon li.facebook-square svg {
  width:15px;
}*/

@media only screen and (min-width: 576px) and (max-width:766px) {
  .bsnav-mobile, .bsnav-mobile .bsnav-mobile-overlay, .bsnav-sticky.navbar-fade, .bsnav-sticky.navbar-slide {
    top: 50px !important;
}
}

@media (min-width: 1200px) {
  .header .top-header .row > * {
    margin-left: 0px;
    margin-right: 0px;
  }

  /*.header .header__container .row>* {
  margin-left:-10px;
  margin-right:-10px;
  }*/
  
}

@media (min-width: 1170px) {
  .header .header__container .hs_cos_wrapper_type_logo img {
    margin-left: -20px;
  }
  
 /* .header .header__container .row {
    margin-left: 0px;
    margin-right: 0px;
  }*/
}


/* HEADER NEW CSS END */

/* HEADER END*/

/* Footer SECTION START*/
.custom-footer .logo {
  margin-bottom: 15px;
}

.social-icon-wrapper .social-links {
  width: 100%;
  word-spacing: var(--grid-column-gap);
  margin-bottom: calc(-1 * var(--grid-row-gap));
  display: inline-blog;
}

.social-icon-wrapper .social-links a.social-links__icon {
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 10px;
  border: 0;
  text-align: left;
  font-size: 18px;
  color: #fff;
  padding: 0 15px 0 0;
  font-weight: 500;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  border-radius: 50%;
}

.social-icon-wrapper .social-links a.social-links__icon span svg {
  height: 20px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  filter: brightness(0) invert(1);
}

.body-wrapper .custom-footer h5 {
  margin-top: 0;
  margin-bottom: 25px;
  padding: 0;
}

.body-wrapper .footer-address p {
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 0;   
  padding-bottom: 10px;
  margin: 0;
} 
/*
.body-wrapper .footer-content p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  padding-bottom: 20px;
  margin: 0;
  padding-right: 15px;
}*/

.body-wrapper .footer-subscribe-form p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  padding-bottom: 20px;
  margin: 0;
  padding-right: 15px;
}

.body-wrapper .footer-address p br {
  display: none;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  position: relative;
  margin-bottom: 8px !important;
  padding-left: 0;
  font-weight: 400;
}

/*.footer-menu ul li:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #fff;
  left: 0;
  top: 8px;
  transform: rotate(180deg);
}*/

.custom-footer .footer-menu ul li a, .body-wrapper .footer-content p {
  text-decoration: none;
  padding: 0;
  background: none;
  border: 0px none;
  font-weight: 400;
 
}

.custom-footer .footer-menu ul li a:hover {
  border: 0px none;
}



.footer-menu-whitish ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-whitish ul li {
  position: relative;
  margin-bottom: 8px !important;
  padding-left: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.footer-menu-whitish ul li:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #fff;
  left: 0;
  top: 8px;
  transform: rotate(180deg);
}

.custom-footer .footer-menu-whitish ul li a {
  text-decoration: none;
  padding: 0;
  background: none;
  border: 0px none;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.custom-footer .footer-menu-whitish ul li a:hover {
  border: 0px none;
}

.custom-footer .footer-menu-whitish ul li a {
    color: #d3d6ef;
}

.footer-subscribe-form input[type=email] {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  background: #fafafa;
  height: 52px;
  padding: 0 20px;
  border-radius: 0px;
  width: 100%;
  box-shadow: 8px 8px 25px 0 rgb(42 67 113 / 15%);
  -webkit-box-shadow: 8px 8px 25px 0 rgb(42 67 113 / 15%);
  -moz-box-shadow: 8px 8px 25px 0 rgba(42, 67, 113, .15);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  border: 0px none;
}

.footer-subscribe-form input[type="submit"] {
  width: 100%;
  border-radius: 0px;
  display: inline-block;
  padding: 11px 0;
  letter-spacing: 0;
  line-height: 28px;
  font-size: 16px;
  letter-spacing: 0;
  border: none; 
  color: #fff;
  background: #ED1B24;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  font-weight: 600;
  margin-top: 10px;
}

.footer-subscribe-form .hs-form-field {
  margin-bottom: 0;
}

.body-wrapper .footer-copyright-section p {
  padding: 0;
  margin: 0;
  letter-spacing: 0;
  font-size: 15px;
  line-height: 28px;
  text-align: center;
  text-transform:capitalize;
} 

.footer-subscribe-form input[type="email"],
.footer-subscribe-form input[type="search"],
.footer-subscribe-form input[type="text"],
.footer-subscribe-form select {
  width: 100%;
  height: 42px;
  margin-bottom: 12px;
  padding-left: 17px;
  padding-right: 17px;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px #6e76a5 solid;
  border-radius: 30px;
  box-shadow: initial;
  font-size: 13px;
  color: #c3caf6;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.footer-subscribe-form input::placeholder {
  color: #c3caf6;
}

.footer-subscribe-form form input[type=submit] {
  padding-top: 11px;
  padding-right: 50px;
  padding-bottom: 11px;
  padding-left: 50px;
  background-color: transparent;
  border-radius: 35px;
  color: #505050;
  line-height: 20px;
  font-size: 16px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  text-transform: capitalize;
  font-weight: 500;
  text-decoration: none;
  line-height: 27px;
  letter-spacing: 0;
  z-index: 99;
  margin: 0;
  border:none !important;
}

.footer-subscribe-form .actions {
  display: inline-block;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 35px;
  background: #17be74;
  text-align: center;
}

.footer-subscribe-form .actions:hover {
  color: #fff !important;
}

.footer-subscribe-form .actions:hover::before {
  opacity: 1;
  width: 100%;
  color: #fff;
}

.footer-subscribe-form form input[type=submit]:hover,
.footer-subscribe-form form .hs-button:hover{
  background-color: none;
  border-color: #fff;
  color: #fff;
}

.footer-subscribe-form .actions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background-color: #17be74;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

/* Footer SECTION END*/

/* FOOTER NEW CSS STARTS */

.footer-module-6-flexbox-positioning > div {
  width: 100%;
}

.wraper_footer.custom-footer .header-social-icons {
    width: auto;
    display: inline-block;
    vertical-align: top;
    padding-left: 0px;
    margin-top: 0px;
}

.wraper_footer.custom-footer .header-social-icons ul {
    list-style: none;
    padding: 0 0 0 0px;
    margin: 0;
    display: inline-block;
}

.wraper_footer.custom-footer .header-social-icons ul li {
    display: inline-block;
    padding: 0 15px 0 0px;
    margin: 0;
    font-size: 13px;
}

.wraper_footer.custom-footer .header-social-icons ul li.facebook-square a, 
.wraper_footer.custom-footer .header-social-icons ul li.twitter a, 
.wraper_footer.custom-footer .header-social-icons ul li.linkedin-in a {
    background: transparent;
}

.wraper_footer.custom-footer .header-social-icons .social-icons .social-links__icon svg {
    width: auto;
    height: 20px;
}

@media screen and (max-width: 991px) {
  .wraper_footer.custom-footer .header-social-icons {
    margin-bottom:25px;
  }
  
 /* .submenu.level-1>.has-submenu>.menu-arrow, .submenu>.has-submenu>.menu-arrow, .submenu .menu-arrow {
    top:-7px;
  }*/
}

/* FOOTER NEW CSS ENDS */
.header .header__container .header__column .row-fluid .span5[data-x="7"]{
    
    display:inline-block; 
    align-items: center; 
    justify-content: space-between;
}
.header .top-header .row-fluid .span6{
  display: flex; 
    align-items: center;
  justify-content: space-between;}
.header .top-header .row-fluid{
  display: flex; }   
.header .header__container .header__column .row-fluid .span5[data-x="7"]{
  padding-left:85px;}  

.top-header.radiant-top-header .contact-mail .bold{
  letter-spacing:0.030em; 
  text-transform:uppercase;}

@media (max-width: 1180px){
.header .header__container .hm2-contact-button{
  display:none;}
.header .header__container .header__column .row-fluid .span5[data-x="7"]{
  justify-content: flex-end;}
}
.footer__container h4.footer-heading-text, .footer__container .footer-heading-text{
  letter-spacing: 0.030em;
  padding-bottom: 20px;
  margin-bottom: 29px;
  position:relative;
  text-transform:capitalize;}
.footer__container h4.footer-heading-text:after, .footer__container .footer-heading-text:after{
  position:absolute;
  width:50px;
  content:"";
  background:#B07D62;
  left:0;
  bottom:0;
  height:2px;}

@media (min-width: 768px) and (max-width:991px){
.header .header__container .header__column .row .col-lg-5.col-md-4{
  width:100%;}}
.bsnav-mobile .navbar-nav{
  padding: 40px 15px !important;}

@media (min-width: 992px) and (max-width:1100px){
.header .content-wrapper .header__row-1 {
  margin-left: -11px;
}}
.sticky .header .content-wrapper .header__column, .header .content-wrapper .header__column{
  margin-top: -4px;
}
@media (min-width: 1180px) and (max-width:1193px){
.header .header__container .header__column .row-fluid .span5[data-x="7"] {
    padding-left: 56px; 
}  }
@media (min-width: 1194px) and (max-width:1215px){
.header .header__container .header__column .row-fluid .span5[data-x="7"] {
    padding-left: 69px;
}  }
@media (min-width: 1216px) and (max-width:1230px){
.header .header__container .header__column .row-fluid .span5[data-x="7"] {
    padding-left: 65px;
}  }
@media (min-width: 1231px) and (max-width:1238px){
.header .header__container .header__column .row-fluid .span5[data-x="7"] {
    padding-left: 77px;
}  }
@media (min-width:992px) and (max-width:1180px){
 .header .header__container .header__column .row-fluid .span5[data-x="7"] .span6.widget-span.widget-type-custom_widget.dnd_area-2nd-module-6-flexbox-positioning.dnd-module {
    width: 100%;
    align-items: flex-end !important;
   padding-top:7px;
  }}
@media  screen  and (max-width: 991px) {
  
  .header .header__container .header__column .row-fluid .span5[data-x="2"]{
    width:100%;}
  .header .header__container .header__column .row-fluid .span5[data-x="7"] {
    display: none;}}
/* Menu and simple menu */

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

/* Horizontal menu */

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

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

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

/* Flyouts */

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

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

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

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

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

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

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

* {
  text-decoration: none !important;
  outline: none !important;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

/* HOMEPAGE ONE CSS STARTS */
body{-webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;}

.text-white {
  color:#fff !important;
}

.pull-left {
  float:left;
}

.pull-right {
  float:right;
}

.top-header .opening-hours {
  padding-top:7px;
}

.top-header .opening-hours h6 {
  font-size:13px;
  line-height:23px;
  font-weight:400;
  padding-bottom:7px;
}

.top-header .top-hd-text {
  padding-top:7px;
}

.top-header .top-hd-text h6 {
  font-size:13px;
  line-height:23px;
  font-weight:400;
  padding-bottom:7px;
}

.header .content-wrapper
.top-header .header-social-icons {
  margin-top:4px;
}

.transparent-header .header-social-icons {
  margin-top: 15px;
  margin-right: -15px;
}

@media screen and (max-width: 1169px) {
  .transparent-header .header-social-icons {
    margin-right: -8px;
  }
}
@media screen and (max-width: 991px) {
  .top-header .top-hd-text,
  .transparent-header .header-social-icons {
    display:none;
  }
}

header {
  position: relative;
  width: 100%;
  height: 60px;
  box-shadow: 8px 3px 30px 5px rgb(0 0 0 / 8%);
}
header.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  /*transform: translateY(0);*/
  transition: 0.2s transform cubic-bezier(.3,.73,.3,.74);
}

/* STICKY HEADER CSS FIX START */

body.down header.header.inner-page-header {
  transform: translateY(0%);
}

body.down header.header.inner-page-header {
  transform: translateY(0%);
}


body.down header.header.advisor {
  transform: translateY(0);
}

body.down header.header.agency {
  transform: translateY(-5%);
}

.header .header__container img {
  margin-top: 10px;}

.header .header__container .rt-search-box2 {
  margin-top: 19px !important;
  border-style: solid;
  border-width: 0 1px 0 0;
  padding-right: 12px;
}
.header-navigation .hs_cos_wrapper_widget.hs_cos_wrapper_type_module {
  width: 100%;
  text-align: center;
}


@media only screen and (min-width: 992px) {
  body.down .header.business .content-wrapper.transparent-header,
  body.down .header.agency .content-wrapper.transparent-header{
    background: rgba(17, 48, 82, 1) !important;
  }

  body.down .header.support .content-wrapper.transparent-header {
    background: #2f59c5 !important;
  }

}
/*.header .header__container .hs_cos_wrapper_type_logo img {
margin-left: -14px !important;
}*/

.header .header__container .rt-search-box2 {
  margin-top:11px;
}

@media (min-width: 1170px) {
  .header .header__container .hs_cos_wrapper_type_logo img {
    margin-left: -10px;
  }
}

/* BUTTON HOVER NEW CSS START */

.button.customizable-button {
  display: inline-block;
  position: relative;
  z-index: 1;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  -webkit-transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  -moz-transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  text-decoration:none;
  text-transform: uppercase;
  line-height: 150%;
  letter-spacing: 0.115em;
}

.button.customizable-button:hover {
  transition-delay: .1s;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

/* BUTTON HOVER NEW CSS END */

/* FORM CSS FIX START */

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

form textarea {
  height:102px;
}

/*form input[type=submit], form .hs-button {
padding: 12px 0px !important;
width: 100% !important;
margin-top:-9px;
}*/

/* FORM CSS FIX END */

.header .header__container .contact-button {
  margin-right: 0px;
}

@media screen and (min-width: 992px) and (max-width: 1280px) {
  .header .header__container .contact-button {
    margin-right: 0;
  }
}

/* HOME ONE BOX CSS STARTS */

.dnd-section > .row-fluid{
  margin:0 auto;
}
@media (min-width: 1280px){
  .row-fluid {
    width: 100%;}
}
@media (min-width: 1280px){
  .row-fluid .span12 {
    width: 100%;}
}
@media (min-width: 1280px){
  .row-fluid [class*="span"] {
    display: block;
    float: left;}}

@media (max-width: 767px){
  .row-fluid [class*="span"] {
    align-items:center !important;
    float: none;
    margin-left:0;}
  .rt-icon-box10 .rt-img-box img {
    width:100%;}
  .radiant-icon-box2-wrapper.icon-box2-parent-style-six .radiant-icon-box2-content .radiant-icon-box-description {
    margin-left:0px;}
  .radiant-icon-box2-wrapper.icon-box2-parent-style-six .radiant-icon-box2-content h6.radiant-icon-box2-title svg {
    margin-top:0;}
  .radiant-icon-box2-wrapper.icon-box2-parent-style-six {
    margin-top:0px;}
  .rt-icon-box10 .rt-img-box img {
    width:100%;}
  .body-wrapper .custom-footer h6 {
    margin-top: 0;
    margin-bottom: 20px;}
  .flyouts ul {
    padding-bottom: 14px;}
  .social-icon-wrapper .social-links {
    padding-bottom: 28px;}

  body.down header.header.inner-page-header {
    transform: translateY(0%);}
  .navbar-toggler{margin-top: 10px;}
  .search-area-grid {
    margin: 0;}
  #search-box2 {
    padding: 0;
    margin: 0;}
  #search-box2 input[type="text"] {
    width: auto;
    padding: 0;}
  .rt-search-box2 {
    float: right;
    position: absolute;
    top: 16px;
    right: 30px;}
  .rt-mainMenu-open #header .default-search .search-btn2 {
    display: none;}
  .rt-mainMenu-open #header .default-search .search-btn2 {
    display: block;
    color: #1e4ec4;}
  .rt-mainMenu-open #header .rt-cart-box .ti-shopping-cart {
    display: block;
    color: #1e4ec4;}
}
@media (min-width: 1280px){
  .row-fluid .span3 {
    width: 23.076923077%;}
}

/* radiant-icon-box2-wrapper icon-box2-parent-style-two CSS starts */

.radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon{
  display: block;
  text-align:left;
  position:absolute;
}
.radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-description {
  padding:0;
  margin-right: 10px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-description p{
  color:#505050;
  width: 100% !important;
  margin: 0 !important;
  padding:0 !important;
}

/* radiant-icon-box2-wrapper icon-box2-parent-style-two CSS ends */

/* HOME TWO BANNER ICON BOX CSS STARTS */

.button-iconbox .banner-botton{
  float:left;
}

/* INNERPAGE HEADER CSS STARTS */

@media only screen and (min-width: 992px) {
  .inner-page-header.header {background:transparent !important; box-shadow:none;}
}
.inner-page-header .top-header {
  visibility:hidden;
}}
.wraper_inner_banner.banner-one {
  margin-top:-70px;
}

.wraper_inner_banner.banner-one {
  padding-top: 263px;
  padding-bottom: 130px;
  background-position:top center !important;
  background-size:cover;
}

@media screen and (max-width: 991px){
  .wraper_inner_banner.banner-one {
    padding-top: 215px;
    padding-bottom: 79px;
  }}

.inner_banner_main {
  text-align: left;}

.inner_banner_main h1.title {
  text-transform: capitalize;
  color: #fff;}

.inner_banner_main .subtitle {
  color: #fff;
  margin:0 auto;}

.wraper_inner_banner.banner-one .banner-inner h1 {
  color: #fff;
  padding-left: 0px;
  padding-bottom: 5px !important;}

/* INNERPAGE HEADER CSS END */

/* SOCIAL ICON LIST CSS START */
.header-social-icons {
  width: auto;
  display: inline-block;
  vertical-align: top;
  padding-left: 46px;
  margin-top: 0px;}

.header-social-icons ul {
  list-style: none;
  padding: 0 0 0 0px;
  margin: 0;
  display: inline-block;}
.header-social-icons-two {
  width: auto;
  display: inline-block;
  vertical-align: top;
  padding-left: 0px;
  margin-top: 0px;}

.header-social-icons-two ul {
  list-style: none;
  padding: 0 0 0 0px;
  margin: 0;
  display: inline-block;}

.header-social-icons-two ul li {
  display: block;
  padding: 0;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;}

.header-social-icons-two ul li a {
  background:transparent;}

.header-social-icons-two .social-icons .social-links__icon svg {
  width: 15px;}

/* SOCIAL ICON LIST CSS ENDS */

/* NEW CSS START */


/* System Page Start*/
/* Search Page End*/
.systems-page .hs-search-results__featured-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
}
.systems-page .hs-search-results__featured-image img {
  width: 100%;
  -webkit-transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
  -webkit-transform: scale(1);
  transform: scale(1);
  overflow: hidden;
}
.systems-page .hs-search-results__featured-image:hover img{
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.systems-page .hs-search-results__title{

  text-transform: capitalize;
  line-height: 42px;
  letter-spacing: 0px;
  font-weight: 700;
  font-style: normal;
  color: #1f2a58;
  font-size: 32px;
  text-decoration: none;
  padding: 20px 30px 17px 30px;
  display: inline-block;
  font-family:"DM Sans";
}
.systems-page  p.hs-search-results__description{
  padding:0px 30px 10px 30px;
}
.systems-page .hs-search-results ul li{
  width: 100%;
  margin-bottom: 55px;
  box-shadow: 0px 3px 20px rgb(0 0 0 / 10%);
  border-radius: 4px;
  overflow: hidden;
}
.systems-page a.hs-search-results__next-page,
.systems-page a.hs-search-results__prev-page{
  align-items: center;
  justify-content: center;
  width: auto;
  height: 40px;
  vertical-align: top;
  position: relative;
  text-align: right;
  text-decoration: none;
  box-shadow: none;
  background: #273272;
  color: #fff;
  padding: 7px 35px 12px 35px;
  border: 0px none;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  text-transform: capitalize;
  font-size: 12px;
  line-height: 25px;
  font-weight: 600;
  border-radius: 35px;
}
.systems-page a.hs-search-results__next-page:hover,
.systems-page a.hs-search-results__prev-page:hover{
  background: #273272;
  color: #fff;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}
body .systems-page--search-results {
  max-width: 100%;
  padding-top: 120px;
  padding-bottom: 111px;
}
.hs-search-results__title:hover {
  text-decoration: none;
  color: #273272 !important;
}
/* Search Page End*/
.widget-type-email_subscriptions_confirmation h2 {
  padding: 0;
  margin: 0;
}
div.systems-page .success{
  background: #f4f4f4;
  border-radius: 4px;
  width: 100%;
  height: 55px;
  line-height: 55px;
  border: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #696969;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  border: 1px solid #d0dcec;
}
div .systems-page {
  padding: 170px 0 120px 0;
}

@media screen and (max-width: 1024px) {
  div .systems-page {
    padding: 90px 0 90px 0;
  }
}
div .systems-page .header {
  background-color: transparent;
  border-bottom: 0;
  padding: 10px 15px;
}
div .systems-page:first-child .header {
  margin-top: 15px;
}
.systems-page form input[type='submit']{
  padding-top: 15px;
  padding-right: 42px;
  padding-bottom: 16px;
  padding-left: 42px;
  background-color: #A56D55;
  border-radius: 3px;
  color: #fff;
  font-size: 16px;
  line-height:42px;
  padding:7px 35px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  -webkit-transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  -moz-transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  -o-transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  font-weight: 500;
  text-decoration: none;
  z-index:1;
  border:1px solid #A56D55;
}

.systems-page form input[type='submit']:hover{
  background: #A56D55;
  color: #ffffff;
  border: 1px solid #A56D55;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  transition-delay: .1s;
}

form input[type=text]:focus, 
form input[type=email]:focus, 
form input[type=password]:focus, 
form input[type=tel]:focus, 
form input[type=number]:focus, 
form input[type=file]:focus, form select:focus, form textarea:focus{
  border: 1px solid #f94144;
  outline:none;
}
form input[type=text]:focus-visible, 
form input[type=email]:focus-visible, 
form input[type=password]:focus-visible, 
form input[type=tel]:focus-visible, 
form input[type=number]:focus-visible, 
form input[type=file]:focus, form select:focus-visible, form textarea:focus-visible{
  outline:none;
}
.backup-unsubscribe input[type=email]{
  background-color: #f8f8f8;    
  border-radius: 3px;
  color: #989898;
  border: 1px solid #d8d8d8;
  width: 100%;
  resize: none;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}
.membership-login-page a {
  color: #00174d;
  text-decoration: none;
}
.membership-register a {
  color: #00174d;
  text-decoration: none;
}
form input[type=email]{
  background-color: #f8f8f8;
  border-radius: 3px;
  color: #989898;
  border: 1px solid #d8d8d8;
  width: 100%;
  resize: none;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}

.backup-unsubscribe input[type=email]:hover,
form input[type=email]:hover {
  border: 1px solid #f3f3f3;
}
#search-box2 ul{
  border:0px none;
}
#search-box2 ul li {
  text-align: left;
  padding: 5px 10px;
}
.hs-search-field__bar {
  display: block;
  float: left;
  width: 100%;
  padding: 0 10px;
}
#search-box2 ul li a {
  color: #000;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
}
#search-box2 ul li a:hover {
  background: no-repeat;
  text-decoration: none;
}
.membership-login-page form input[type=text],
.membership-login-page form input[type=email], 
.membership-login-page form input[type=password], 
.membership-login-page form input[type=tel], 
.membership-login-page form input[type=number], 
.membership-login-page form input[type=file], 
.membership-login-page form select {
  background: #ffffff;
  border-radius: 4px;
  width: 100%;
  height: 45px;
  border: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #AEAEAC;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  border: 1px solid #d0dcec;
}
.membership-login-page form textarea {
  background: #ffffff;
  border-radius: 4px;
  width: 100%;
  height: 102px;
  border: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #696969;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  border: 1px solid #d0dcec;
}

.membership-login-page form input[type=text]:hover,
.membership-login-page form input[type=email]:hover, 
.membership-login-page form input[type=password]:hover, 
.membership-login-page form input[type=tel]:hover, 
.membership-login-page form input[type=number]:hover, 
.membership-login-page form input[type=file]:hover, 
.membership-login-page form select:hover, 
.membership-login-page form textarea:hover {
  border: 1px solid #f94144;
}
form input[type=text], 
form input[type=email], 
form input[type=password], 
form input[type=tel], 
form input[type=number], 
form input[type=file], 
form select {
  background: #ffffff;
  border-radius: 4px;
  width: 100%;
  height: 55px;
  border: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #AEAEAC;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  border: 1px solid #d0dcec;
}
form textarea {
  background: #ffffff;
  border-radius: 4px;
  width: 100%;
  height: 237px;
  border: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #696969;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  border: 1px solid #d0dcec;
}
.membership-login-page a{
  color:#000;
}
.membership-login-page p{
  padding:0;
  margin: 0;
}
.membership-login-page ul.no-list.hs-error-msgs,
.membership-register ul.no-list.hs-error-msgs,
.membership-reset-pass-req ul.no-list,
.membership-reset-pass ul.no-list{
  display:none;
}
.membership-register form input[type=text],
.membership-register form input[type=email], 
.membership-register form input[type=password], 
.membership-register form input[type=tel], 
.membership-register form input[type=number], 
.membership-register form input[type=file], 
.membership-register form select {
  background: #ffffff;
  border-radius: 4px;
  width: 100%;
  height: 45px;
  border: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #696969;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  border: 1px solid #d0dcec;
}
.membership-register form textarea {
  background: #ffffff;
  border-radius: 4px;
  width: 100%;
  height: 102px;
  border: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #696969;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  border: 1px solid #d0dcec;
}
.membership-register a{
  color:#00174d;
}
.membership-register p{
  padding:0;
  margin: 0;
}
.membership-reset-pass-req ul.no-list.hs-error-msgs {
  display: none;
}
.membership-reset-pass-req a{
  color:#00174d;
  text-decoration:none;
}
.membership-reset-pass-req p{
  padding:0;
  margin: 0;
}
.membership-register form input[type=email]{
  background: #ffffff;
  border-radius: 4px;
  width: 100%;
  height: 45px;
  line-height: 55px;
  border: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #696969;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  border: 1px solid #d0dcec;
}
.membership-reset-pass form input[type=text],
.membership-reset-pass form input[type=email], 
.membership-reset-pass form input[type=password], 
.membership-reset-pass form input[type=tel], 
.membership-reset-pass form input[type=number], 
.membership-reset-pass form input[type=file], 
.membership-reset-pass form select {
  background: #ffffff;
  border-radius: 4px;
  width: 100%;
  height: 45px;
  border: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #696969;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  border: 1px solid #d0dcec;
}
.membership-reset-pass form textarea {
  background: #ffffff;
  border-radius: 4px;
  width: 100%;
  height: 102px;
  border: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #696969;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  border: 1px solid #d0dcec;
}

.membership-reset-pass a{
  color:#00174d;
  text-decoration:none;
}
.membership-reset-pass p{
  padding:0;
  margin: 0;
}
/*SEARCH PAGE START*/
body .systems-page--search-results {
  padding-left: 0px;
  padding-right: 0px;
}
.col-lg-3.col-md-12.col-sm-12.col-12.right-sidebar {
  padding-left: 0;
  padding-right: 0;
}
.col-lg-9.col-md-12.col-sm-12.col-12.rt-search-results {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 992px) {
  .col-lg-9.col-md-12.col-sm-12.col-12.rt-search-results {
    padding-right: 50px;
  }
}
.systems-page--search-results .hs-search-results__featured-image {
  padding: 0;
}
.systems-page--search-results .hs-search-results__featured-image img{
  border-radius:0px;
  width:100%;
}
.systems-page--search-results ul li:first-child a{
  padding-top: 12px;
}
.systems-page--search-results ul li a {
  padding-top: 30px;
  display: inline-block;
}
.right-sidebar button{
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  background-color: initial;
  border: none;
  border-radius: 0;
  font-size: 0;
  background: #00174d;
}
.right-sidebar button:hover{
  background: #00174d;
}
.hs-search-field__bar button svg{
  filter: brightness(0) invert(1);
}
div.hs-search-field__bar button svg {
  height: 16px;
}
.widget.widget_search {
  margin-bottom: 40px;
  display: inline-block;
  padding-left: 0;
  width: 100%;
}
.widget-area .hs-search-field__bar {
  padding: 0;
}
.blog-post h5.widget-title {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.blog-post h5.widget-title:before {
  content: "";
  width: 75px;
  z-index: 9;
  height: 3px;
  top: 51px;
  position: absolute;
  left: 0;
  margin: 0;
  -webkit-transition: width .6s cubic-bezier(0.25,0.8,0.25,1) 0s;
  transition: width .6s cubic-bezier(0.25,0.8,0.25,1) 0s;
  background: #00174d;
  color: #ed1b24;
}
.widget_tags ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_tags ul li {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 28px;
  color: #707173;
  letter-spacing: .2px;
  font-weight: 400;
}
.widget_tags ul li a {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 28px;
  color: #707173;
  text-decoration: none;
}
.widget.widget_tags {
  padding-bottom: 40px;
}
.widget_recent_posts ul.rt-recent-post-with-thumbnail-holder {
  margin: 0;
  padding: 0;
}
.widget_recent_posts ul.rt-recent-post-with-thumbnail-holder li {
  display: block;
  padding: 0;
}
.widget_recent_posts .blog-widget-post{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.widget_recent_posts .blog-widget-post-img {
  flex-shrink: 0;
  width: 82px;
  height: 82px;
  margin: 0 15px 0 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  overflow: hidden;
}
.widget_recent_posts .blog-widget-post img {
  overflow: hidden;
  height: 100%;
  width: 100%;
  min-height: 84px;
  object-fit: cover;
  -webkit-transition: all 1s cubic-bezier(0.365,0.84,0.44,1);
  transition: all 1s cubic-bezier(0.365,0.84,0.44,1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.widget_recent_posts .blog-widget-date .excerpt {
  margin-top: 0px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 26px;
  color: #707173;
  position: relative;
}
.widget_recent_posts .blog-widget-title {
  margin-bottom: 0px;
}
.widget_recent_posts .blog-widget-title a{
  text-decoration: none;
  color: #1d1846;
}

.rt-search-results a.hs-search-results__next-page,
.systems-page a.hs-search-results__prev-page {
  vertical-align: top;
  position: relative;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  background: #f94144;
  color: #fff;
  padding: 7px 35px;
  border: 0px none;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 27px;
  font-weight: 500;
  border-radius: 3px;
}

.rt-search-results a.hs-search-results__next-page:hover,
.systems-page a.hs-search-results__prev-page:hover {
  transition-delay: .1s;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgb(0 0 0 / 12%);
  background: #f94144;
}
.password-prompt input[type=password] {
  background-color: #f8f8f8;
  border-radius: 3px;
  color: #989898;
  border: 1px solid #d8d8d8;
  width: 100%;
  resize: none;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}
.password-prompt input[type=password]:hover {
  border: 1px solid #7347FC;
}
.error-page a.button {
  background-color: #A56D55;
  border-radius: 4px;
  color: #fff;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  text-decoration: none;
}
/* System Page End*/
.right-sidebar .actions {
  width:100% !important;
  position: relative;
  border-radius: 4px;
  background: #f94144;
  -webkit-transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
  cursor:pointer;
}
.right-sidebar .actions:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  transition-delay: .1s;
}
.right-sidebar .actions::before {
  background-color: transparent;
}
.right-sidebar .hs-button {
  background-color: #f94144;
  border: 1px solid #f94144;
  border-radius: 4px;
  color: #fff;
  padding: 9px 53px;
  width: 100%;
  -webkit-transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
}
.right-sidebar .hs-form-field {
  margin-bottom: 0rem;
}
.hs-form-field {
  margin-bottom: 0rem;
}
.right-sidebar form input[type=text],
.right-sidebar form input[type=email] {
  display: inline-block;
  vertical-align: top;
  height: 45px;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  resize: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-radius: 4px;
  background-color: #f8f8f8;
  padding-top: 6px;
  padding-right: 10px;
  padding-bottom: 6px;
  padding-left: 10px;
  color: #989898;
  border: 1px solid #d8d8d8;
  width: 100%;
}
.right-sidebar form input[type=text]:hover,
.right-sidebar form input[type=email]:hover {
  border: 1px solid #f94144;
}
.widget-area>#text-2 {
  background: #171f31;
  box-shadow: 0 3px 20px rgb(0 0 0 / 10%);
  border-radius: 4px;
  padding: 20px 20px 20px 20px;
  margin-top: 35px;
}
.widget-area>#text-2 .widget-title {
  margin-top: 0;
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 25px;
  line-height: 34px;
  color: #fff;
  border-bottom:none;
  text-align:center;
}
.widget-area>#text-2 h5.widget-title:before {
  display:none;
}
.widget-area>#text-2 .textwidget p {
  margin-bottom: 26px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #d3d6ef;
  text-align:center;
}
.right-sidebar .widget-area>section.widget_radiantthemes_image_box_widget {
  box-shadow: 0 3px 20px rgb(0 0 0 / 10%);
  border-radius: 4px;
  padding: 20px 30px 30px 30px;
  margin-bottom: 55px;
  text-align: center;
}
.rt-image-box {
  position: relative;
  margin: auto;
  overflow: hidden;
}
.random-post-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}
.random-post-pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 10px 0 23px 0;
}
.rt-image-box img {
  max-width: 100%;
  transition: transform 1s cubic-bezier(.33,.02,0,.93);
  -webkit-transition: transform 1s cubic-bezier(.33,.02,0,.93);
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.06);
  margin: 0 auto;
}
.random-post-wrapper>.random-post-pic img {
  width: 130px;
  height: 130px !important;
  transform: scale(1);
  border: 2px solid #f94144;
  border-radius: 100%;
  padding: 10px;
}
.rt-image-box:hover img {
  -webkit-transform: scale(1.06) translateX(2%);
  transform: scale(1.06) translateX(2%);
  transition: transform 1s cubic-bezier(.33,.02,0,.93);
}
.random-post-wrapper>.random-post-data {
  padding: 0;
  margin-top: 0;
}
.random-post-wrapper>.random-post-data>.title {
  margin-bottom: 0;
}
.rt-image-box h3 {
  color: #000!important;
  text-align: center;
  padding-bottom: 0;
}
#radiantthemes_image_box_widget-2 .random-post-wrapper>.random-post-data p {
  color: #696969!important;
  text-align: center;
}
.random-post-wrapper>.random-post-data>.random-post-excerpt {
  margin-bottom: 0!important;
  color: #fff;
  margin-top: 15px;
}
.right-sidebar .widget-area>section ul.social {
  margin: 15px 0 0 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
  display: block;
}
.right-sidebar .widget-area>section ul.social li {
  margin: 0 3px;
  padding: 0;
  text-align: center;
  display: inline-block;
}
.right-sidebar .widget-area>section ul.social li a {
  color: #fff;
  text-decoration:none;
}
.right-sidebar .widget-area>section ul.social li.facebook {
  background: #3a599a;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  text-align: center;
  color: #fff;
  padding: 5px;
}
.right-sidebar .widget-area>section ul.social li.twitter {
  background: #1ca1f0;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  text-align: center;
  color: #fff;
  padding: 5px;
}
.right-sidebar .widget-area>section ul.social li.linkedin {
  background: #0078b5;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  text-align: center;
  color: #fff;
  padding: 5px;
}
.right-sidebar .widget-area>section ul.social li.pinterest {
  background: #cb2026;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  text-align: center;
  color: #fff;
  padding: 5px;
}
.blog-list-tags a,
.right-sidebar .widget.widget_tags ul li a {
  position: relative;
  display: inline-block;
  color: #545454;
  transition: all 0.12s ease-in-out;
  -webkit-transition: all 0.12s ease-in-out;
}
.blog-list-tags a:hover,
.right-sidebar .widget.widget_tags ul li a:hover {
  color: #f94144 !important;
}
.blog-list-tags a:before,
.right-sidebar .widget.widget_tags ul li a:before {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0px;
  position: absolute;
  left: auto;
  right: 0;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
}
.blog-list-tags a:hover:before,
.right-sidebar .widget.widget_tags ul li a:hover:before {
  right: auto;
  left: 0;
  width: 100%;
}
time.blog-post__timestamp i, 
.blog-list-tags i.ti-tag {
  color: #7347fc;
  margin-right: 6px;
}
.right-sidebar .widget.widget_search input[type="search"], .right-sidebar .widget.widget_search input[type="text"]{
  vertical-align: top;
  width: 100%;
  height: 50px;
  padding: 0px 45px 0px 15px;
  background-color: #f0f2f5;
  border: none;
  font-weight: 400;
  font-size: 14px;
  color: #707173;
  line-height: 26px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  outline:none;
}
.widget.widget_search {
  margin-bottom: 40px;
}
.right-sidebar h5.widget-title{
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 22px;
  text-transform:capitalize;
}
.right-sidebar h5.widget-title:before{
  content: "";
  width: 75px;
  z-index: 9;
  height: 3px;
  top: 49px;
  position: absolute;
  left: 0;
  margin: 0;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
  color: #f94144;
}
.right-sidebar .widget.widget_tags ul{
  list-style:none;
  padding:0;
  margin:0;
}
.right-sidebar .widget.widget_tags ul li{
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 28px;
  color: #707173;
  letter-spacing: 0.2px;
  font-weight: 400;
}
.right-sidebar .widget.widget_tags ul li a{
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 26px;
  color: #707173;
  text-decoration:none;
}
.right-sidebar  ul.rt-recent-post-with-thumbnail-holder {
  margin: 0;
  padding: 0;
}
.right-sidebar ul.rt-recent-post-with-thumbnail-holder li{
  display:block;
  padding:0;
  margin-bottom:10px;
}
.right-sidebar .blog-widget-post{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.right-sidebar  .blog-widget-post-img{
  flex-shrink: 0;
  width: 82px;
  height: 82px;
  margin: 0 15px 0 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  overflow: hidden;
}
.right-sidebar  .blog-widget-post img{
  overflow: hidden;
  height: 100%;
  width: 100%;
  min-height: 84px;
  object-fit: cover;
  -webkit-transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.right-sidebar .blog-widget-post-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
.right-sidebar .blog-widget-date .excerpt {
  margin-top: 0px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 26px;
  color: #707173;
  position: relative;
}
.right-sidebar .blog-widget-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 26px;
  letter-spacing: -0.5px;
}
.right-sidebar .blog-widget-title a{
  text-decoration:none;
  color:#1D1846;
}
.widget.widget_recent_posts {
  padding-top: 0px;
  padding-bottom: 45px;
}
.right-sidebar button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  background-color: initial;
  border: 0;
  border-radius: 0 3px 3px 0;
  font-size: 0;
  background: #f94144;
}
.right-sidebar button:hover {
  background: #f94144;
}
div.hs-search-field__bar button svg {
  height: 16px;
}
.hs-search-field__bar button svg {
  filter: brightness(0) invert(1);
}
/* NEW CSS END */


/* SYSTEM PAGE CSS START */

@media only screen and (min-width: 992px) {
  .hs-content-id-0.hs-site-page .header .content-wrapper.transparent-header {
    background: rgb(255 255 255) !important;
    border-bottom: 1px solid rgba(204, 199, 199, 0.35);}
}
/*@media screen and (min-width: 797px) {
.hs-content-id-0.hs-site-page .header .content-wrapper.transparent-header {
margin-top: -37px;
}
}*/
.hubspot-link__container.sproket {
  display: none !important;
}
/* SYSTEM PAGE CSS END */
.search-btn2,
.search-btntwo {
  float: right;
  padding: 0;
  font-size: 18px;
  cursor: pointer;
}
.rt-search-btn2.fa-2x {
  font-size: 18px;
  cursor: pointer;
}
.search-btn2{
  float: right;
  padding: 0;
  font-size: 16px;
  cursor: pointer;
  display: block !important;
}
#search-header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  transform: translate(0px, 0%);
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
.search-form {
  position: absolute;
  width: 60%;
  margin: 0 auto;
}
#search-header input[type=search] {
  width: 100%;
  color: #262626;
  background: #fff;
  font-size: 30px;
  font-weight: 300;
  text-align: left;
  border: 0px;
  margin: 0px auto;
  padding-bottom: 10px;
  outline: none;
  border-bottom: 1px solid #262626;
}
#search-header .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 61px;
  margin-left: -45px;
  background-color: limegreen;
  border: black;
}
#search-header .close {
  position: fixed;
  top: 0px;
  right: 0px;
  color: #fff;
  background-color: #7347FC;
  opacity: 1;
  padding: 10px 17px;
  width: 110px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.admin-bar #search-header .close {
  top: 32px;
}
#search-header .close:after {
  width: 25px;
  height: 1px;
  float: left;
  margin-bottom: 5px;
  background-color: #fff;
  content: "";
  transform: rotate(-45deg);
  top: -5px;
  position: relative;
  transition: transform .2s ease-out,opacity 0s .1s,visibility 0s .1s;
}
#search-header .close:before {
  width: 25px;
  height: 1px;
  float: left;
  margin-bottom: 5px;
  background-color: #fff;
  content: "";
  transform: rotate(45deg);
  transition: transform .2s ease-out,opacity 0s .1s,visibility 0s .1s;
}
#search-header .close:hover:after,
#search-header .close:hover:before {
  transform: rotate(0);
}
#search-header .close:hover:after {
  top: -6px;
}
#search-header .close span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
#search-header .close:hover span:after, 
#search-header .close:hover span:before {
  opacity: 1;
  visibility: visible;
  transition: transform .2s ease-out,opacity 0s,visibility 0s;
  transition-delay: .1s;
}
#search-header .close span:after, 
#search-header .close span:before {
  content: '';
  display: block;
  width: 15px;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: -14px;
  bottom: 5px;
  background-color: currentColor;
  transform: rotate(0);
  transform-origin: right;
  transition: transform .2s ease-out,opacity 0s .1s,visibility 0s .1s;
}
#search-header .close:hover span:before {
  transform: rotate(45deg);
}
#search-header .close:hover span:after {
  transform: rotate(-45deg);
}
#search-header.open {
  transform: translate(0px, 0px);
  opacity: 1;
  visibility: visible;
  z-index: 9;
  background: #fff;
}
#search-header .open {
  transform: translate(0px, 0px);
  opacity: 1;
  visibility: visible;
  z-index: 999;
  background: #fff;
}
.open {
  opacity: 1;
  visibility: visible;
}
#search-overlay2,
#search-overlaytwo {
  display: none;
}
#search-overlay {
  display: none;
}
.block2 {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  overflow: auto;
  text-align: center;
  background: #fff;
  box-shadow: 0px 10px 30px 0px rgba(222, 222, 247, 0.33);
  border: 0px;
  margin: 0;
  padding: 100px 68px;
  z-index: 9999;
}
.block2:before {
  content: "";
  height: 100%;
  vertical-align: middle;
  margin-right: 0;
}
.search-area-grid {
  width: 100%;
  color: #1e4ec4;
  background: transparent;
  border: 1px solid #C8C8C7;
  overflow: hidden;
  margin: 0;
  height: 50px;
}
#search-box1,
#search-box2,
#search-boxtwo {
  position: relative;
  max-width: 100%;
  float: left;
  padding: 0;
}
.search-form {
  overflow: hidden;
  padding: 0PX;
}
.search-text {
  font-size: 16px;
  text-transform: capitalize;
}
#search-box1 input[type="text"],
#search-box2 input[type="text"],
#search-boxtwo input[type="text"] {
  width: 100%;
  padding: 0;
  float: left;
  outline: none;
  color: #1e4ec4;
  font-size: 16px;
  line-height: 48px;
  height: 48px;
  background: none;
  border-bottom: none;
  border-top: none;
  border-left: none;
  border-right: none;
  padding-left: 15px;
  padding-right: 50px;
}
#search-box1 .rt-product-category-select,
#search-box2 .rt-product-category-select,
#search-boxtwo .rt-product-category-select {
  border: none;
  position: absolute;
  float: left;
  right: 105px;
  height: 40px;
  border-left: 1px solid #676766;
  line-height: 40px;
  top: 4px;
  padding-left: 10px;
  background: none;
}
#search-box1 input[type="text"]::-webkit-input-placeholder,
#search-box2 input[type="text"]::-webkit-input-placeholder,
#search-boxtwo input[type="text"]::-webkit-input-placeholder {
  color: #696969;
}
#search-box1 input[type="text"]::-moz-placeholder,
#search-box2 input[type="text"]::-moz-placeholder,
#search-boxtwo input[type="text"]::-moz-placeholder {
  color: #696969;
}
#search-box1 input[type="text"]:-ms-input-placeholder,
#search-box2 input[type="text"]:-ms-input-placeholder,
#search-boxtwo input[type="text"]:-ms-input-placeholder {
  color: #696969;
}
.search-button2 {
  width: 89px;
  height: 40px;
  background: none;
  line-height: 43px;
  border: 0;
  cursor: pointer;
  float: left;
  padding: 0;
  text-align: left;
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e4ec4;
  margin: 4px 6px;
}
#close-btn2,
#close-btntwo {
  margin: 0;
  float: right;
  text-align: right;
  padding: 3px 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  text-align: right;
}
#header .rt-header-inner .dark-search .search-btn2,
#header #header-wrap .dark-search .search-btn2 {
  display: none;
}
#header .rt-header-inner .default-search .search-btn2,
#header #header-wrap .default-search .search-btn2 {
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .search-area-grid {
    margin: 0;
  }
  #search-box2 {
    padding: 0;
    margin: 0;
  }
  #search-box2 input[type="text"] {
    width: auto;
    padding: 0;
  }
  .rt-search-box2 {
    float: right;
    position: absolute;
    top: 16px;
    right: 30px;
    display: none;
  }
  .rt-mainMenu-open #header .default-search .search-btn2 {
    display: none;
  }
  .rt-mainMenu-open #header .default-search .search-btn2 {
    display: block;
    color: #1e4ec4;
  }
}

p{
  margin:0}
@media (max-width: 1024px) {
  .menu-toggle .apr-nav-menu--layout-horizontal .mega-menu {
    display: none
  } 
  .header .content-wrapper {
    background: #ffffff !important;
    z-index:99;}}
}
.header .hs-search-field {
  position: unset;
}
.header .softek-header-search {
  width:100%;
}
.header .search-form { 
  position:relative;
}
h1{
  font-weight:500 !important;
  text-transform: capitalize !important;}
h2, h3, h4, h5, h6{
  font-weight:500 !important;
  text-transform: capitalize !important;}
p{
  letter-spacing: -0.003em;}
body{
  letter-spacing:0.030em;}
.rt-image-box h3 {
  color: #000!important;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 0;
}
.d-none {
  display:none;
}
.team.element-three .rt-team_box .team-data-area .team-member h6 {
  padding-bottom:0;
  color:#fff;
}
.search-result .content-wrapper .container div .systems-page {
  padding-top: 190px;
  padding-bottom: 83px;
  text-align: center;}
.search-result .content-wrapper .container div .systems-page .hs-search__no-results p{
  font-size:24px;
  font-weight:500;
  line-height:34px;}

@media screen and (max-width: 991px) {
  .search-result .content-wrapper .container {
    padding-bottom:100px;
  }
  .search-result .content-wrapper .container div .systems-page {
    padding-top:100px;
    padding-bottom:0px;
    text-align: center;
  }
}
.search-result .content-wrapper .container .blog-post {
  margin-top:40px;
}
.header .top-header .row>* {
  padding-left:15px;
  padding-right:15px;
}
@media screen and (max-width: 991px) {
  .search-result .content-wrapper .container .blog-post {
    padding:0;
    margin:0;
  }
}
@media screen and (max-width: 992px) and (min-width: 768px) {
  .bsnav-mobile .navbar {
    margin-top:-22px;
  } 
}

@media screen and (max-width: 1024px) {
  .counter-section .span6:nth-child(1) .section-counter .radiant-counter-style-one .radiant-counter-style-one_inner .radiant-counter-style-one_content .rt-img-box .radiant-h2{
    font-size: 50px;
    line-height: 50px;}
  .counter-section .span6:nth-child(1) .section-counter .radiant-counter-style-one .radiant-counter-style-one_inner .radiant-counter-style-one_content .flex.items-end .block.mt-2{
    font-size: 15px !important;
    line-height: 25px !important; }
  .header .header__container img{
    margin-top: 14px;
    margin-bottom: 14px;}
}

.radiant-white-icon-box-wrapper.icon-box-parent-style-one .radiant-white-icon-box-content .radiant-white-icon-box-title{
  font-size:25px;
  line-height:35px;}

.body-grey-text{
  font-weight: 400;
  text-transform: none;
}
.center-align{
  text-align: center;
  width:100%;}

.rt-hub-custom-button-one, .body-container--home-five .row-number-24.dnd-section .row-depth-1.row-number-26 .span12{
  text-align: center;
  width: 100%;}
.custom-button-main{
  display: inline-block;
  vertical-align: top;
  text-align: center;
  -webkit-transition: all .3s ease-in-out !important;
}
.placeholder{
  color: #7347fc;
  position: relative;
  left: 0;
  transition: all .2s ease-in-out;
  font-family: 'DM Sans',sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 26px !important;
  letter-spacing: 1.2px;
  text-align: center;
}
.rt-hub-custom-button-one .custom-button-main .placeholder:before {
  content: '';
  position: absolute;
  display: inline-block;
  background-color: currentColor;
  top: calc(50%);
  left: -22px;
  height: 1px;
  width: 0;
  transition: all .2s ease-in-out;
}
.rt-hub-custom-button-one .custom-button-main:hover .placeholder:before{
  width:13px;}
.rt-hub-custom-button-one .custom-button-main:hover .placeholder{
  left: 15px;}

@media (min-width: 768px) and (max-width: 1024px){
  h2, .landing-email-marketing-ebook .row-number-14.dnd-section .row-depth-1.row-number-15 .tag-line, 
  .landing-email-marketing-ebook .row-number-14.dnd-section .row-depth-1.row-number-15 .tag-line .underline-text span.heighlight-text {
    font-size: 40px !important;
    line-height: 55px !important;
  }
  .body-container--home-one .row-number-7.dnd-section .span4.dnd_area_one-column-7-background-image.dnd-column, .body-container.landing-ebook .row-number-11.dnd-section .span4.dnd_area-column-12-background-image{
    margin-right: -12px !important;}
  .body-container--home-one .row-number-7.dnd-section .span4.dnd_area_one-column-11-background-image.dnd-column, 
  .body-container--home-one .row-number-7.dnd-section .span4.dnd_area_one-column-7-background-image.dnd-column, .body-container.landing-ebook .row-number-11.dnd-section .span4.dnd_area-column-12-background-image,
  .body-container.landing-ebook .row-number-11.dnd-section .span4.dnd_area-column-16-background-image{ 
    margin-left: 9px !important;}
  .tag-line , h1, .underline-text span.heighlight-text{
    font-size: 80px !important;
    line-height: 90px!important;}
  .body-container--home-one .row-number-7.dnd-section, .body-container--home-two .row-number-22.dnd-section,  .body-container.landing-ebook .row-number-11.dnd-section{
    padding-bottom: 70px !important;}  
  .body-container--home-one .row-number-11.dnd-section .span5{
    padding:0 !important;}
  .body-container--home-one .row-number-11.dnd-section .row-depth-1.row-number-12 .span12 .radiant-counter-style-one_content {
    margin-top: 191px !important;
    padding-left: 261px !important;}
  .hm1-icon-box-one .rt-icnbx6 .rt-img-box6, .hm1-icon-box-two .rt-icnbx6 .rt-img-box6, .hm1-icon-box-three .rt-icnbx6 .rt-img-box6, .hm1-icon-box-four .rt-icnbx6 .rt-img-box6,
  .hm2-icon-box-two .rt-icnbx6 .rt-img-box6, .hm2-icon-box-three .rt-icnbx6 .rt-img-box6, .hm2-icon-box-four .rt-icnbx6 .rt-img-box6{
    padding: 40px 15px 40px 15px !important;}
  .hm1-icon-box-two .rt-icnbx6 .rt-img-box6, .hm1-icon-box-four .rt-icnbx6 .rt-img-box6, .hm2-icon-box-two .rt-icnbx6 .rt-img-box6, .hm2-icon-box-four .rt-icnbx6 .rt-img-box6{
    margin:0 !important;}
  .session_management-section .span7  .hm1-icon-box-two .rt-icnbx6 .rt-img-box6,
  .session_management-section .span7 .hm1-icon-box-four .rt-icnbx6 .rt-img-box6, .session_management-section .span7 .hm2-icon-box-two .rt-icnbx6 .rt-img-box6, 
  .session_management-section .span7 .hm2-icon-box-four .rt-icnbx6 .rt-img-box6{
    margin:10px !important;}
  .body-container--home-one .row-number-15.dnd-section, 
  .body-container--home-two .row-number-13.dnd-section .span5, .body-container--home-two .row-number-13.dnd-section,
  .body-container--home-two .row-number-22.dnd-section, .body-container--service .row-number-13.dnd-section .span5, .body-container--service .row-number-13.dnd-section
  {
    padding-top: 70px !important;} 
  .body-container--home-one .row-number-22.dnd-section{
    padding-bottom: 61px !important;}
  .body-container--home-one .row-depth-1.row-number-22.dnd-section .row-depth-1.row-number-23 {
    padding-right: 10% !important;}
  .body-container--home-one .row-number-25.dnd-section{
    padding-bottom: 68px !important;}
  .footer__container h4.footer-heading-text:after, .footer__container .footer-heading-text:after{
    width: 150px;}
  .body-container--home-one .row-depth-1.row-number-31.dnd-section .row-depth-1.row-number-33{
    padding-left:20px !important;}
  .body-container--home-two .row-number-13.dnd-section .row-depth-1.row-number-14 p, .body-container--service .row-number-13.dnd-section .row-depth-1.row-number-14 p{
    padding-right: 18px !important;}
  .body-container--home-two .row-number-18.dnd-section .row-depth-1.row-number-21, .body-container--service .row-number-18.dnd-section  .row-depth-1.row-number-21
  {
    padding-top: 25px !important;
    padding-right: 15px !important;}
  .support-information-section .span12 .span6:nth-child(2) .row-fluid-wrapper{
    padding-top: 13px !important;
    padding-right: 15px !important;}
  .body-container--home-two .row-number-18.dnd-section .row-depth-1.row-number-19 .span6, .body-container--service .row-number-18.dnd-section .row-depth-1.row-number-19 .span6,
  .support-information-section .span12 .span6:nth-child(2) {
    padding-top:0 !important;}
  .body-container--home-two .row-number-22.dnd-section .span4 ul.rt-diffuser-area li,
  .consultation-section .span4  ul.rt-diffuser-area li{
    padding: 60px 15px 6px !important;}
  .bg .overlay p {
    padding: 25% 15px 20px !important;}
  .body-container--about .row-number-4.dnd-section .span6.dnd_area_about-column-6-padding, .counter-section .span6:nth-child(2){
    padding-top: 123px !important;}
  .body-container--about .row-number-4.dnd-section .span6.dnd_area_about-column-4-background-image,
  .body-container.landing-ebook .row-number-15.dnd-section  .span6.dnd_area-column-18-padding,
  .counter-section .span6:nth-child(1){
    padding:0 !important;} 
  .ser-icon-bx-one {
    padding-right: 61px;
    padding-top: 64px;}
  .ser-icon-bx1 .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content {
    padding-left: 48px;}
  .ser-icon-bx ul.rt-diffuser-area li{
    padding: 50px 15px !important;}
  .footer-icon-box .rt-icnbx6 p{
    font-size: 18px !important;
    line-height: 20px !important;}
  .body-container--service-details .row-depth-1.row-number-5.dnd-section{
    padding-top:0px !important;
    padding-bottom: 62px !important;}
  .body-container--service-details .row-depth-1.row-number-3.dnd-section{
    padding-bottom: 42px !important;}
  .body-container--service-details .row-depth-1.row-number-14.dnd-section{
    padding-bottom: 70px !important;}
  .body-container--service-details .row-number-14.dnd-section .span7{
    padding-top: 0px !important;
    padding-left: 30px !important;}
  .body-container--faq .row-number-3.dnd-section .row-depth-1.row-number-4{
    padding-right:0 !important;}
  .body-container--faq .row-depth-1.row-number-3.dnd-section{
    padding-top: 60px !important;}
  .body-container--faq .row-number-11.dnd-section .row-depth-1.row-number-13 p , .body-container--contact .row-number-7.dnd-section .row-depth-1.row-number-9 p {
    padding-right: 0px !important;}
  .body-container--testimonial .row-number-1.dnd-section .row-depth-1.row-number-2, .body-container--pricing .row-number-1.dnd-section .row-depth-1.row-number-2 {
    padding-left: 11% !important;
    padding-right: 11% !important;}  
  .body-container--team .row-number-7.dnd-section{
    padding-top: 70px !important; }
  .body-container--contact .row-number-3.dnd-section .span6{
    width:100%;
    margin-left:0;}
  .body-container--contact .row-number-3.dnd-section  .row-depth-1.row-number-6 .span6.dnd_area_contact-module-8-flexbox-positioning{ 
    padding-bottom: 20px;}
  .body-container--home-one .row-number-31.dnd-section .span6.dnd_area_one-column-46-padding, .body-container--about .row-number-28.dnd-section .span6.dnd_area_about-column-40-padding,
  .body-container--service .row-number-24.dnd-section .span6.dnd_area_service-column-38-padding,  .body-container--service-details .row-number-26.dnd-section .span6.dnd_area_service_details-column-30-padding,
  .body-container--faq .row-number-17.dnd-section .span6.dnd_area_faq-column-21-padding, .body-container--testimonial .row-number-6.dnd-section .span6.dnd_area_testimonial-column-8-padding,
  .body-container--pricing .row-number-10.dnd-section .span6.dnd_area_pricing-column-14-padding,  .body-container--team .row-number-11.dnd-section .span6.dnd_area_team-column-14-padding ,
  .body-container--contact .row-number-13.dnd-section .span6.dnd_area_contact-column-19-padding,
  .body-wrapper .body-container--service .row-number-1.dnd-section .span6.dnd_area_service-timeline-column-3-padding,
  .body-container--blog .row-number-1.dnd-section .span6.dnd_area-timeline-column-3-padding, .cta-section .span6:nth-child(2){
    padding-left: 10px !important;}   
  .body-container--home-two .row-number-26.dnd-section .row-depth-1.row-number-29, .body-container--home-two .row-number-26.dnd-section .row-depth-1.row-number-30,
  .body-container--home-two .row-number-26.dnd-section .row-depth-1.row-number-31, .body-container--home-two .row-number-26.dnd-section .row-depth-1.row-number-28 p{
    padding-right: 16px !important;} 
  .body-container--home-one .row-number-15.dnd-section .row-depth-1.row-number-16 p{
    padding-right: 27px !important;}
  .body-container--testimonial .row-depth-1.row-number-1.dnd-section{
    padding-bottom: 2px !important;} 
  .body-container--about .row-number-25.dnd-section .row-depth-1.row-number-26{
    padding-right: 10% !important;}
  .body-container--about .row-number-8.dnd-section  .row-depth-1.row-number-9 .span7{ 
    padding-bottom: 39px !important;}
  .body-container--about .row-depth-1.row-number-16.dnd-section .row-depth-1.row-number-20, 
  .body-container--about .row-depth-1.row-number-16.dnd-section .row-depth-1.row-number-22 {
    padding-left: 79px !important;}
  .radiant-counter-style-one .radiant-counter-style-one_inner .radiant-counter-style-one_content .rt-img-box .radiant-h2 {
    padding-left: 10px !important;}
  .body-container--home-two .row-depth-1.row-number-26.dnd-section .span6.dnd_area-two-column-33-padding {
    padding-top: 19px !important;
    padding-left: 27px !important;
    padding-right: 35px !important;} 
  .body-container--about .row-depth-1.row-number-16.dnd-section .span6.dnd_area_about-column-24-padding, .body-container--home-two .row-depth-1.row-number-4.dnd-section .span6.dnd_area-two-column-6-padding{
    padding-left:30px !important;}
  .body-container--home-two .row-depth-1.row-number-4.dnd-section .span6.dnd_area-two-column-6-padding{
    padding-top:0 !important;}
  .body-container--about .row-depth-1.row-number-16.dnd-section {
    padding-bottom: 55px !important;}
  .body-container--contact .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2 {
    padding-left:15px !important;
    padding-right:15px !important;}
  .body-container--home-two .row-number-26.dnd-section .span6.dnd_area-two-row-5-background-image{
    min-height:0;}
  .body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-1-padding{
    padding-top: 25px !important;
    padding-bottom: 52px !important;}
  .body-container-webinar-two .row-depth-1.row-number-4.dnd_area-row-2-background-gradient .span6.dnd_area-column-16-padding{
    padding-top:0 !important;}
  .landing-email-marketing-ebook .row-depth-1.row-number-8.dnd-section{
    padding-top: 61px !important;}
  .landing-email-marketing-ebook .row-depth-1.row-number-19.dnd-section{
    padding-top: 50px !important;}
  .treatment-process-section .span6:nth-child(2){
    padding-left:20px !important;
    padding-top: 10px !important;} 
}

@media screen and (max-width: 1024px){ 
  .body-container--home-one .row-depth-1.row-number-1.dnd-section, .body-container--home-two .row-depth-1.row-number-1.dnd-section, .body-container--service .row-depth-1.row-number-1.dnd-section,
  .body-container--faq .row-depth-1.row-number-1.dnd-section,
  .body-container--team .row-depth-1.row-number-1.dnd-section, .body-container--contact .row-depth-1.row-number-1.dnd-section
  {
    padding-top: 107px !important;   
    padding-bottom: 100px !important;}
  .body-container--service-details .row-depth-1.row-number-1.dnd-section{ 
    padding-top: 141px !important;
    padding-bottom: 146px !important;}
  .body-container--about .row-depth-1.row-number-1.dnd-section{
    padding-top: 162px !important;}
  .body-container--about .row-depth-1.row-number-1.dnd-section { 
    padding-bottom: 189px !important;}
  .body-container--home-one .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2 , .hero-banner-section .row-fluid-wrapper:nth-child(1){
    padding-right: 40px !important;}
  .body-container--home-one .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-3, .hero-banner-section .row-fluid-wrapper:nth-child(2) {
    padding-right: 9% !important;}
  .body-container--home-one .row-number-7.dnd-section,  .body-container.landing-ebook .row-number-11.dnd-section { 
    padding-left:15px !important;} 
  .body-container--home-one .row-depth-1.row-number-5.dnd-section{
    padding: 26px 25px 0 25px !important;}
  .body-container--home-one .row-depth-1.row-number-11.dnd-section{
    padding-top: 70px !important;
    padding-bottom: 70px !important;}
  .body-container--home-one .row-number-15.dnd-section{
    padding-bottom: 50px !important;}
  .body-container--home-one .row-number-22.dnd-section{
    padding-top: 60px !important;}
  .body-container--home-one .row-number-25.dnd-section{
    padding-top: 70px !important;}
  .body-container--home-one .row-number-25.dnd-section .span6{
    padding-left: 0px !important;}
  .body-container--home-one .row-number-31.dnd-section, .body-container--about .row-number-28.dnd-section, .body-container--service .row-number-24.dnd-section,
  .body-container--testimonial .row-number-6.dnd-section, .body-container--pricing .row-number-10.dnd-section,
  .body-container--team .row-number-11.dnd-section, .body-container--contact .row-number-13.dnd-section, .body-container--faq .row-number-17.dnd-section,
  .body-container--service-details .row-number-26.dnd-section, .body-wrapper .body-container--service .row-depth-1.row-number-1.dnd-section,
  .body-container--blog .row-number-1.dnd-section{
    padding-top: 65px !important; 
    padding-bottom: 70px !important;}
  .hm2-radiant-footer .span3 .footer-widget-heading.space, .hm2-radiant-footer .span3 .footer-menu.space{
    padding-left: 0px ;}
  .body-container--home-two .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2, .body-container--about .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2,
  .body-container--service .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2,
  .body-container--service-details .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2,
  .body-container--team .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2{
    padding-left:0 !important;
    padding-right:0 !important;}
  .body-container--home-two .row-depth-1.row-number-4.dnd-section {
    padding-top: 70px !important;
    padding-bottom: 45px !important;}

  .body-container--about .row-depth-1.row-number-16.dnd-section {
    padding-top: 70px !important;}
  .hm2-counter2 .radiant-counter-style-one .radiant-counter-style-one_inner .radiant-counter-style-one_content .rt-img-box .radiant-counter-number-suffix,
  .hm2-counter2 .radiant-counter-style-one .radiant-counter-style-one_inner .radiant-counter-style-one_content .rt-img-box .radiant-h2{
    font-size: 40px !important;}
  .body-container--home-two .row-number-18.dnd-section,  .body-container--service .row-number-18.dnd-section{
    margin-top: -67px !important;}
  .body-container--home-two .row-number-26.dnd-section .span6.dnd_area-two-column-34-padding {
    padding-top: 36px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-bottom: 50px !important;}
  .body-container--home-two .row-number-13.dnd-section, .body-container--service .row-number-13.dnd-section{
    padding-bottom: 111px !important;}
  .body-container--about .row-number-4.dnd-section .span6.dnd_area_about-column-6-padding, .body-container.landing-ebook .row-number-15.dnd-section .span6.dnd_area-column-20-padding,
  .counter-section .span6:nth-child(2){
    padding-left: 0px !important;}
  .body-container--about .row-number-4.dnd-section {
    padding-bottom:70px !important;}
  .body-container--about .row-number-8.dnd-section  .row-depth-1.row-number-9 .span7{ 
    padding-top: 39px !important;
    padding-left: 28px !important;}
  .body-container--service .row-number-4.dnd-section {
    padding-top: 70px !important;
    padding-bottom: 16px !important;}
  .body-container--service .row-number-4.dnd-section .span7, .service-list-section .span7{
    padding-left:0 !important;}
  .body-container--service .row-number-9.dnd-section .row-depth-1.row-number-10{
    padding-top: 50px !important;}
  .body-container--service .row-number-9.dnd-section{
    padding-bottom: 70px !important;}
  .body-container--service .row-number-22.dnd-section{
    padding-top: 60px !important;}
  .body-container--service-details .row-number-3.dnd-section .row-depth-1.row-number-4 h2{
    padding-right:0 !important;} 
  .body-container--service-details .row-depth-1.row-number-3.dnd-section{
    padding-top: 60px !important;}
  .body-container--service-details .row-depth-1.row-number-12.dnd-section{
    padding-top: 30px !important;
    padding-bottom: 60px !important;}
  .body-container--service-details .row-depth-1.row-number-14.dnd-section, .landing-email-marketing-ebook .row-depth-1.row-number-1.dnd-section {
    padding-top: 70px !important;}
  .body-container--faq .row-depth-1.row-number-3.dnd-section{
    padding-bottom: 40px !important;}
  .body-container--faq .row-depth-1.row-number-11.dnd-section .span6.dnd_area_faq-column-14-padding, .body-container--contact .row-number-7.dnd-section .span6.dnd_area_contact-column-12-padding{
    padding-top: 10px !important;
    padding-bottom: 70px !important; 
    padding-left: 15px !important;
    padding-right: 15px !important;} 
  .body-container--testimonial .row-depth-1.row-number-1.dnd-section{
    padding-top: 150px !important;} 
  .body-container--pricing .row-number-1.dnd-section {
    padding-top: 152px !important;}
  .body-container--pricing .row-number-3.dnd-section {
    padding-bottom: 40px !important;}
  .body-container--team .row-number-7.dnd-section .row-depth-1.row-number-8{
    padding-right: 15px !important;}
  .body-container--team .row-number-7.dnd-section{
    padding-bottom: 40px !important;}
  .body-container--team .row-number-3.dnd-section{
    padding-top: 60px !important;
    padding-bottom: 10px !important;}
  .body-container--contact .row-number-3.dnd-section{
    padding-top: 60px !important;
    padding-bottom: 70px !important;}
  .body-container--contact .row-number-3.dnd-section .row-depth-1.row-number-5 .span6.dnd_area_contact-module-6-flexbox-positioning{
    padding-top: 21px;
    padding-bottom:20px;} 
  .body-container--contact .row-number-7.dnd-section .row-depth-1.row-number-10, .body-container--faq .row-number-11.dnd-section .row-depth-1.row-number-14{
    padding-right:0 !important;}
  .body-container--home-two .row-depth-1.row-number-1.dnd-section, .body-container--home-one .row-depth-1.row-number-1.dnd-section,
  .body-container--about .row-depth-1.row-number-1.dnd-section, .body-wrapper .body-container--service .row-depth-1.row-number-1.dnd-section,
  .body-container--service-details .row-depth-1.row-number-1.dnd-section, .body-container--faq .row-depth-1.row-number-1.dnd-section,
  .body-container--team .row-depth-1.row-number-1.dnd-section, .hero-banner-section{
    min-height: 60vh !important;}
  .body-container--contact .row-depth-1.row-number-1.dnd-section{
    min-height: 22vh !important;}
  .body-container--home-two  .row-depth-1.row-number-26{
    display:none !important;}
  .body-container--home-two .row-number-38.dnd-section, .body-container--about .row-number-25.dnd-section{
    padding-top: 59px !important;
    padding-bottom: 66px !important;}
  .body-container-webinar-one .row-number-1.dnd-section.dnd_area-row-1-padding .row-depth-1.row-number-2.dnd-row {
    padding-bottom: 16px !important;}
  .body-container-webinar-two .row-depth-1.row-number-1.dnd_area-row-1-padding {
    padding-top: 56px !important;
    padding-bottom: 55px !important;}
  .body-container-webinar-two .row-depth-1.row-number-4.dnd_area-row-2-background-gradient{
    padding-top: 70px !important;
    padding-bottom: 70px !important;}
  .ebook-two-image-bx {
    padding: 40px 10px !important;}
  .landing-email-marketing-ebook .row-depth-1.row-number-14.dnd-section .row-depth-1.row-number-15, .landing-email-marketing-ebook .row-depth-1.row-number-14.dnd-section .row-depth-1.row-number-16 ,
  .body-container--contact .row-depth-1.row-number-9.dnd-section .span6.dnd_area_contact-column-14-padding{ 
    padding-left:0 !important;
    padding-right:0 !important;}
  .landing-email-marketing-ebook .row-depth-1.row-number-8.dnd-section{
    padding-bottom: 57px !important;}
  .landing-email-marketing-ebook .row-depth-1.row-number-19.dnd-section{
    padding-bottom: 52px !important;}
  .landing-email-marketing-ebook .row-depth-1.row-number-19.dnd-section .span6.dnd_area-column-25-padding {
    padding-top:0px !important;} 
  .body-container.landing-ebook .row-number-9.dnd-section{
    padding-top: 26px !important;}
  .body-container.landing-ebook .row-number-15.dnd-section{
    padding-bottom: 70px !important;}
  .body-container.landing-ebook .row-number-15.dnd-section .span6.dnd_area-column-20-padding{
    padding-top: 26px !important;}
  .body-container.landing-ebook .row-number-1.dnd-section .row-depth-1.row-number-3{
    padding: 0 11%;}
  .body-container--contact .row-number-7.dnd-section{
    padding-bottom: 70px !important;}
}

@media screen and (max-width: 767px){ 
  .body-container--home-one .row-number-7.dnd-section .span4.dnd_area_one-column-11-background-image.dnd-column, 
  .body-container--home-one .row-number-7.dnd-section .span4.dnd_area_one-column-7-background-image.dnd-column, .body-container.landing-ebook .row-number-11.dnd-section .span4.dnd_area-column-12-background-image{
    margin-top: 30px; 
    margin-bottom: 30px;}
  .recent-blogs {
    padding-bottom: 60px !important;
    padding-top: 10px !important;}
  .tag-line , h1, .underline-text span.heighlight-text{ 
    font-size:55px !important;
    line-height: 60px !important;}
  h2, .landing-email-marketing-ebook .row-number-14.dnd-section .row-depth-1.row-number-15 .tag-line, 
  .landing-email-marketing-ebook .row-number-14.dnd-section .row-depth-1.row-number-15 .tag-line .underline-text span.heighlight-text{
    font-size: 38px !important;
    line-height: 50px !important;}
  .body-container--home-one .row-number-7.dnd-section .span4.dnd_area-column-7-background-image.dnd-column, .body-container.landing-ebook .row-number-11.dnd-section .span4.dnd_area-column-12-background-image{
    margin-right: 0px !important;}
  .body-container--home-one .row-number-5.dnd-section .row-depth-1.row-number-6 p{
    padding-bottom: 5px !important;}
  .body-container--home-one .row-number-7.dnd-section {
    padding-bottom: 40px !important;}
  .body-container.landing-ebook .row-number-11.dnd-section{
    padding-bottom: 70px !important;}
  .body-container--home-one .row-number-11.dnd-section .span5{
    padding-top: 30px !important;
    padding-left: 0px !important;}
  .body-container--home-one .row-number-15.dnd-section .row-depth-1.row-number-18 .span6, .body-container--home-one .row-number-15.dnd-section .row-depth-1.row-number-19 .span6,
  .footer__container .row-number-1.dnd-section .row-depth-1.row-number-9 .span12, .body-container--faq .row-number-3.dnd-section .row-depth-1.row-number-5 .span12,
  .body-container--faq .row-number-3.dnd-section .row-depth-1.row-number-6 .span12, .body-container--faq .row-number-3.dnd-section .row-depth-1.row-number-7 .span12,
  .body-container--faq .row-number-3.dnd-section .row-depth-1.row-number-8 .span12, .body-container--contact .row-number-3.dnd-section .row-depth-1.row-number-5 .span6,
  .body-container--contact .row-number-3.dnd-section .row-depth-1.row-number-6 .span6 {
    align-items:flex-start !important;}
  .hm1-icon-box-two .rt-icnbx6 .rt-img-box6, .hm1-icon-box-four .rt-icnbx6 .rt-img-box6, .hm2-icon-box-two .rt-icnbx6 .rt-img-box6{
    margin:0 !important;}
  .body-container--home-one .row-number-15.dnd-section .span7, .session_management-section .span7{
    padding-top: 40px;}
  .body-container--home-one .row-number-15.dnd-section .span5{
    padding-top: 0px !important;}
  .body-container--home-one .row-number-15.dnd-section, .body-container--home-two .row-number-13.dnd-section, .body-container--service .row-number-13.dnd-section
  {
    padding-top: 55px !important;}
  .body-container--home-two .row-number-13.dnd-section .span5, .body-container--service .row-number-13.dnd-section .span5{
    padding-top: 0px !important;
    padding-bottom: 50px; }
  .body-container--home-one .row-number-20.dnd-section{
    padding-top: 35px !important;
    padding-bottom: 40px !important;}
  .body-container--home-one .row-number-22.dnd-section{
    padding-bottom: 35px !important;}
  .body-container--home-one .row-depth-1.row-number-22.dnd-section .row-depth-1.row-number-23 {
    text-align: center;
    padding-right:0 !important;}
  .body-container--home-one .row-number-25.dnd-section{
    padding-bottom: 56px !important;}
  .body-wrapper .footer-copyright-section p{
    text-align: left;
    padding: 5px 0;}
  .footer_copyright-row-0-background-color .row-fluid{
    padding: 8px 10px 3px 10px !important;}
  .footer-widget-section .dnd-section{
    padding: 70px 15px 4px 15px !important;}
  .body-container--home-one .row-depth-1.row-number-31.dnd-section .row-depth-1.row-number-33{
    padding-left:00px !important;}
  .body-container--home-two .row-number-18.dnd-section .row-depth-1.row-number-20, .body-container--service .row-number-18.dnd-section .row-depth-1.row-number-20,
  .support-information-section .span12 .span6:nth-child(1) {
    display:none;}
  .body-container--home-two .row-number-18.dnd-section .row-depth-1.row-number-21, .body-container--service .row-number-18.dnd-section .row-depth-1.row-number-21,
  .support-information-section .span12 .span6:nth-child(2) .row-fluid-wrapper{
    padding: 9px 33px 40px !important;}
  .body-container--home-two .row-number-22.dnd-section .row-depth-1.row-number-23, .body-container--home-two .row-number-22.dnd-section .row-depth-1.row-number-24,
  .consultation-section .span4:nth-child(1), .consultation-section .span4:nth-child(2){
    border-right: none !important;
    border-bottom: 1px solid #ECDED6;}
  .body-container--home-two .row-number-22.dnd-section .span4 ul.rt-diffuser-area li .rt-icon-box7 p,
  .consultation-section .span4  ul.rt-diffuser-area li .rt-icon-box7 p {
    padding-bottom: 29px;}
  .body-container--home-two .row-number-22.dnd-section{
    padding-top: 10px !important;
    padding-bottom: 0px !important;}
  .body-container--home-two .row-number-38.dnd-section .row-depth-1.row-number-39, .body-container--about .row-number-25.dnd-section .row-depth-1.row-number-26,
  .service-information-section .span12 .row-fluid-wrapper:nth-child(1),  .image-overley-section .span12 .dnd-row:nth-child(1) {
    text-align: center;
    padding-right: 0 !important;}
  .body-container--home-two .row-number-38.dnd-section .row-depth-1.row-number-40 .span4.dnd_area-two-module-48-flexbox-positioning,
  .body-container--home-two .row-number-38.dnd-section .row-depth-1.row-number-40 .span4.dnd_area-two-module-49-flexbox-positioning,
  .body-container--about .row-number-25.dnd-section .row-depth-1.row-number-27 .span4.dnd_area_about-module-35-flexbox-positioning, 
  .body-container--about .row-number-25.dnd-section .row-depth-1.row-number-27 .span4.dnd_area_about-module-36-flexbox-positioning,
  .body-container--about .row-number-25.dnd-section .row-depth-1.row-number-27 .span4.dnd_area_about-module-34-flexbox-positioning,  
  .body-container--home-two .row-number-38.dnd-section .row-depth-1.row-number-40 .span4.dnd_area-two-module-50-flexbox-positioning,
  .image-overley-section .span12 .dnd-row:nth-child(2) .span4{
    padding-bottom: 40px !important;}
  .body-container--about .row-number-4.dnd-section .span6.dnd_area_about-column-6-padding , .counter-section .span6:nth-child(2){
    padding-top: 26px !important;}
  .body-container--about .row-number-8.dnd-section .row-depth-1.row-number-11 .span6, .body-container--about .row-number-8.dnd-section .row-depth-1.row-number-12 .span6,
  .body-container--about .row-number-8.dnd-section .row-depth-1.row-number-13 .span6, .body-container--about .row-number-8.dnd-section .row-depth-1.row-number-14 .span6{
    padding-bottom: 30px ;}
  .body-container--service .row-number-9.dnd-section .row-depth-1.row-number-11{
    padding-bottom: 0px !important;}
  .ser-icon-bx{
    margin-top:40px !important;}
  .body-container--service .row-number-9.dnd-section .row-depth-1.row-number-10{
    padding-bottom: 0px !important;}
  .body-container--service .row-number-9.dnd-section .row-depth-1.row-number-10 .text-left{
    padding-bottom:20px !important;}
  .body-container--service-details .row-number-14.dnd-section .span7{
    padding-left: 0px !important;}
  .body-container--service-details .row-depth-1.row-number-3.dnd-section{
    padding-bottom: 20px !important;}
  .body-container--service-details .row-depth-1.row-number-5.dnd-section {
    padding-bottom: 70px !important;}
  .body-container--service-details .row-depth-1.row-number-5.dnd-section .span8 {
    padding-right: 0px !important;
    padding-bottom: 32px !important;}
  .body-container--service-details .row-depth-1.row-number-14.dnd-section{
    padding-bottom: 60px !important;}
  .body-container--faq .row-depth-1.row-number-3.dnd-section{
    padding-top: 56px !important;}
  .body-container--faq .row-depth-1.row-number-3.dnd-section .span5{
    padding-bottom: 25px !important;}
  .body-container--faq .row-number-11.dnd-section .row-depth-1.row-number-13 p , .body-container--contact .row-number-7.dnd-section .row-depth-1.row-number-9 p{
    padding-right: 27px !important; }
  .body-container--testimonial .row-number-1.dnd-section .row-depth-1.row-number-2,  .body-container--pricing .row-number-1.dnd-section .row-depth-1.row-number-2,
  .body-container-webinar-two .row-depth-1.row-number-1.dnd_area-row-1-padding .row-depth-1.row-number-2{
    padding-left: 5% !important;
    padding-right: 5% !important;}  
  .body-container--team .row-number-7.dnd-section{
    padding-top: 57px !important;}
  .body-container--contact .row-number-3.dnd-section .row-depth-1.row-number-4{
    padding-right: 13% !important;}
  .body-container--home-one .row-number-31.dnd-section .span6.dnd_area_one-column-46-padding,  .body-container--about .row-number-28.dnd-section .span6.dnd_area_about-column-40-padding,
  .body-container--service .row-number-24.dnd-section .span6.dnd_area_service-column-38-padding,  .body-container--service-details .row-number-26.dnd-section .span6.dnd_area_service_details-column-30-padding,
  .body-container--faq .row-number-17.dnd-section .span6.dnd_area_faq-column-21-padding, .body-container--testimonial .row-number-6.dnd-section .span6.dnd_area_testimonial-column-8-padding,
  .body-container--pricing .row-number-10.dnd-section .span6dnd_area_pricing-column-14-padding, .body-container--team .row-number-11.dnd-section .span6.dnd_area_team-column-14-padding,
  .body-container--contact .row-number-13.dnd-section .span6.dnd_area_contact-column-19-padding, .body-wrapper .body-container--service .row-number-1.dnd-section .span6.dnd_area_service-timeline-column-3-padding ,
  .body-container--about .row-number-28.dnd-section .dnd_area_about-column-39-padding, .body-container--blog .row-number-1.dnd-section .span6.dnd_area-timeline-column-3-padding,
  .cta-section .span6:nth-child(2){
    padding-left: 0px !important;}
  .body-container--home-one .row-number-15.dnd-section .row-depth-1.row-number-16 p{
    padding-right: 15px !important;}
  .body-container--home-two .row-number-26.dnd-section .row-depth-1.row-number-29, .body-container--home-two .row-number-26.dnd-section .row-depth-1.row-number-30,
  .body-container--home-two .row-number-26.dnd-section .row-depth-1.row-number-31{
    padding-right: 16px !important;}
  .body-container--home-two .row-number-26.dnd-section .row-depth-1.row-number-28 p{
    padding-right: 4px !important;}
  .footer__container .row-depth-1.row-number-1 .span3{
    padding-bottom: 30px;}
  .ser-icon-bx1{
    padding-bottom:30px;}
  .body-container--service .row-number-4.dnd-section .row-depth-1.row-number-7, .service-list-section .span7 .row-fluid-wrapper:nth-child(2){
    padding-bottom: 0px !important;}
  .body-container--service .row-number-4.dnd-section .span7, .service-list-section .span7{
    padding-top: 14px !important;}
  .body-container--service .row-number-4.dnd-section .row-depth-1.row-number-6 h2, .service-list-section .span7 h2{
    text-align:left;}
  .body-container--service .row-number-9.dnd-section .row-depth-1.row-number-11 .span4:first-child .ser-icon-bx{
    margin-top: 11px !important;}
  .hm2-icon-box-four .rt-icnbx6 .rt-img-box6{
    margin:0 !important;}
  .body-container--home-one .row-number-15.dnd-section .row-depth-1.row-number-16 p,
  .body-container--home-two .row-number-13.dnd-section .row-depth-1.row-number-14 p,
  .body-container--service .row-number-13.dnd-section .row-depth-1.row-number-14 p{
    padding-right:0 !important;}
  .body-container--faq .row-depth-1.row-number-3.dnd-section .row-depth-1.row-number-4{
    padding-right: 0px !important;}
  .body-container--testimonial .row-depth-1.row-number-1.dnd-section{
    padding-bottom: 40px !important;} 
  .body-container--about .row-number-8.dnd-section .row-depth-1.row-number-11, .body-container--about .row-number-8.dnd-section .row-depth-1.row-number-13,
  .body-container--about .row-number-8.dnd-section .row-depth-1.row-number-12{
    padding-bottom: 0px !important;}
  /*.body-container--about .row-number-8.dnd-section  .row-depth-1.row-number-9 .span7{ 
  padding-bottom: 25px !important;}*/
  .hm2-counter2 .radiant-counter-style-one .radiant-counter-style-one_inner .radiant-counter-style-one_content .flex.items-end .block.mt-2 {
    padding-left: 5px  !important; }
  .body-container--about .row-number-8.dnd-section  .row-depth-1.row-number-10{
    padding-right: 20px !important;} 
  .ser-icon-bx-one {
    padding-right: 87px;
    padding-top: 73px;}
  .body-container--contact .header-social-icons {
    margin-top:19px;}
  .body-container--home-two .row-depth-1.row-number-4.dnd-section  .span5, .body-container--home-one .row-number-25.dnd-section  .span5{
    padding-left:0 !important;}
  .body-container--about .row-depth-1.row-number-16.dnd-section .row-depth-1.row-number-20, 
  .body-container--about .row-depth-1.row-number-16.dnd-section .row-depth-1.row-number-22 {
    padding-left: 84px !important;}
  .body-container--home-two .row-depth-1.row-number-26.dnd-section .span6.dnd_area-two-column-33-padding {
    padding-top: 19px !important;
    padding-left: 15px !important;
    padding-right: 35px !important;
    padding-bottom: 50px !important;}
  .hm1-icon-box-one .rt-icnbx6 .rt-img-box6, .hm1-icon-box-two .rt-icnbx6 .rt-img-box6, .hm1-icon-box-three .rt-icnbx6 .rt-img-box6, .hm1-icon-box-four .rt-icnbx6 .rt-img-box6,
  .hm2-icon-box-three .rt-icnbx6 .rt-img-box6 {
    margin-left:0px !important;}
  .hm1-icon-box-one, .hm2-icon-box-two, .hm2-icon-box-three, .hm2-icon-box-four{
    width:100%;} 
  .footer-copyright-section .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2 .span6 .footer-bottom-heading span {
    display: inline-grid !important;
    align-items: flex-start !important;}
  .footer-copyright-section .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2 .span6 .footer-bottom-heading span p {
    margin: 0;
    float: left !important;
    text-align: left !important;
    padding-left: 0px !important;}
  .footer-copyright-section .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2 .span6:last-child{
    display: inline-block !important;
    justify-content: start !important;} 
  .footer-copyright-section .row-depth-1.row-number-2 {
    padding: 15px 0 !important;}
  .body-container--about .row-depth-1.row-number-16.dnd-section .span6.dnd_area_about-column-24-padding, .body-container--home-two .row-depth-1.row-number-4.dnd-section .span6.dnd_area-two-column-6-padding{
    padding-left:0px !important;}  
  .body-container--about .row-number-25.dnd-section{
    padding-bottom: 24px !important;}
  .body-container--home-two .row-number-32.dnd-section{
    padding:0 !important;}
  .body-container--about .row-depth-1.row-number-16.dnd-section {
    padding-bottom: 55px !important;} 
  .body-container--contact .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2 {
    padding-left:0 !important;
    padding-right:0 !important;}
  .body-container--home-two .row-depth-1.row-number-26.dnd-section .span6.dnd_area-two-column-33-padding{
    padding-top: 27px !important;
    padding-left: 15px !important;
    padding-right: 39px !important;
    padding-bottom: 50px !important;}
  .body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-1-padding{
    padding-top: 0px !important;
    padding-bottom: 70px !important;}
  .body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-0-padding{
    padding-bottom:58px !important;}
  .body-container-webinar-two .row-depth-1.row-number-4.dnd_area-row-2-background-gradient .span6.dnd_area-column-16-padding{
    padding-left:0 !important;}
  .body-container-webinar-two .row-depth-1.row-number-1.dnd_area-row-0-padding .row-depth-2.row-number-2{
    padding-top:35px !important;}

  .landing-email-marketing-ebook .row-depth-1.row-number-8.dnd-section .row-depth-1.row-number-11 .span6.dnd_area-module-11-flexbox-positioning,
  .landing-email-marketing-ebook .row-depth-1.row-number-8.dnd-section .row-depth-1.row-number-12 .span6.dnd_area-module-13-flexbox-positioning{
    padding-bottom:30px;}
  .ebook-two-image-bx {
    margin: 0 0 30px;}
  .landing-email-marketing-ebook .row-depth-1.row-number-8.dnd-section .span7{
    padding-left:0 !important;}
  .landing-email-marketing-ebook .row-depth-1.row-number-8.dnd-section{
    padding-top: 56px !important;}
  .landing-email-marketing-ebook .row-depth-1.row-number-19.dnd-section  {
    padding-top:20px !important;}      
  .landing-email-marketing-ebook .row-depth-1.row-number-19.dnd-section .row-depth-1.row-number-21{
    padding-bottom:30px;}
  .body-container.landing-ebook .row-number-9.dnd-section .row-depth-1.row-number-10 p{
    padding-bottom:5px!important;}
  .body-container--contact .row-number-9.dnd-section .row-depth-1.row-number-11, .book-information-section .span6:nth-child(2){
    padding-top:35px !important;}  
  .treatment-process-section .span6:nth-child(2){
    padding-left:0 !important;} 
  .body-container--home-two .row-number-32.dnd-section .span6.dnd_area-two-column-39-padding{
    padding-top: 30px !important;
    padding-bottom: 50px !important;}
  .consultation-section .span4:nth-child(1), .consultation-section .span4:nth-child(2){
    padding-bottom:36px !important;}
  .body-container--service .row-number-4.dnd-section .row-depth-1.row-number-6,  .service-list-section .span7 .row-fluid-wrapper:nth-child(1){ 
    padding-bottom:30px!important;
    padding-top:40px!important;}
  .session_management-section .span7 ul.rt-icnbx6 {
    margin-bottom: 30px;}
} 
@media screen and (max-width: 434px){
  .body-container--home-one .row-number-11.dnd-section .row-depth-1.row-number-12 .span12 .radiant-counter-style-one_content{
    display:none;}
  .body-container--home-one .row-number-11.dnd-section .span7{
    padding-top: 273px !important;
    padding-bottom: 55px !important;}}
@media (min-width: 435px) and (max-width: 466px){
  .body-container--home-one .row-number-11.dnd-section .row-depth-1.row-number-12 .span12 .radiant-counter-style-one_content{ 
    margin-top: 118px !important;
    padding-left: 257px !important;
  }}
@media (min-width: 467px) and (max-width: 767px){
  .body-container--home-one .row-number-11.dnd-section .row-depth-1.row-number-12 .span12 .radiant-counter-style-one_content{ 
    margin-top: 293px !important;
    padding-left: 303px !important;

  }}
@media screen and (max-width: 529px){
  .body-container--about .row-number-4.dnd-section .row-depth-1.row-number-5 .span12 .radiant-counter-style-one_inner.flex.items-start,
  .body-container--service-details .srv-counter .radiant-counter-style-one, .body-container.landing-ebook .row-number-15.dnd-section .row-depth-1.row-number-16 .span12 .radiant-counter-style-one_inner.flex.items-start,
  .counter-section .span6:nth-child(1) .section-counter .radiant-counter-style-one .radiant-counter-style-one_inner{
    display: none !important;}

  .body-container--about .row-number-4.dnd-section .span6.dnd_area_about-column-4-background-image, .counter-section .span6:nth-child(1){
    padding-top: 566px !important;}
  .body-container--service-details .row-number-14.dnd-section .span5{
    padding-top: 537px !important;}
}

@media (min-width: 530px) and (max-width: 767px){
  .body-container--about .row-number-4.dnd-section .row-depth-1.row-number-5 .span12 .radiant-counter-style-one_inner.flex.items-start,
  .body-container.landing-ebook .row-number-15.dnd-section .row-depth-1.row-number-16 .span12 .radiant-counter-style-one_inner.flex.items-start,
  .counter-section .span6:nth-child(1) .section-counter .radiant-counter-style-one .radiant-counter-style-one_inner{
    margin-top: 517px !important;
    padding-right: 399px !important;
    padding-bottom: 41px;}
  .body-container--about .row-number-4.dnd-section .span6.dnd_area_about-column-4-background-image,
  .body-container.landing-ebook .row-number-15.dnd-section  .span6.dnd_area-column-18-padding, .counter-section .span6:nth-child(1){
    padding-top: 171px !important;}
  .body-container--service-details .srv-counter .radiant-counter-style-one {
    margin-top: 333px !important;
    padding-right: 364px !important;}}
@media (min-width: 768px) and (max-width: 859px){
  .radiant-counter-style-one .radiant-counter-style-one_inner .radiant-counter-style-one_content .rt-img-box .radiant-h2{
    padding-left: 16px  !important;}
  .body-container--about .row-number-4.dnd-section .row-depth-1.row-number-5 .span12 .radiant-counter-style-one_inner.flex.items-start,
  .body-container.landing-ebook .row-number-15.dnd-section .row-depth-1.row-number-16 .span12 .radiant-counter-style-one_inner.flex.items-start,
  .counter-section .span6:nth-child(1) .section-counter .radiant-counter-style-one .radiant-counter-style-one_inner{
    margin-top: 376px !important;
    padding-right: 261px !important;}
  .body-container--service-details .srv-counter .radiant-counter-style-one {
    margin-top: 122px !important;
    padding-right: 203px !important;
  }}
@media (min-width: 860px) and (max-width: 1024px){
  .body-container--about .row-number-4.dnd-section .row-depth-1.row-number-5 .span12 .radiant-counter-style-one_inner.flex.items-start,
  .body-container.landing-ebook .row-number-15.dnd-section .row-depth-1.row-number-16 .span12 .radiant-counter-style-one_inner.flex.items-start,
  .counter-section .span6:nth-child(1) .section-counter .radiant-counter-style-one .radiant-counter-style-one_inner{
    margin-top: 480px !important;
    padding-right: 280px!important;
    margin-bottom: 21px;
  }
  .body-container--service-details .row-number-14.dnd-section .row-depth-1.row-number-15 .srv-counter .radiant-counter-style-one{
    margin-top: 87px !important;
    padding-right: 207px!important;}}
@media (min-width: 537px) and (max-width: 767px){
  .ser-icon-bx-one {
    padding-right: 229px;
    margin-top: 82px;}}
@media (min-width: 310px) and (max-width: 397px){
  .ser-icon-bx-one {
    padding-right: 23px;}}

@media (min-width: 1025px) and (max-width: 1145px){
  .body-container--about .row-number-4.dnd-section .row-depth-1.row-number-5 .span12 .radiant-counter-style-one_inner.flex.items-start,
  .body-container.landing-ebook .row-number-15.dnd-section .row-depth-1.row-number-16 .span12 .radiant-counter-style-one_inner.flex.items-start,
  .counter-section .span6:nth-child(1) .section-counter .radiant-counter-style-one .radiant-counter-style-one_inner{
    padding-right: 368px !important;}
  .body-container--service-details .row-number-14.dnd-section .row-depth-1.row-number-15 .srv-counter .radiant-counter-style-one{
    margin-top: 187px !important;
    padding-right: 244px !important;}}
@media (min-width: 1025px) and (max-width: 1047px){
  .body-container--service-details .row-number-14.dnd-section .row-depth-1.row-number-15 .srv-counter .radiant-counter-style-one{
    padding-right: 304px !important;}}

@media screen and (max-width: 1070px){
  body.down header.header.business,
  body.down header.header.marketing,
  body.down header.header.support {
    transform: translateY(0);}}
@media screen and (max-width: 1062px){
  .body-container--about .row-depth-1.row-number-1.dnd-section{
    margin-top: 0px  !important;}}
@media (min-width: 768px) and (max-width: 868px){
  .footer-copyright-section .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2 .row-fluid .span2{
    width: 41%;}}
@media (min-width: 1025px) and (max-width: 1190px){
  .body-container--faq .row-number-11.dnd-section .span6.dnd_area_faq-column-14-padding, .body-container--contact .row-number-7.dnd-section .span6.dnd_area_contact-column-12-padding{
    padding-left: 30px !important;}
  .body-container--faq .row-number-11.dnd-section .row-depth-1.row-number-13 p, .body-container--contact .row-number-7.dnd-section .row-depth-1.row-number-9 p{
    padding-right: 0 !important;}}
@media (min-width: 1025px) and (max-width: 1069px){
  .header-social-icons{
    padding-left: 0px;}}

.contact-icon{
  padding-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;}
.sticky .header .content-wrapper .header__column , .header .content-wrapper .header__column{
  background:#fff;} 
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  background-color:#a56d55;}
.navbar-toggler.toggler-spring.active .navbar-toggler-icon{
  top:-3px;}
/*readmore-link*/
span.iconbox-botton {
  margin-left: 9px;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;}
span.iconbox-botton:after {
  content: "";
  height: 1px;
  left: auto;
  position: absolute;
  right: 0;
  top: 100%!important;
  -webkit-transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  width: 0;}
.hm-icon span.iconbox-botton:after, .hm1-icon-box1-hover span.iconbox-botton:after {
  width: 100%;}
span.iconbox-botton:hover:after {
  left: 0;
  margin: 0;
  right: auto;
  width: 100%;
}
/*readmore-link-end*/
/*
.body-container--home-one .row-number-7.dnd-section .span4{
margin:0;}*/   

.body-container--home-one .row-number-7.dnd-section .span4.dnd_area_one-column-11-background-image.dnd-column, .body-container--home-one .row-number-7.dnd-section .span4.dnd_area_one-column-7-background-image.dnd-column,
.body-container.landing-ebook .row-number-11.dnd-section .span4.dnd_area-column-12-background-image, .body-container.landing-ebook .row-number-11.dnd-section .span4.dnd_area-column-16-background-image{
  margin-top: 28px;
  margin-left: 0;}
.body-container--home-one .row-number-7.dnd-section .span4.dnd_area_one-column-7-background-image.dnd-column, .body-container.landing-ebook .row-number-11.dnd-section .span4.dnd_area-column-12-background-image{
  margin-right: -32px;}
.body-container--home-one .row-number-5.dnd-section .row-depth-1.row-number-6 h2, .body-container--home-one .row-number-25.dnd-section .row-depth-1.row-number-27 h2,
.body-container--home-two .row-number-26.dnd-section .row-depth-1.row-number-28 h2,
.body-container--about .row-number-8.dnd-section .row-depth-1.row-number-10 h2, h2.timeline, .body-container--service-details .row-number-5.dnd-section .row-depth-1.row-number-7,
.body-container--faq .row-number-3.dnd-section .row-depth-1.row-number-4 h2, .body-container--testimonial .row-number-1.dnd-section .row-depth-1.row-number-2 h2,
.body-container--pricing .row-number-1.dnd-section .row-depth-1.row-number-2 h2, .body-container--team .row-number-7.dnd-section .row-depth-1.row-number-8 h2,
.body-container--home-two .row-number-32.dnd-section .row-depth-1.row-number-34 h2, .body-container.landing-ebook .row-number-9.dnd-section .row-depth-1.row-number-10 h2{
  padding-bottom:23px;}
.body-container--home-one .row-number-5.dnd-section .row-depth-1.row-number-6 p, .body-container--home-one .row-number-25.dnd-section .row-depth-1.row-number-27 p,
.body-container--home-two .row-number-18.dnd-section .row-depth-1.row-number-21 h3, .body-container--service .row-number-18.dnd-section .row-depth-1.row-number-21 h3,
.body-container.landing-ebook .row-number-9.dnd-section .row-depth-1.row-number-10 p, .body-container.landing-ebook .row-number-4.dnd-section .row-depth-1.row-number-7 h2,
.support-information-section .span12 .span6:nth-child(2) h3 { 
  padding-bottom:30px;}
.body-container--home-one .row-number-11.dnd-section .row-depth-1.row-number-13 h2, .body-container--home-one .row-number-15.dnd-section .row-depth-1.row-number-16 h2,
.body-container--home-two .row-number-13.dnd-section .row-depth-1.row-number-14 h2, .body-container--service .row-number-13.dnd-section .row-depth-1.row-number-14 h2,
.session_management-section .span5 h2
{
  padding-bottom:20px;}
.body-container--home-two .row-number-26.dnd-section .row-depth-1.row-number-28 p{
  padding-bottom:36px;
  padding-right: 60px;}
.body-container--home-two .row-number-32.dnd-section .row-depth-1.row-number-34 {
  padding-bottom:36px;}
.body-container--home-two .row-number-26.dnd-section .row-depth-1.row-number-29 , .body-container--home-two .row-number-26.dnd-section .row-depth-1.row-number-30{
  padding-bottom:15px;
  padding-right: 60px;} 
.body-container--home-two .row-number-26.dnd-section .row-depth-1.row-number-31{
  padding-right: 60px;} 
.body-container--home-one .row-number-11.dnd-section .row-depth-1.row-number-12 .span12 .radiant-counter-style-one_content {
  margin-top: 314px;
  padding-left: 430px;}
.body-container--about .row-number-4.dnd-section .row-depth-1.row-number-5 .span12 .radiant-counter-style-one_inner.flex.items-start,
.body-container.landing-ebook .row-number-15.dnd-section .row-depth-1.row-number-16 .span12 .radiant-counter-style-one_inner.flex.items-start,
.counter-section .span6:nth-child(1) .section-counter .radiant-counter-style-one .radiant-counter-style-one_inner{
  margin-top: 166px;
  padding-right: 409px;}
.body-container--home-one .row-number-11.dnd-section .row-depth-1.row-number-13 p{
  padding-right:30px;}
.body-container--home-one .row-number-15.dnd-section .row-depth-1.row-number-16 p, .body-container--home-two .row-number-13.dnd-section .row-depth-1.row-number-14 p,
.body-container--service .row-number-13.dnd-section .row-depth-1.row-number-14 p{
  padding-right:79px;}
.body-container--home-one .row-number-1.dnd-section .row-depth-1.row-number-4 .span12, .body-container--home-one .row-number-11.dnd-section .row-depth-1.row-number-14 .span12,
.body-container--home-one .row-number-15.dnd-section .row-depth-1.row-number-17 .span12, .body-container--home-two .row-number-13.dnd-section .row-depth-1.row-number-15 .span12,
.body-container--about .row-number-8.dnd-section .row-depth-1.row-number-11 .span6, .body-container--about .row-number-8.dnd-section .row-depth-1.row-number-12 .span6,
.body-container--about .row-number-8.dnd-section .row-depth-1.row-number-13 .span6, .body-container--about .row-number-8.dnd-section .row-depth-1.row-number-14 .span6,
.body-container--service .row-number-13.dnd-section .row-depth-1.row-number-15 .span12, .body-container--service-details .row-number-14.dnd-section .row-depth-1.row-number-20 .span12,
.body-container--service-details .row-number-14.dnd-section .row-depth-1.row-number-21 .span12, .body-container--service-details .row-number-14.dnd-section .row-depth-1.row-number-22 .span12,
.body-container--service-details .row-number-14.dnd-section .row-depth-1.row-number-23 .span12, .body-container--service-details .row-number-14.dnd-section .row-depth-1.row-number-18 .span12,
.body-container--service-details .row-number-14.dnd-section .row-depth-1.row-number-16 .span12, .body-container--home-two .row-number-13.dnd-section .row-depth-1.row-number-17 .span6,
.body-container--home-two .row-number-13.dnd-section .row-depth-1.row-number-16 .span6, .body-container--home-one .row-number-1.dnd-section .row-depth-1.row-number-2 .span12,
.body-container--service .row-number-13.dnd-section .row-depth-1.row-number-16 .span6 ,  .body-container--service .row-number-13.dnd-section .row-depth-1.row-number-17 .span6 ,
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-1-padding .row-depth-1.row-number-5 .span12, 
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-1-padding .row-depth-1.row-number-6 .span12,
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-1-padding .row-depth-1.row-number-7 .span12, 
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-1-padding .row-depth-1.row-number-8 .span12,
.body-container-webinar-two .row-depth-1.row-number-4.dnd_area-row-2-background-gradient .row-depth-1.row-number-7 .span12,
.body-container-webinar-two .row-depth-1.row-number-4.dnd_area-row-2-background-gradient .row-depth-1.row-number-8 .span12,
.body-container-webinar-two .row-depth-1.row-number-4.dnd_area-row-2-background-gradient .row-depth-1.row-number-9 .span12,
.body-container-webinar-two .row-depth-1.row-number-4.dnd_area-row-2-background-gradient .row-depth-1.row-number-10 .span12,
.row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-5 .span12, .landing-email-marketing-ebook .row-depth-1.row-number-8.dnd-section .row-depth-1.row-number-13 .span12,
.landing-email-marketing-ebook .row-depth-1.row-number-8.dnd-section .row-depth-1.row-number-11 .span6, .landing-email-marketing-ebook .row-depth-1.row-number-8.dnd-section .row-depth-1.row-number-12 .span6,
.body-container--service .row-number-4.dnd-section .row-depth-1.row-number-7 .span6, .body-container--service .row-number-4.dnd-section .row-depth-1.row-number-8 .span6,
.hero-banner-section .row-fluid-wrapper:nth-child(3) .span12, .session_management-section .span5 .span12, .service-list-section .span7 .row-fluid-wrapper .span6
{
  align-items:flex-start !important;}
.body-container--home-two .row-number-1.dnd-section .row-depth-1.row-number-3 .span12, .body-container--about .row-number-1.dnd-section .row-depth-1.row-number-3 .span12,
.body-container--about .row-number-1.dnd-section .row-depth-1.row-number-3 .span12, .body-container--about .row-number-4.dnd-section .row-depth-1.row-number-7 .span12,
.body-container--service .row-number-1.dnd-section .row-depth-1.row-number-3 .span12, .body-container.landing-ebook  .row-number-15.dnd-section .row-depth-1.row-number-18 .span12,
.body-container--about .row-number-4.dnd-section .row-depth-1.row-number-7 .span12, .counter-section .span6:nth-child(2) .span12 {
  align-items: center !important;}
.body-container--about .row-number-4.dnd-section, .body-container.landing-ebook .row-number-4.dnd-section{
  margin-top: -90px;}
.body-container--about .row-number-4.dnd-section .row-depth-1.row-number-6 h2, .body-container--service-details .row-number-3.dnd-section .row-depth-1.row-number-4 h2,
.body-container--faq .row-number-11.dnd-section .row-depth-1.row-number-13 h2, .body-container--contact .row-number-3.dnd-section .row-depth-1.row-number-4 h2,
.body-container--contact .row-number-9.dnd-section .row-depth-1.row-number-11 h2, .body-container.landing-ebook .row-number-15.dnd-section .row-depth-1.row-number-17 h2,
.book-information-section .span6:nth-child(2) h2, .counter-section .span6:nth-child(2) h2{
  padding-bottom:25px;}
.hm1-form  form input[type=email] {
  border-radius: 0px;
  height: 50px;}
.hm1-form  form .hs-button, .hm1-form  form input[type=submit]{
  padding: 13px 0;}
.footer-icon-box .rt-icnbx6 h4{
  font-family: "DM Sans";
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.08em;
  padding: 7px 0 8px 0;}  
.footer-icon-box .rt-icnbx6 p{ 
  font-size: 30px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: -0.01em;
  color:#B07D62;
  font-family: Cormorant Infant;}
.footer-icon-box ul.rt-icnbx6{
  margin-bottom: 10px;}

.body-container--home-two .row-number-18.dnd-section .row-depth-1.row-number-19, .body-container--service .row-number-18.dnd-section .row-depth-1.row-number-19,
.support-information-section .span12.dnd-column {

  box-shadow: 0px 40px 40px 0px rgb(0 0 0 / 15%);}
.body-container--home-two .row-number-18.dnd-section, .body-container--service .row-number-18.dnd-section{
  margin-top: -110px;}
.body-container--home-two .row-number-18.dnd-section .row-depth-1.row-number-21 span a, .body-container--service .row-number-18.dnd-section .row-depth-1.row-number-21 span a,
.support-information-section .span12 .span6:nth-child(2) a{
  font-style: normal;
  line-height: 30px;
  letter-spacing: 0.115em;
  text-decoration: none;
  border-bottom:1px solid #a56d55;}
.body-container--home-two .row-number-18.dnd-section .row-depth-1.row-number-21 span a, .body-container--service .row-number-18.dnd-section .row-depth-1.row-number-21 span a,
.support-information-section .span12 .span6:nth-child(2) a {
  text-transform: uppercase;}
.body-container--home-two .row-number-22.dnd-section .row-depth-1.row-number-23, .body-container--home-two .row-number-22.dnd-section .row-depth-1.row-number-24,
.consultation-section .span4:nth-child(1), .consultation-section .span4:nth-child(2){
  border-right:1px solid #ECDED6;}
.body-container--home-two .row-number-22.dnd-section .span4 ul.rt-diffuser-area li,
.consultation-section .span4  ul.rt-diffuser-area li{
  padding: 60px 60px 6px;}
/*.body-container--home-two .row-number-13.dnd-section, .body-container--service .row-number-13.dnd-section,  .body-container--service .row-number-24.dnd-section,
.body-container--home-one .row-number-31.dnd-section, .body-container--about .row-number-28.dnd-section
{
background-attachment: fixed;}*/
.body-container--home-two .row-number-38.dnd-section .row-depth-1.row-number-40 .span4 h4, .body-container--about .row-number-25.dnd-section .row-depth-1.row-number-27 .span4,
.image-overley-section .span12 .dnd-row:nth-child(2) .span4{
  text-align:center;} 
.clients-item.swiper-slide{
  transition: .5s,border .3s,border-radius .3s,box-shadow .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
  opacity: .3;}
.clients-item.swiper-slide:hover{
  transition: .5s,border .3s,border-radius .3s,box-shadow .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
  opacity: 1;}
.body-container--service-details .row-number-5.dnd-section .row-depth-1.row-number-6{
  padding-left: 30px;
  margin-bottom: 33px;}
.body-container--service-details .row-number-5.dnd-section .row-depth-1.row-number-6 .srvc-txt{
  font-family: 'Cormorant Infant';
  font-style: italic;
  font-weight: 500;
  font-size: 25px;
  line-height: 35px;
  padding-bottom: 11px;
  text-transform:capitalize;
  letter-spacing: -0.015em;}
.body-container--service-details .row-number-3.dnd-section .row-depth-1.row-number-4 h2{
  padding-right: 135px;}
.body-container--service-details .row-number-3.dnd-section .row-depth-1.row-number-4 p{
  padding-right: 8px;}
.body-container--service-details .srv-counter .radiant-counter-style-one {
  margin-top: 134px;
  padding-right: 265px;}
.body-container--service-details .srv-number .radiant-one-liner-icon-box-wrapper.icon-box-parent-style-one p{
  color: #333333;}
.body-container--faq .row-number-11.dnd-section .row-depth-1.row-number-13 p, .body-container--contact .row-number-7.dnd-section .row-depth-1.row-number-9 p {
  padding-right:115px;}
.body-container--faq .row-number-11.dnd-section{
  padding:0;}
.faq-form form input[type="text"]::-webkit-input-placeholder,
.faq-form form input[type=email]::-webkit-input-placeholder,
.faq-form form input[type=file]::-webkit-input-placeholder,
.faq-form form input[type=number]::-webkit-input-placeholder,
.faq-form form input[type=password]::-webkit-input-placeholder,  
.faq-form form input[type=tel]::-webkit-input-placeholder,
.faq-form form textarea::-webkit-input-placeholder{
  color:#AEAEAC;}
.contact-icn-bx .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content{
  padding-left: 45px;}

.top-header.hm-header .contact-mail, .top-header.hm-header .contact-phone .radiant-icon-box-wrapper.icon-box-parent-style-header-left .radiant-icon-box-content p{
  font-size:15px;}
.top-header.hm-header .contact-phone .radiant-icon-box-wrapper.icon-box-parent-style-header-left .radiant-icon-box-content p{
  text-transform: lowercase;}

.body-container--home-one .hm1-last-sec .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon svg path,
.body-container--home-one .rt-icnbx6 .rt-img-box6 svg path, .body-container--service .ser-icon-bx1 .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon svg path{
  stroke:#fff;}
.ser-icon-bx-one .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content .radiant-icon-box-title {
  font-size:23px;
  font-weight:400;
  font-style:italic;
  font-family:'Cormorant Infant,sans-serif';}
.body-container--home-one .hm1-icon-box-two, .body-container--home-one .hm1-icon-box-three, .body-container--home-one .hm1-icon-box-four,
.session_management-section .hm1-icon-box-two, .session_management-section .hm1-icon-box-three, .session_management-section .hm1-icon-box-four{
  width:100%;} 
.footer-copyright-section .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2 .span6:last-child{
  text-align: right;
  display: flex;
  justify-content: end;}
.footer-copyright-section .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2 .span6 .footer-bottom-heading span p{ 
  width: auto;
  margin: 0;
  float: left;
  text-align: right;
  padding-left: 25px;}
.footer-copyright-section .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2 .span6 .footer-bottom-heading span{
  display:flex;}
@media (min-width: 1025px) and (max-width: 1481px){
  .body-container--contact .row-number-7.dnd-section .span6.dnd_area_contact-column-12-padding, .body-container--faq .row-number-11.dnd-section .span6.dnd_area_faq-column-14-padding{
    padding-top: 25px !important;
    padding-bottom: 120px !important; 
    padding-left: 15px !important;
    padding-right: 15px !important; }
  .body-container--contact .row-number-7.dnd-section .row-depth-1.row-number-10,
  .body-container--faq .row-number-11.dnd-section .row-depth-1.row-number-14 {
    padding-right: 15px !important;}} 

.body-container--home-two .row-depth-1.row-number-1.dnd-section, .body-container--home-one .row-depth-1.row-number-1.dnd-section,
.body-container--about .row-depth-1.row-number-1.dnd-section, .body-wrapper .body-container--service .row-depth-1.row-number-1.dnd-section,
.body-container--service-details .row-depth-1.row-number-1.dnd-section, .body-container--faq .row-depth-1.row-number-1.dnd-section,
.body-container--team .row-depth-1.row-number-1.dnd-section, .hero-banner-section
{
  min-height: 110vh;
  display: flex;
  align-items: center;
}
.body-container--contact .row-depth-1.row-number-1.dnd-section{
  min-height: 72vh;
  display: flex;
  align-items: center;
}
@media (min-width: 1025px) and (max-width: 1046px){
  .body-container--home-two .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2, .body-container--home-one .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2,
  .hero-banner-section .row-fluid-wrapper:nth-child(1) {
    padding-left: 0 !important;
    padding-right: 0 !important;}}
@media (min-width: 1025px) and (max-width: 1143px){
  .dnd_area_about .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2, .body-wrapper .body-container--service .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2{
    padding-left: 0 !important;
    padding-right: 0 !important;}}
@media (min-width:1079px) and (max-width: 1360px){
  .body-container--home-two .row-number-26.dnd-section{
    padding:70px 0;}}
@media screen and (min-width: 1025px){
  .body-container--home-two  .row-depth-1.row-number-32{
    display:none;}}

.body-container--home-two  .row-depth-1.row-number-26{
  min-height: 69vh;
  display: flex;
  align-items: center;}
.body-container--home-two .row-number-32.dnd-section{
  padding:70px 0;}

.body-container-webinar-one  .row-number-1.dnd-section.dnd_area-row-0-padding .row-depth-1.row-number-2.dnd-row,
.body-container-webinar-two .row-number-1.dnd-section.dnd_area-row-0-padding .row-depth-1.row-number-2.dnd-row {
  padding-bottom: 75px;
}    
.body-container-webinar-one  .row-number-1.dnd-section.dnd_area-row-1-padding .row-depth-1.row-number-2.dnd-row {
  padding-bottom: 35px;
}  
.body-container-webinar-one  .row-number-1.dnd-section.dnd_area-row-0-padding .row-depth-1.row-number-4.dnd-row h1,
.body-container-webinar-two .row-number-1.dnd-section.dnd_area-row-0-padding .row-depth-1.row-number-4.dnd-row h1
{
  padding-bottom:23px;}

.body-container-webinar-one  .row-depth-1.row-number-1.dnd_area-row-1-padding  .row-depth-1.row-number-4 h6{
  font-weight: 600 !important;
  font-style: italic;
  padding-bottom: 16px;}
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-1-padding .row-depth-1.row-number-4 h2,
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-1-padding .row-depth-1.row-number-2 h2,
.body-container-webinar-two .row-depth-1.row-number-4.dnd_area-row-2-background-gradient .row-depth-1.row-number-6 h2,
.body-container-webinar-two .row-depth-1.row-number-1.dnd_area-row-1-padding .row-depth-1.row-number-2 h2{
  font-weight: 600 !important;
  letter-spacing: 0px;
  padding-bottom: 18px;}
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-1-padding .row-depth-1.row-number-8 .button, .button.customizable-button ,
.body-container-webinar-two .row-depth-1.row-number-4.dnd_area-row-2-background-gradient .row-depth-1.row-number-10 .button,
.row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-5 .button.customizable-button, .landing-email-marketing-ebook .row-depth-1.row-number-8.dnd-section .row-depth-1.row-number-13  .button.customizable-button
{
  width:275px;}
.social-icon li svg path{
  stroke: #a56d5500;}
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-1-padding .row-depth-1.row-number-4 p,
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-1-padding .row-depth-1.row-number-5,
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-1-padding .row-depth-1.row-number-6,
.body-container-webinar-two .row-depth-1.row-number-4.dnd_area-row-2-background-gradient .row-depth-1.row-number-6 p,
.body-container-webinar-two .row-depth-1.row-number-4.dnd_area-row-2-background-gradient .row-depth-1.row-number-7,
.body-container-webinar-two .row-depth-1.row-number-4.dnd_area-row-2-background-gradient .row-depth-1.row-number-8
{ 
  padding-bottom: 14px;}
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-1-padding .row-depth-1.row-number-7,
.body-container-webinar-two .row-depth-1.row-number-4.dnd_area-row-2-background-gradient .row-depth-1.row-number-9{
  padding-bottom: 42px;}
/*
@media screen and (min-width: 1024px){
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-0-padding  {
min-height:150vh;}}*/
@media (min-width: 768px) and (max-width: 1024px){
  .body-container-webinar-one  .row-depth-1.row-number-1.dnd_area-row-1-padding .row-depth-1.row-number-3 .span5 {
    width: 100%;}
}
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-0-padding .row-depth-2.row-number-2{
  padding-top:35px;}
.body-container-webinar-two .team-three-1st .team.element-two .rt-team, .body-container-webinar-two .team.element-two .rt-team, .body-container-webinar-two .team-three-third .team.element-two .rt-team {
  width: 100%; 
}
.body-container-webinar-two .row-depth-1.row-number-1.dnd_area-row-0-padding .row-depth-2.row-number-2 .landing-form form, .body-container-webinar-two .row-depth-1.row-number-1.dnd_area-row-0-padding .row-depth-2.row-number-2 form.hs-form{
  padding: 83px 35px;}
.body-container-webinar-two .row-depth-1.row-number-1.dnd_area-row-0-padding .row-depth-2.row-number-2 .landing-form form,
.body-container-webinar-two .row-depth-1.row-number-1.dnd_area-row-0-padding .row-depth-2.row-number-2 form.hs-form, 
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-0-padding .row-depth-2.row-number-2 .landing-form form, 
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-0-padding .row-depth-2.row-number-2 form.hs-form,
.landing-email-marketing-ebook .row-depth-1.row-number-19.dnd-section .row-depth-1.row-number-21 .landing-form form, 
.landing-email-marketing-ebook .row-depth-1.row-number-19.dnd-section .row-depth-1.row-number-21 form.hs-form,
.body-container-webinar-two .landing-form form, .body-container-webinar-two form.hs-form,
.body-container--contact .row-depth-1.row-number-9 .row-depth-1.row-number-12 form.hs-form, .body-container--contact .row-depth-1.row-number-9 .row-depth-1.row-number-12 .landing-form form{
  box-shadow: 0px 15px 26px rgba(121, 134, 150, 0.2);}

.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-0-padding .row-depth-2.row-number-2 .landing-form form, 
.body-container-webinar-one .row-depth-1.row-number-1.dnd_area-row-0-padding .row-depth-2.row-number-2form.hs-form,
.body-container--contact .row-depth-1.row-number-9 .row-depth-1.row-number-12 form.hs-form,
.body-container--contact .row-depth-1.row-number-9 .row-depth-1.row-number-12 .landing-form form{
  padding: 35px 35px;}

figure.rt-testimonial blockquote-testimonial .quote-icon svg path{
  stroke:#a56d5500}

.landing-email-marketing-ebook .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-4 h6{
  font-weight: 600 !important;
  font-size: 16px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase !important;
  color: #000000;
  padding-bottom:15px;}
.landing-email-marketing-ebook .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-4 h1{
  padding-bottom:13px;}
.landing-email-marketing-ebook .row-depth-1.row-number-8.dnd-section .row-depth-1.row-number-10 h2, .landing-email-marketing-ebook .row-depth-1.row-number-19.dnd-section .row-depth-1.row-number-20 h2{
  font-weight: 600 !important;
  padding-bottom:16px;}
.landing-email-marketing-ebook .ebook-two-icon .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content{
  padding-left: 47px;}
.ebook-two-icon  .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content .radiant-icon-box-title{
  font-weight: 600 !important;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color:#333;
  font-family: 'Cormorant Infant';}
.ebook-two-image-bx {
  background-color: #F6F6F6;
  padding: 40px 43px;
  width:100%;}

.ebook-two-image-bx .radiant-image-box2-wrapper.image-box2-parent-style-one .radiant-image-box-description{
  padding: 0 4%;}
.landing-email-marketing-ebook .row-depth-1.row-number-19.dnd-section .row-depth-1.row-number-21 .landing-form form,
.landing-email-marketing-ebook .row-depth-1.row-number-19.dnd-section .row-depth-1.row-number-21 form.hs-form  {
  padding: 35px 35px;}
.body-container-webinar-two .landing-form form, .body-container-webinar-two form.hs-form{
  padding: 85px 35px;}
.landing-email-marketing-ebook .row-depth-1.row-number-19.dnd-section .row-depth-1.row-number-21{
  padding-top:32px;}
.body-container.landing-ebook .row-number-4.dnd-section .row-depth-1.row-number-7 p{
  padding-bottom:43px!important;}
.body-container.landing-ebook .row-number-4.dnd-section .row-depth-1.row-number-8{
  padding-bottom: 70px;}
.body-container.landing-ebook .landing-form form, .body-container.landing-ebook form.hs-form{
  box-shadow:none;}
.body-container.landing-ebook .landing-form form, .body-container.landing-ebook form.hs-form{
  padding:0;}
.body-container.landing-ebook .landing-form form .hs_submit, .body-container.landing-ebook form.hs-form .hs_submit{
  margin-top:20px;}
.body-container.landing-ebook form input[type=text], .body-container.landing-ebook form input[type=email],.body-container.landing-ebook  form input[type=password], 
.body-container.landing-ebook form input[type=tel], .body-container.landing-ebook  form input[type=number], .body-container.landing-ebook form input[type=file], form select{
  margin-bottom: 26px;}
.rt-faq-two .rt-accordion-item>.rt-faq-title>.rt-faq-icon svg path{
  stroke: #fff0;}
.recent-blogs .swiper-horizontal>.swiper-pagination-bullets, .recent-blogs .swiper-pagination-bullets.swiper-pagination-horizontal {
  /* bottom: 0px !important; */
  cursor: pointer;
}
.swiper-pagination {
  position: relative !important;
}
.support-information-section .span12 .span6:nth-child(2) a {
  color: #a56d55;}
.treatment-process-section .span6:nth-child(2) h2{
  padding-bottom:15px !important;}

.counter-section .span6:nth-child(1) .section-counter .radiant-counter-style-one .radiant-counter-style-one_inner .radiant-counter-style-one_content .flex.items-end .block.mt-2{
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.08em;
  margin-top: 2px !important;
  text-transform: uppercase;}