/* 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 li:nth-child(1) a {
  background: #3b5999;
}

.top-header ul li:nth-child(2) a {
  background: #55acee;
}

.top-header ul li:nth-child(3) a {
  background: #e60023;
}

.top-header ul li:nth-child(3) a {
  background: #c41200;
}

.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:10px 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: right;
}

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

.header nav.navigation-primary ul li a {
  position: relative;
  padding: 30px 0 25px 0;
  text-transform: ca;
  line-height: 25px !important;
  letter-spacing: 1px;
  font-weight: 400;
  font-style: normal;
  color: #5b5b5b;
  font-size: 13px;
  border-radius: 4px;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  transition: all .3s ease;
  line-height: normal;
  line-height: normal;
}

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

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: 13px;
  font-weight: 400;
  line-height: 25px !important;
  letter-spacing: 1px;
  background: none;
  color: #5b5b5b;
  text-transform: uppercase;
}

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

/*.nav-item.dropdown > .navbar-nav .nav-item .nav-link:hover {
  color: #ff0201;
  background: 0;
}*/

.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;
  background: #fff;
}

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

.header .navbar-expand-lg .navbar-nav .nav-link,
.header .navbar-nav .nav-link {
  padding: 18px 0;
  margin-bottom: -6px;
}

.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-family: "Poppins", Sans-serif;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}

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

.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: 20px;
  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;
}

.radiant-icon-box-wrapper.icon-box-parent-style-header-left .radiant-icon-box-icon {
  width: 18px;
  display: inline-block;
  vertical-align: top;
  margin-right: 25px;
  position: absolute;
  margin-top: 8px;
}

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

.radiant-icon-box-wrapper.icon-box-parent-style-header-left .radiant-icon-box-content {
  width: 100%;
  display: inline-block;
  padding-left: 30px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-header-left h4 {
  margin-bottom: 7px;
  margin-top: 7px;
  padding: 0;
  font-size: 12px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
}

.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-top:7px;
}

.header-social-icons .social-icons .social-links__icon svg {
  width: 15px;
  fill: #fff;
}

.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;
  margin-top: 6px;
}

.header .header__container .contact-button .button.customizable-button {
  box-shadow: none;
  transform: translateY(0px);
}

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

.header .header__container .contact-button {
  float: right;
}

.header .header__container nav.navigation-primary ul {
  margin-left: 0;
}

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

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

.top-header.radiant-top-header .contact-phone{float:left; width:22%}
.top-header.radiant-top-header .contact-mail{float:left; width:26%}
.top-header.radiant-top-header .contact-address {float:left; width:37%}

@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: 10px;}
  
  .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: 24%
  }

  .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%;
  }
.header .header__container img {
    margin-top: 0;
}
  
  .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: 100px !important;
  }
  .bsnav-mobile .navbar {padding: 20px 0 15px !important;}
}

@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%;
  }
  .header .header__container img{margin-top: 0;}
  
  .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;}
}
/*.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: 20px;
}

.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 h6 {
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1px;
  padding: 0;
}

.body-wrapper .footer-address p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  padding-bottom: 20px;
  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;
  font-size: 16px;
  line-height: 26px;
}

.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 {
  text-decoration: none;
  padding: 0;
  background: none;
  border: 0px none;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

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

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

.custom-footer .dnd-section {
  padding: 100px 0 0 0;
}

.footer-copyright-section .dnd-section {
  padding: 20px 0;
  /*background: #313d85;*/
  margin: 60px 0 0 0;
}

.body-wrapper .footer-copyright-section p {
  padding: 0;
  margin: 0;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 30px;
}

.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: 16px;
  padding-right: 50px;
  padding-bottom: 16px;
  padding-left: 50px;
  background-color: transparent;
  border-radius: 35px;
  color: #505050;
  line-height: 20px;
  font-size: 12px;
  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: uppercase;
  font-weight: 600;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: .5px;
  z-index: 99;
  margin: 0;
}

.footer-subscribe-form .actions {
  display: inline-block;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 35px;
  background: #fff;
  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 input[type=submit]:focus,
.footer-subscribe-form form .hs-button:hover,
form .hs-button:focus {
  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: #273272;
  -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 25px 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;
}

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

/* FOOTER NEW CSS ENDS */
/* 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%;
}

/* HOMEPAGE ONE CSS STARTS */

.body-container--home .row-depth-1.row-number-1.dnd-section .banner-main {
  padding-top:150px;
  padding-bottom:220px;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.25);
  background-position: bottom center;
}

.body-container--home .row-depth-1.row-number-1.dnd-section .one-row_bottom_divider {
  margin-top:-110px;
}

.body-container--home .row-depth-1.row-number-1.dnd-section .banner-main h1 {
  font-size:60px;
  line-height:68px;
  color:#fff;
  font-weight:700;
  margin-bottom: 18px;
}

.body-container--home .row-depth-1.row-number-1.dnd-section .banner-main a {
  border-radius: 3px;
  font-family: inherit;
    line-height: 42px;
    font-size: 16px;
    font-weight: 600;
  box-shadow: 0 0 0 transparent;
  display: inline-flex;
    padding: 7px 35px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    color: #fff;
    transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  text-decoration:none;
  /* border: 1px solid #17be74; */
}

.body-container--home .row-depth-1.row-number-1.dnd-section .banner-main a:hover {
  /*background-color: #fff !important;
    border: 1px solid #17be74 !important;
    color: #17be74 !important;*/
    transition-delay: .1s;
  transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.body-container--home .row-depth-1.row-number-1.dnd-section .banner-main a svg {
  width: 1em;
  fill: #fff;
  margin-left: 7px;
}

/*.body-container--home .row-depth-1.row-number-1.dnd-section .banner-main a:hover svg {
  width: 1em;
  fill: #17be74;
  margin-left: 7px;
}*/

.radiant-icon-box-wrapper.icon-box-parent-style-one {
  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;
    box-shadow: none;
    margin:0 0 30px 0;
}

.radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon{
   
    display: inline-block;
    vertical-align: top;
    margin-right: 25px;
  position:absolute;
  margin-top:10px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon svg {
    fill: #dce8f4;
  width:45px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon img {
  
}

.radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content {
    width: 100%;
    display: inline-block;
  padding-left: 60px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-one h4 {
  margin-bottom: 12px;
    margin-top: 5px;
    padding: 0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
}

.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 !important;
  width: 100% !important;
  margin: 0 !important;
  padding:0 !important;
}

@media screen and (min-width: 480px) and (max-width: 767px) {
  .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon {
    width: 10%;
    margin-right: 15px;
  }
  
}

@media screen and (min-width: 321px) and (max-width: 479px) {
  .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon {
    width: 15%;
  }
  
  /*.body-container--home .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content {
    padding-left:80px;
  }*/
}

@media screen and (max-width: 320px) {
  .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon {
    width: 20%;
  }
  
  
}

.fancy-text-box-slider.style-one .radiant-fancy-text-box .holder {
  text-align:center;
  transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
}

.fancy-text-box-slider.style-one .radiant-fancy-text-box .holder:hover {
  transition-delay: .1s;
  transform: translateY(-5px);
}

.fancy-text-box-slider.style-one .radiant-fancy-text-box .holder .pic img {
  border-radius:5px;
  margin-bottom: 30px;
  margin-top: 5px;
}

.fancy-text-box-slider.style-one .swiper-wrapper {
  padding-bottom:120px;
}

@media (max-width: 991px) {
  .fancy-text-box-slider.style-one .swiper-wrapper {
  padding-bottom:70px;
  }
}

@media (max-width: 576px) {
  .fancy-text-box-slider.style-one .swiper-wrapper {
  padding-bottom:0px;
  }
}

.fancy-text-box-slider.style-one .swiper-pagination .swiper-pagination-bullet {
  width:10px;
  height:10px;
}

.fancy-text-box-slider.style-one .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(1.35);
    background-color: #000;
}

.body-container--home .row-depth-1.row-number-4.dnd-section h2 {
  color:#1f2a58;
  margin-bottom: 5px;
}

.body-container--home .row-depth-1.row-number-4.dnd-section p {
  width: 55%;
  margin: 0 auto;
}

.body-container--home .row-depth-1.row-number-6.dnd-section.dnd_area-row-3-padding {
  /*background: -webkit-linear-gradient(top, #FFFFFF, #F6F6F6);
background: -moz-linear-gradient(top, #FFFFFF, #F6F6F6);
background: linear-gradient(to bottom, #FFFFFF, #F6F6F6);*/
  padding-bottom:0 !important;
}

.body-container--home .row-depth-1.row-number-8.dnd-section h2 {
  color:#fcfcfc;
  margin-bottom: 5px;
}

.body-container--home .row-depth-1.row-number-8.dnd-section p {
  color: #fcfcfc;
  width: 55%;
  margin: 0 auto;
  padding-bottom: 51px;
}

@media screen and (max-width: 991px) {
  .body-container--home .row-depth-1.row-number-8.dnd-section p {
    font-size: 17px;
    line-height: 27px;
    color: #fcfcfc;
    width: 85%;
  }
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder {
  text-align:center;
  transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  border: 1px solid #8d8f9a;
  border-radius: 8px;
  margin-top: 5px;
  padding:36px 0 0 0;
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover {
  transition-delay: all 0.3s ease;
  transform: translateY(-5px);
  background:#ffffff;
  border: 1px solid #ffffff;
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder .pic img {
  border-radius:5px;
  margin-bottom: 20px;
  margin-top: 5px;
  width: 55px!important;
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder .title h5 {
  /*font-size: 22px;
  line-height: 33px;
  font-weight:500;*/
  color: #000000;
  margin: 0 auto;
  
  transition: transform 0.35s, color 0.35s;
}

.home-fancy-one .fancy-text-box-slider-two .radiant-fancy-text-box .holder .title h5 {
  color: #ffffff;
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover .title h5 {
  color: #000000;
   transform: translate3d(0, -12%, 0) translate3d(0, -12px, 0);
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder .data p {
  color: #505050;
  font-size:15px;
  line-height:25px;
  width:100%;
  padding-bottom:0px;
  transition: transform 0.35s, color 0.35s;
}

.home-fancy-one .fancy-text-box-slider-two .radiant-fancy-text-box .holder .data p {
  color: #bcc0c9;
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover .data p {
  transform: translate3d(0, -12%, 0) translate3d(0, -12px, 0);
  color: #505050;
}



.fancy-text-box-slider-two .radiant-fancy-text-box .holder .rt-fancy-text-box-hidden .rt-fancy-text-box-hidden-inner {
   opacity: 0;
   /*transform: translateY(0px);*/
   transition: transform 0.35s, color 0.35s;
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover .rt-fancy-text-box-hidden .rt-fancy-text-box-hidden-inner {
   opacity: 1;
   /*transform: translateY(-26px);*/
  transform: translate3d(0, -12%, 0) translate3d(0, -12px, 0);
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover .rt-fancy-text-box-hidden .rt-fancy-text-box-hidden-inner .btn-icon, 
.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover .rt-fancy-text-box-hidden .rt-fancy-text-box-hidden-inner .btn-txt {
    position: relative;
    z-index: 3;
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder .rt-fancy-text-box-hidden .rt-fancy-text-box-hidden-inner .btn {
    display: inline-flex !important;
    padding: 0 !important;
    position: relative !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 1em !important;
    white-space: nowrap !important;
    color: #17be74;
    transition: all .3s !important;
  overflow: hidden !important;
  padding:0 !important;
  /*margin-top:30px !important;*/
  margin-bottom:20px !important;
  text-decoration:none !important;
  clear:both !important;
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover .rt-fancy-text-box-hidden .rt-fancy-text-box-hidden-inner .btn-txt+.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover .rt-fancy-text-box-hidden .rt-fancy-text-box-hidden-inner .btn-icon {
    margin-inline-end: 0;
    margin-inline-start: 8px;
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover .rt-fancy-text-box-hidden .rt-fancy-text-box-hidden-inner .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    letter-spacing: 0;
    background-size: 99.99%!important;
    transition: background .3s,color .125s,box-shadow .3s,border .3s;
    margin-left: 5px;
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover .rt-fancy-text-box-hidden .rt-fancy-text-box-hidden-inner .btn>span, 
.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover .rt-fancy-text-box-hidden .rt-fancy-text-box-hidden-inner .btn strong, 
.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover .rt-fancy-text-box-hidden .rt-fancy-text-box-hidden-inner .btn i {
    transition: transform .3s cubic-bezier(.22,.665,.34,.875);
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover .rt-fancy-text-box-hidden .rt-fancy-text-box-hidden-inner .btn>span {
    display: inline-flex;
    padding: 1.15em 2.1em;
    border-radius: inherit;
    border-color: inherit;
    align-items: center;
}

.fancy-text-box-slider-two .swiper-wrapper {
  padding-bottom:120px;
}

.fancy-text-box-slider-two .swiper-pagination .swiper-pagination-bullet {
  width:10px;
  height:10px;
  background-color: #fff;
}

.fancy-text-box-slider-two .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(1.35);
    background-color: #fff;
}

.body-container--home .row-depth-1.row-number-11.dnd-section .span5 .row-depth-1.row-number-13,
.body-container--home .row-depth-1.row-number-11.dnd-section .span5 .row-depth-1.row-number-14,
.body-container--home .row-depth-1.row-number-11.dnd-section .span5 .row-depth-1.row-number-15,
.body-container--home .row-depth-1.row-number-11.dnd-section .span5 .row-depth-1.row-number-16
{
  margin-left:-30px;
}

.body-container--home .row-depth-1.row-number-11.dnd-section h2 {
  margin:20px 50px 5px 0;
  color:#1f2a58;
}

.body-container--home .row-depth-1.row-number-11.dnd-section .hs_cos_wrapper_type_rich_text p {
  margin-right:75px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-two {
  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;
    box-shadow: none;
    margin:0 0 0px 0;
}

.radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-icon {
   
    display: inline-block;
    vertical-align: top;
    margin-right: 25px;
  position:absolute;
  margin-top:6px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-icon svg {
    fill: #dce8f4;
  width:25px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-icon img {
  
}

.radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content {
    width: 100%;
    display: inline-block;
  padding-left: 40px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-two h4 {
  margin-bottom: 12px;
    margin-top: 5px;
    padding: 0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
}

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

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

/* BUTTON HOVER NEW CSS START */

.button.customizable-button {
  display: inline-block;
  position: relative;
  z-index: 1;
  line-height: 42px;
  background-color: #17be74;
  font-size: 16px;
  padding: 7px 26px;
  font-weight: 600;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  fill: #fff;
  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;
  border:1px solid #17be74;
}

.button.customizable-button:hover {
  transition-delay: .1s;
  /*background-color: #17be74 !important;
  border:1px solid #17be74 !important;*/
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

/*.button.customizable-button:focus {
  background-color: #17be74 !important;
  border:1px solid #17be74 !important;
}*/

/* BUTTON HOVER NEW CSS END */

.body-container--home .row-depth-1.row-number-11.dnd-section .button.customizable-button {
  margin-top:25px;
}


.radiant-counter-style-one .radiant-counter_number.radiant-counter-style-one_number.radiant-h2 {
    display: inline-block;
    font-size: 39px;
    color: #00174d;
    line-height: 40px;
    text-align: left;
    font-weight: 800;
}

.radiant-counter-style-one:hover .radiant-counter_number.radiant-counter-style-one_number.radiant-h2 {
  color: #3466f4;
}

.radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-suffix {
    display: inline-block;
    font-size: 39px;
    color: #00174d;
    line-height: 40px;
    text-align: left;
    font-weight: 800;

}

.radiant-counter-style-one:hover .radiant-counter-style-one_inner.items-start span.radiant-counter-number-suffix {
  color: #3466f4;
}

.radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-prefix {
    display: inline-block;
    font-size: 39px;
    color: #00174d;
    line-height: 40px;
    text-align: left;
    font-weight: 800;
   
}

.radiant-counter-style-one:hover .radiant-counter-style-one_inner.items-start span.radiant-counter-number-prefix {
  color: #3466f4;
}

.radiant-counter-style-one .ml-2 {
    font-size: 16px;
    color: #00174d;
    line-height: 25px;
    text-align: left;
    font-weight: 600;
}

.radiant-counter-style-one:hover .ml-2 {
  color: #3466f4;
}

@media all and (max-width: 767px) {
  .radiant-counter-style-one .ml-2 {
    margin-bottom:10px;
  }
}

.body-container--home .row-depth-1.row-number-21.dnd-section {
  background-attachment:fixed;
}

.body-container--home .row-depth-1.row-number-21.dnd-section h1 {
  color:#fff;
}

/* TESTIMONIAL CSS STARTS */
.testimonial.rt-testimonial.style-one .testimonial-item > .holder {
    background: #fafafa;
    padding-top: 70px;
    padding-bottom: 40px;
    border-bottom: none;
    border-radius: 8px;
  box-shadow: 0px 11px 31px -8px rgba(255, 255, 255, 0.2);
}

.testimonial.rt-testimonial.style-one .testimonial-item>.holder {
    padding: 35px 34px 28px 40px;
}

.testimonial.rt-testimonial.style-one .testimonial-item>.holder blockquote {
  border:none;
  padding-left: 0;
}

.testimonial.rt-testimonial.style-one .testimonial-item>.holder .data {
  padding-bottom:0px;
}

.testimonial.rt-testimonial.style-one .testimonial-item>.holder .title {
    position: relative;
    min-height: 63px;
    padding-top: 6px;
    padding-left: 90px;
  margin-top: 20px;
}

.testimonial.rt-testimonial.style-one .testimonial-item>.holder .title .pic {
  position: absolute;
    top: 3px;
    left: 0;
    z-index: 1;
    width: 71px;
    height: 71px;
    background: center center no-repeat;
    background-size: cover;
    border-radius: 50%;
}

.testimonial.rt-testimonial.style-one .testimonial-item>.holder .title .data h5 {
  padding-bottom: 5px;
}

.testimonial.rt-testimonial.style-one .testimonial-item>.holder .title .pic .holder img {
  border-radius:50%;
}

/* TESTIMONIAL CSS ENDS */


@media screen and (max-width: 991px) {
  .body-container--home .row-depth-1.row-number-2.dnd-section .row-fluid .span4,
  .body-container--home .row-depth-1.row-number-2.dnd-section .row-fluid .span4 .icon-box-style-one{
    width:100% !important;
    margin-left:0;
  }
  
  .body-container--home .row-depth-1.row-number-2.dnd-section {
    padding-top: 60px !important;
    padding-bottom: 0px !important;
  }
  
  .body-container--home .row-depth-1.row-number-1.dnd-section .banner-main {
    padding-top: 100px !important;
    padding-bottom: 120px !important;
  }
  
  .body-container--home .row-depth-1.row-number-1.dnd-section .banner-main h1 {
    font-size:50px;
    line-height:58px;
  }
  
  .body-container--home .row-depth-1.row-number-4.dnd-section {
    padding-top: 40px !important;
  }
  
  .body-container--home .row-depth-1.row-number-4.dnd-section p {
    font-size: 17px;
    line-height: 27px;
    width: 85%;
  }
  
  .body-container--home .row-depth-1.row-number-8.dnd-section {
    padding-top: 100px !important;
    padding-bottom: 80px !important;
  }
  
  .body-container--home .row-depth-1.row-number-11.dnd-section {
    padding-top: 85px !important;
    padding-bottom: 90px !important;
  }
  
  .body-container--home .row-depth-1.row-number-11.dnd-section .span5 {
    float: left;
    width: 100%;
    margin-left: 0%;
  }
  
  .body-container--home .row-depth-1.row-number-11.dnd-section h2 {
  margin:20px 0px 5px 0;
  } 
  
  .body-container--home .row-depth-1.row-number-11.dnd-section .span5 .row-depth-1.row-number-13,
  .body-container--home .row-depth-1.row-number-11.dnd-section .span5 .row-depth-1.row-number-14,
  .body-container--home .row-depth-1.row-number-11.dnd-section .span5 .row-depth-1.row-number-15,
  .body-container--home .row-depth-1.row-number-11.dnd-section .span5 .row-depth-1.row-number-16
  {
    margin-left: 0px;
  }
  
  .body-container--home .row-depth-1.row-number-23.dnd-section {
    padding-bottom:0px !important;
  }
  
  
}

/* HOMEPAGE ONE CSS ENDS */

/* HOMEPAGE TWO CSS STARTS */

.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main {
  padding-top:190px;
  padding-bottom:200px;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.25);
  background-position: top center;
}


.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main h1 {
  font-size:60px;
  line-height:68px;
  color:#ffffff;
  font-weight:700;
  margin-bottom: 6px;
}

.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main p {
  margin-right:150px;
  margin-bottom: 38px;
  color:#ffffff;
}

.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main a {
  border-radius: 3px;
  font-family: inherit;
    line-height: 42px;
    font-size: 16px;
    font-weight: 600;
  box-shadow: 0 0 0 transparent;
  display: inline-flex;
    padding: 7px 35px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    color: #fff;
    transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  text-decoration:none;
  border: 1px solid #17be74;
}

.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main a:hover {
  /*background-color: #fff !important;
   border: 1px solid #17be74 !important;
    color: #17be74 !important;*/
    transition-delay: .1s;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main a svg {
  width: 1em;
  fill: #fff;
  margin-left: 7px;
}

/*.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main a:hover svg {
  width: 1em;
  fill: #17be74;
  margin-left: 7px;
}*/

.radiant-icon-box-wrapper.icon-box-parent-style-three {
    -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:0px 0 30px 0;
  padding:35px 10px;
    text-align: center;
  border-radius:8px;
  width:100%;
}

.radiant-icon-box-wrapper.icon-box-parent-style-three:hover {
  background: #fff;
  box-shadow: 0px 12px 33px 0px rgb(14 49 178 / 10%);
  transform: translate3d(0, -10px, 0);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.radiant-icon-box-wrapper.icon-box-parent-style-three .radiant-icon-box-icon {
    
    display: inline-block;
    vertical-align: top;
  margin-top:7px;
}
.radiant-icon-box-wrapper.icon-box-parent-style-three .radiant-icon-box-icon svg {
  fill: #dce8f4;
  width: 45px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-three .radiant-icon-box-content {
    width: 100%;
    display: block;
}


.radiant-icon-box-wrapper.icon-box-parent-style-three h4 {
  margin-bottom: 12px;
    margin-top: 10px;
    padding: 0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
}

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

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



@media all and (max-width: 767px) {
  .radiant-icon-box-wrapper.icon-box-parent-style-three {
    padding:40px 20px 35px 20px;
    width:100%;
  }
}

.body-container--home-two .row-depth-1.row-number-4.dnd-section .hs_cos_wrapper_type_rich_text h6,
.body-container--home-two .row-depth-1.row-number-8.dnd-section .hs_cos_wrapper_type_rich_text h6,
.body-container--home-two .row-depth-1.row-number-18.dnd-section .hs_cos_wrapper_type_rich_text h6 {
  color: #17be74;
  text-transform: capitalize;
}

/* FAQ CSS START */

.softek-faq{
  background:tranparent;
  border:0px none;
  padding-left: 0px;
}
.softek-faq .softek-accordion-item  {
    padding-top: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}
.softek-faq .softek-accordion-item > .softek-faq-title {
    position: relative;
    padding: 12px 30px 12px 30px;
    cursor: pointer;
  display: block;
  background: #dce8f4;
  color: #00174d;
  border-radius:3px;
}

.softek-faq .softek-accordion-item>.softek-faq-title h6{
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    padding:0;
  text-transform: capitalize !important;
  color: #212a44;
}

.softek-faq .softek-accordion-item.softek-faq-active > .softek-faq-title {
  background: #3466f4;
  color: #ffffff;
}

.softek-faq .softek-accordion-item.softek-faq-active>.softek-faq-title h6 {
  color: #ffffff;
}

.softek-faq .softek-accordion-item > .softek-faq-title > .softek-faq-icon {
    position: absolute;
    top: 18px;
    right: 35px;
    z-index: 1;
  border: none;
    border-radius: 50%;
}

.softek-faq .softek-accordion-item.softek-faq-active > .softek-faq-title > .softek-faq-icon {
  border: none;
}

.softek-faq .softek-accordion-item.softek-faq-active .softek-faq-icon:after{
  opacity: 1;
    background: #fff;
}
.softek-faq .softek-accordion-item .softek-faq-icon:before {
    content: '';
    display: block;
    width: 85%;
    height: 2px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .2s ease-out;
    background: #8b8c8e;
    left: 1px;
}
.softek-faq .softek-accordion-item .softek-faq-icon:after {
    content: '';
    display: block;
    height: 80%;
    width: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #8b8c8e;
    top: 2px;
}

.softek-faq .softek-accordion-item .softek-faq-description {
   padding:20px 35px 0 29px;
}
.softek-faq .softek-accordion-item:last-child {
    border-bottom: none;
}

.softek-faq .softek-accordion-item+.softek-accordion-item {
    border-top: none !important;
}

/* FAQ CSS END */

.body-container--home-two .row-depth-1.row-number-4.dnd-section h2 {
    margin: 0px 0px 5px 0;
    color: #1f2a58;
}

.body-container--home-two .row-depth-1.row-number-4.dnd-section p {
    margin-bottom: 30px;
}

.body-container--home-two .row-depth-1.row-number-8.dnd-section h3,
.body-container--home-two .row-depth-1.row-number-18.dnd-section h3{
    margin: 0px 0px 5px 0;
    color: #1f2a58;
    text-transform: capitalize;
    font-weight: 700;
    text-decoration: none;
    font-size: 36px;
    line-height: 45px;
}

.body-container--home-two .row-depth-1.row-number-8.dnd-section .button.customizable-button {
    margin-top: 25px;
}

.body-container--home-two .row-depth-1.row-number-14.dnd-section p {
    width: 55%;
    margin: 0 auto;
}

.body-container--home-two .row-depth-1.row-number-23.dnd-section {
  background-attachment:fixed;
}

.body-container--home-two .row-depth-1.row-number-23.dnd-section h1 {
  color:#ffffff;
}

.body-container--home-two .row-depth-1.row-number-23.dnd-section .hs_cos_wrapper_type_rich_text p {
    color: rgba(255,255,255,.8);
    width: 55%;
    margin: 0 auto;
    padding-top: 5px;
    padding-bottom: 30px;
}

.body-container--home-two .row-depth-1.row-number-32.dnd-section h2 {
  color:#ffffff;
}

.body-container--home-two .row-depth-1.row-number-32.dnd-section .button.customizable-button {
    margin-top: 16px;
}

/* PROGRESSBAR CSS START */

.rt-progressbar-bar-wrap {
    background-color: #f0f0f0 !important;
}

.rt-progressbar-bar-wrap, .rt-progressbar-bar {
    height: 8px !important;
    border-radius: 10px !important;
}

.rt-progressbar-bar {
    background-color: #17be74 !important;
}

/* DEVELOPER END WORK CSS START */

.body-container--home-two .row-depth-1.row-number-2.dnd-section {
  padding-top:100px !important;
  padding-bottom:15px !important;
}

.body-container--home-two .row-depth-1.row-number-4.dnd-section {
  padding-top:52px !important;
  padding-bottom:0px !important;
}

.body-container--home-two .row-depth-1.row-number-8.dnd-section {
  padding-top:140px !important;
  padding-bottom:40px !important;
}

.body-container--home-two .row-depth-1.row-number-14.dnd-section {
  padding-top:90px !important;
}

.body-container--home-two .row-depth-1.row-number-16.dnd-section {
  padding-bottom:0px !important;
}

.body-container--home-two .row-depth-1.row-number-18.dnd-section {
  padding-top:0px !important;
  padding-bottom:110px !important;
}

.body-container--home-two .row-depth-1.row-number-32.dnd-section {
  padding-top:125px !important;
  padding-bottom:113px !important;
}

.body-container--home-two .row-depth-1.row-number-28.dnd-section h2 {
  color:#fff;
}

/* DEVELOPER END WORK CSS END */

/* PROGRESSBAR CSS END */

@media screen and (max-width: 991px) {
   .body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main {
    padding-top: 100px !important;
    padding-bottom: 120px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main h1 {
    font-size:50px;
    line-height:58px;
  }
  
  .body-container--home-two .row-depth-1.row-number-14.dnd-section p {
    font-size: 17px;
    line-height: 27px;
    width: 85%;
  }
  
  .body-container--home-two .row-depth-1.row-number-2.dnd-section {
    padding-top: 55px !important;
    padding-bottom: 0px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-4.dnd-section {
    padding-top: 22px !important;
    padding-bottom: 0px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-8.dnd-section {
    padding-top: 85px !important;
    padding-bottom: 0px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-14.dnd-section {
    padding-top: 85px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-18.dnd-section {
    padding-top: 10px !important;
    padding-bottom: 70px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-23.dnd-section {
    padding-top: 90px !important;
    padding-bottom: 95px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-23.dnd-section .hs_cos_wrapper_type_rich_text p {
    font-size: 17px;
    line-height: 27px;
    width: 85%;
  }
  
  .body-container--home-two .row-depth-1.row-number-32.dnd-section {
    padding-top: 85px !important;
    padding-bottom: 73px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1170px) {
  
  .body-container--home-two .row-depth-1.row-number-2.dnd-section .span3 {
    width: 49%;
    margin-left: 0.5%;
    margin-right: 0.5%;
  }
  
}

@media screen and (min-width: 768px) and (max-width: 836px) {
  .body-container--home-two .row-depth-1.row-number-4.dnd-section .span6,
  .body-container--home-two .row-depth-1.row-number-4.dnd-section .span1,
  .body-container--home-two .row-depth-1.row-number-4.dnd-section .span5,
  .body-container--home-two .row-depth-1.row-number-8.dnd-section .span5,
  .body-container--home-two .row-depth-1.row-number-8.dnd-section .span1,
  .body-container--home-two .row-depth-1.row-number-8.dnd-section .span6,
  .body-container--home-two .row-depth-1.row-number-18.dnd-section .span5,
  .body-container--home-two .row-depth-1.row-number-18.dnd-section .span1,
  .body-container--home-two .row-depth-1.row-number-18.dnd-section .span6,
  .body-container--home-two .row-depth-1.row-number-32.dnd-section .span7,
  .body-container--home-two .row-depth-1.row-number-32.dnd-section .span2,
  .body-container--home-two .row-depth-1.row-number-32.dnd-section .span3 {
    width:100%;
    margin-left:0%;
  }
  
  .body-container--home-two .row-depth-1.row-number-32.dnd-section h2 {
    text-align: center;
  }
  
}

@media screen and (max-width: 767px) {
  
  .body-container--home-two .row-depth-1.row-number-28.dnd-section h2 {
  text-align:center;
  }
  
  .body-container--home-two .row-depth-1.row-number-28.dnd-section .customizable-button {
    margin-top:16px;
  }
  
}

@media screen and (max-width: 836px) {
  .body-container--home-two .row-depth-1.row-number-4.dnd-section img {
    margin-bottom:40px;
  }
  
  .body-container--home-two .row-depth-1.row-number-8.dnd-section img {
    margin-top:45px;
  }
  
  .body-container--home-two .row-depth-1.row-number-32.dnd-section h2 {
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .body-container--home-two .row-depth-1.row-number-18.dnd-section {
    padding-top: 80px !important;
  }
}

/* HOMEPAGE TWO CSS ENDS */

/* ABOUT PAGE CSS STARTS */

.wraper_inner_banner.banner-one {
   padding-top:130px;
   padding-bottom:150px;
   background-position:bottom center;
   background-size:cover;
   /*margin-top:-28px;
   z-index:2;*/
}

.inner_banner_main{
    text-align: center;
}

.inner_banner_main h1.title {
    font-size: 45px;
    line-height: 52px;
    text-transform: capitalize;
    font-weight: 700;
    color: #fff;
}
.inner_banner_main .subtitle {
  color: #fff;
  margin:0 auto;
}

.body-container--about .row-depth-1.row-number-2.dnd-section .hs_cos_wrapper_type_rich_text h6 {
    color: #17be74;
    text-transform: capitalize;
  margin-top:48px;
}

.body-container--about .row-depth-1.row-number-2.dnd-section .hs_cos_wrapper_type_rich_text h4 {
  margin-top: 2px;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
}

.body-container--about .row-depth-1.row-number-2.dnd-section .hs_cos_wrapper_type_rich_text p {
  margin-bottom:30px;
}

.body-container--about .row-depth-1.row-number-2.dnd-section .span5 {
  margin-left:-85px;
}

.body-container--about .row-depth-1.row-number-6.dnd-section {
}

.body-container--about .row-depth-1.row-number-6.dnd-section .radiant-counter-style-one .radiant-counter_number.radiant-counter-style-one_number.radiant-h2,
.body-container--about .row-depth-1.row-number-6.dnd-section .radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-suffix,
.body-container--about .row-depth-1.row-number-6.dnd-section .radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-prefix,
.body-container--about .row-depth-1.row-number-6.dnd-section .radiant-counter-style-one .ml-2 {
  color: #ffffff !important;
}



.body-container--about .row-depth-1.row-number-6.dnd-section .radiant-counter-style-one {
  padding-left:35px;
}

.body-container--home .row-depth-1.row-number-17.dnd-section .radiant-counter-style-one,
.body-container--home .row-depth-1.row-number-17.dnd-section .radiant-counter-style-one .ml-2 {
  text-align:center;
}

.body-container--about .row-depth-1.row-number-6.dnd-section .span12 {
  border-radius:5px;
}


/*TEAM START*/
.team{
    width: auto;
    margin-left: -15px;
    margin-right: -15px;
  margin-top:30px;
}
.team .rt-professionals-team{
}
.team .rt-professionals-team > .holder {
    text-align: center;
  
}
.team .rt-professionals-team > .holder  > .pic {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}
.home-text-seven p {
    width: 60%;
    margin: 0 auto;
  padding-bottom:15px;
}
.team .rt-professionals-team > .holder  > .pic > img {
    width: 100%;
  height:auto;
}
.team .rt-professionals-team > .holder  > .pic > .holder {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: center top no-repeat;
    background-size: cover;
  border-radius:5px;
}
.team .rt-professionals-team > .holder  > .pic > .data {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px 25px 8px 25px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
  background-color: rgba(52,102,244,0.8);
  border-radius:5px;
}
/* SR Changed background-color: rgba(23,190,116,0.8) to rgba(52,102,244,0.8) */

.team .rt-professionals-team > .holder:hover > .pic > .data {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}
.team .rt-professionals-team > .holder > .title {
}
.team .rt-professionals-team > .holder > .title h5 {
    margin-bottom: 0px;
    text-transform: capitalize;
    /*font-weight: 600;
    font-size: 13px;
    color: #00174d;*/
    /*line-height: 27px;
    letter-spacing: 1px;*/
    padding: 0;
}
.team .rt-professionals-team > .holder > .title p.designation {
    margin-bottom: 0px;
    text-transform: capitalize;
}
.team .rt-professionals-team > .holder > .pic > .data p {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 13px;
    color: #fff;
    line-height: 22px;
}
.team .rt-professionals-team > .holder > .pic > .data p > strong {
    display: block;
    margin-bottom: 8px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
}
/*TEAM END*/

.body-container--about .row-depth-1.row-number-8.dnd-section {
    padding-top:80px !important;
    padding-bottom:55px !important;
}

.body-container--about .row-depth-1.row-number-8.dnd-section h6,
.body-container--about .row-depth-1.row-number-11.dnd-section .hs_cos_wrapper_type_rich_text h6 {
    color: #17be74;
    text-transform: capitalize;
}

.body-container--about .row-depth-1.row-number-11.dnd-section h2 {
    width: 38%;
    margin: 0 auto;
    padding-bottom: 40px;
}

.body-container--about .row-depth-1.row-number-11.dnd-section {
  padding-bottom:40px !important;
}

.body-container--about .row-depth-1.row-number-14.dnd-section .span12 {
  border-radius:5px;
}

.body-container--about .row-depth-1.row-number-14.dnd-section {
  padding-bottom:0px !important;
}

.body-container--about .row-depth-1.row-number-14.dnd-section h2 {
  color:#ffffff;
  padding-bottom: 0;
}

.body-container--about .row-depth-1.row-number-14.dnd-section .button.customizable-button {
    margin-top: 16px;
}

.body-container--about .row-depth-1.row-number-2.dnd-section {
    padding-top:100px !important;
    padding-bottom:70px !important;
  }

/* ABOUT PAGE RESPONSIVE CSS STARTS */

@media screen and (max-width: 1170px) {
  .body-container--about .row-depth-1.row-number-2.dnd-section .span5 {
  margin-left:0px;
  }
  
   .body-container--home .row-depth-1.row-number-17.dnd-section .radiant-counter-style-one {
  padding-left:0px;
  }
}

@media screen and (max-width: 991px) {
  .body-container--about .row-depth-1.row-number-2.dnd-section .span6,
  .body-container--about .row-depth-1.row-number-2.dnd-section .span1,
  .body-container--about .row-depth-1.row-number-2.dnd-section .span5 {
    width:100%;
    margin-left:0%;
  }
  
  .body-container--about .row-depth-1.row-number-2.dnd-section {
    padding-top:75px !important;
    padding-bottom:25px !important;
  }
  
  .body-container--about .row-depth-1.row-number-6.dnd-section .span3 {
    width:50%;
    margin-left:0%;
    margin-bottom:20px;
  }
  
  .body-container--about .row-depth-1.row-number-6.dnd-section .dnd_area-column-8-row-0-padding {
    padding-top:38px !important;
    padding-bottom:20px !important;
  }
  
  .body-container--about .row-depth-1.row-number-6.dnd-section .radiant-counter-style-one {
  padding-left:0px;
  }
  
  .body-container--about .row-depth-1.row-number-8.dnd-section {
    padding-top:35px !important;
    padding-bottom:10px !important;
  }
  
  .body-container--about .row-depth-1.row-number-11.dnd-section h2 {
    width:100%;
  }
  
  .body-container--about .row-depth-1.row-number-11.dnd-section {
  padding-bottom:0px !important;
  }
  
  .body-container--about .row-depth-1.row-number-14.dnd-section .span6 {
  float:left;
  }
  
  .body-container--about .row-depth-1.row-number-14.dnd-section .button.customizable-button {
    margin-top: 31px;
  }

}

/* ABOUT PAGE RESPONSIVE CSS ENDS */

/* ABOUT PAGE CSS ENDS */

/* SERVICE PAGE CSS STARTS */

.radiant-icon-box-wrapper.icon-box-parent-style-five {
    -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:0px 0 30px 0;
  padding:35px;
    text-align: left;
  border-radius:8px;
  width:100%;
}

.radiant-icon-box-wrapper.icon-box-parent-style-five:hover {
  background: #fff;
  box-shadow: 0px 12px 33px 0px rgb(14 49 178 / 10%);
  transform: translate3d(0, -10px, 0);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.radiant-icon-box-wrapper.icon-box-parent-style-five .radiant-icon-box-icon {
    
    display: inline-block;
    vertical-align: top;
  margin-top:7px;
}
.radiant-icon-box-wrapper.icon-box-parent-style-five .radiant-icon-box-icon svg {
  fill: #dce8f4;
  width: 45px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-five .radiant-icon-box-content {
    width: 100%;
    display: block;
}


.radiant-icon-box-wrapper.icon-box-parent-style-five h4 {
  margin-bottom: 12px;
    margin-top: 10px;
    padding: 0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
}

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

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



@media all and (max-width: 767px) {
  .radiant-icon-box-wrapper.icon-box-parent-style-five {
    padding:40px 20px 35px 20px;
    width:100%;
  }
}

.body-container--service .row-depth-1.row-number-2.dnd-section h2 {
  padding-bottom:20px;
}

.body-container--service .row-depth-1.row-number-5.dnd-section .hs_cos_wrapper_type_rich_text p {
  padding-bottom:30px;
}

.body-container--service .row-depth-1.row-number-8.dnd-section .radiant-counter-style-one,
.body-container--service .row-depth-1.row-number-8.dnd-section .radiant-counter-style-one .ml-2 {
  text-align:center;
}

.body-container--service .row-depth-1.row-number-10.dnd-section .customizable-button {
  margin-top:10px;
  margin-bottom:40px;
}

.body-container--service .row-depth-1.row-number-10.dnd-section h2 {
  margin-top:60px;
}

.body-container--service .row-depth-1.row-number-17.dnd-section .span12 {
  border-radius:5px;
}

.body-container--service .row-depth-1.row-number-17.dnd-section {
  padding-bottom:140px !important;
}

.body-container--service .row-depth-1.row-number-17.dnd-section h2 {
  color:#ffffff;
  padding-bottom: 0;
}

.body-container--service .row-depth-1.row-number-17.dnd-section .button.customizable-button {
    margin-top: 16px;
}

/* SERVICE PAGE TESTIMONIAL CSS STARTS */

.testimonial.rt-testimonial.style-three  .testimonial-item .testimonial-inner-main.holder {
  text-align:center;
}

.testimonial.rt-testimonial.style-three .testimonial-item .testimonial-inner-main.holder blockquote {
  padding:0;
  margin:0;
  border:none !important;
}

.testimonial.rt-testimonial.style-three .testimonial-item .testimonial-inner-main.holder blockquote p {
  padding-top:200px;
  width:80%;
  margin:0 auto;
}

.testimonial.rt-testimonial.style-three .testimonial-item .testimonial-inner-main.holder .data h5 {
  margin-top:28px;
  padding-bottom:1px;
}

.testimonial.rt-testimonial.style-three .testimonial-item .testimonial-inner-main.holder .pic .holder img {
    margin-top: -485px;
    border-radius: 50%;
}

.testimonial.rt-testimonial.style-three .swiper-button-next:after, 
.testimonial.rt-testimonial.style-three .swiper-button-prev:after {
  font-size: 22px;
  color: #00174d;
  font-weight: 600;
}

@media screen and (min-width: 598px) and (max-width: 865px) {
  .testimonial.rt-testimonial.style-three .testimonial-item .testimonial-inner-main.holder .pic .holder img {
    margin-top: -540px;
}
}

@media screen and (min-width: 465px) and (max-width: 597px) {
  .testimonial.rt-testimonial.style-three .testimonial-item .testimonial-inner-main.holder .pic .holder img {
    margin-top: -580px;
}
}

@media screen and (min-width: 385px) and (max-width: 464px) {
  .testimonial.rt-testimonial.style-three .testimonial-item .testimonial-inner-main.holder .pic .holder img {
    margin-top: -640px;
}
}

@media screen and (max-width: 384px) {
  .testimonial.rt-testimonial.style-three .testimonial-item .testimonial-inner-main.holder .pic .holder img {
    margin-top: -680px;
}
}

/* SERVICE PAGE TESTIMONIAL CSS ENDS */

.body-container--service .row-depth-1.row-number-15.dnd-section {
  padding-top:0px !important;
}

.body-container--service .row-depth-1.row-number-5.dnd-section img {
  border-radius:5px;
}

/* SERVICE PAGE RESPONSIVE CSS STARTS */

@media all and (max-width: 991px) {
  .body-container--service .row-depth-1.row-number-2.dnd-section {
    padding-top:75px !important;
    padding-bottom:0px !important;
  }
  
  .body-container--service .row-depth-1.row-number-5.dnd-section {
    padding-top:0px !important;
    padding-bottom:95px !important;
  }
  
  .body-container--service .row-depth-1.row-number-17.dnd-section .span6 {
  float:left;
  }
  
  .body-container--service .row-depth-1.row-number-17.dnd-section .button.customizable-button {
    margin-top: 31px;
  }
  
  .body-container--service .row-depth-1.row-number-10.dnd-section h2 {
  margin-top:0px;
  }
  
  .body-container--service .row-depth-1.row-number-15.dnd-section {
    padding-top: 33px !important;
    padding-bottom: 0 !important;
  }
  
  .body-container--service .row-depth-1.row-number-17.dnd-section {
    padding-bottom: 95px !important;
    padding-top: 60px !important;
  }
  
}

@media screen and (min-width: 768px) and (max-width: 1170px) {
  
  .body-container--service .row-depth-1.row-number-2.dnd-section .span3 {
    width: 49%;
    margin-left: 0.5%;
    margin-right: 0.5%;
  }
  
  .body-container--service .row-depth-1.row-number-17.dnd-section {
  padding-bottom:95px !important;
  }
  
}

@media all and (max-width: 767px) {
  .body-container--service .row-depth-1.row-number-5.dnd-section {
    padding-top: 0px !important;
    padding-bottom: 65px !important;
  }
  
  .body-container--service .row-depth-1.row-number-5.dnd-section .span4 {
    margin-bottom:30px;
  }
  
  .body-container--service .row-depth-1.row-number-10.dnd-section {
    padding-top: 90px !important;
    padding-bottom: 0px !important;
  }
}

/* SERVICE PAGE RESPONSIVE CSS ENDS */

/* SERVICE PAGE CSS ENDS */

/* PRICING PAGE CSS STARTS */

/*Pricing table Start */
  
  .radiant-pricing-table > .holder {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 40px 35px 20px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    box-shadow: 0px 0px 30px 0px rgba(42.000000000000156,22.000000000000014,139,.08);
    margin-bottom: 30px;
  }
  .radiant-pricing-table > .holder > .icon {
    margin-bottom: 30px;
  }
  .radiant-pricing-table > .holder > .plan-name {
    margin-bottom: 25px;
  }
  .radiant-pricing-table > .holder > .plan-name > *:last-child {
    margin-bottom: 0;
  }
  /*.radiant-pricing-table > .holder > .plan-name h5 {
    color: #000;
    font-weight:600;
  }*/
  .radiant-pricing-table > .holder > .pricing {
    margin-bottom: 0;
  }
  .radiant-pricing-table > .holder > .pricing .price {
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 50px;
    color: #00174d;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    font-family: "Poppins",sans-serif;
  }
  .radiant-pricing-table > .holder > .pricing .price sup {
    display: inline-block;
    vertical-align: middle;
    margin-top: 11px;
    margin-right: 8px;
  }
  .radiant-pricing-table > .holder > .pricing .price sub {
    display: inline-block;
    text-transform: capitalize;
    vertical-align: bottom;
    margin-bottom: 0px;
    margin-left: 10px;
    font-weight: 500;
    font-size: 18px;
    color:#000;
    line-height: 32px;
  }
  .radiant-pricing-table > .holder > .pricing .tagline {
    margin-bottom: 22px;
    font-weight: 400;
    font-size: 13px;
    line-height: 26px;
  }
  .radiant-pricing-table > .holder > .list {
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 28px;
    padding-top: 25px;
    border-top: 1px solid #ededed;
  }
  .radiant-pricing-table > .holder > .list > *:last-child {
    margin-bottom: 0;
  }
  .radiant-pricing-table > .holder > .list > ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .radiant-pricing-table > .holder > .list > ul li {
    margin-bottom: 11px;
  }
  .radiant-pricing-table > .holder > .spotlight-tag {
    position: absolute;
    top: 0;
    right: 0;
    height: 106px;
    width: 94px;
    background: url("https://4496082.fs1.hubspotusercontent-na1.net/hubfs/4496082/raw_assets/public/Oliev%20COPY%20USE%20FOR%20VIS/images/price-tag.png") no-repeat 0 0;
    padding: 12px 0 0 35px;
  }
  .radiant-pricing-table > .holder > .spotlight-tag > .spotlight-tag-text {
    position: relative;
    display: block;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 0;
  }
  .radiant-pricing-table > .holder > .select-btn .btn {
    margin-bottom: 15px;
    padding: 6px 0 ;
    /*background: linear-gradient(90deg,#ff3834 0%,#ff7133 100%);*/
    font-size: 16px;
    line-height: 42px ;
    letter-spacing: 0px;
    font-weight: 500;
    color: #fff;
    width: 100%;
    transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
    -webkit-transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
    -moz-transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
    border: 1px solid #17be74;
    border-radius: 4px;
    text-decoration:none;
  }
  
  .radiant-pricing-table.spotlight > .holder > .select-btn .btn {
    background: #17be74 !important;
    color:#fff !important;
    border: 1px solid #17be74 !important;
  }

  .radiant-pricing-table > .holder > .select-btn .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  transition-delay: .1s;
  }

  .spotlight .holder{
        background: #171f31;
  }
  .spotlight .holder h5,.spotlight .holder p{
    color:#fff;
  }
  .spotlight.radiant-pricing-table>.holder>.plan-name h5{
    color:#fff;
  }
  .spotlight.radiant-pricing-table>.holder>.pricing .price{
    color:#fff;
  }
  .spotlight.radiant-pricing-table>.holder>.pricing .price sub{
    color:#fff;
  }
  .spotlight.radiant-pricing-table>.holder>.list>ul li {
      color: #fff;
  }
  .home-one-text-five-center p{
        padding: 0 0 30px 0;
      margin: 0 auto;
      width: 44%;
  }
  
    /*Pricing table End */

.body-container--service .row-depth-1.row-number-2.dnd-section .hs_cos_wrapper_type_rich_text h6 {
  color: #17be74;
  text-transform: capitalize;
}

.body-container--service .row-depth-1.row-number-2.dnd-section .hs_cos_wrapper_type_rich_text p {
  width: 85%;
    margin: 0 auto;
    padding-bottom: 30px;
}

/* PRICING PAGE ACCODIAN CSS STARTS */


/* PRICING PAGE ACCODIAN CSS ENDS */

/* PRICING CONTENT BOX CSS STARTS */

.pricing-content-box-parent-one {
  padding:0px 0 0px 0px;
}

.rt-content-box-wrapper h3 {
  color: #17be74;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: .2px;
    margin: 0;
    padding: 0;
}

.rt-content-box-wrapper h5{
  position:relative;
  letter-spacing: -0.6px;
  padding-bottom: 20px;
  font-weight: 600;
}
.rt-content-box-wrapper h5:after {
    background: #d3e1fc;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
}
.rt-content-box-wrapper h5:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 160px;
    left: 0;
    bottom: 0;
    background: #17be74;
  z-index: 2;
}
.rt-content-box-wrapper p {
    padding: 20px 26px 0 0px;
  
}

/* PRICING CONTENT BOX CSS ENDS */



.body-container--pricing .row-depth-1.row-number-21.dnd-section .span12 {
  border-radius:5px;
}

.body-container--pricing .row-depth-1.row-number-21.dnd-section {
  padding-bottom:140px !important;
}

.body-container--pricing .row-depth-1.row-number-21.dnd-section h2 {
  color:#ffffff;
  padding-bottom: 0;
}

.body-container--pricing .row-depth-1.row-number-21.dnd-section .button.customizable-button {
    margin-top: 16px;
}

.body-container--pricing .row-depth-1.row-number-2.dnd-section .hs_cos_wrapper_type_rich_text p {
  width:85%;
  margin:0 auto;
  padding-bottom:30px;
}

.body-container--pricing .row-depth-1.row-number-8.dnd-section {
  padding-top: 140px !important;
  padding-bottom: 135px !important;
}

.body-container--pricing .row-depth-1.row-number-8.dnd-section .row-fluid-wrapper.row-depth-1.row-number-13 {
  padding-top: 40px !important;
}

.body-container--pricing .row-depth-1.row-number-8.dnd-section .hs_cos_wrapper_type_rich_text h6,
.body-container--pricing .row-depth-1.row-number-16.dnd-section .hs_cos_wrapper_type_rich_text h6 {
  color:#17be74;
}

.body-container--pricing .row-depth-1.row-number-8.dnd-section .radiant-counter-style-one,
.body-container--pricing .row-depth-1.row-number-8.dnd-section .radiant-counter-style-one .ml-2 {
  text-align:left;
}

.body-container--pricing .row-depth-1.row-number-8.dnd-section .row-depth-1.row-number-14.dnd-row .hs_cos_wrapper_type_rich_text h2 {
  padding-bottom:35px;
}

.body-container--pricing .radiant-counter {
  border-left:2px solid #17be74;
  padding-left:20px;
}

@media all and (max-width: 991px) {
  
  .body-container--pricing .row-depth-1.row-number-21.dnd-section .span6 {
  float:left;
  }
  
  .body-container--pricing .row-depth-1.row-number-21.dnd-section .button.customizable-button {
    margin-top: 31px;
  }

  .body-container--pricing .row-depth-1.row-number-21.dnd-section {
    padding-bottom: 95px !important;
    padding-top: 60px !important;
  }
  
  .body-container--pricing .row-depth-1.row-number-2.dnd-section {
    padding-top: 55px !important;
    padding-bottom: 65px !important;
  }
  
  .body-container--pricing .row-depth-1.row-number-8.dnd-section {
  padding-top: 95px !important;
  padding-bottom: 80px !important;
  }
  
  .body-container--pricing .row-depth-1.row-number-16.dnd-section {
  padding-top: 90px !important;
  padding-bottom: 35px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1170px) {
  .body-container--pricing .row-depth-1.row-number-21.dnd-section {
  padding-bottom:95px !important;
  }
}

@media all and (max-width: 767px) {
  .body-container--pricing .radiant-counter-style-one .ml-2 {
    text-align: center;
  }
  
  .body-container--pricing .radiant-counter-style-one .radiant-counter_number.radiant-counter-style-one_number.radiant-h2 {
    text-align: left;
    display: block;
    line-height: 0;
  }
  
  .body-container--pricing .radiant-counter-style-one .radiant-counter-number-suffix {
    padding-top:15px;
  }
  
  /*.body-container--pricing .radiant-counter {
  border-left:none;
  padding-left:0px;
  }*/
  
  .body-container--pricing .row-depth-1.row-number-8.dnd-section .row-fluid-wrapper.row-depth-1.row-number-11 {
    padding-top: 30px !important;
  }
  
  .body-container--pricing .row-depth-1.row-number-8.dnd-section .row-fluid-wrapper.row-depth-1.row-number-13 {
    padding-top: 10px !important;
  }
}

/* PRICING PAGE CSS ENDS */

/* CONTACT PAGE CSS STARTS */

.contact-box-wrapper {
    border: 1px solid #dcdcdc;
}
.contact-box-content {
    padding: 25px 30px;
}
.contact-box-content h6{
  font-weight:700;
  font-size: 18px;
  line-height: 30px;
  text-transform: capitalize;
}
.contact-box-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-box-content ul li {
    padding: 0 0 5px 0;
    margin: 0;
    list-style: none;
}
.contact-box-content ul li i {
    padding: 0 7px 0 0;
  color:#001a57;
}
.contact-form-one .hs-fieldtype-text {
    width: 50%;
    display: inline-block;
  padding:0 7px;
      margin-bottom: 10px;
}
.contact-form-one .hs-fieldtype-textarea {
    padding: 0 10px 0 10px;
    width: 100%;
    margin-bottom: 10px;
}
.contact-form-one input[type = text],
.contact-form-one input[type = email],
.contact-form-one input[type = url],
.contact-form-one input[type = tel],
.contact-form-one input[type = number], 
.contact-form-one input[type = password],
.contact-form-one input[type = date],
.contact-form-one input[type = time],
.contact-form-one select, 
.contact-form-one textarea{
    background-color: #f8f8f8;
    padding-top: 6px;
    padding-right: 10px;
    padding-bottom: 6px;
    padding-left: 10px;
    border-radius:3px;
    color: #989898;
    border: 1px solid #d8d8d8;
    width: 100%;
    resize: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.contact-form-one input[type = text]:hover,
.contact-form-one input[type = email]:hover,
.contact-form-one input[type = url]:hover,
.contact-form-one input[type = tel]:hover,
.contact-form-one input[type = number]:hover, 
.contact-form-one input[type = password]:hover,
.contact-form-one input[type = date]:hover,
.contact-form-one input[type = time]:hover,
.contact-form-one select:hover, 
.contact-form-one textarea:hover {
  border: 1px solid #17be74;
}

.contact-form-one input[type = text]:focus,
.contact-form-one input[type = email]:focus,
.contact-form-one input[type = url]:focus,
.contact-form-one input[type = tel]:focus,
.contact-form-one input[type = number]:focus, 
.contact-form-one input[type = password]:focus,
.contact-form-one input[type = date]:focus,
.contact-form-one input[type = time]:focus,
.contact-form-one select:focus, 
.contact-form-one textarea:focus {
  border: 1px solid #17be74 !important;
}


.contact-form-one input::placeholder{
  color: #989898;
}
.contact-form-one textarea::placeholder{
  color: #989898;
}
.contact-form-one textarea{
    height: 100px;
}
.contact-form-one .actions {
    text-align: center;
}
.contact-form-one form input[type=submit]{
  display: inline-block;
  position: relative;
  z-index: 1;
  line-height: 42px;
  background-color: #17be74;
  font-size: 16px;
  padding: 7px 35px;
  font-weight: 500;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  fill: #fff;
  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;
  border:1px solid #17be74;
}

.contact-form-one .actions {
   /*display: inline-block;
  position: relative;
  z-index:2;
  overflow:hidden;
  border-radius: 3px;
  background:#17be74;*/
  text-align:left;
  margin: 0 10px 0 10px;
}

.contact-form-one .actions::after {
  content: "";
  position: absolute;
  z-index: -1;
  -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);
}

.contact-form-one .actions:hover{
  color: #fff !important;
}
.contact-form-one .actions:hover::before {
    opacity: 1;
    width: 100%;
    color: #fff;
}
.contact-form-one form input[type=submit]:hover,
.contact-form-one form input[type=submit]:focus,
.contact-form-one form .hs-button:hover, form .hs-button:focus{
  background: #17be74;
  color: #ffffff;
  border: 1px solid #17be74;
  
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  transition-delay: .1s;
}

.contact-form-one .actions::after {
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: #ffffff; 
}

.contact-form-one form input[type=submit]:hover::after {
  height: 100%;
}

.contact-text-two iframe {
    /*filter: gray;
    -webkit-filter: grayscale(99%);*/
    -webkit-backface-visibility: hidden;
  height:412px;
}
.contact-text-three{
  padding-top:30px;
}
.contact-text-three h4 {
    font-size: 20px;
    line-height: 24px;
    text-align: left;
    font-weight: 700;
}
.contact-text-four p strong {
    font-weight: 700;
}
.body-container--contact .span6.widget-span.widget-type-cell.dnd_area-column-5-padding.dnd_area-column-5-background-color.dnd-column{
  border:1px solid #eae9e9;
}

@media all and (max-width: 991px) {
  .body-container--contact .row-depth-1.row-number-2.dnd-section {
    padding-top:75px !important;
  }
  
  .body-container--contact .row-depth-1.row-number-3.dnd-section {
    padding-top: 80px !important;
    padding-bottom:66px !important;
  }
}

@media screen and (max-width: 767px) {
.contact-box-img img {
    width: 100%;
}
  
  .contact-box-wrapper {
    margin: 0 0 15px 0;
  }
  
  .body-container--contact .span6.widget-span.widget-type-cell.dnd_area-column-5-padding.dnd_area-column-5-background-color.dnd-column{
  margin-bottom:30px;
  }
  
  .softek-faq .softek-accordion-item>.softek-faq-title h6 {
    padding-right:20px;
  }
}

/* CONTACT PAGE CSS ENDS */

/* FAQ PAGE CSS STARTS */


.body-container--faq .row-depth-1.row-number-8.dnd-section .button.customizable-button {
    margin-top: 16px;
}

.body-container--faq .row-depth-1.row-number-2.dnd-section .row-number-3 .hs_cos_wrapper_type_rich_text p {
  margin:0;
  padding-bottom:30px;
}

.body-container--faq .row-depth-1.row-number-2.dnd-section .row-number-6 {
  padding-top:85px;
}

@media screen and (max-width: 991px) {
  .body-container--faq .row-depth-1.row-number-8.dnd-section {
    padding-top: 85px !important;
    padding-bottom: 73px !important;
  }
  
  .body-container--faq .row-depth-1.row-number-2.dnd-section {
    padding-top: 75px !important;
    padding-bottom: 95px !important;
  }
  
  .body-container--faq .row-depth-1.row-number-2.dnd-section .row-number-6 {
  padding-top:40px;
  }
  
  .body-container--faq .row-depth-1.row-number-2.dnd-section .dnd_area-column-4-padding {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 836px) {
  .body-container--faq .row-depth-1.row-number-8.dnd-section .span7,
  .body-container--faq .row-depth-1.row-number-8.dnd-section .span2,
  .body-container--faq .row-depth-1.row-number-8.dnd-section .span3 {
    width:100%;
    margin-left:0%;
  }
  
}


/* FAQ PAGE CSS ENDS */

/* CUSTOMER STORIES PAGE CSS STARTS */

/* NUMBER BOX CSS STARTS */

.home-one-tab-main {
    border-top: 1px solid #D4D7DF;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
      margin-top: 25px;
}

.tab-head-line{
  position: relative;
    transform: skew(-15deg);
    background: #171f31;
    content: "";
    top: -18px;
    left: -7px;
    padding: 3px 0;
    z-index: 999;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    width: 35px;
    height: 35px;
    text-align: center;
  display: inline-block;
}
.tab-head-line:hover{
  background: #17be74;
}
.tab-head-line p{
    display: inline-block;
    position: relative;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 28px;
    letter-spacing: 0.2px;
  margin:0;
  transform: skew(0deg);
}

.tab-head-line p:after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: -50px;
    width: 120px;
    height: 2px;
    z-index: -1;
    background: #17be74;
    opacity: 0;
    visibility: hidden;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.tab-head-line p:hover:after {
    opacity: 1;
    visibility: visible;
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
}
.home-one-tab-bottom {
    padding: 20px 0 0 0;
}
.active .tab-head-line {
    background: #17be74;
}
.active .tab-head-line p:after {
    opacity: 1;
    visibility: visible;
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
}

.customer-text-three h6 {
  font-size:18px;
  line-height:30px;
  font-weight:700;
  padding-bottom:0;
}

@media screen and (max-width: 991px) {
  .home-one-tab-main {
    padding: 0 15px;
  }
}

/* NUMBER BOX CSS ENDS */

/* CUSTOMER STORIES SECTION CORRECTION CSS STARTS */

.body-container--customer .row-depth-1.row-number-2.dnd-section .hs_cos_wrapper_type_rich_text h6,
.body-container--customer .row-depth-1.row-number-22.dnd-section .hs_cos_wrapper_type_rich_text h6,
.body-container--customer .row-depth-1.row-number-8.dnd-section .customer-text-two h6 {
  color:#17be74;
  text-transform:capitalize;
  margin-top:35px;
}

@media (max-width: 1170px) {
  .body-container--customer .row-depth-1.row-number-8.dnd-section {
    padding-left:15px !important;
    padding-right:15px !important;
  }
}

.body-container--customer .row-depth-1.row-number-12.dnd-section .hs_cos_wrapper_type_rich_text h6 {
  color:#17be74;
  text-transform:capitalize;
}

.body-container--customer .row-depth-1.row-number-18.dnd-section .span12 {
  border-radius:5px;
}

.body-container--customer .row-depth-1.row-number-18.dnd-section h2 {
  color:#ffffff;
  padding-bottom: 0;
}

.body-container--customer .row-depth-1.row-number-18.dnd-section .button.customizable-button {
    margin-top: 16px;
}

@media (max-width: 991px) {
  .body-container--customer .row-depth-1.row-number-2.dnd-section {
  padding-top:90px !important;
  padding-bottom:81px !important;
  }
  
  .body-container--customer .row-depth-1.row-number-8.dnd-section {
  padding-top:85px !important;
  padding-bottom:65px !important;
  }
  
  .body-container--customer .row-depth-1.row-number-12.dnd-section {
  padding-top:95px !important;
  padding-bottom:15px !important;
  }
  
  .body-container--customer .row-depth-1.row-number-18.dnd-section .span6 {
  float:left;
  }
  
  .body-container--customer .row-depth-1.row-number-18.dnd-section .button.customizable-button {
    margin-top: 31px;
  }
  
  .body-container--customer .row-depth-1.row-number-18.dnd-section {
    padding-bottom: 45px !important;
    padding-top: 60px !important;
  }
  
  .body-container--customer .row-depth-1.row-number-22.dnd-section {
  padding-top:40px !important;
  padding-bottom:45px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1170px) {
  .body-container--customer .row-depth-1.row-number-18.dnd-section {
  padding-bottom:45px !important;
  } 
}

@media (max-width: 767px) {
  .body-container--customer .row-depth-1.row-number-12.dnd-section .hs_cos_wrapper_type_linked_image img {
    margin-top:30px;
  }
}

/* CUSTOMER STORIES SECTION CORRECTION CSS ENDS */

/* CUSTOMER STORIES PAGE CSS ENDS */

@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: 1170px !important;
}
 
  .body-container--home-two .banner-main .container .row,
  .body-container--home .banner-main .container .row {
    margin-right: -22px;
    margin-left: -22px;
  }
  
  
}


/* FOOTER FIX CSS STARTS */

.footer-menu 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:3px;
  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-subscribe-form .actions {
    text-align: center;
}
.footer-subscribe-form form input[type=submit]{
  display: inline-block;
  position: relative;
  z-index: 1;
  line-height: 42px;
  background-color: #17be74;
  font-size: 16px;
  padding: 0px 28px;
  font-weight: 500;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  fill: #fff;
  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;
  border:1px solid #17be74;
  margin-top: 5px;
  text-transform:capitalize;
}

.footer-subscribe-form .actions {
   /*display: inline-block;
  position: relative;
  z-index:2;
  overflow:hidden;*/
  border-radius: 3px;
  background:transparent;
  text-align:left;
  margin: 0 0px 0 0px;
}

.footer-subscribe-form .actions::after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.footer-subscribe-form .actions::before {
  display:none;
}

.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 input[type=submit]:focus,
.footer-subscribe-form form .hs-button:hover, form .hs-button:focus{
  background: #17be74;;
  color: #ffffff;
  border: 1px solid #17be74;
  
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  transition-delay: .1s;
}

.footer-subscribe-form .actions::after {
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: #ffffff; 
  
  display:none;
}

.footer-subscribe-form form input[type=submit]:hover::after {
  height: 100%;
}

.footer-widget-section .dnd-section {
    padding: 80px 15px 33px 15px;
  }

.footer-copyright-section .dnd-section {
  padding: 20px 15px;
  border-top: 1px solid #2e3442;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .footer-copyright-section .dnd-section .row-fluid .span3 {
    width: 49% !important;
    margin-left: .5% !important;
    margin-right: .5% !important;
  }
}

@media screen and (max-width: 767px) {
  .body-wrapper .custom-footer h6 {
    margin-top: 0;
    margin-bottom: 20px;
  }
  
  .flyouts ul {
    padding-bottom: 14px;
  }
  
  .social-icon-wrapper .social-links {
    padding-bottom: 28px;
  }
}
 /* FOOTER FIX CSS ENDS */

/* POP UP VIDEO CSS STARTS */

.rt-popup-video[data-popup-video-align=center] > .holder {
    text-align: center;
}
.rt-popup-video img {
    position: relative;
    width: 80px !important;
    height: 80px;
    line-height: 62px;
    text-align: center;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50% !important;
    animation: anim-two-btn 1.2s linear infinite;
    -webkit-transition: .5s linear;
    display: block;
}

@keyframes anim-two-btn {

    0% {

        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1),

            0 0 0 10px rgba(255, 255, 255, 0.1),

            0 0 0 20px rgba(255, 255, 255, 0.1);

    }



    100% {

        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1),

            0 0 0 20px rgba(255, 255, 255, 0.1),

            0 0 0 30px rgba(255, 255, 255, 0);

    }

}

/* POP UP VIDEO CSS ENDS */
.radiant-icon-box-wrapper .icon-box-parent-style-header-left h4 {
  text-transform: inherit;
}





 /* 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%;
      transform: scale(1.06);
      transition: transform 1s cubic-bezier(.33,.02,0,.93);*/
    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{
      /*transform: scale(1.06) translateX(1%);
      transition: transform 1s cubic-bezier(.33,.02,0,.93);*/
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  .systems-page .hs-search-results__title{
   
      text-transform: capitalize;
      line-height: 45px;
      letter-spacing: 0px;
      font-weight: 700;
      font-style: normal;
      color: #1f2a58;
      font-size: 36px;
    text-decoration: none;
        padding: 20px 30px 17px 30px;
      display: inline-block;
  }
  .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: #fafafa;
      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: 94px 0 107px 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: #17be74;
    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 #17be74;
  }

.systems-page form input[type='submit']:hover{
  background: #17be74;
  color: #ffffff;
  border: 1px solid #17be74;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  transition-delay: .1s;
}
/*.systems-page form input[type='submit']:hover::before {
    opacity: 1;
    width: 100%;
    color: #fff;
}
.systems-page form input[type='submit']::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background-color: #95afcc;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}*/

  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 #17be74;
     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;
    /*padding-top: 6px;
    padding-right: 10px;
    padding-bottom: 6px;
    padding-left: 10px;*/
    
    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;
    /*padding-top: 6px;
    padding-right: 10px;
    padding-bottom: 6px;
    padding-left: 10px;*/
    
    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 #17be74;
}


  #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, form textarea{
      background: #fafafa;
      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-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, form textarea:hover {
    border: 1px solid #17be74;
}

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

form input[type=text]:hover, 
form input[type=email]:hover, 
form input[type=password]:hover, 
form input[type=tel]:hover, 
form input[type=number]:hover, 
form input[type=file]:hover, 
form select:hover, form textarea:hover {
  border: 1px solid #17be74;
}
  
  .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, form textarea{
      background: #fafafa;
      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-register form input[type=text]:hover,
  .membership-register form input[type=email]:hover, 
  .membership-register form input[type=password]:hover, 
  .membership-register form input[type=tel]:hover, 
  .membership-register form input[type=number]:hover, 
  .membership-register form input[type=file]:hover, 
  .membership-register form select:hover, form textarea:hover {
    border: 1px solid #17be74;
}
  
  .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: #fafafa;
      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, form textarea{
      background: #fafafa;
      border-radius: 4px;
      width: 100%;
      height: 55px;
      line-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 input[type=text]:hover,
  .membership-reset-pass form input[type=email]:hover, 
  .membership-reset-pass form input[type=password]:hover, 
  .membership-reset-pass form input[type=tel]:hover, 
  .membership-reset-pass form input[type=number]:hover, 
  .membership-reset-pass form input[type=file]:hover, 
  .membership-reset-pass form select:hover, form textarea:hover {
    border: 1px solid #17be74;
}
  
  .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-right: 0;
}
.col-lg-9.col-md-12.col-sm-12.col-12.rt-search-results {
    padding-left: 0;
}
.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 input[type="text"]{
  vertical-align: top;
    width: 100%;
    height: 50px;
    padding: 0px 45px 0px 15px;
    background-color: #f0f2f5;
    border: 0;
    font-weight: 400;
    font-size: 14px;
    color: #707173;
    line-height: 26px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    outline: 0;
}

.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 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
    line-height: 28px;
    letter-spacing: -0.5px;
}
.widget_recent_posts .blog-widget-title a{
  text-decoration: none;
    color: #1d1846;
}
.rt-search-results {
    padding-right: 50px !important;
}
.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: #17be74;
    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: #17be74;
}
.rt-search-results {
    padding-bottom: 104px;
}
.password-prompt input[type=password] {
  background-color: #f8f8f8;
    /*padding-top: 6px;
    padding-right: 10px;
    padding-bottom: 6px;
    padding-left: 10px;*/
    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 #17be74;
}

.error-page a.button {
    /*padding-top: 16px;
    padding-right: 50px;
    padding-bottom: 16px;
    padding-left: 50px;*/
  background-color: #17be74;
    border-radius: 3px;
    color: #fff;
    line-height: 42px;
    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;
    font-weight: 500;
    text-decoration: none;
}
/*.error-page a.button i.ti-arrow-right {
    visibility: hidden;
    opacity: 0;
    transition: margin .3s ease-in-out,opacity .3s ease-in-out;
    -webkit-transition: margin .3s ease-in-out,opacity .3s ease-in-out;
}
.error-page a.button:hover i.ti-arrow-right {
    visibility: visible;
    opacity: 1;
    margin-left: 10px;
}*/
 /* System Page End*/




.right-sidebar .actions {
  width:100% !important;
  
  display: inline-block;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 3px;
  background: #17be74;
  -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 .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: #17be74;
    border: 1px solid #17be74;
    border-radius: 3px;
    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;
}


.right-sidebar form input[type=email] {
    display: inline-block;
    vertical-align: top;
    height: 42px;
    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: 3px;
    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=email]:hover {
  border: 1px solid #17be74;;
}

.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: 45px;
}

.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: #a7b4df;
  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 #17be74;
    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;
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
    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: #17be74 !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: #17be74;
  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: #17be74;
}
.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;
}

.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: #17be74;
}
.right-sidebar button:hover {
    background: #17be74;
}
div.hs-search-field__bar button svg {
    height: 16px;
}
.hs-search-field__bar button svg {
    filter: brightness(0) invert(1);
}

.header .navbar-expand-lg .navbar-nav .nav-link, .header .navbar-nav .nav-link {
    margin-bottom: -8px;
}

.header nav.navigation-primary ul li ul {
  top: 65px;
  width: 290px !important;
}

.header nav.navigation-primary ul li:last-child ul {
  width: 350px !important;
}

.header nav.navigation-primary ul li .menu-arrow:after {
  margin-top: -3px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rt-dropdown-arrow:after {
    margin-top: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .rt-dropdown-arrow:after {
    margin-top: 13px;
  }
}

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

/* DEFAULT TESTIMONIAL STYLE TWO CSS STARTS */

.testimonial.rt-testimonial.style-two .testimonial-item{
    padding-left:15px;
    padding-right:15px;
}

.testimonial.rt-testimonial.style-two:not(.owl-carousel) .testimonial-item{
    float:left;
    margin-bottom:30px;
    padding-left:0;
    padding-right:0;
}
.testimonial.rt-testimonial.style-two .testimonial-item>.holder>.data blockquote p {
    margin: 0;
}
.testimonial.rt-testimonial.style-two .testimonial-item > .holder{
    position:relative;
    min-height:120px;
    padding-left:138px;
  background-color: #ffffff;
    padding: 26px 35px 26px 138px;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
}
.testimonial.rt-testimonial.style-two .testimonial-item .holder:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    height: 5px;
    background: #17be74;
    width: 100%;
}
.testimonial.rt-testimonial.style-two .testimonial-item .holder:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    height: 5px;
    background: #001a57;
    width: 0%;
    transition: width 0.5s;
}
.testimonial.rt-testimonial.style-two .testimonial-item .holder:hover:after {
    width: 100%;
    background: #001a57;
}
.testimonial.rt-testimonial.style-two .testimonial-item > .holder > .pic{
    position:absolute;
    top:26%;
    left:26px;
    z-index:1;
    text-align:center;
}

.testimonial.rt-testimonial.style-two .testimonial-item.no-image > .holder > .pic{
    display:none;
}

.testimonial.rt-testimonial.style-two .testimonial-item > .holder > .pic img{
    width:106px;
    border: 3px #fff solid;
    box-shadow: 0px 0px 0px 2px #eaeaea;
  border-radius: 50%;
}
.testimonial.rt-testimonial.style-two .testimonial-item > .holder > .data{
    position:relative;
    padding-left:23px;
}
.testimonial.rt-testimonial.style-two .testimonial-item > .holder > .data > *:last-child{
    margin-bottom:0;
}

.testimonial.rt-testimonial.style-two .testimonial-item > .holder > .data blockquote{
    position:relative;
    padding-top:22px;
    padding-left:35px;
  border:0px none;
}

.testimonial.rt-testimonial.style-two .testimonial-item > .holder > .data blockquote:before{
    position:absolute;
    top:0;
    left:0;
    z-index:0;
    content:'\201c';
    font-family:MS PMincho;
    font-size:72px;
    color:#17be74;
    line-height:72px;
}

.testimonial.rt-testimonial.style-two .testimonial-item > .holder > .data blockquote > *:last-child{
    margin-bottom:0 !important;
}
.testimonial.rt-testimonial.style-two .testimonial-item > .holder > .data blockquote cite{
    display:block;
    margin-top:9px;
    text-transform:uppercase;
    font-weight:600;
    font-size:13px;
    color:#313d85;
    line-height:25px;
    font-style:normal;
}
.testimonial.rt-testimonial.style-two .testimonial-item > .holder > .data blockquote cite strong{
    font-weight:inherit;
}
.landing-text-seven p{
  line-height:28px;
}
.testimonial.rt-testimonial.style-two .testimonial-item > .holder > .data blockquote cite strong:before{
    content:"-";
    margin-right:3px;
}

.testimonial.rt-testimonial.style-two .testimonial-item > .holder > .data blockquote cite strong:after{
    content:",";
    margin-right:5px;
}
.testimonial.rt-testimonial.style-two {
    margin-bottom: -73px;
}

@media screen and (min-width:480px) and (max-width:767px) {
    .testimonial.rt-testimonial.style-two .testimonial-item>.holder>.pic {
    position: static;
}
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder {
    padding: 26px 15px 26px 15px;
}
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder>.data {
    position: relative;
    padding-left: 0;
}
}


@media screen and (min-width:321px) and (max-width:479px) {
    .testimonial.rt-testimonial.style-two .testimonial-item>.holder>.pic {
    position: static;
}
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder {
    padding: 26px 15px 26px 15px;
}
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder>.data {
    position: relative;
    padding-left: 0;
}
}

@media screen and (max-width:320px) {
    .testimonial.rt-testimonial.style-two .testimonial-item>.holder>.pic {
    position: static;
}
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder {
    padding: 26px 15px 26px 15px;
}
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder>.data {
    position: relative;
    padding-left: 0;
}
}

/* DEFAULT TESTIMONIAL STYLE TWO CSS ENDS */

/* DEFAULT THEME CSS FIXING START */


.radiant-icon-box-wrapper.icon-box-parent-style-header-left .radiant-icon-box-icon svg {
    fill: #dce8f4;
}

.header .header__container img {
    margin-top: 15px !important;
}

/* DEFAULT THEME CSS FIXING END */