/* 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;
  text-transform: none!important; 
}

/* 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;
  font-weight: bold;
  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: 10px;
  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;
  line-height: 26px;
  letter-spacing: 0px;
  display: inline-block;
}

.top-header-text-left p a {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  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: 4px 0 9px 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: 30px;
  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-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;
  
}

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

.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-right:-15px;*/
  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;
}

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

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

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

.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 (max-width: 1080px) {
  .header .header__container .rt-search-box2 {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  
  .submenu.level-1>.has-submenu>.menu-arrow {
    right: 0 !important;
    top: 17px !important;
}
  .top-header.radiant-top-header{padding:0;}
  .header nav.navigation-primary ul li{margin-right: 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: 6px;
}
  
  .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: 6px;}
  
  .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: 500;
  font-size: 20px;
  line-height: 30px;
  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: 11px;
  padding-right: 50px;
  padding-bottom: 11px;
  padding-left: 50px;
  background-color: transparent;
  color: #505050;
  line-height: 20px;
  font-size: 16px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  
  font-weight: 500;
  text-decoration: none;
  line-height: 27px;
  letter-spacing: 0;
  z-index: 99;
  margin: 0;
  border:none !important;
}

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

.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 {
  background-color: none;
  border-color: #fff;
  color: #fff;
}

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

/* Footer SECTION END*/

/* FOOTER NEW CSS STARTS */

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

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

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

.wraper_footer.custom-footer .header-social-icons ul li {
    display: inline-block;
    padding: 0 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 !important;
}

.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;
  }
  
  .submenu.level-1>.has-submenu>.menu-arrow, .submenu>.has-submenu>.menu-arrow, .submenu .menu-arrow {
    top:-7px !important;
  }
  
  .header .content-wrapper {
    box-shadow:none !important; 
  }  
}
/* FOOTER NEW CSS ENDS 
@media only screen and (min-width: 992px){
.header .transparent.content-wrapper {
    background: transparent !important;
}
*/

@media only screen and (max-width: 1070px){
body.down header.header.transparent, body.down header.header{
  transform: translateY(0) !important;
  }
.header.transparent .top-header.radiant-top-header {
  display: none;}}

.header .transparent.content-wrapper{
  box-shadow: none; }
.transparent.content-wrapper .bsnav {
  background: #fff0;}
header.header.transparent{
  background: #fff0;}
.header.transparent .submenu.level-1>li, .header.transparent nav.navigation-primary ul li a{
  color:#fff !important;}  
.header.transparent nav.navigation-primary ul.level-2 li.no-submenu a {
  color:#5b5b5b !important;}
.header.transparent .navbar-toggler:focus{
  box-shadow: none;}
.header.transparent .navbar-toggler .navbar-toggler-icon, 
.header.transparent .navbar-toggler .navbar-toggler-icon::after,
.header.transparent .navbar-toggler .navbar-toggler-icon::before{
  background-color: #fff;}
@media (min-width: 768px) and (max-width: 991px){
.header .transparent.content-wrapper {
    padding: 6px 15px 13px 15px;
  }}

.header__container.transparent.content-wrapper .header__column .col-lg-2 {
   padding-right:10px;
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

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

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


h1,
h2,
h3{
    padding-bottom: 20px;
    letter-spacing: -1px;
    text-transform: none !important;
    font-weight: 400;
}


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

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



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

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

@media all and (max-width: 767px) {
  
h1 {
  font-size:50px !important; 
  line-height:60px !important;
  }
   
body.down header.header {
    transform: translateY(-15%);
}
  
  .navbar-toggler{margin-top: 17px;}
}

.header .content-wrapper{background:#fff; width:100%;max-width: 100%; box-shadow: 8px 3px 15px 3px rgb(0 0 0 / 5%);}

.heading-inner h4{margin-bottom:12px;}

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

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

.body-container--home .row-depth-1.row-number-1.dnd-section .one-row_bottom_divider {
  margin-top:-110px;
}
.row-depth-1.row-number-1.dnd-section .banner-main {
    padding-top: 386px;
    padding-bottom: 320px;
    background-size: cover !important;
    background-position: center center !important;
}
.body-container--home .row-depth-1.row-number-1.dnd-section .banner-main h1 {
  color:#fff;
  margin-bottom: 18px;
}

.body-container--home .row-depth-1.row-number-1.dnd-section .banner-main a {
  /*   border-radius: 3px; */
  /*     line-height: 42px; */
  /*     font-size: 16px; */
  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;
  align-items:center;
  text-decoration: underline!important;
/*   border: 1px solid #729F1E; */
}

.body-container--home .row-depth-1.row-number-1.dnd-section .banner-main a:hover {
    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;
  margin-left: 7px;
}

.body-container--home .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon {
display: block;
text-align: center;
position: absolute;
}

.body-container--home .radiant-icon-box-wrapper.icon-box-parent-style-one h4{margin-top: 0 !important;}


.body-container--home .home-counter-one .radiant-counter .radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-prefix{
    display: inline-block;
    font-size: 36px;
    color: #00174d ;
    line-height: 48px;
    text-align: left;
    font-weight: 500;
   
}


.body-container--home .radiant-icon-box-wrapper.icon-box-parent-style-two h4 {
  margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

.body-container--home .home-counter-one .radiant-counter .radiant-counter-style-one .radiant-counter_number.radiant-counter-style-one_number.radiant-h2 {
display: inline-block;
font-size: 36px;
color: #00174d;
line-height: 48px;
text-align: left;
font-weight: 500;
}

.body-container--home .home-counter-one .radiant-counter .radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-suffix {
display: inline-block;
font-size: 36px;
color: #00174d;
line-height: 48px;
text-align: left;
font-weight: 500;
}

.body-container--home .home-counter-one .radiant-counter .radiant-counter-style-one .ml-2 {
color: #00174d;
}


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



.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: block;
  text-align:center;
}

.radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon svg {
  fill: #729F1E;
  padding-top: 5px;
}


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

.radiant-icon-box-wrapper.icon-box-parent-style-one h4 {
  margin-bottom: 12px;
    margin-top: 5px;
    padding: 0;
}

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

@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: all 0.25s cubic-bezier(.32, .55, .79, .49);
  border: 2px 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;
  transition: all 0.25s cubic-bezier(.32, .55, .79, .49);
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder .pic img {
  border-radius:5px;
  margin-bottom: 20px;
  margin-top: 5px;
  width: 55px!important;
  transition: all 0.25s cubic-bezier(.32, .55, .79, .49);
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover .pic img  {
   transform: translate3d(0, -12%, 0) translate3d(0, -12px, 0);
  transition: all 0.25s cubic-bezier(.32, .55, .79, .49);
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder .title h5 {
  color: #000000;
  margin: 0 auto;
transition: all 0.25s cubic-bezier(.32, .55, .79, .49);
}

.home-fancy-one .fancy-text-box-slider-two .radiant-fancy-text-box .holder .title h5 {
  color: #ffffff;
  transition: all 0.25s cubic-bezier(.32, .55, .79, .49);
}

.fancy-text-box-slider-two .radiant-fancy-text-box .holder:hover .title h5 {
  color: #000000;
   transform: translate3d(0, -12%, 0) translate3d(0, -12px, 0);
  transition: all 0.25s cubic-bezier(.32, .55, .79, .49);
}

.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: #729F1E;
    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:60px;
}

.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: 0 0 20px 0;
    -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-flex;
    vertical-align: top;
    margin-right: 25px;
  position:absolute;
  float:left;
}

.radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-icon svg {
/*     fill: #729F1E; */
}

.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;
  margin-bottom:40px;
}

.radiant-icon-box-wrapper.icon-box-parent-style-two h4 {
  margin-bottom: 12px;
    margin-top: 5px;
    padding: 0;
}

.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;
/*   background-color: #729F1E; */
/*   padding: 15px 45px !important; */
  font-weight: 700;
/*   -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 #729F1E;
  font-size: 17px; */
/*   line-height: 27px; */
}

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

/*.button.customizable-button:focus {
  background-color: #729F1E !important;
  border:1px solid #729F1E !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: #729F1E;
}

.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: #729F1E;
}

.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: #729F1E;
}

.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: #234b8c;
}

@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: #f4f4f4;
    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-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:300px;
  background-size: cover !important;
  background-position: top center !important;
}
 */

.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main h1 {
  color:#ffffff;
  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: 4px; */
  box-shadow: 0 0 0 transparent;
  display: inline-flex;
/*   padding: 15px 44px; */
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  color: #fff;
  transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  text-decoration:none;
/*   border:2px solid #729F1E; */
}

.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main a:hover {
    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.banner-botton2 {
/*   border-radius: 4px; */
  box-shadow: 0 0 0 transparent;
  display: inline-flex;
/*   padding: 15px 44px; */
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  color: #fff;
  transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  text-decoration:none;
/*   border: 2px solid #fff; */
  margin-left:15px;
}

.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton2:hover {
    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-4.dnd_area-row-2-background-image{margin-top:-130px;}



.body-container--home-two .icon-box-style-three-two .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%
}

.body-container--home-two .icon-box-style-three-two .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
}

.body-container--home-two .icon-box-style-three-two .radiant-icon-box-wrapper.icon-box-parent-style-three .radiant-icon-box-icon {
    display: inline-block;
    vertical-align: top;
}

.body-container--home-two .icon-box-style-three-two .radiant-icon-box-wrapper.icon-box-parent-style-three .radiant-icon-box-icon svg {
/*     fill: #729F1E; */
}

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

.body-container--home-two .icon-box-style-three-two .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
}

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

.body-container--home-two .icon-box-style-three-two .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
}

.body-container--home-two .row-depth-1.row-number-4.dnd-section .home-two-text-one h2{color: #1f2a58;}

.body-container--home-two .icon-box-style-two-one .radiant-icon-box-wrapper.icon-box-parent-style-two h4 {
margin-bottom: 12px;
margin-top: 0;
padding: 0;
}

.body-container--home-two .home-two-text-seven h2{color:#fff;}

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





@media all and (max-width: 464px) {
  .body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton2{margin-left:0; }
}

.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: #729F1E; */
  text-transform: capitalize;
}




/* Home FOUR css START */
.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;
    text-decoration: none;
}

.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-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: #729F1E !important; */
}


.body-container--home-two .row-depth-1.row-number-2.dnd-section .row-fluid {
  padding-top:0 !important;
  padding-bottom:0 !important;
  margin-top: -60px !important;
    position: absolute;
  left:0;
   right: 0;
}

.body-container--home-two .row-depth-1.row-number-2.dnd-section .row-fluid .span3.dnd-module{padding:0;margin:0; width:25%;}


.body-container--home-two .heading-inner span{float:left; margin-right:15px;}
.body-container--home-two .heading-inner span svg{fill:#729F1E;}

.body-container--home-two .heading-inner h4 {
  font-size:18px; 
  color: #b2b4b1;
}

.body-container--home-two .row-depth-1.row-number-4.dnd-section h2{color:#fff;}
/* .body-container--home-two .row-depth-1.row-number-4.dnd-section h2 span{color:#729F1E;} */
.body-container--home-two .row-depth-1.row-number-4.dnd-section .home4-about-detail{border-left:4px solid #729F1E; margin-bottom:30px; padding-left:35px;}
.body-container--home-two .row-depth-1.row-number-4.dnd-section .home4-about-detail h2{color:#fff; padding:0; margin:0;}

.body-container--home-two .radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-prefix ,
.body-container--home-two .radiant-counter-style-one .radiant-counter_number.radiant-counter-style-one_number.radiant-h2,
.body-container--home-two .radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-suffix{
    display: inline-block;
    font-size: 36px;
    color: #fff;
    line-height: 48px;
    text-align: left;
    font-weight: 600;
   
}
.body-container--home-two .row-depth-1.dnd-section .home4-text-one h2 span{color:#729F1E;}
/* .body-container--home-two .row-depth-1.dnd-section .home4-text-four h2 span{color:#729F1E;} */

.body-container--home-two .row-depth-1.dnd-section .home-text-three-one h2{color:#fff;}
.body-container--home-two .row-depth-1.dnd-section .home-text-three-one h2 span{color:#729F1E;}

.body-container--home-two .row-depth-1.dnd-section .home4-text-three h2{color:#1f2a58;}
.body-container--home-two .row-depth-1.dnd-section .home4-text-three h2 span{color:#729F1E;}

.body-container--home-two .row-depth-1.dnd-section .home4-text-two h2{color:#fff;}
/* .body-container--home-two .row-depth-1.dnd-section .home4-text-two h2 span{color:#729F1E;} */

.body-container--home-two .radiant-counter-style-one .ml-2{ color: #b2b4b1; font-weight:400;}


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


.body-container--home-two .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content p.radiant-icon-box-title{margin: 0 0 15px;}
.body-container--home-two .radiant-icon-box-wrapper.icon-box-parent-style-two{padding:0;}
.body-container--home-two .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content{margin-bottom:0;}

.body-container--home-two .radiant-icon-box-wrapper.icon-box-parent-style-two{}

.body-container--home-two .home4-text-contact p{margin:0; padding:0;}

.body-container--home-two .widget-type-cell.dnd-column{position:relative;}
.body-container--home-two .row-depth-1.row-number-14 .span6.dnd-column .row-depth-1.row-number-16.dnd-row{position:absolute; top: 56px; right: 50px;}
.body-container--home-two .span6.dnd-column .row-depth-1.row-number-12.dnd-row{position:absolute; bottom: 50px; left: -70px;}

.body-container--home-two .home4-text-five{background:#729F1E; width:208px; padding:40px; border-radius:5px; text-align:center; box-shadow: 0px 10px 20px 5px rgb(42 22 139 / 15%) !important;}
.body-container--home-two .home4-text-six{background:#729F1E; width:208px; padding:40px 30px; border-radius:5px; text-align:center; box-shadow: 0px 10px 20px 5px rgb(42 22 139 / 15%) !important;}

.body-container--home-two .home4-text-five h3{color:#fff; font-size: 60px; font-weight: 600; padding-bottom:10px !important;}
.body-container--home-two .home4-text-six h3{color:#fff; font-size: 50px; font-weight: 600; padding-bottom:10px !important;}

.body-container--home-two .home4-text-five p{color:#fff; margin:0; padding:0;}
.body-container--home-two .home4-text-six p{color:#fff; margin:0; padding:0;}

.body-container--home-two .dnd_area-column-42-padding .row-depth-1.row-number-3.dnd-row .row-fluid {border-radius:5px; background:none;}


.body-container--home-two .dnd_area-module-3-flexbox-positioning > div ul.rt-icnbx6 .rt-icon-box6 {
padding:30px 38px;
}

.body-container--home-two .widget-type-cell.dnd-column.dnd_area-column-17-padding {
margin-top:30px;
}

.body-container--home-two .successbox-sec3 {margin-bottom:16px;}

.body-container--home-two .widget-type-cell.dnd-column.dnd_area-column-42-margin p {
margin-bottom: 30px;
}

/*.body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-22.dnd-row {
border-top: 1px solid #e5e9e9;
margin-top: 15px;
padding-top: 38px;
}*/

.body-container--home-two .dnd_area-row-7-padding {
margin-top:-17px;
}

@media screen and (max-width: 1400px) {
    .body-container--home-two .span6.dnd-column .row-depth-1.row-number-12.dnd-row {
position: absolute;
bottom: 50px;
left: -5px;
  }
}

@media screen and (max-width: 1080px) {
.body-container--home-two .widget-type-cell.dnd-column.dnd_area-column-17-padding {
margin-top:0;
}
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
.dnd-section, .content-wrapper--vertical-spacing {
padding: 0px 15px !important;
}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main p {
margin-right: 0;
margin-bottom: 38px;
color: #fff;
}

  .body-container--home-two .row-depth-1.row-number-2.dnd-section .row-fluid{position:relative; margin:0;}
  .body-container--home-two .row-depth-1.row-number-4.dnd-section{margin:0 !important; padding-top:120px !important; padding-bottom:120px !important;}
   .body-container--home-two .row-depth-1.row-number-2.dnd-section {
    padding: 55px 15px 0 15px !important;
  }
  
  
}   
@media screen and (max-width: 767px) {
.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main p {
margin-right: 0;
margin-bottom: 38px;
color: #fff;
}
  .body-container--home-two .row-depth-1.row-number-2.dnd-section .row-fluid .span3.dnd-module{width:100%;}
  .body-container--home-two .row-depth-1.row-number-2.dnd-section .row-fluid{position:relative; margin:0!important;}
  .body-container--home-two .row-depth-1.row-number-4.dnd-section{margin:0 !important;padding-top:120px !important; padding-bottom:0 !important;}
  .body-container--home-two .span6.dnd-column .row-depth-1.row-number-12.dnd-row {
position: absolute;
bottom: 50px;
left: -10px;
}
  .body-container--home-two .dnd_area-column-17-padding{padding-left:0!important;}
   .body-container--home-two .row-depth-1.row-number-2.dnd-section {
    padding: 55px 15px 0 15px !important;
  }
  .body-container--home-two .row-depth-1.row-number-14 .span6.dnd-column .row-depth-1.row-number-16.dnd-row {
position: absolute;
top: 185px;
right: 0px;
}
  
  .body-container--home-two .dnd_area-row-3-padding {
padding-top: 55px !important;
padding-bottom: 60px !important;
}
  
  .body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton2{margin-top:30px;}
  
  .body-container--home-two.body-container--home-four .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton2{margin-top:0px;}
  
  
} 
/* Home FOUR 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.body-container--home-four .row-depth-1.row-number-1.dnd-section .banner-main {
    padding-top: 178px !important;
    padding-bottom: 180px !important;
  }

  
  .body-container--home-two .row-depth-1.row-number-2.dnd-section {
    padding: 55px 15px 0 15px !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-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 {
    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;
  }
  
  .body-container--home-two.body-container--home-four .row-depth-1.row-number-1.dnd-section .banner-main {
    padding-top: 160px !important;
    padding-bottom: 150px !important;
  }
  
}

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

  .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: 60px !important;
  }
}

/* HOMEPAGE TWO CSS ENDS */

/* ABOUT PAGE CSS STARTS */

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

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

.inner_banner_main{
    text-align: center;
}

.inner_banner_main h1.title {
    text-transform: capitalize;
    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: #729F1E; */
    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;
}

.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--home-four .client3 {
  border-top:none;
}

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



.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: #729F1E; */
    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 .dnd-section .dnd-column{position:relative;}
.body-container--about .about-2-sec2{position:absolute; top:0; padding:80px 40px 40px 40px; width:400px; }
.body-container--about .about-2-sec2 h3{color:#fff;}
.body-container--about .about-2-sec2 p{color:#ddf1e8;}

.body-container--about .radiant-icon-box-wrapper.icon-box-parent-style-two {
  padding: 0;
}

.body-container--about .radiant-icon-box-wrapper.icon-box-parent-style-two h4{margin-bottom: 12px;
margin-top: 0;
padding: 0;}


.body-container--about .about2-icon1 .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-icon svg {
    fill: #729F1E;
  stroke: #729F1E;
  width: 38px !important;
}

.body-container--about .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content {
width: 100%;
display: inline-block;
padding-left: 70px;
margin-bottom: 40px;
}
.body-container--about .about2-text-one ul{padding-bottom:15px; padding-left: 1.2rem !important; }
.body-container--about .about2-text-one ul li{margin-bottom:10px;}

.body-container--about .about-img-one img{width:100%; height:100%;}

.body-container--about .about2-sec7 .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content {
width: 100%;
display: inline-block;
padding-left: 35px;
margin-bottom: 10px;
}

.body-container--about .about-2-sec6 h2{color:#fff;}

.body-container--about .row-depth-1 .rt-about2 .rt-progressbar-left-label,
.body-container--about .row-depth-1 .rt-about2 .rt-progressbar-right-label{color:#fff; font-size:20px; padding-bottom:15px;}
.body-container--about .row-depth-1 .home-two-text-four h2{color:#fff;}
.body-container--about .row-depth-1 .home-two-text-four p{color:#b4b4b4;}
.body-container--about .row-depth-1 .rt-about2 .rt-progressbar-bar-wrap, .rt-progressbar-bar{height: 6px !important; margin-bottom:25px!important;}


.body-container--about .widget-type-cell.dnd-column{position:relative;}
.body-container--about .about2-sec9-img img{width:100%; height:100%;}
.body-container--about .dnd-column .row-depth-1.row-number-31.dnd-row{background:#fff; border-radius:5px;} 
.body-container--about .mission-sec2{padding:40px 40px 0 20px} 

.body-container--about .row-depth-1.row-number-33.dnd-row {position:absolute; top:40%; left:0; right:0;}

.body-container--about .mission-sec2 ul {
padding-bottom: 0;
padding-left: 1.2rem !important;
}
.body-container--about .mission-sec2 ul li {
margin-bottom: 10px;
}
/* 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;
  }
  


}

@media screen and (max-width: 767px) {
  .body-container--about .rt-service-box1{border-right:none;}
  
  .body-container--about .about-two-icon img{margin: 0 auto 30px auto;
text-align: center;
display: block;}
  
.body-container--about .dnd-section .dnd-column{padding-left:15 !important;}
  .body-container--about .about-2-sec2 {
width: 100%;
}
}

/* 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: #729F1E;
}

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

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

}

@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-10.dnd-section{padding-bottom:22px !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;
    color: #00174d;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
  }
  .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("//6327868.fs1.hubspotusercontent-na1.net/hubfs/6327868/raw_assets/public/Oliev%20Child%20-%20Innevo%202024/Oliev%20Child%20-%20Innevo%202024/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 #729F1E;
    border-radius: 4px;
    text-decoration:none;
  }
  
  .radiant-pricing-table.spotlight > .holder > .select-btn .btn {
    background: #729F1E !important;
    color:#fff !important;
    border: 1px solid #729F1E !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: #729F1E; */
  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: #729F1E;
    margin: 0;
    padding: 0;
}

.rt-content-box-wrapper h5{
  position:relative;
  padding-bottom: 20px;
}
.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: #729F1E;
  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 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 .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:#729F1E; */
}

.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 #729F1E;
  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-top: 60px !important;
  }
  
  .body-container--pricing .row-depth-1.row-number-2.dnd-section {
    padding-top: 55px !important;
    padding-bottom: 85px !important;
  }
  
  .body-container--pricing .row-depth-1.row-number-8.dnd-section {
  padding-top: 120px !important;
  padding-bottom: 100px !important;
  }
  
  .body-container--pricing .row-depth-1.row-number-16.dnd-section {
  padding-top: 120px !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:4px;
    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 #729F1E;
}

.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 #729F1E !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: #729F1E;
  font-size: 16px;
  padding: 7px 35px;
  font-weight: 500;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  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 #729F1E;
}

.contact-form-one .actions {
   /*display: inline-block;
  position: relative;
  z-index:2;
  overflow:hidden;
  border-radius: 3px;
  background:#729F1E;*/
  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 {
  background: #729F1E;
  color: #ffffff;
  border: 1px solid #729F1E;
  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 {
    text-align: left;
}
.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:117px !important;
  }
  
  .body-container--contact .row-depth-1.row-number-3.dnd-section {
    padding-top: 104px !important;
    padding-bottom:90px !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:65px;
}

@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: 120px !important;
  }
  
  .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: #234b8c;
    content: "";
    top: -18px;
    left: -7px;
    padding: 3px 0;
    z-index: 9;
    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: #729F1E;
}
.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: #729F1E;
    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: #729F1E;
}
.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:#729F1E; */
  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:#729F1E; */
  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: 1266px !important;
}
 
  .body-container--home-two .banner-main .container .row,
  .body-container--home .banner-main .container .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}


/* 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:10px;
  border: 1px rgb(255 255 255 / 20%) solid;
  color: #bfbfbf;
}

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


.footer-widget-section .dnd-section {
    padding: 100px 15px 85px 15px;
  }

.footer-copyright-section .dnd-section {
  padding: 20px 15px !important;
  border-top: 1px solid #2e3442;
  background-color: rgba(23,31,49,1.0);
  margin:0!important;
}

.footer-subscribe-form form input[type=submit]{
  display: inline-block;
  position: relative;
  z-index: 1;
/*   border-radius: 4px !important; */
  text-align: center;
-webkit-transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
-moz-transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  text-decoration:none;
  text-transform:capitalize;
  transition: 0.3s easy-in-out;
/*   background:#729F1E !important;
  color:#fff !important; */
}
.footer-subscribe-form .actions{border-radius: 4px !important;}
.hm3-radiant-footer{padding:110px 0 0 0;}
.hm3-radiant-footer h4{padding-bottom:20px;}

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

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

.hm2-radiant-footer .footer-widget-section .dnd-section {
  padding: 120px 15px 110px 15px !important;
}
 /* 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: none;
      line-height: 45px;
      letter-spacing: 0px;
      font-weight: 500;
      font-style: normal;
      color: #234B8C;
      font-size: 28px;
    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: 15px;
      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: none;
    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: #729F1E !important;
}
    /* Search Page End*/
  .widget-type-email_subscriptions_confirmation h2 {
      padding: 0;
      margin: 0;
  }
  div.systems-page .success{
        background: #f4f4f4;
      border-radius: 0px;
      width: 100%;
      height: auto;
      line-height: auto;
      border: 0;
      margin-bottom: 10px;
      padding: 12px 20px;
      color: #696969;
      transition: all .3s ease-in-out;
      -webkit-transition: all .3s ease-in-out;
      border: 1px solid #d0dcec;
  }

  div .systems-page {
      padding: 205px 0 110px 0;
  }

  .hs-content-id-0 div .systems-page {
    padding: 120px 0 120px 0;
  }

  .hs-content-id-0 .right-sidebar .blog-post {
  padding:120px 0 120px 0;
  }

@media screen and (min-width: 768px) and (max-width: 991px) {
  div .systems-page {
      padding: 162px 0 110px 0;
    }
  
  .hs-content-id-0 .right-sidebar .blog-post {
  padding:0px 0 120px 0;
  }
}

  @media screen and (max-width: 767px) {
    div .systems-page {
      padding: 142px 0 90px 0;
    }
    
    .hs-content-id-0 div .systems-page {
    padding: 100px 0 100px 0;
    }
     
    .hs-content-id-0 .right-sidebar .blog-post {
    padding:0px 0 100px 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: #729F1E;
    border-radius: 10px;
    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 #729F1E;
  }

.systems-page form input[type='submit']:hover{
  background: #729F1E;
  color: #ffffff;
  border: 1px solid #729F1E;
  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 #729F1E;
     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 #729F1E;
}


  #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: #f4f4f4;
      border-radius: 10px;
      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 #729F1E;
}

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

@media screen and (max-width: 991px) {
  .rt-search-results {
    padding-right: 0px !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: #729F1E;
    color: #fff;
    padding: 7px 35px;
    border: 0px none;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    text-transform: none;
    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: #729F1E;
}
.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 #729F1E;
}

.error-page a.button {
    /*padding-top: 16px;
    padding-right: 50px;
    padding-bottom: 16px;
    padding-left: 50px;*/
  background-color: #729F1E;
    border-radius: 4px;
    color: #fff;
    position: relative;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    text-align: center;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    text-decoration: none;
}

.error-page p {
  margin-bottom:0;
}

.error-page {
  padding: 222px 0 120px 0 !important;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .error-page {
  padding: 175px 0 120px 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .error-page {
  padding: 155px 0 100px 0 !important;
  }
}

/*.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: 4px;
  background: #729F1E;
  -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: #729F1E;
    border: 1px solid #729F1E;
    border-radius: 4px;
    color: #fff;
    padding: 9px 53px;
  width: 100%;
  -webkit-transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
}

.right-sidebar .hs-form-field {
    margin-bottom: 0rem;
}


.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: 10px;
    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 #729F1E;
}

.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 #729F1E;
    border-radius: 100%;
    padding: 10px;
}

.rt-image-box:hover img {
    -webkit-transform: scale(1.06) translateX(2%);
    transform: scale(1.06) translateX(2%);
    transition: transform 1s cubic-bezier(.33,.02,0,.93);
}

.random-post-wrapper>.random-post-data {
    padding: 0;
    margin-top: 0;
}

.random-post-wrapper>.random-post-data>.title {
    margin-bottom: 0;
}
.rt-image-box h3 {
    color: #000!important;
    text-align: center;
  padding-bottom: 0;
}

#radiantthemes_image_box_widget-2 .random-post-wrapper>.random-post-data p {
    color: #696969!important;
    text-align: center;
}

.random-post-wrapper>.random-post-data>.random-post-excerpt {
    margin-bottom: 0!important;
    color: #fff;
    margin-top: 15px;
}

.right-sidebar .widget-area>section ul.social {
    margin: 15px 0 0 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
    display: block;
}

.right-sidebar .widget-area>section ul.social li {
    margin: 0 3px;
    padding: 0;
    text-align: center;
    display: inline-block;
}

.right-sidebar .widget-area>section ul.social li a {
    color: #fff;
  text-decoration:none;
}

.right-sidebar .widget-area>section ul.social li.facebook {
    background: #3a599a;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    text-align: center;
    color: #fff;
    padding: 5px;
}

.right-sidebar .widget-area>section ul.social li.twitter {
    background: #1ca1f0;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    text-align: center;
    color: #fff;
    padding: 5px;
}

.right-sidebar .widget-area>section ul.social li.linkedin {
    background: #0078b5;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    text-align: center;
    color: #fff;
    padding: 5px;
}

.right-sidebar .widget-area>section ul.social li.pinterest {
    background: #cb2026;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    text-align: center;
    color: #fff;
    padding: 5px;
}


.blog-list-tags a,
.right-sidebar .widget.widget_tags ul li a {
    position: relative;
    display: inline-block;
    color: #545454;
    transition: all 0.12s ease-in-out;
    -webkit-transition: all 0.12s ease-in-out;
}

.blog-list-tags a:hover,
.right-sidebar .widget.widget_tags ul li a:hover {
    color: #729F1E !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-arrow-circle-right {
  color: #729F1E;
  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: 43px;
  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: #729F1E;
}
.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: #729F1E;
}
.right-sidebar button:hover {
    background: #729F1E;
}
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: 0px;
}

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

.nav-item.dropdown > .navbar-nav .navbar-nav.level-3 {
  top:0 !important;
  left:60%;
}

.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: #729F1E;
    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';
    color:#729F1E;
}

.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: #729F1E; */
}
 

/* DEFAULT THEME CSS FIXING END */


/*======================= HOME THREE CSS ==========================*/
.dnd-section, .content-wrapper--vertical-spacing {
padding: 0px;
}
.header .header__container .home-button-one a.customizable-button {
  padding: 11px 20px !important;
  float:right;
  /*margin-right:-6px;*/
  /*margin-right:-15px;*/
  margin-top: 6px;
}

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

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

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

.body-container--home-three .text-center.rt-hm3-heading{padding:0 20%;}

.radiant-top-header .contact-mail .radiant-icon-box-content h4.radiant-icon-box-title,
.radiant-top-header .contact-phone .radiant-icon-box-content h4.radiant-icon-box-title{color:#fff; font-size:13px;} 

.body-wrapper .footer-content p, .body-wrapper .footer-address p{color: #b2b4b1 !important;}
.custom-footer .footer-menu ul li a{color: #b2b4b1 !important;}

.custom-footer h4 {color: #fff; padding-bottom:25px;}
.custom-footer ul {list-style-type:none; padding-left:0;}
.custom-footer ul li{color: #b2b4b1; margin:0;}
.custom-footer .footer-address p.foot-contact {padding-bottom:10px!important; font-size:20px; color:#fff !important;}


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

.body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main h1 {
    color: #fff;
    margin-bottom: 18px;
    text-align: left;
}

.body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main .banner-inner {
    display: grid
}

.body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton {
    text-align: center;
    text-decoration: none;
    transition: transform .6s .125s cubic-bezier(.1, .75, .25, 1);
    display: table;
    margin: 0 auto;
}

.body-container--home-three .row-depth-1 .rt-client-success{padding-top:40px;}

.body-container--home-three .row-depth-1 .home-text-three{padding-top:40px; padding-right:60px;}

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

.body-container--home-three .radiant-icon-box2-content h4.radiant-icon-box2-title {
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
  padding-bottom:20px;
}

.body-container--home-three .radiant-icon-box2-content h4.radiant-icon-box2-title span {
    display: inline-flex;
    float: left;
    margin-right: 18px;
}

.body-container--home-three .radiant-icon-box2-content .radiant-icon-box-description {
    display: block;
    width: 100%;
    float: left;
}


.body-container--home-three .home-text-contact span p{padding:0; margin:0;}

.body-container--home-three .row-depth-1.row-number-19{background:#171f31;}
.body-container--home-three .row-depth-1.row-number-19 .widget-type-cell.dnd-column{position:relative; }
.body-container--home-three .row-depth-1.row-number-21{position:absolute; top:50%; left:0; right:0; }


.body-container--home-three .row-depth-1 .home-two-text-four{padding:110px 250px 0 53px;}

/* Progressbar */
.body-container--home-three .row-depth-1 .rt-home-three-text{padding:0 250px 0 53px;}
.body-container--home-three .row-depth-1 .rt-home-three-text .rt-progressbar-left-label,
.body-container--home-three .row-depth-1 .rt-home-three-text .rt-progressbar-right-label{color:#fff; font-size:20px; padding-bottom:15px;}
.body-container--home-three .row-depth-1 .home-two-text-four h2{color:#fff;}
.body-container--home-three .row-depth-1 .home-two-text-four p{color:#b4b4b4;}
.body-container--home-three .row-depth-1 .rt-home-three-text .rt-progressbar-bar-wrap, .rt-progressbar-bar{height: 6px !important; margin-bottom:25px!important;}

.body-container--home-three .row-depth-1 .rt-home-three-text .rt-progressbar-bar-wrap {
background-color: #323743 !important; box-shadow:none !important;
}

.body-container--home-three .radiant-icon-box-wrapper.icon-box-parent-style-three {
    background: transparent;
    box-shadow: none;
    margin:0px 0 30px 0;
  padding:30px;
  text-align: center;
  border-radius:8px;
  width:100%;
  background: #fff;
  box-shadow: 0px 12px 33px 0px rgb(14 49 178 / 10%);
  transition: all .3s ease-in-out;
-webkit-transition: all .3s ease-in-out;
}

.body-container--home-three .radiant-icon-box-wrapper.icon-box-parent-style-three:hover {
  background: #17bd73;
  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;
}



.body-container--home-three .radiant-icon-box-wrapper.icon-box-parent-style-three .radiant-icon-box-icon {
    
    display: inline-block;
    vertical-align: top;
  margin-top:0;
  margin-bottom:30px;
}

.body-container--home-three .radiant-icon-box-wrapper.icon-box-parent-style-three:hover .radiant-icon-box-content h4.radiant-icon-box-title{color:#fff;}
.body-container--home-three .radiant-icon-box-wrapper.icon-box-parent-style-three:hover .radiant-icon-box-content .radiant-icon-box-description{color:#fff;}

.body-container--home-three .radiant-icon-box-wrapper.icon-box-parent-style-three:hover .radiant-icon-box-icon svg{
filter: brightness(0) invert(1) !important;
  transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}


.showcase-menu-social svg:hover {
  background-color: #C37500;
  opacity:0.7 !important;
  filter:alpha(opacity=70) !important; /* For IE8 and earlier */
  box-shadow: 0 0 0px #000000 !important;
}

.body-container--home-three .radiant-icon-box-wrapper.icon-box-parent-style-three h4 {
  margin-bottom: 15px;
    margin-top: 0;
    padding: 0;
}

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

.body-container--home-three .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;
}

.body-container--home-three .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content {
    width: 100%;
    display: inline-block;
  padding-left: 40px;
  margin-bottom:0;
}

.body-container--home-three .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content p.radiant-icon-box-title{margin:0; padding:0;}

.body-container--home-three .radiant-icon-box-wrapper.icon-box-parent-style-two h4 {
  margin-bottom: 12px;
    margin-top: 0;
    padding: 0;
}

.body-container--home-three .home-text-three-one .text-center h2{color:#fff; padding:0 15% 20px 15%;}

.body-container--home-three .successbox-sec3 {margin-bottom: 22px;}


.body-container--home-three .row-depth-1.row-number-29.dnd-section {
padding-top:60px !important;
padding-bottom:60px !important;
}
.body-container--home-three .row-depth-1.row-number-29.dnd-section .span5 {
padding-top:55px;
}

.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-13 {
padding-top:10px;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-9.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content {
padding-left: 60px;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-9.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-icon {
margin-top: 5px;
}

.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-12.dnd-row h4 {
margin-bottom:12px;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-12.dnd-row p {
margin-bottom:22px;
}
.body-container--home-three .radiant-icon-box-wrapper.icon-box-parent-style-two {
padding: 0 0 10px 0;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-29.dnd_area-row-6-padding.dnd-section .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content {
padding-left: 25px;
}

.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-10.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content {
padding-left: 60px;
}

.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-10.dnd-row {
margin-top:14px;
}


.body-container--home-three .row-depth-1.row-number-13.dnd-row .span1 svg {
margin-left: -22px;
}

@media screen and (max-width: 1366px) {
.body-container--home-three .row-depth-1.row-number-19 .span6 .row-depth-1.row-number-20 {
padding-top:60px;
}

.body-container--home-three .row-depth-1.row-number-19 {
padding-top:100px !important;
padding-bottom:120px !important;
}

.body-container--home-three .row-depth-1 .home-two-text-four {
padding:45px 0px 0 53px;
}

.body-container--home-three .row-depth-1.row-number-11 {
padding-top:65px !important;
padding-bottom:60px !important;
}
}



@media screen and (max-width: 1212px) {
.body-container--home-three .row-depth-1.row-number-19 {
padding-top: 100px !important;
padding-bottom: 100px !important;
}
}

@media screen and (min-width: 768px) and (max-width: 1150px) {
.body-container--home-three .row-depth-1.row-number-13.dnd-row .span5,
.body-container--home-three .row-depth-1.row-number-13.dnd-row .span1 {
width: 100%;
margin-left: 0;
margin-top: 10px;
}
}

@media screen and (max-width: 1150px) {
.body-container--home-three .row-depth-1.row-number-13.dnd-row .span1 svg {
margin-left: 0;
}

.body-container--home-three .row-depth-1.row-number-29.dnd-section .span5 {
padding-top:0;
}

.body-container--home-three .row-depth-1 .home-text-three {
padding-top:0;
}
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
.body-container--home-three .row-depth-1 .rt-home-three-text {
padding: 0 20px 0 53px;
}
}

@media screen and (max-width: 767px) {
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-18.dnd-row {
padding-top:35px;
}

.body-container--home-three .row-depth-1 .home-two-text-four {
padding: 30px 0px 0 0;
}

.body-container--home-three .row-depth-1 .rt-home-three-text {
padding: 0 0 0 0;
}

.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-26.dnd-section.dnd_area-row-5-padding {
padding-top:30px !important;
padding-bottom:0 !important;
}

.body-container--home-three .row-depth-1.row-number-19 {
padding-top: 80px !important;
padding-bottom: 75px !important;
}

.body-container--home-three .row-depth-1.row-number-11 {
padding-top: 15px !important;
padding-bottom: 40px !important;
}

.body-container--home-three .row-depth-1.row-number-2 {
padding-top:0px !important;
padding-bottom:0px !important;
}

.body-container--home-three .row-depth-1.row-number-6 {
padding-top:95px !important;
padding-bottom:55px !important;
}

.body-container--home-three .row-depth-1.row-number-1 {
padding-bottom: 90px !important;
}

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

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

.body-container--home-three .row-depth-1.row-number-39.dnd-section {
padding-top: 30px !important;
padding-bottom: 82px !important;
}
}


@media screen and (min-width: 768px) and (max-width: 1024px) {
.body-container--home-three .row-depth-1.row-number-6.dnd-section .span6 {
width:100%;
margin-left:0;
}
}

@media screen and (min-width: 768px) and (max-width: 1150px) {
.body-container--home-three .row-depth-1.row-number-13.dnd-row .span4,
.body-container--home-three .row-depth-1.row-number-13.dnd-row .span2,
.body-container--home-three .row-depth-1.row-number-13.dnd-row .span6 {
width:100%;
margin-left:0;
margin-top:10px;
}
}

.home-counter-one .radiant-counter .radiant-counter-style-one{text-align:center;}
.home-counter-one .radiant-counter .radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-prefix{
    display: inline-block;
    font-size: 36px;
    color: #fff ;
    line-height: 48px;
    text-align: left;
    font-weight: 500;
   
}

.home-counter-one .radiant-counter .radiant-counter-style-one .radiant-counter_number.radiant-counter-style-one_number.radiant-h2 {
display: inline-block;
font-size: 36px;
color: #fff;
line-height: 48px;
text-align: left;
font-weight: 500;
}

.home-counter-one .radiant-counter .radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-suffix {
display: inline-block;
font-size: 36px;
color: #fff;
line-height: 48px;
text-align: left;
font-weight: 500;
}

.home-counter-one .radiant-counter .radiant-counter-style-one .ml-2 {
color: #fff;
}

/*====== Blog Section ============*/
.body-container--home-three .row-depth-1 h2.recent-blog-title{text-align:center;}
.body-container--home-three .recent-blogs .blog-item>.holder .category-display{margin-bottom:5px;}
.body-container--home-three .recent-blogs .blog-item>.holder .category-display ul{list-style-type:none; padding-left:0; margin:0;}
.body-container--home-three .recent-blogs .blog-item>.holder .category-display ul li{list-style-type:none; position: relative; display:inline-block;}
.body-container--home-three .recent-blogs .blog-item>.holder .category-display ul li a{; text-decoration:none;}
/* .body-container--home-three .recent-blogs .blog-item>.holder .category-display ul li a:before{
content: '';
width: 3px;
height: 3px;
border-radius: 50%;
top: 50% !important;
position: absolute;
left: 0;
-webkit-transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
background: #729F1E;
} */

.body-container--home-three .recent-blogs .blog-item>.holder>.data h4 {
margin-bottom: 5px;
padding: 0;
}

.body-container--home-three .recent-blogs .blog-item>.holder>.data h4 a{text-decoration:none;}

.body-container--home-three .recent-blogs .blog-item>.holder>.data ul.post-meta li a{font-size:15px; color:#969696;}

.body-container--home-three .recent-blogs .blog-item>.holder>.pic{border-radius:5px;}

.body-container--home-three .dnd_area-row-6-padding {
padding-top: 30px !important;
padding-bottom: 60px !important;
}
.hm5-radiant-footer .row-depth-1.footer-row-0-background-image.dnd-section{padding:200px 15px 55px 15px!important;}
.footer.hm5-radiant-footer{background:transparent;}

/*====== Footer Section ============*/

.swiper-wrapper{margin:0 0 50px 0;}

/*====== Home5 CSS Starts ============*/
.body-container--home-five .banner-main{padding:150px 0;}
.body-container--home-five .banner-main .big_size_text {
        color: transparent;
        -webkit-text-stroke-width: 1px;
       -webkit-text-stroke-color:#dcf0fa;
    font-size: 90px;
    }
.body-container--home-five .banner-main .bellow_big_size_text{text-transform:uppercase; color:#fff; padding-bottom:20px;}
.body-container--home-five .banner-main h1{color:#fff;}
.body-container--home-five .banner-main p{color:#fff;}
.body-container--home-five .banner-main .banner-botton{float:left;}
.body-container--home-five .dnd-section .home5-content-one{margin-left:65px;}
.body-container--home-five .radiant-icon-box-wrapper.icon-box-parent-style-two h4 {
  margin-bottom: 10px;
    margin-top: 0;
    padding: 0;
}
.body-container--home-five .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content{margin:-5px 0 0 0;padding:0 0 0 50px;}
.body-container--home-five .rt-client-success h4{text-transform:uppercase; color:#729F1E; font-size:17px; line-height:27px;padding-bottom:20px;}
.body-container--home-five .home-5-big-text p{text-transform:uppercase; color:#729F1E; padding-bottom:20px; margin-bottom:0;}
.body-container--home-five .home5-heading-text5 h2{color:#fff;}
.body-container--home-five .home5-text-three h4{text-transform:uppercase; color:#729F1E; font-size:17px; line-height:27px;padding-bottom:20px;}
.body-container--home-five .home5-two-text-four h4{text-transform:uppercase; color:#729F1E; font-size:17px; line-height:27px;padding-bottom:20px;}

.body-container--home-five .client2 {width:100%; overflow:hidden;}
.body-container--home-five .client2 .clients-item{float:left; display:inline-flex;}
.body-container--home-five .client2 .clients-item .holder{text-align:center; margin:0 auto;}

.body-container--home-five .home5-two-text-four h4{text-transform:uppercase; color:#729F1E; font-size:17px; line-height:27px;padding-bottom:20px;}

.body-container--home-five .home5-image-background img{float:right;}

.body-container--home-five .home5-service-text{
  text-align:center;
        color: transparent;
        -webkit-text-stroke-width: 1px;
       -webkit-text-stroke-color:#417ebe;
    font-size: 60px;
    }

/*.body-container--home-five .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-icon svg{width:100%;}*/

.body-container--home-five .hm5-icon-box-style-two .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content{padding:0 0 0 80px;}

.body-container--home-five .home5-proj-details{background:#234b8c; padding:40px; width:480px; float: right; border-radius:8px;
    margin: -120px 0 0 0;}

.body-container--home-five .home5-proj-details .hs_cos_wrapper .rt-proj-no{float:left; width:30%; padding-bottom:10px;
  font-size: 36px; line-height: 48px;  font-weight:500;  color: #729F1E;}
.body-container--home-five .home5-proj-details .hs_cos_wrapper .rt-proj-desc{float:left;  color:#fff; width:70%; padding-bottom:10px;
  font-size: 20px; line-height: 48px;}
.body-container--home-five .home5-proj-details .hs_cos_wrapper p.rt-proj-content{color:#b2b4b1; overflow:hidden;
  display:block; width: 100%; margin: 0;}


.hm5-radiant-footer .footer-copyright-section{background-color: rgba(23,31,49,1.0);}
.hm5-radiant-footer .footer-copyright-section p{ 
  color: #fff;
  padding: 0;
    margin: 0;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 13px;
    line-height: 30px;
    text-align: center;}
.hm5-radiant-footer h4{padding-bottom: 20px}
.hm3-radiant-footer p.foot-contact,
.hm5-radiant-footer p.foot-contact{font-size:20px; padding:0; color:#fff !important;}

/*====== Home5 CSS Ends ============*/

/*====== Responsive Section ============*/

@media all and (min-width: 1025px)and (max-width: 1170px) {
  .header .content-wrapper {
  padding: 0 15px;
  }
}

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

@media all and (min-width: 768px)and (max-width: 991px) {
  .header .header__container .home-button-one a.customizable-button{display:none;}
  .body-container--home-three .text-center.rt-hm3-heading {
  padding: 0 15px;
  }
}

@media all and (min-width: 768px)and (max-width: 1024px) {
  .dnd-section, .content-wrapper--vertical-spacing {
padding-left: 15px!important;
    padding-right: 15px!important;
}
  .header .content-wrapper {
  padding: 6px 15px 0px 15px;
}
  
  .body-container--home-three .row-depth-1 .home-two-text-four {
padding: 70px 0 0 0;
}
  .body-container--home-three .row-depth-1 .rt-home-three-text{padding:0;}
  .rt-cta-area .img-area img{width:100%; height:100%;}
  .body-container--home-five .dnd-section .dnd-module{
    width: 100%!important;
    padding:0;
    margin:0;
}
  .body-container--home-five .dnd_area-row-0-padding{padding-bottom:100px!important;}
  
  .body-container--home-five .home5-proj-details span.rt-proj-no{ width:100%!important; padding-bottom:10px;}
.body-container--home-five .home5-proj-details span.rt-proj-desc{ width:100%!important; padding-bottom:10px;}
  
  .body-container--home-five .dnd-column{width:100%; margin-left:0; margin-right:0; padding-left:0 !important; padding-right:0 !important;}

  .body-container--home-five .dnd-section.dnd_area-row-4-padding{padding-top:90px !important;}
  .rt-service-box1{margin-bottom:30px;}
  .home5-cta {
    position: relative;
    margin: -160px 0 0 0 !important;
}
  
  .body-container--home-five .dnd_area-module-15-flexbox-positioning > div, 
  .body-container--home-five .dnd_area-module-16-flexbox-positioning > div, 
  .body-container--home-five .dnd_area-module-17-flexbox-positioning > div,
  .body-container--home-five .dnd_area-module-18-flexbox-positioning > div{width:100%;}
}

@media all and (min-width: 992px)and (max-width: 1024px) {
  .body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main {
    padding-top: 240px;
    padding-bottom: 120px;
  }
}

@media all and (min-width: 768px)and (max-width: 991px) {
  .body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main {
    padding-top: 172px;
    padding-bottom: 120px;
  }
}

@media all and (max-width: 767px) {
  .body-container--home-three .row-depth-1 .contact-img, .body-container--home-three .row-depth-1 .home-two-img-two{margin-top:30px;}
  
  .body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main {
    padding-top: 152px;
    padding-bottom: 100px;
}
  
  .body-container--home-three .home-button-one {margin-bottom:30px;}
  .dnd-section, .content-wrapper--vertical-spacing {
padding-left: 15px!important;
    padding-right: 15px!important;
}
  .header .content-wrapper {
  padding: 6px 15px 0px 15px;
}
.header .header__container .home-button-one a.customizable-button {display:none;}
.body-container--home-three .radiant-icon-box-wrapper.icon-box-parent-style-three {
    padding:40px 20px 35px 20px;
    width:100%;
  }
  .body-container--home-three .text-center.rt-hm3-heading {
padding: 0 15px;
}
  
.body-container--home-three .row-depth-1 .home-text-three{padding-right: 0; padding-top:0;}
  
.body-container--home-three .row-depth-1 .dnd_area-module-4-flexbox-positioning > div,
.body-container--home-three .row-depth-1 .dnd_area-module-5-flexbox-positioning > div{margin-bottom: 30px;}
  
  .body-container--home-three .row-depth-1.row-number-19 {
background: #171f31;
    padding-bottom:95px !important;
}

  .body-container--home-three .row-depth-1 .rt-home-three-text {
padding: 0;
}
.body-container--home-three .home-text-three-one .text-center h2 {
color: #fff;
padding: 0 0 20px 0;
}
  
 .body-container--home-three .radiant-icon-box2-content h4.radiant-icon-box2-title {
justify-content: left !important;
}
  
  .body-container--home-five .client2 .clients-item{display:block; float:none;}
  
    .rt-cta-area .img-area img{width:100%; height:100%;}
  .body-container--home-five .dnd-section .dnd-module{
    width: 100%!important;
    padding:0;
    margin:0;
}
  .body-container--home-five .dnd_area-row-0-padding{padding-bottom:37px!important;}
  
  .body-container--home-five .home5-proj-details span.rt-proj-no{ width:100%!important; padding-bottom:10px;}
.body-container--home-five .home5-proj-details span.rt-proj-desc{ width:100%!important; padding-bottom:10px;}
  
  .body-container--home-five .dnd-column{width:100%; margin-left:0; margin-right:0; padding-left:0 !important; padding-right:0 !important;}

  .body-container--home-five .dnd-section.dnd_area-row-4-padding{padding-top:90px !important;}
  .rt-service-box1{margin-bottom:30px;}
  .home5-cta {
    position: relative;
    margin: -160px 0 0 0 !important;
}
  .rt-client-success{padding-top:30px;}
  .body-container--home-five .banner-main .big_size_text,
  .body-container--home-five .home5-service-text {font-size:36px;}
  .body-container--home-five .home5-proj-details{width:100%; float:none; margin:0 0 30px 0;}
  
  .body-container--home-five .dnd_area-row-6-padding{padding-bottom:0 !important;}
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .body-container--home-five .banner-main .big_size_text {
    font-size:40px;
  }
}

/* SERVICE TWO CSS STARTS */

.body-container--service-2 .row-number-4.dnd_area-row-2-padding.dnd-section .span4 img {
width:100%;
}
.body-container--service-2 .row-number-4.dnd_area-row-2-padding.dnd-section .span4 .service2-sec1 {
background:#fff;
padding:22px 30px;
}
.body-container--service-2 .row-number-4.dnd_area-row-2-padding.dnd-section .span4 {
border-top:2px solid #fff;
transition:all 0.3s ease;
}
.body-container--service-2 .row-number-4.dnd_area-row-2-padding.dnd-section .span4:hover {
border-top:2px solid #729F1E;
}
.body-container--service-2 .row-number-4.dnd_area-row-2-padding.dnd-section .span4 .service2-sec1 p {
margin-bottom:5px;
}
.body-container--service-2 .row-depth-1.row-number-1.dnd-section,
.body-container--service-2 .row-depth-1.row-number-2.dnd-section,
.body-container--service-2 .row-depth-1.row-number-4.dnd-section,
.body-container--service-2 .row-depth-1.row-number-11.dnd-section {
background:#F1F3F3;
}
.body-container--service-2 .row-depth-1 .rt-about2 .rt-progressbar-left-label,
.body-container--service-2 .row-depth-1 .rt-about2 .rt-progressbar-right-label {
color: #00174d;
font-size: 20px;
padding-bottom: 15px;
}
.body-container--service-2 .row-depth-1 .rt-about2 .rt-progressbar-bar-wrap {
background:#fff !important;
box-shadow:none;
height: 6px !important;
}
.body-container--service-2 .row-depth-1 .rt-about2 .rt-progressbar-bar-wrap .rt-progressbar-bar {
box-shadow:none;
}
.body-container--service-2 .row-fluid-wrapper.row-depth-1.row-number-21.dnd-row .span3 {
border-bottom: 1px solid #d9d9d9;
width:25%;
margin-left:0;
}
.body-container--service-2 .row-fluid-wrapper.row-depth-1.row-number-22.dnd-row .span3 {
width:25%;
margin-left:0;
}
.body-container--service-2 .rt-service-box1 p {
padding-bottom: 0;
margin-bottom:0;
padding: 0px 20px;
}
.body-container--service-2 .rt-service-box1 h4 {
color:#fff;
}
.body-container--service-2 .rt-service-box1 {
padding: 40px 0px;
}
.body-container--service-2 .row-depth-1.row-number-19.dnd-section h2 {
color:#fff;
margin-bottom: 8px;
}
.body-container--service-2 .dnd_area-module-27-flexbox-positioning.dnd-module .rt-service-box1,
.body-container--service-2 .dnd_area-module-31-flexbox-positioning.dnd-module .rt-service-box1 {
border-right: none;
}
.body-container--service-2 .row-depth-1.row-number-23.dnd-section ul {
padding-left: 1rem;
}
.body-container--service-2 .row-depth-1.row-number-23.dnd-section ul li {
margin-bottom:10px;
}
.body-container--service-2 .row-depth-1.row-number-23.dnd-section ul li:last-child {
margin-bottom:32px;
}
.body-container--service-2 .row-depth-1.row-number-27.dnd-section .dnd_area-column-37-background-image {
border-radius:5px;
}
.body-container--service-2 .row-depth-1.row-number-27.dnd-section .dnd_area-column-37-row-0-padding {
padding-bottom:0px !important;
padding-top:100px !important;
}
.body-container--service-2 .row-depth-1.row-number-27.dnd-section .dnd_area-column-37-background-image h2,
.body-container--service-2 .row-depth-1.row-number-27.dnd-section .dnd_area-column-37-background-image p,
.body-container--service-2 .row-depth-1.row-number-27.dnd-section .dnd_area-column-37-background-image h4 {
color:#fff;
padding-left:20px;
}
.body-container--service-2 .row-depth-1.row-number-27.dnd-section .dnd_area-column-37-background-image h2 {
padding-bottom:0;
margin-bottom:0;
}
.body-container--service-2 .row-depth-1.row-number-27.dnd-section .dnd_area-column-37-background-image p {
padding-bottom:0;
margin-bottom:0;
}
.body-container--service-2 .row-depth-1.row-number-27.dnd-section .dnd_area-column-37-background-image h4 {
padding-bottom:0;
margin-bottom:0;
}
.body-container--service-2 .row-depth-1.row-number-27.dnd-section .dnd_area-column-37-background-image .span6 .service2-sec9 {
border-left:2px solid #729F1E;
margin-top: -50px;
}
.body-container--service-2 .row-depth-1.row-number-27.dnd-section .dnd_area-column-37-background-image .span6 .service2-sec10 .button.customizable-button {
margin-top: 116px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
.body-container--service-2 .rt-service-box1 {
margin-bottom:0;
}
}
@media screen and (min-width: 768px) and (max-width: 843px) {
.body-container--service-2 .rt-service-box1 h4 {
padding-left:15px;
padding-right:15px;
}
}
/*@media screen and (min-width: 768px) and (max-width: 992px) {
.body-container--service-2 .row-fluid-wrapper.row-depth-1.row-number-21.dnd-row .span3,
.body-container--service-2 .row-fluid-wrapper.row-depth-1.row-number-21.dnd-row .span3 {
width:50%;
}
}*/
@media screen and (max-width: 767px) {
.body-container--service-2 .row-number-4.dnd_area-row-2-padding.dnd-section .span4 {
margin-bottom:30px;
}
.body-container--service-2 .row-depth-1.row-number-4.dnd-section {
padding-bottom:60px !important;
}
.body-container--service-2 .row-depth-1.row-number-2.dnd-section {
padding-top:90px !important;
}
.body-container--service-2 .row-depth-1.row-number-16.dnd-section,
.body-container--service-2 .row-depth-1.row-number-19.dnd-section,
.body-container--service-2 .row-depth-1.row-number-23.dnd-section {
padding-top: 90px !important;
padding-bottom: 100px !important;
}
.body-container--service-2 .row-fluid-wrapper.row-depth-1.row-number-21.dnd-row .span3,
.body-container--service-2 .row-fluid-wrapper.row-depth-1.row-number-22.dnd-row .span3 {
width:100%;
}
.body-container--service-2 .rt-service-box1 {
margin-bottom:0;
}
.body-container--service-2 .rt-service-box1 {
border:none;
}
.body-container--service-2 .row-fluid-wrapper.row-depth-1.row-number-22.dnd-row .span3 {
border-bottom: 1px solid #d9d9d9;
}
.body-container--service-2 .row-depth-1.row-number-19.dnd-section h2 {
padding-bottom:0 !important;
margin-bottom:0 !important;
}
.body-container--service-2 .row-depth-1.row-number-23.dnd-section img {
padding-top:40px;
}
.body-container--service-2 .row-depth-1.row-number-27.dnd-section .dnd_area-column-37-row-0-padding {
padding-left:20px !important;
}
.body-container--service-2 .row-depth-1.row-number-27.dnd-section .dnd_area-column-37-background-image .span6 .service2-sec9 {
margin-top:0;
}
.body-container--service-2 .row-depth-1.row-number-29.dnd-section {
padding-top: 60px !important;
padding-bottom: 90px !important;
}
.body-container--service-2 .inner_banner_main h1.title {
padding-left:10px;
padding-right:10px;
}

.body-container--service-2 .row-fluid-wrapper.row-depth-1.row-number-21.dnd-row .span3 .hs_cos_wrapper.hs_cos_wrapper_widget,
.body-container--service-2 .row-fluid-wrapper.row-depth-1.row-number-22.dnd-row .span3 .hs_cos_wrapper.hs_cos_wrapper_widget {
width:100%;
}
  .body-container--service-2 .home4-img-four img {
width:100%;
}
  
}

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

/* SERVICE TWO CSS ENDS */


/* WHY CHOOSE US CSS STARTS */
.body-container--customer .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content {
width: 100%;
display: inline-block;
padding-left: 40px;
margin-bottom: 0;
}

.body-container--customer .radiant-icon-box-wrapper.icon-box-parent-style-two h4 {
margin-bottom: 12px;
margin-top: 0;
padding: 0;
}

/* WHY CHOOSE US CSS ENDS */

/* ABOUT-2 CSS STARTS */
.body-container--about .team {
margin-left:0;
margin-right:0;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
.body-container--about .row-depth-1.row-number-26.dnd-section .row-fluid-wrapper.row-depth-1.row-number-31.dnd-row .span5 {
display:none;
}

.body-container--about .row-depth-1.row-number-26.dnd-section .row-fluid-wrapper.row-depth-1.row-number-31.dnd-row .span7 {
width:100%;
margin-left:0;
}

.body-container--about .mission-sec2 {
padding:30px 40px 15px 40px;
}
}

@media screen and (max-width: 767px) {
.body-container--about .row-depth-1.row-number-2.dnd-section {
padding-top: 95px !important;
padding-bottom: 0px !important;
}

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

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

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

.body-container--about .row-depth-1.row-number-21.dnd-section {
padding-top: 60px !important;
}

.body-container--about .row-depth-1.row-number-17.dnd-section .dnd_area-column-27-padding {
padding-top: 30px !important;
}

.body-container--about .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content {
margin-bottom:20px;
}

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

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



.body-container--about .mission-sec2 {
padding:30px 40px 15px 40px;
}
}
/* ABOUT-2 CSS ENDS */

/* PRICING-3 CSS STARTS */

  .body-container--pricing-3 .radiant-pricing-table-3 .holder {
    padding: 40px 60px;
  }

  @media screen and (min-width: 1440px) {
    .body-container--pricing-3 .radiant-pricing-table-3 .holder {
    padding: 40px 80px;
    }
  }
  
  @media screen and (min-width: 768px) and (max-width: 991px) {
    .body-container--pricing-3 .radiant-pricing-table-3 .holder {
    padding: 40px 25px;
  }
  }
  
  @media screen and (max-width: 767px) {
    .body-container--pricing-3 .radiant-pricing-table-3 .holder {
      margin-bottom:30px;
    }
    
    .body-container--pricing-3 .row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section {
      padding-top:91px !important;
      padding-bottom:70px !important;
    }
  }
  
    @media screen and (min-width: 768px) and (max-width: 991px) {
    .body-container--pricing-3 .radiant-pricing-table-3 .holder {
    padding: 40px 25px;
  }
}
/* PRICING-3 CSS ENDS */
    
/* PRICING-4 CSS STARTS */  
@media screen and (max-width: 767px) {
  .body-container--pricing-2 .row-depth-1.row-number-2.dnd_area-row-1-padding {
      padding-top:91px !important;
      padding-bottom:70px !important;
    } 
}    
/* PRICING-4 CSS ENDS */    
    
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .footer-widget-section .dnd-section {
    padding: 100px 15px 85px 15px !important;
  }
}

.body-wrapper .footer-copyright-section p {
  color: #fff;
}

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

@media screen and (max-width: 991px) {
  .navbar-toggler {
    margin-right:-15px;
    margin-top: 17px;
  }
  
  .bsnav-mobile, .bsnav-mobile .bsnav-mobile-overlay, .bsnav-sticky.navbar-fade, .bsnav-sticky.navbar-slide {top: 50px !important}
  
  .navbar-toggler.active {
    margin-top: 14px;
  }
}

div.bsnav-mobile .navbar-nav .nav-item .nav-link {
    padding: 5px 0;
    font-weight: 400;
    color: #505050;
    text-decoration: none;
}

.header nav.navigation-primary ul li a,
.submenu.level-1>li {
    line-height: 27px;
    letter-spacing: 0;
    font-weight: 400;
    /* font-style: normal; */
    color: #505050 !important;
    font-size: 16px;
    text-transform: none !important;
}

.header nav.navigation-primary ul li ul li a,
div.bsnav-mobile .navbar-nav .nav-item .navbar-nav li a {
    text-transform: capitalize;
    line-height: 26px;
    letter-spacing: 0;
    font-weight: 400;
    /* font-style: normal; */
    color: #505050 !important;
    font-size: 15px;
}

body .navigation-primary a {
  color: #505050 !important;
}

/* LANDING FORM TWO CSS STARTS */

.body-container-form-two .row-depth-1.row-number-2.dnd_area-row-1-padding {
  margin-top:-140px;
}

.body-container-form-two .rt-popup-video {
  padding-bottom:30px;
}

.body-container-form-two .rt-popup-video img {
  text-align:left;
  margin:0;
}

.body-container-form-two .row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section .row-depth-1.row-number-4.dnd-row h2,
.body-container-form-two .row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section .row-depth-1.row-number-4.dnd-row p {
  color:#fff;
}

.body-container-form-two .row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section .row-depth-1.row-number-4.dnd-row h2 span {
  color:#729F1E;
}

.body-container-form-two .radiant-icon-box-wrapper.icon-box-parent-style-two {
  padding: 0 0 10px 0;
}

.body-container-form-two .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content p {
  color:#fff;
  margin-bottom:0;
}

.body-container-form-two .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content {
  margin-bottom:0;
  padding-left: 32px;
}

.body-container-form-two .landing-subscribe-form form input[type=submit] {
  padding:11px 0;
  width:100%;
}

.body-container-form-two .row-depth-1.row-number-2.dnd-section .span6.dnd_area-column-8-background-color {
  border-radius:5px;
}

.body-container-form-two .hs-form-field {
    margin-bottom: 0;
}

.body-container-form-two .hs-form-field.hs-fieldtype-booleancheckbox {
    margin-top: -10px;
}

.body-container-form-two form label {
  font-weight:500;
}

.body-container-form-two input[type=checkbox] {
  margin-top: -1px;
}

.hs-content-id-65206984510 .hm2-radiant-footer .footer-widget-section .dnd-section {
  margin-top: -55px !important;
  padding: 170px 15px 85px 15px !important;
}

@media screen and (max-width: 767px) {
  .body-container-form-two .row-depth-1.row-number-2.dnd_area-row-1-padding {
    padding-top: 190px !important;
    padding-bottom: 115px !important;
  }
  
  .hs-content-id-65206984510 .hm2-radiant-footer .footer-widget-section .dnd-section .row-depth-1.row-number-4.dnd-row {
    display:none;
  }
  
  .body-container-form-two .row-depth-1.row-number-2.dnd-section .span6.dnd_area-column-8-background-color {
    margin-top:25px;
  }
}
/* LANDING FORM TWO CSS ENDS */

/* LANDING FORM THREE CSS STARTS */

.body-container-form-three .row-depth-1.row-number-2.dnd-section h2 span {
  color:#729F1E;
}

.body-container-form-three .radiant-icon-box-wrapper.icon-box-parent-style-two {
  padding: 0 0 10px 0;
}

.body-container-form-three .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content p {
  margin-bottom:0;
}

.body-container-form-three .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content {
  margin-bottom:0;
  padding-left: 32px;
}

.body-container-form-three .row-depth-1.row-number-2.dnd-section .row-depth-1.row-number-4 {
  float:left;
}

.body-container-form-three .row-depth-1.row-number-2.dnd-section .row-depth-1.row-number-5 {
  float:left;
  margin-left:35px;
}
.body-container-form-three .row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section .row-depth-1.row-number-4.dnd-row h2 span {
  color:#729F1E;
}

.body-container-form-three form .hs-submit {
  float: left;
    padding-top: 32px;
    width: 18%;
    overflow: hidden;
}

.body-container-form-three form fieldset {
    float: left;
  
}

.body-container-form-three form input[type=submit] {
  padding: 9px 0px 10px 0px;
  width: 100%;
  transition:none;
  transform:none;
}
/*
.body-container-form-three form input[type=submit]:hover,
.body-container-form-three form input[type=submit]:focus {
  transition:none;
  transform:none;
}*/

.body-container-form-three form .hs_error_rollup {
  display:none;
}

.body-container-form-three .row-depth-1.row-number-2.dnd-section .row-depth-1.row-number-6 {
  padding-bottom:15px;
}

.body-container-form-three .span8 {
  border-radius:5px;
}

.hs-content-id-65291550040 .hm2-radiant-footer .footer-widget-section .dnd-section {
    margin-top: -55px !important;
    padding: 170px 15px 85px 15px !important;
}

.body-container-form-three form label {
  font-weight:500;
}

.body-container-form-three .row-depth-1.row-number-2.dnd-section h2 {
    font-size:50px;
    line-height:60px;
  }

@media screen and (min-width: 768px) and (max-width: 1265px) {
  .body-container-form-three .span8 {
    width:100%;
    margin-left:0;
  }
}

@media screen and (min-width: 768px) and (max-width: 844px) {
  .body-container-form-three .row-depth-1.row-number-2.dnd-section .row-depth-1.row-number-4 {
  float:none;
  }

.body-container-form-three .row-depth-1.row-number-2.dnd-section .row-depth-1.row-number-5 {
  float:none;
  margin-left:0;
  }
  
  .body-container-form-three .row-depth-1.row-number-2.dnd-section h2 {
    font-size:36px;
    line-height:48px;
  }
  
  .body-container-form-three form fieldset {
    float:none;
  }
  
  .body-container-form-three form .hs-submit {
    float:none;
    width:99%;
    padding-top:0;
  }
  
  .body-container-form-three form fieldset .hs-form-field {
    margin-bottom: 0;
  }
  
  .body-container-form-three .span8.dnd_area-column-3-padding {
    padding:45px 55px 55px 55px !important;
  }
}

@media screen and (max-width: 767px) {
  .body-container-form-three .row-depth-1.row-number-2.dnd_area-row-1-padding {
    padding-top: 100px !important;
    padding-bottom: 115px !important;
  }
  
  .hs-content-id-65291550040 .hm2-radiant-footer .footer-widget-section .dnd-section .row-depth-1.row-number-4.dnd-row {
    display:none;
  }
  
  .body-container-form-three .row-depth-1.row-number-2.dnd-section .row-depth-1.row-number-4 {
  float:none;
  }

.body-container-form-three .row-depth-1.row-number-2.dnd-section .row-depth-1.row-number-5 {
  float:none;
  margin-left:0;
  }
  
  .body-container-form-three form fieldset {
    float:none;
  }
  
  .body-container-form-three form .hs-submit {
    float:none;
    width:99%;
    padding-top:0;
  }
  
  .body-container-form-three form fieldset .hs-form-field {
    margin-bottom: 0;
  }
  
  .body-container-form-three .span8.dnd_area-column-3-padding {
    padding:25px 35px 35px 35px !important;
  }
  
  .body-container-form-three .row-depth-1.row-number-2.dnd-section h2 {
    font-size:36px;
    line-height:48px;
  }

}

@media screen and (max-width: 480px) {
  .body-container-form-three form fieldset .hs-form-field .hs-input {
    width:100% !important;
  }
  
  .body-container-form-three form input[type=submit] {
    width:101.5%;
    padding-top: 7px;
  }
  
  .body-container-form-three .row-depth-1.row-number-1.dnd_area-row-0-padding {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
}
/* LANDING FORM THREE CSS ENDS */

/* LANDING WEBINAR CSS STARTS */

.body-container-webinar .row-depth-1.row-number-2.dnd-section h2,
.body-container-webinar .row-depth-1.row-number-2.dnd-section p {
  color:#fff;
}

.body-container-webinar .row-depth-1.row-number-2.dnd-section h2 span {
  color:#729F1E;
}

.body-container-webinar .landing-subscribe-form {
  border-radius:5px;
  background-color:#fff;
  padding:45px 55px 55px 55px;
}

.body-container-webinar .landing-subscribe-form form input[type=submit] {
  padding:11px 0;
  width:100%;
}

.body-container-webinar .row-depth-1.row-number-2.dnd-section .span6.dnd_area-column-8-background-color {
  border-radius:5px;
}

.body-container-webinar .hs-form-field {
    margin-bottom: 0;
}

.body-container-webinar .hs-form-field.hs-fieldtype-booleancheckbox {
    margin-top: -10px;
}

.body-container-webinar form label {
  font-weight:500;
}

.body-container-webinar input[type=checkbox] {
  margin-top: -1px;
}

.body-container-webinar .row-depth-1.row-number-2.dnd-section h1 {
  color:#fff;
  font-size:200px;
  line-height:210px;
  letter-spacing:0px;
  position: absolute;
  margin-top: -6%;
}

.body-container-webinar .rt-popup-video {
  margin-top: -43%;
}

.body-container-webinar .row-depth-1.row-number-8.dnd-section .span5.dnd-column {
  padding-top:75px;
}

.body-container-webinar .row-depth-1.row-number-8.dnd-section .span5.dnd-column ul {
  padding-left: 1.2rem;
}

.body-container-webinar .row-depth-1.row-number-8.dnd-section .span5.dnd-column ul li {
    margin-bottom: 10px;
}

.body-container-webinar .radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-prefix,
.body-container-webinar .radiant-counter-style-one .radiant-counter_number.radiant-counter-style-one_number.radiant-h2,
.body-container-webinar .radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-suffix,
.body-container-webinar .radiant-counter-style-one .ml-2 {
  color:#fff !important;
}

.body-container-webinar .radiant-counter-style-one .ml-2 {
  margin-right:50px;
}

.body-container-webinar .team {
  margin-left: 0;
  margin-right: 0;
}

.hs-content-id-65295618098 .hm2-radiant-footer .footer-widget-section .dnd-section {
    margin-top: -55px !important;
    padding: 170px 15px 85px 15px !important;
}

@media screen and (min-width: 1440px) {
  .body-container-webinar .row-depth-1.row-number-2.dnd-section h1 {
    margin-left: -4%;
    text-align: left;
  }
}

@media screen and (min-width: 1170px) {
  .body-container-webinar .landing-subscribe-form {
    position:absolute;
    box-shadow: 0px 10px 20px 0px rgb(42 22 139 / 6%);
  }
}

@media screen and (min-width: 768px) and (max-width: 1169px) {
  .body-container-webinar .row-depth-1.row-number-8.dnd_area-row-2-padding {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1070px) {
  .body-container-webinar .row-depth-1.row-number-2.dnd-section h1 {
  color:#fff;
  font-size:150px;
  line-height:160px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1169px) {
  .body-container-webinar .row-depth-1.row-number-8.dnd-section .span5.dnd-column {
  padding-top:0;
  } 
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .body-container-webinar .row-depth-1.row-number-2.dnd-section .span6,
  .body-container-webinar .row-depth-1.row-number-2.dnd-section .span1,
  .body-container-webinar .row-depth-1.row-number-2.dnd-section .span5,
  .body-container-webinar .row-depth-1.row-number-8.dnd-section .span6,
  .body-container-webinar .row-depth-1.row-number-8.dnd-section .span1,
  .body-container-webinar .row-depth-1.row-number-8.dnd-section .span5 {
    width:100%;
    margin-left:0;
  } 
  
  .body-container-webinar .row-depth-1.row-number-2.dnd-section .span6 img,
  .body-container-webinar .row-depth-1.row-number-8.dnd-section .span6 img {
    width:100%;
  }
  
  .body-container-webinar .row-depth-1.row-number-2.dnd-section h1 {
    margin-top: -19%;
  }
  
  .body-container-webinar .row-depth-1.row-number-2.dnd-section .span5 {
    margin-top:25px;
  }
  
  .body-container-webinar .row-depth-1.row-number-8.dnd-section .span5.dnd-column {
  padding-top:27px;
  }
  
  .body-container-webinar .row-depth-1.row-number-8.dnd_area-row-2-padding {
    padding-top: 120px !important;
    padding-bottom: 90px !important;
  }
}

@media screen and (max-width: 767px) {
  .body-container-webinar .row-depth-1.row-number-2.dnd-section h1 {
    margin-top: -25%;
  }
  
  .body-container-webinar .row-depth-1.row-number-2.dnd-section h1 {
  font-size:100px;
  line-height:110px;
  }
  
  .body-container-webinar .row-depth-1.row-number-2.dnd-section .span5 {
    margin-top:25px;
  }
  
  .body-container-webinar .row-depth-1.row-number-2.dnd-section .span6 img,
  .body-container-webinar .row-depth-1.row-number-8.dnd-section .span6 img {
    width:100%;
  }
  
  .body-container-webinar .row-depth-1.row-number-2.dnd_area-row-1-padding {
    padding-top: 50px !important;
    padding-bottom: 100px !important;
  }
  
  .body-container-webinar .landing-subscribe-form {
    padding: 25px 35px 35px 35px;
  }
  
  .body-container-webinar .row-depth-1.row-number-8.dnd_area-row-2-padding {
    padding-top: 100px !important;
    padding-bottom: 70px !important;
  }
  
  .body-container-webinar .row-depth-1.row-number-8.dnd-section .span5.dnd-column {
  padding-top:27px;
  }

  .hs-content-id-65295618098 .hm2-radiant-footer .footer-widget-section .dnd-section .row-depth-1.row-number-4.dnd-row {
    display:none;
  }
  
  .body-container-webinar .row-depth-1.row-number-11.dnd-section .span4 {
    padding-bottom:15px;
  }
  
  .body-container-webinar .row-depth-1.row-number-13.dnd-section {
    padding-top: 90px !important;
    padding-bottom: 0px !important;
  }
  
  .body-container-webinar .row-depth-1.row-number-11.dnd-section {
    padding-bottom: 75px !important;
  }
}
/* LANDING WEBINAR CSS ENDS */

/* LANDING FORM FOUR CSS STARTS */


.body-container-form-four .row-depth-1.row-number-2.dnd_area-row-1-padding {
  margin-top:-140px;
}

.body-container-form-four .row-depth-1.row-number-2.dnd_area-row-1-padding h1 {
  color:#fff;
  font-size:50px;
  line-height:60px;
  margin-top:20px;
}

.body-container-form-four .row-depth-1.row-number-5.dnd-section .row-fluid [class*="span"] {
  margin-left:0;
}

.body-container-form-four .hs-form-field {
    margin-bottom: 0;
}

.body-container-form-four .hs-form-field.hs-fieldtype-booleancheckbox {
    margin-top: -10px;
}

.body-container-form-four form label {
  font-weight:500;
}

.body-container-form-four input[type=checkbox] {
  margin-top: -1px;
}

.body-container-form-four .landing-subscribe-form4 form input[type=submit] {
    padding: 11px 0;
    width: 100%;
}

.body-container-form-four .row-depth-1.row-number-5.dnd-section .span5.dnd_area-column-9-background-image h2 {
  color:#fff;
}

.body-container-form-four .row-depth-1.row-number-5.dnd-section .span5 {
  box-shadow: 0px 10px 20px 0px rgb(42 22 139 / 6%);
}

.hs-content-id-65388695114 .hm2-radiant-footer .footer-widget-section .dnd-section {
    margin-top: -55px !important;
    padding: 170px 15px 85px 15px !important;
}

@media screen and (max-width: 991px) {
  .body-container-form-four .row-depth-1.row-number-9.dnd_area-row-3-padding .span8 {
    width:100%;
    margin-left:0;
  }
}

@media screen and (max-width: 767px) {
  .hs-content-id-65388695114 .hm2-radiant-footer .footer-widget-section .dnd-section .row-depth-1.row-number-4.dnd-row {
    display:none;
  }
  
  .body-container-form-four .row-depth-1.row-number-2.dnd_area-row-1-padding {
    padding-top: 190px !important;
    padding-bottom: 250px !important;
  }
  
  .body-container-form-four .row-depth-1.row-number-9.dnd_area-row-3-padding {
    padding-top: 90px !important;
    padding-bottom: 100px !important;
  }
}

@media screen and (max-width: 1150px) {
  .body-container-form-four .row-depth-1.row-number-5.dnd-section .row-fluid [class*="span"] {
    width:100%;
    margin-left:0;
  }
}

/* LANDING FORM FOUR CSS ENDS */

/* FAQ CSS START */

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

.oliev-faq .oliev-accordion-item>.oliev-faq-title h6{
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    padding:0;
}

.oliev-faq .oliev-accordion-item.oliev-faq-active > .oliev-faq-title {
  background: #729F1E;
  color: #ffffff;
}

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

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

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

.oliev-faq .oliev-accordion-item.oliev-faq-active .oliev-faq-icon:after{
  opacity: 1;
    background: #fff;
}
.oliev-faq .oliev-accordion-item .oliev-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;
}
.oliev-faq .oliev-accordion-item .oliev-faq-icon:after {
    content: '';
    display: block;
    height: 80%;
    width: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #8b8c8e;
    top: 2px;
}

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

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

/* FAQ CSS END */

/* FAQ ONE CSS START */

.oliev-faq-one {
  background:tranparent;
  border:0px none;
  padding-left: 0px;
}
.oliev-faq-one .oliev-accordion-item-one  {
  position: relative;
    padding: 12px 30px 12px 30px;
    cursor: pointer;
  display: block;
  background: #ffffff;
  color: #00174d;
  border-radius:4px;
  box-shadow: 8px 3px 30px 5px rgb(0 0 0 / 4%);
  margin-bottom: 15px;
    border: none;
}

.oliev-faq-one .oliev-accordion-item-one>.oliev-faq-title-one h6{
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    padding:0;
}

.oliev-faq-one .oliev-accordion-item-one > .oliev-faq-title-one > .oliev-faq-icon-one {
    position: absolute;
    top: 33px;
    right: 29px;
    z-index: 1;
  border: none;
    border-radius: 50%;
}

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

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

.oliev-faq-one .oliev-accordion-item-one .oliev-faq-description-one {
   padding:0px 35px 0 0px;
}

.oliev-faq-one .oliev-accordion-item-one .oliev-faq-description-one p {
  margin-bottom:15px;
}

.oliev-faq-one .oliev-accordion-item-one:last-child {
    border-bottom: none;
}

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

/* FAQ ONE CSS END */

/* LANDING EBOOK CSS STARTS */

.landing-ebook .row-depth-1.row-number-2.dnd-section h1, 
.landing-ebook .row-depth-1.row-number-2.dnd-section h6,
.landing-ebook .row-depth-1.row-number-2.dnd-section p {
    color: #fff;
}

.landing-ebook .row-depth-1.row-number-2.dnd-section h1 {
  font-size:54px;
  line-height:60px;
  margin-left: -3px;
  position: relative;
}

.landing-ebook .row-depth-1.row-number-2.dnd-section h6 {
  margin-bottom:18px;
}

.landing-ebook .row-depth-1.row-number-2.dnd-section p {
  margin-bottom:30px;
}

.landing-ebook .row-depth-1.row-number-2.dnd-section .span5 img {
  position:absolute;
}

@media screen and (min-width: 1170px) and (max-width: 1439px) {
  .landing-ebook .row-depth-1.row-number-2.dnd-section .span5 img {
    right:5%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1169px) {
  .landing-ebook .row-depth-1.row-number-2.dnd-section .span5 img {
    right:1%;
  }
}

@media screen and (max-width: 991px) {
  .landing-ebook .row-depth-1.row-number-2.dnd-section .span5 img {
    display:none;
  }
  
  .landing-ebook .row-depth-1.row-number-2.dnd-section .span6 {
    width:100%;
  }
}

.landing-ebook .heading-inner span {
    float: left;
    margin-right: 15px;
    margin-top:10px;
}

.landing-ebook .radiant-icon-box2-content h4.radiant-icon-box2-title {
    padding-bottom: 10px;
}

.landing-ebook .radiant-icon-box2-content h4.radiant-icon-box2-title span {
  margin-right:10px;
}

.landing-ebook .radiant-icon-box2-wrapper.icon-box2-parent-style-one {
  margin-bottom:22px;
}

.landing-ebook .row-depth-1.row-number-6.dnd-section .button.customizable-button {
  margin-top:7px;
}

.landing-ebook .row-depth-1.row-number-6.dnd-section .span5 img {
  padding-bottom:70px;
}

.landing-ebook .radiant-icon-box-wrapper.icon-box-parent-style-two {
    padding: 0 0 10px 0;
}

.landing-ebook .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content {
    padding-left: 25px;
    padding-bottom:0;
    margin-bottom:0;
}

.landing-ebook .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content p.radiant-icon-box-title {
    margin: 0;
    padding: 0;
}

.landing-ebook .row-depth-1.row-number-15.dnd-section .button.customizable-button {
  margin-top:21px;
  margin-bottom: 30px;
}

.landing-ebook .row-depth-1.row-number-15.dnd-section p a {
  color: #729F1E;
}

.landing-ebook .row-depth-1.row-number-15.dnd-section .span5 {
  padding-top:60px;
}

@media screen and (min-width: 768px) {
  .landing-ebook .row-depth-1.row-number-23.dnd-section h2 {
    text-align:center;
  }
}


.landing-ebook .row-depth-1.row-number-23.dnd-section .home4-img-one img {
  position: absolute;
}

.landing-ebook .radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-prefix, 
.landing-ebook .radiant-counter-style-one .radiant-counter_number.radiant-counter-style-one_number.radiant-h2, 
.landing-ebook .radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-suffix, 
.landing-ebook .radiant-counter-style-one .ml-2 {
    color: #fff !important;
}

.landing-ebook .row-depth-1.row-number-32.dnd-section .ebook-signature img {
  padding-top:20px;
}

.landing-ebook .row-depth-1.row-number-32.dnd-section .span6 h2 {
  padding-top:70px;
}

.landing-ebook .row-depth-1.row-number-32.dnd-section .span6 h4 {
  padding-bottom:15px;
}

.landing-ebook .row-depth-1.row-number-32.dnd-section .span6 h4 span {
  color:#729F1E;
}

.hs-content-id-65466624086 .hm2-radiant-footer .footer-widget-section .dnd-section {
    margin-top: -55px !important;
    padding: 170px 15px 85px 15px !important;
}

@media screen and (max-width: 1200px) {
  .landing-ebook .row-depth-1.row-number-23.dnd-section .home4-img-one img {
    position:relative;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .landing-ebook .row-depth-1.row-number-23.dnd_area-row-4-padding {
    padding-bottom: 68px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .landing-ebook .row-depth-1.row-number-6.dnd_area-row-2-padding {
    padding-top:120px !important;
  }
  
  .landing-ebook .row-depth-1.row-number-2.dnd_area-row-1-padding {
    padding-top: 115px !important;
    padding-bottom: 170px !important;
  }
  
  .landing-ebook .row-depth-1.row-number-32.dnd-section .span6 h2 {
    padding-top:30px;
  }
  
  .landing-ebook .row-depth-1.row-number-39.dnd-section .span8 {
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .landing-ebook .row-depth-1.row-number-6.dnd_area-row-2-padding {
    padding-top:90px !important;
    padding-bottom:0px !important;
  }
  
  .landing-ebook .row-depth-1.row-number-2.dnd_area-row-1-padding {
    padding-top: 95px !important;
    padding-bottom: 150px !important;
  }
  
  .landing-ebook .row-depth-1.row-number-6.dnd-section .span5 img {
    padding:35px 0 30px 0;
  }
  
  .landing-ebook .row-depth-1.row-number-15.dnd_area-row-3-padding {
    padding-bottom: 100px !important;
  }
  
  .landing-ebook .row-depth-1.row-number-23.dnd-section .span3 .span12 {
    align-items: left !important;
  }
  
  .landing-ebook .row-depth-1.row-number-23.dnd_area-row-4-padding {
    padding-top: 100px !important;
    padding-bottom: 48px !important;
  }
  
  .landing-ebook .row-depth-1.row-number-30.dnd-section .span4 {
    padding-bottom: 15px;
  }
  
  .landing-ebook .row-depth-1.row-number-30.dnd-section {
    padding-bottom: 75px !important;
  }
  
  .landing-ebook .row-depth-1.row-number-23.dnd-section,
  .landing-ebook .row-depth-1.row-number-32.dnd-section {
    padding-top: 100px !important;
  }
  
  .landing-ebook .row-depth-1.row-number-32.dnd-section .span6 h2 {
    padding-top:30px;
  }
  
  .hs-content-id-65466624086 .hm2-radiant-footer .footer-widget-section .dnd-section .row-depth-1.row-number-4.dnd-row {
    display:none;
  }
  
  .landing-ebook .row-depth-1.row-number-39.dnd-section {
    padding-top: 90px !important;
    padding-bottom: 100px !important;
  }
  
  .landing-ebook .row-depth-1.row-number-39.dnd-section .span8 {
    width: 100%;
    margin-left: 0;
  }
}

/* LANDING EBOOK CSS ENDS */

/* HOME THREE CORRECTION STARTS */

.body-container--home-three .banner-botton,
.body-container--home-five .banner-botton {
/*     background-color: rgba(23,190,116,1.0);
    border: 0px solid #729F1E; */
    border-radius: 8px;
    color: #fff;
/*     padding: 15px 45px;
    font-size: 17px;
    line-height: 27px; */
    font-weight: 500;
  transition: all 0.3s ease;
}

.body-container--home-three .banner-botton:hover,
.body-container--home-five .banner-botton:hover{
    transition-delay: .1s;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgb(0 0 0 / 12%);
}

.body-container--home-three .row-depth-1.row-number-2.dnd-section .row-depth-1.row-number-4.dnd-row {
  padding-top:8px;
}

.body-container--home-three .row-depth-1.row-number-36.dnd-section .row-depth-1.row-number-38.dnd-row {
  padding-top:10px;
}

.hs-content-id-63571691147 .hm2-radiant-footer .footer-widget-section .dnd-section {
    padding: 180px 15px 110px 15px !important;
}

.body-container--home-three .recent-blogs .swiper-button-next, 
.body-container--home-three .recent-blogs .swiper-button-prev {
  top: 25%;
  opacity:0;
  visibility:hidden;
  transition: all 0.3s ease;
}

.body-container--home-three .recent-blogs:hover .swiper-button-next, 
.body-container--home-three .recent-blogs:hover .swiper-button-prev {
  top: 25%;
  opacity:1;
  visibility:visible;
}

.body-container--home-three .recent-blogs .swiper-button-next:after, 
.body-container--home-three .recent-blogs .swiper-button-prev:after {
  font-size: 25px;
  font-weight:500;
  color:#729F1E;
}

.body-container--home-three .recent-blogs .swiper-pagination-bullet-active {
    opacity: 1;
    background: #729F1E;
}

/* HOME THREE CORRECTION ENDS */

/* LANDING FORM ONE CSS STARTS */

.body-container-form-one h1 {
    font-size: 54px;
    line-height: 60px;
    margin-left: -3px;
    padding-top:80px;
}

.body-container-form-one .row-depth-1.row-number-2.dnd-section .span5 {
  border-radius:5px;
}

.body-container-form-one .landing-subscribe-form form input[type=submit] {
  margin-top:7px;
}

.body-container-form-two.body-container-form-one .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-content p {
  color:#505050;
  margin-bottom:0;
}

.body-container-form-one .landing-form-one-icon-box-one {
  background: #F0FFF8;
  border-radius:5px;
  padding:35px 30px; 
}

.body-container-form-one .landing-form-one-icon-box-one svg {
 padding-bottom:20px; 
 fill:#17BC73;
}

.body-container-form-one .landing-form-one-icon-box-two {
  background: #FFF9EF;
  border-radius:5px;
  padding:35px 30px; 
}

.body-container-form-one .landing-form-one-icon-box-two svg {
 padding-bottom:20px; 
 fill:#ECB647;
}

.body-container-form-one .landing-form-one-icon-box-three {
  background: #E9F8FC;
  border-radius:5px;
  padding:35px 30px; 
}

.body-container-form-one .landing-form-one-icon-box-three svg {
 padding-bottom:20px; 
 fill:#3BC0E2;
}

.body-container-form-one .landing-form-one-icon-box-four {
  background: #FFEFF3;
  border-radius:5px;
  padding:35px 30px; 
}

.body-container-form-one .landing-form-one-icon-box-four svg {
 padding-bottom:20px; 
 fill:#E82D5F;
}

.body-container-form-one .row-depth-1.row-number-9.dnd-section .span5 .button.customizable-button {
  margin-top:20px;
}

.hs-content-id-65392255235 .hm2-radiant-footer .footer-widget-section .dnd-section,
.hs-content-id-65720584297 .hm2-radiant-footer .footer-widget-section .dnd-section,
.hs-content-id-65719275083 .hm2-radiant-footer .footer-widget-section .dnd-section,
.hs-content-id-65720583951 .hm2-radiant-footer .footer-widget-section .dnd-section,
.hs-content-id-65732721787 .hm2-radiant-footer .footer-widget-section .dnd-section,
.hs-content-id-65718592402 .hm2-radiant-footer .footer-widget-section .dnd-section {
    margin-top: -55px !important;
    padding: 170px 15px 85px 15px !important;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .body-container-form-one .row-depth-1.row-number-5.dnd-section .span3 {
    width:50%;
    margin-left:0;
  }
}

@media screen and (max-width: 767px) {
  .hs-content-id-65392255235 .hm2-radiant-footer .footer-widget-section .dnd-section .row-depth-1.row-number-4.dnd-row,
  .hs-content-id-65720584297 .hm2-radiant-footer .footer-widget-section .dnd-section .row-depth-1.row-number-4.dnd-row,
  .hs-content-id-65719275083 .hm2-radiant-footer .footer-widget-section .dnd-section .row-depth-1.row-number-4.dnd-row,
  .hs-content-id-65720583951 .hm2-radiant-footer .footer-widget-section .dnd-section .row-depth-1.row-number-4.dnd-row,
  .hs-content-id-65732721787 .hm2-radiant-footer .footer-widget-section .dnd-section .row-depth-1.row-number-4.dnd-row,
  .hs-content-id-65718592402 .hm2-radiant-footer .footer-widget-section .dnd-section .row-depth-1.row-number-4.dnd-row {
    display:none;
  }
  
  .body-container-form-one h1 {
    padding-top:0;
  }
  
  .body-container-form-two.body-container-form-one .row-depth-1.row-number-2.dnd_area-row-1-padding {
    padding-top: 180px !important;
    padding-bottom: 125px !important;
  }
  
  .body-container-form-one .row-depth-1.row-number-5.dnd-section {
    padding-top: 70px !important;
    padding-bottom: 10px !important;
  }
  
  .body-container-form-one .row-depth-1.row-number-5.dnd-section .span3 {
    margin-bottom:30px !important;
  }
  
  .body-container-form-one .row-depth-1.row-number-9.dnd-section {
    padding-top: 50px !important;
    padding-bottom: 110px !important;
  }
  
  .body-container-form-one .row-depth-1.row-number-9.dnd-section .span7 {
    padding-top:40px;
  }
  .row-depth-1.row-number-1.dnd-section .banner-main {
    padding-top: 287px;
    padding-bottom: 200px;}
}
/* LANDING FORM ONE CSS ENDS */

.body-container--home-two .rt-progressbar-left-label, 
.body-container--home-two .rt-progressbar-right-label {
    font-size: 20px;
    padding-bottom: 15px;
}

/* HEADER BUTTON START */
.job-btn-grp .btn-one>.job-apply-modal>.rt-modal-pop>label.demo {
/*   background-color: rgba(23,190,116,1.0) !important; */
    border: 1px solid #729F1E;
    border-radius: 15px;
    color: #fff;
    padding: 15px 45px;
  margin-top:0 !important;
}
.job-btn-grp .btn-one>.job-apply-modal>.rt-modal-pop>label.demo:hover {
    transition-delay: .1s;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgb(0 0 0 / 12%);
    background:rgba(23,190,116,1.0);
    border-color: #7bffd8;
    text-align: center;
    transition: all .3s ease-in-out;
    color: #fff !important;
}
.rt-modal-pop label.rt-gradient-btn.demo {
/*     background-color: rgba(23,190,116,1.0); */
/*     border: 1px solid #729F1E; */
    border-radius: 3px;
/*     color: #fff; */
    padding: 10px 20px;
    cursor: pointer;
}
.header .content-wrapper .header__column {
    width: 100%;
    padding: 9px 0 6px 0;
    left: 0;
    right: 0;
    transition: all .4s ease-in-out;
}

/* POPUP CSS START */
.career-box > .holder > .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop {
  text-align: center;
    width: 100%;
  display: block;
  padding: 0;
    position: relative;
}

 .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop > label {
  background: #FFD300;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  padding: 15px 30px;
  transition: all 0.55s;
}


 .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop > label.rt-gradient-btn {
    border: none;
    box-sizing: border-box;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 23px;
    padding: 11px 30px;
    color: #fff;
    background: #1e4ec4;
}

 .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop > label.demo {
    background: #729F1E;
    text-align: center;
    transition: all 0.3s ease-in-out;
   margin-top: 6px;
}

 .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop > label.demo:hover {
    background: #f2f4f3;
    text-align: center;
    transition: all 0.3s ease-in-out;
  color:#505050;
}

 .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop > .rt-modal-pop-overlay > .rt-modal-pop-wrap {
 
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  width: 90%;
    background: #000;
   height: 90%;
   overflow-y: scroll;

}
.job-btn-grp .btn-one>.job-apply-modal>.rt-modal-pop>.rt-modal-pop-overlay>.rt-modal-pop-wrap::-webkit-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;
  display: none;
}
 .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop > .rt-modal-pop-overlay > .rt-modal-pop-wrap label {
  background: #fff;
  border-radius: 50%;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  height: 1.5em;
  line-height: 1.5;
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  width: 1.5em;
}

 .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop > .rt-modal-pop-overlay > .rt-modal-pop-wrap h2 {
  color: #00174d;
  margin-bottom: 0;
  text-transform: capitalize;
   font-weight: 600;
}

 .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop > .rt-modal-pop-overlay > .rt-modal-pop-wrap p {
  color: #fff;
  text-align: justify;
}

 .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop input:focus ~ label {
  transform: scale(0.97);
}

 .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop input {
  position: absolute;
  top: -1000px;
  display:none;
}

 .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop > .rt-modal-pop-overlay {
    opacity: 0;
   visibility: hidden;
    padding: 0px !important;
    text-align: center;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
    transform: scale(0.5);
    transition: all 0.75s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -100;
   
}
 .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop > .rt-modal-pop-overlay:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
 .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop > input:checked ~ .rt-modal-pop-overlay {
  opacity: 1;
   visibility: visible;
  transform: scale(1);
  z-index: 800;
}
  
.career-box > .holder p {
  margin-bottom:14px;
  }
.rt-modal-pop {
  text-align: center;
    width: 100%;
  display: block;
  padding: 1em;
    position: relative;
}

.rt-modal-pop-overlay {
  background: rgba(0, 0, 0, 0.85);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  text-align: center;
  text-shadow: none;
  top: 0;
  z-index: 600;
    visibility: visible;
overflow: hidden;
align-items: center;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
}

.rt-modal-pop-wrap {
  
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  width: 90%;
background-color: rgba(251, 251, 251, 1) !important;

}


.rt-modal-pop-wrap label {
  background: #fff;
  border-radius: 50%;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  height: 1.5em;
  line-height: 1.5;
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  width: 1.5em;
}

.rt-modal-pop-wrap h2 {
  color: #00174d;
  margin-bottom: 1em;
  text-transform: capitalize;
}

.rt-modal-pop-wrap p {
  color: #fff;
  text-align: justify;
}

.rt-modal-pop-modal input:focus ~ label {
  transform: scale(0.97);
}
.career-detail ul{margin:0; padding:0; list-style-type:none;}
.career-detail ul li{margin:8px 8px 0 0; padding:5px 14px; float:left; border:1px solid #e5efe9; border-radius:4px; color:#729F1E; font-size:13px;}

@media (min-width: 50em) {
   .job-apply-modal > .rt-modal-pop > .rt-modal-pop-overlay > .rt-modal-pop-wrap {
    padding: 1.75em;
  }
}


@media (min-width: 43.75em) {
   .job-apply-modal > .rt-modal-pop {
    padding: 0;
  }
}
.body-container--home-three .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
}

/*HOME FOUR NEWW CSS START */

h2 {
  font-weight:400 !important;
}

.body-container--home-four .row-number-10.dnd-section .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-icon {
  margin-top:3px;
}

.body-container--home-four .dnd-section.row-number-2 .span3.widget-span.widget-type-custom_widget.dnd-module.dnd_area-module-5-flexbox-positioning .rt-icon-box6 {
  text-decoration: none;
  z-index: 2;
  transform: perspective(1200px) scale(1.05);
  transition: all .25s cubic-bezier(.32,.55,.79,.49);
  
  padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    color: #000fff;
    backface-visibility: hidden;
    text-decoration: none;
    transition: all .25s cubic-bezier(.32,.55,.79,.49);
}

.body-container--home-four .dnd-section.row-number-2 .span3.widget-span.widget-type-custom_widget.dnd-module.dnd_area-module-5-flexbox-positioning .rt-icon-box6::after,
.body-container--home-four .dnd-section.row-number-2 .span3.widget-span.widget-type-custom_widget.dnd-module.dnd_area-module-5-flexbox-positioning .rt-icon-box6::before {
  border-radius: 5px;
  opacity: 1;
  -webkit-clip-path: polygon(0 0,100% 0,100% 100%,0% 100%);
  clip-path: polygon(0 0,100% 0,100% 100%,0% 100%);
  transition: 300ms opacity linear,300ms transform ease-in-out;
  background: #17bd73;
  opacity: 1;
  /*transform: perspective(1200px) scale(1.05);*/
  transition: all .4s ease-in-out;
}

.body-container--home-four .dnd-section.row-number-2 .span3.widget-span.widget-type-custom_widget.dnd-module.dnd_area-module-5-flexbox-positioning .rt-icon-box6 .rt-img-box6 {
  fill: #fff;
}

.body-container--home-four .dnd-section.row-number-2 .span3.widget-span.widget-type-custom_widget.dnd-module.dnd_area-module-5-flexbox-positioning .rt-icon-box6 :is(h4, p) {
  transform: none;
  color: #fff;
  text-decoration: none;
  -webkit-clip-path: polygon(0 0,100% 0,100% 100%,0% 100%);
  clip-path: polygon(0 0,100% 0,100% 100%,0% 100%);
  transition: 300ms opacity linear,300ms transform ease-in-out;
}

@media (min-width: 1281px) {
  .header .header__container .contact-button {
    margin-right:0;
    margin-top:6px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1280px) {
  .header__container .rt-modal-pop label.rt-gradient-btn.demo {
    padding:10px 8px;
  }
  
  .header .header__container .contact-button {
    margin-right:-15px;
    margin-top:6px;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .header .content-wrapper {
    padding: 0px 15px;
}
}

@media (min-width: 768px) and (max-width: 991px) {
  .header .content-wrapper {
    padding: 6px 15px 4px 15px;
  }
}

.radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-icon {
  margin-top:3px;
}

.body-container--home-three .dnd_area-row-8-padding.row-number-39.dnd-section {
  padding-bottom: 60px !important;
}

.body-container--about .row-number-14.dnd-section .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-icon {
  margin-top:0;
}

.body-container--customer .row-number-14.dnd-section .radiant-icon-box-wrapper.icon-box-parent-style-two .radiant-icon-box-icon {
  margin-top:5px;
}
.rt-search-results a.hs-search-results__next-page, .systems-page a.hs-search-results__prev-page{
  display:none;
}
.hs-search__no-results {
    text-align: center;
}
/*HOME FOUR NEWW CSS END */

/* .career-box > .holder > .job-btn-grp .btn-one > .job-apply-modal > .rt-modal-pop > label.demo:hover{
  background: #729F1E !important;
} */
.header__container.content-wrapper .header__column .col-lg-2 {
    padding-right: 0;
}
.hs-landing-page .container-fluid.content-wrapper {
    display: none;
}