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

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

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

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

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

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

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

body {
  margin: 0;
}

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

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

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

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

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

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

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

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

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

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

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

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

progress {
  vertical-align: baseline;
}

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

textarea {
  overflow: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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

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

template {
  display: none;
}

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

[hidden] {
  display: none;
}

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

/* Responsive Grid */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-fluid {
    *zoom: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Clearfix */

.clearfix {
    *zoom: 1;
}

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

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

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

/* Responsive Visibilty Classes */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
body {
  line-height: 1.4;
  word-break: break-word;
}

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

/* Paragraphs */

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

/* Anchors */

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

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

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0 0 13px 0;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 14px;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

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

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

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

/* Labels */

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

/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - datepicker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

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

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

/* Table Cells */

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

/* Table Header */

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

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

/* Header DND sections */

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

/* Header container */

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

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

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

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

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

  .header__column {
    position: relative;
  }

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

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

/* Navigation skipper */

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

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

/* Logo */

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

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

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

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

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

/* Search bar */

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

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

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

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

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

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

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

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

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

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

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


/* Language switcher */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* HEADER START*/

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

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

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

}

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

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

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

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

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

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

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

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

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

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


/* BOTTOM HEADER SOCIAL ICON START */

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

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

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

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


/* BOTTOM HEADER SOCIAL ICON END */

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

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

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

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

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

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

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

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

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

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

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

.header nav.navigation-primary ul li {
  border: 0;
  transition: all .3s ease;
  padding: 0 12px 0 0;
  margin-right: 35px;
  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;
  line-height: 25px;
  letter-spacing: 1px;
  font-weight: 500;
  font-style: normal;
  color: #5b5b5b;
  font-size: 16px;
  border-radius: 4px;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  transition: all .3s ease;
  text-transform:capitalize;
  letter-spacing:0;
}

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

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

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

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

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

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

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

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

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

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

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

.header nav.navigation-primary ul li ul li a {
  padding: 0 !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px !important;
  letter-spacing: 0;
  background: none;
  color: #5b5b5b;
  text-transform: capitalize;
}

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

/* SUBMENU EFFECT CSS START */

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

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

.header nav.navigation-primary ul li ul li a::before {
    content: '';
    width: 0;
    height: 1px;
    bottom: 5px;
    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;
}

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

/* SUBMENU EFFECT CSS END */

/*.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: #5b5b5b;
  text-decoration: none;
  text-transform:capitalize;
}

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

div.bsnav-mobile .navbar-nav .nav-item .navbar-nav li a {
  padding: 5px 0;
}

.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: 16px;
  width:24px !important;
}

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

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

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

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

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

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

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

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

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

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

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

#search-overlay2 {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* HEADER NEW CSS START */

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

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

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

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

.radiant-icon-box-wrapper.icon-box-parent-style-header-left .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: 13px;
  line-height: 23px;
  font-weight: 400;
  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:3px;
}

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

.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-mail svg,
.top-header.radiant-top-header .contact-phone svg {
  fill: #f94144;
}

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

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

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

.top-header.radiant-top-header .contact-phone{float:left; width:37%}
.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: 40%
  }

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

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

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

  .header .content-wrapper .header__row-1 {
    margin-top: -44px;
    float:right;
    width:80%;
  }
.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: 80px !important;
  }
  .bsnav-mobile .navbar {padding: 20px 0 15px !important;}
}

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

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

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

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

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

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

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

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

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

  .header .content-wrapper .header__row-1 {
    margin-top: -44px;
    float:right;
    width:70%;
  }
  .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;}
  
    .content-wrapper .header__column .hs_cos_wrapper_type_logo {
    margin-top:3px;
  }
}
/*.header-social-icons .social-icons .social-links__icon li.facebook-square svg {
  width:15px;
}*/

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

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

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

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


/* HEADER NEW CSS END */

/* HEADER END*/

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

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

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

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

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

.body-wrapper .footer-address p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  padding-bottom: 10px;
  margin: 0;
}

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

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

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

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

.footer-menu ul li {
  position: relative;
  margin-bottom: 8px !important;
  padding-left: 0;
  font-weight: 400;
  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-menu-whitish ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

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

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

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



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

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

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

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

.footer-copyright-section .dnd-section {
  padding: 15px 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;
  border-radius: 35px;
  color: #505050;
  line-height: 20px;
  font-size: 16px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  text-transform: capitalize;
  font-weight: 500;
  text-decoration: none;
  line-height: 27px;
  letter-spacing: 0;
  z-index: 99;
  margin: 0;
  border:none !important;
}

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

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

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

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

.footer-subscribe-form form input[type=submit]:focus,
form .hs-button:focus {
  pointer-events:none !important;
}

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

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

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

/* FOOTER NEW CSS ENDS */
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-whitish {
  color:#d3d6ef !important;
}

.pull-left {
  float:left;
}

.pull-right {
  float:right;
}

h1,
h2,
h3{
    padding-bottom: 20px !important;
}

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

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

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

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

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

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

@media screen and (max-width: 1169px) {
  .transparent-header .header-social-icons {
    margin-right: -8px;
  }
}


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

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

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



/* STICKY HEADER CSS FIX START */

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

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

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

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

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

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

/* STICKY HEADER CSS FIX END */

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

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

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

@media all and (max-width: 767px) {
  
h1 {
  font-size:50px !important;
  line-height:60px !important;
  }
  
body.down header.header {
    transform: translateY(-15%);
}
  
body.down header.header.inner-page-header {
    transform: translateY(0%);
}
  
  .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%);}

@media only screen and (min-width: 992px) {
  .header .content-wrapper.transparent-header{background:transparent; width:100%;max-width: 100%; box-shadow: none;}
  
  .header .content-wrapper.transparent-header .bsnav {background:transparent;}
  
  .header .content-wrapper.transparent-header {background:transparent !important;}
  
  .header .content-wrapper.transparent-header .content-wrapper {background:transparent !important; box-shadow: none !important;}
  
  .hs-content-id-75693322273 .header {background:transparent !important; box-shadow:none;}
  
  .hs-content-id-73757162875 .header {background:transparent !important; box-shadow:none;}

  
  .header .content-wrapper.transparent-header .rt-search-box2 .search-btn2 {
    color: #fff;
  }
  
  .header .content-wrapper.transparent-header nav.navigation-primary ul.level-2 li a {
    color:#5b5b5b;
  }
  
  .header .content-wrapper.transparent-header .black-logo {
    display:none;
  }
  
  .header .content-wrapper.transparent-header nav.navigation-primary ul li .menu-arrow {
    color: #fff;
  }
  
  .header .content-wrapper.transparent-header nav .level-1 > li > a {
    color: #fff !important;
  }
}

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


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

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

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

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

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

/* CONTAINER CSS START */

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

/* CONTAINER CSS END */

/* FOOTER FIX CSS STARTS */

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

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

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

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

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


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

.footer-copyright-section .dnd-section {
  padding: 15px 15px !important;
  border-top: 1px solid #263b6d;
  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;
  background:#f94144 !important;
  color:#fff !important;
}
.footer-subscribe-form .actions{border-radius: 4px !important;}
.hm3-radiant-footer{padding:20px 0 20px 0; background:#113052;}

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

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

.inner-page-radiant-footer .footer-widget-section .dnd-section {
  padding: 70px 15px 50px 15px !important;
}
 /* FOOTER FIX CSS ENDS */

/* BUTTON HOVER NEW CSS START */

.button.customizable-button {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 14px 34px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  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;
  text-transform: capitalize;
}

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

/* BUTTON HOVER NEW CSS END */

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

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

/* FORM CSS FIX START */

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

form textarea {
  height:102px;
}

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

/* FORM CSS FIX END */

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

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

.header .header__container .home-button-one a.customizable-button {
    padding: 11px 20px !important;
    float: right;
    margin-top: 6px;
}

/* HOME ONE BOX CSS STARTS */

.hm1-icon-seven .rt-icon-box7 h6,
.hm1-icon-seven .rt-icon-box7 p {
  color:#fff;
}

/* .body-container--home-one .row-fluid-wrapper.row-depth-1.row-number-2 .span12.dnd-column {
  background:#F4F4F4;
  padding:45px 40px 35px 40px;
  margin-top:-196px;
}

.body-container--home-one .row-fluid-wrapper.row-depth-1.row-number-2 .span12.dnd-column .span4.dnd_area-module-3-flexbox-positioning {
  fill:#f94144;
}

.body-container--home-one .row-fluid-wrapper.row-depth-1.row-number-2 .span12.dnd-column .span4.dnd_area-module-4-flexbox-positioning {
  fill:#02c39a;
}

.body-container--home-one .row-fluid-wrapper.row-depth-1.row-number-2 .span12.dnd-column .span4.dnd_area-module-5-flexbox-positioning {
  fill:#f85e00;
}

.body-container--home-one .row-number-7.dnd-section .button.customizable-button {
  margin-top:50px;
} */

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

/* @media screen and (min-width: 481px) and (max-width: 767px) {
  .body-container--home-one .row-depth-1.row-number-7.dnd-section .rt-service-box1 .rt-content-box {
    width: 45% !important;
    left: 28% !important;
  }
}

@media screen and (max-width: 767px) {
  .body-container--home-one .row-fluid-wrapper.row-depth-1.row-number-2 .span12.dnd-column .span4.dnd_area-module-4-flexbox-positioning {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  .body-container--home-one .row-number-7.dnd-section .span3 {
    margin-bottom:63px;
  }
}

@media screen and (max-width: 480px) {
  .body-container--home-one .row-number-7.dnd-section .button.customizable-button {
  margin-top:0px;
  }
}
 */
/* .body-container--home-one .row-number-10.dnd-section.row-depth-1 .rt-icon-box7 .rt-img-box {
  padding: 37px 0;
  transition: opacity .3s linear,transform .3s ease-in-out;
  background: url() center center no-repeat;
}

.body-container--home-one .row-number-10.dnd-section.row-depth-1 .span3.dnd_area-module-18-flexbox-positioning .rt-icon-box7 .rt-img-box svg {
  fill:#f94144;
}

.body-container--home-one .row-number-10.dnd-section.row-depth-1 .span3.dnd_area-module-19-flexbox-positioning .rt-icon-box7 .rt-img-box svg {
  fill:#02c39a;
}

.body-container--home-one .row-number-10.dnd-section.row-depth-1 .span3.dnd_area-module-20-flexbox-positioning .rt-icon-box7 .rt-img-box svg {
  fill:#e36414;
}

.body-container--home-one .row-number-10.dnd-section.row-depth-1 .span3.dnd_area-module-21-flexbox-positioning .rt-icon-box7 .rt-img-box svg {
  fill:#782cc4;
}

.body-container--home-one .row-number-10.dnd-section.row-depth-1 .span3.dnd_area-module-18-flexbox-positioning .rt-icon-box7 h6 {
  margin-top:7px;
}

.body-container--home-one .row-number-10.dnd-section.row-depth-1 .span3.dnd_area-module-19-flexbox-positioning,
.body-container--home-one .row-number-10.dnd-section.row-depth-1 .span3.dnd_area-module-20-flexbox-positioning,
.body-container--home-one .row-number-10.dnd-section.row-depth-1 .span3.dnd_area-module-21-flexbox-positioning {
  align-items: center !important;
}

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

@media screen and (max-width: 991px) and (min-width: 768px) {
  .body-container--home-one .row-depth-1.row-number-22.dnd-section .row-number-26.row-depth-1 .span3 {
    width: 38%;
  }
} */

/* @media screen and (max-width: 767px) {
  .body-container--home-one .row-number-10.dnd-section.row-depth-1 .span3.dnd_area-module-18-flexbox-positioning,
  .body-container--home-one .row-number-10.dnd-section.row-depth-1 .span3.dnd_area-module-19-flexbox-positioning,
  .body-container--home-one .row-number-10.dnd-section.row-depth-1 .span3.dnd_area-module-20-flexbox-positioning {
    margin-bottom:30px;
  }
  
  .rt-icon-box10 .rt-img-box img {
  width:100%;
  }

  .body-container--home-one .row-depth-1.row-number-22.dnd-section .row-number-26.row-depth-1 .span4,
  .body-container--home-one .row-depth-1.row-number-22.dnd-section .row-number-26.row-depth-1 .span8 {
    float:left !important;
    margin-right:20px !important;
  }
  
  .body-container--home-one .row-depth-1.row-number-40.dnd-section img {
    width:100%;
  }
} */

/* .body-container--home-one .row-depth-1.row-number-22.dnd-section .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title svg {
  margin-top:5px;
  fill:#02c39a;
} */

/* .body-container--home-one .row-depth-1.row-number-22.dnd-section .radiant-counter-style-one .radiant-counter-number-prefix {
  display:none;
}

.body-container--home-one .row-depth-1.row-number-22.dnd-section .radiant-icon-box2-wrapper.icon-box2-parent-style-one {
  margin-bottom:20px;
} */

/* .body-container--home-one .row-depth-1.row-number-22.dnd-section .span7 {
  padding:175px 0 !important;
}

.body-container--home-one .row-depth-1.row-number-22.dnd-section .span5 .hs_cos_wrapper_type_rich_text h6 {
  padding-bottom:10px;
}
 */

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

.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:left;
  position:absolute;
}

.radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon svg {
    fill: #f94144;
}


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

/* .body-container--home-one .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content {
  padding-left: 50px;
} */

.radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-title {
  margin-bottom: 8px;
    margin-top: -3px;
    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;
}


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

/* .body-container--home-one .row-depth-1.row-number-33.dnd-section .row-depth-1.row-number-37.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one {
  border-top: 1px solid #ededed;
  padding-top: 32px;
} */

/* .body-container--home-one .row-depth-1.row-number-33.dnd-section .row-depth-1.row-number-37.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-title {
  margin-bottom:0px;
} */

/* .body-container--home-one .row-depth-1.row-number-33.dnd-section .row-depth-1.row-number-37.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content {
  padding-left: 75px;
} */

/* .body-container--home-one .row-depth-1.row-number-33.dnd-section .span6.dnd_area-column-47-background-image {
    padding: 300px 0 !important;
} */

/*

/* HOME ONE RESPONSIVE SECTION GAPPING END */

/* HOME ONE CSS ENDS */

/* HOME TWO CSS STARTS */

.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main {
    padding-top: 270px;
    padding-bottom: 207px;
    background-size: cover !important;
    background-position: top left !important;
    background-repeat: no-repeat;
}

.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton {
  border-radius: 3px;
  box-shadow: 0 0 0 transparent;
  display: inline-flex;
  padding: 13px 44px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  text-decoration:none;
  margin-top:15px;
}

.body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton:hover {
    transition-delay: .1s;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

/* HOME TWO BANNER ICON BOX CSS STARTS */

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

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

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

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

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

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

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

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

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

/* HOME TWO BANNER ICON BOX CSS ENDS */

@media screen and (max-width: 1024px) {
  .body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main {
    padding:187px 5px 120px 5px;
  }
}

@media screen and (max-width: 767px) {
  .body-container--home-two .row-depth-1.row-number-1.dnd-section .banner-main {
    padding:145px 5px 120px 5px;
  }
}

.body-container--home-two .row-depth-1.row-number-6.dnd-section .span3 .row-depth-1.row-number-7,
.body-container--home-two .row-depth-1.row-number-6.dnd-section .span3 .row-depth-1.row-number-9,
.body-container--home-two .row-depth-1.row-number-6.dnd-section .span3 .row-depth-1.row-number-11,
.body-container--home-two .row-depth-1.row-number-6.dnd-section .span3 .row-depth-1.row-number-13 {
  padding:142px 0;
  margin-bottom:23px;
}

.body-container--home-two .row-depth-1.row-number-6.dnd-section .span3 {
  padding-bottom:25px;
  margin-bottom:30px;
}

.body-container--home-two .row-depth-1.row-number-6.dnd-section .span3 a {
position:relative;
transition:all .12s ease-in-out;
-webkit-transition:all .12s ease-in-out;
text-transform:capitalize;
color:#505050;
}



.body-container--home-two .row-depth-1.row-number-6.dnd-section .span3 a:hover {
color:#f94144;
-webkit-transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
}



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

.body-container--home-two .row-depth-1.row-number-6.dnd-section .span3 a:before {
content:"";
width:0;
height:1px;
bottom:0;
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;
}

.body-container--home-two .row-depth-1.row-number-6.dnd-section .span3 a:hover:before {
right:auto;
left:0;
width:100%;
}

.body-container--home-two .row-depth-1.row-number-6.dnd-section .span3 {
  box-shadow:0px 14px 46px 0px rgb(0 26 87 / 8%);
  background:#ffffff;
}

.body-container--home-two .row-depth-1.row-number-6.dnd-section .span3 h6,
.body-container--home-two .row-depth-1.row-number-6.dnd-section .span3 a {
  margin:0 30px;
}

.body-container--home-two .row-depth-1.row-number-6.dnd-section,
.body-container--home-three .row-depth-1.row-number-2.dnd-section {
  z-index:1;
}

.body-container--home-two .row-depth-1.row-number-15.dnd-section {
  margin-top:-185px;
}

.body-container--home-two .row-depth-1.row-number-15.dnd-section .dnd_area-module-18-flexbox-positioning.span4 svg,
.body-container--home-three .row-depth-1.row-number-5.dnd-section .dnd_area-module-13-flexbox-positioning.span4 svg,
.body-container--about .row-depth-1.row-number-6.dnd-section .dnd_area-module-12-flexbox-positioning.span4 svg,
.body-container--service-two .row-depth-1.row-number-2.dnd-section .dnd_area-module-6-flexbox-positioning.span4 svg {
  fill:#f94144;
}

.body-container--home-two .row-depth-1.row-number-15.dnd-section .dnd_area-module-19-flexbox-positioning.span4 svg,
.body-container--home-three .row-depth-1.row-number-5.dnd-section .dnd_area-module-14-flexbox-positioning.span4 svg,
.body-container--about .row-depth-1.row-number-6.dnd-section .dnd_area-module-13-flexbox-positioning.span4 svg,
.body-container--service-two .row-depth-1.row-number-2.dnd-section .dnd_area-module-7-flexbox-positioning.span4 svg {
  fill:#ff8c0f;
}

.body-container--home-two .row-depth-1.row-number-15.dnd-section .dnd_area-module-20-flexbox-positioning.span4 svg,
.body-container--home-three .row-depth-1.row-number-5.dnd-section .dnd_area-module-15-flexbox-positioning.span4 svg,
.body-container--about .row-depth-1.row-number-6.dnd-section .dnd_area-module-14-flexbox-positioning.span4 svg,
.body-container--service-two .row-depth-1.row-number-2.dnd-section .dnd_area-module-8-flexbox-positioning.span4 svg {
  fill:#5cc555;
}

.body-container--home-two .row-depth-1.row-number-15.dnd-section .dnd_area-module-21-flexbox-positioning.span4 svg,
.body-container--home-three .row-depth-1.row-number-5.dnd-section .dnd_area-module-16-flexbox-positioning.span4 svg,
.body-container--about .row-depth-1.row-number-6.dnd-section .dnd_area-module-15-flexbox-positioning.span4 svg,
.body-container--service-two .row-depth-1.row-number-2.dnd-section .dnd_area-module-9-flexbox-positioning.span4 svg {
  fill:#a549f2;
}

.body-container--home-two .row-depth-1.row-number-15.dnd-section .dnd_area-module-22-flexbox-positioning.span4 svg,
.body-container--home-three .row-depth-1.row-number-5.dnd-section .dnd_area-module-17-flexbox-positioning.span4 svg,
.body-container--about .row-depth-1.row-number-6.dnd-section .dnd_area-module-16-flexbox-positioning.span4 svg,
.body-container--service-two .row-depth-1.row-number-2.dnd-section .dnd_area-module-10-flexbox-positioning.span4 svg {
  fill:#54c697;
}

.body-container--home-two .row-depth-1.row-number-15.dnd-section .dnd_area-module-23-flexbox-positioning.span4 svg,
.body-container--home-three .row-depth-1.row-number-5.dnd-section .dnd_area-module-18-flexbox-positioning.span4 svg,
.body-container--about .row-depth-1.row-number-6.dnd-section .dnd_area-module-17-flexbox-positioning.span4 svg,
.body-container--service-two .row-depth-1.row-number-2.dnd-section .dnd_area-module-11-flexbox-positioning.span4 svg {
  fill:#f04a6b;
}

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

.body-container--home-two .row-depth-1.row-number-15.dnd-section .row-depth-1.row-number-17.dnd-row {
  padding-bottom:12px;
}

.body-container--home-two .row-depth-1.row-number-23.dnd-section .radiant-counter-number-prefix {
  display:none;
}

.body-container--home-two .row-depth-1.row-number-23.dnd-section .span6 .row-depth-1.row-number-25 .span6 .row-number-26 .radiant-h2,
.body-container--home-two .row-depth-1.row-number-23.dnd-section .span6 .row-depth-1.row-number-25 .span6 .row-number-26 .radiant-counter-number-suffix,
 {
  color:#f94144;
}

.body-container--home-two .row-depth-1.row-number-23.dnd-section .span6 .row-depth-1.row-number-25 .span6 .row-number-27 .radiant-h2,
.body-container--home-two .row-depth-1.row-number-23.dnd-section .span6 .row-depth-1.row-number-25 .span6 .row-number-27 .radiant-counter-number-suffix,
{
  color:#1e4ec4;
}

@media screen and (min-width: 1200px) {
  .body-container--home-two .row-depth-1.row-number-19.dnd-section .row-depth-1.row-number-21,
  .body-container--home-two .row-depth-1.row-number-19.dnd-section .row-depth-1.row-number-22 {
  margin-left:60px;
  }
  
  .body-container--home-two .row-depth-1.row-number-23.dnd-section .span6 .row-depth-1.row-number-24,
  .body-container--home-two .row-depth-1.row-number-23.dnd-section .span6 .row-depth-1.row-number-25 {
    margin-right:60px;
  }
}

/* HOME 2 WHITE ICON BOX CSS START */

/* .icon-box-style-four .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-title {
  color:#ffffff;
} */

.icon-box-style-four .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-description {
  color:#d3d6ef;
}

/* HOME 2 ICON BOX CSS END */

/* HOME 2 HOVER BOX CSS START */

.body-container--home-two .row-depth-1.row-number-29.dnd-section .span4 {
  width:33.27%;
  margin-left:0.05%;
  padding: 150px 40px 20px 40px;
}

.span4 .hm2-service-box-inner {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    -webkit-transform: translate3d(0, 32%, 0);
    transform: translate3d(0, 32%, 0);
}

.span4 .hm2-service-box-inner h3 {
  padding-bottom:7px !important;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .span4 .hm2-service-box-inner {
    -webkit-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0);
    }
}

.span4:hover .hm2-service-box-inner {
    -webkit-transform: translate3d(0, -25px, 0);
    transform: translate3d(0, -25px, 0);
    transition: all 0.7s;
}

.span4 .hm2-service-box-inner .hm2-service-box-inner-desc-one {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    position: relative;
}

.span4:hover .hm2-service-box-inner .hm2-service-box-inner-desc-one {
    opacity: 1;
    visibility: visible;
}

.span4 .hm2-service-box-inner .hm2-service-box-inner-desc-two {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    position: relative;
}

.span4:hover .hm2-service-box-inner .hm2-service-box-inner-desc-two {
    opacity: 1;
    visibility: visible;
}

.span4:hover .hm2-service-box-inner a.hm2-service-box-inner-desc-two {
position:relative;
transition:all .12s ease-in-out;
-webkit-transition:all .12s ease-in-out;
text-transform:capitalize;
color:#505050;
}

.span4:hover .hm2-service-box-inner a.hm2-service-box-inner-desc-two:hover {
color:#f94144;
-webkit-transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
transition: width .6s cubic-bezier(.25, .8, .25, 1) 0s;
}

.span4:hover .hm2-service-box-inner a.hm2-service-box-inner-desc-two:before {
content:"";
width:0;
height:1px;
bottom:0;
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;
}

.span4:hover .hm2-service-box-inner a.hm2-service-box-inner-desc-two:hover:before {
right:auto;
left:0;
width:100%;
}

.body-container--home-two .row-depth-1.row-number-33.dnd-section .span4 {
  margin-top:14px;
}

/* .body-container--home-two .testimonial.rt-testimonial.style-one .testimonial-item>.holder {
  background:#ffffff;
  box-shadow:none;
  padding:0;
}
 */
.body-container--home-two .testimonial.rt-testimonial.style-one .swiper-pagination {
  text-align:left;
}

.body-container--home-two .testimonial .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: #1e4ec4;
    width: 20px;
    border-radius: 4px;
    height: 4px;
} 
/* HOME 2 HOVER BOX CSS END */

/* HOME TWO RESPONSIVE SECTION GAPPING START */

@media screen and (max-width: 1024px) {
  .body-container--home-two .row-depth-1.row-number-4.dnd-section {
    padding-top:90px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-15.dnd-section {
    padding-top: 245px !important;
    padding-bottom: 63px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-19.dnd-section {
     padding-top:100px !important;
     padding-bottom:70px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-23.dnd-section .span6 .row-depth-1.row-number-24 {
    margin-top:-50px;
  }
  
  .body-container--home-two .row-depth-1.row-number-29.dnd-section {
    padding-top:90px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-35.dnd-section {
    padding-top: 100px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-40.dnd-section {
    padding-top: 30px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-44.dnd-section {
    padding-top: 72px !important;
    padding-bottom: 52px !important;
  }
}

@media screen and (max-width: 767px) {
  .body-container--home-two .row-depth-1.row-number-15.dnd-section .row-depth-1.row-number-16.dnd-row .span4 {
    float:left;
  }
  .body-container--home-two .row-depth-1.row-number-15.dnd-section .row-depth-1.row-number-16.dnd-row {
    padding-bottom:35px;
  }
  .body-container--home-two .row-depth-1.row-number-15.dnd-section .row-depth-1.row-number-17.dnd-row {
    padding-bottom:0;
  }
  
  .body-container--home-two .row-depth-1.row-number-15.dnd-section {
    margin-top:0;
    padding-top: 90px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-6.dnd-section {
    padding-bottom:70px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-19.dnd-section img,
  .body-container--home-two .row-depth-1.row-number-23.dnd-section img {
     width: 100% !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-19.dnd-section .row-depth-1.row-number-21 {
  margin-top:30px !important;
  }

  .body-container--home-two .row-depth-1.row-number-23.dnd-section .row-depth-1.row-number-25 .span6 {
    float:left;
    margin-right:20px;
  }
  
  .body-container--home-two .row-depth-1.row-number-23.dnd-section .row-depth-1.row-number-25 .span6 .block.mt-2 {
    display:none;
  }
  
  .body-container--home-two .row-depth-1.row-number-23.dnd-section .row-depth-1.row-number-25 {
    margin-bottom:30px;
  }
  
  .body-container--home-two .row-depth-1.row-number-29.dnd-section .span4 {
    width: 100%;
    margin-bottom: 0.1%;
  }
  
   .body-container--home-two .row-depth-1.row-number-33.dnd-section .span4 {
     float:left;
  }
  
  .body-container--home-two .row-depth-1.row-number-33.dnd-section {
    padding-bottom: 60px !important;
  }
  
  .body-container--home-two .row-depth-1.row-number-40.dnd-section {
    padding-top: 0px !important;
    margin-top:-20px;
  }
  
  .body-container--home-two .row-depth-1.row-number-44.dnd-section {
    padding-top: 90px !important;
    padding-bottom: 52px !important;
  }
  
}

/* HOME TWO RESPONSIVE SECTION GAPPING END */
/* FAQ CSS START */

.rt-faq{
  background:tranparent;
  border:0px none;
  padding-left: 0px;
}
.rt-faq .rt-accordion-item  {
    padding-top: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}
.rt-faq .rt-accordion-item > .rt-faq-title {
    position: relative;
    padding: 12px 60px 12px 30px;
    cursor: pointer;
    display: block;
    background: #ffffff;
    color: #00174d;
    border-radius:0px;
    box-shadow:0px 10px 16px rgba(249,65,68,0.1);
}

.rt-faq .rt-accordion-item>.rt-faq-title h6{
    margin: 0;
    padding:0;
    text-transform: capitalize !important;
}

.rt-faq .rt-accordion-item.rt-faq-active > .rt-faq-title {
  background: #f94144;
  color: #ffffff;
}

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

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

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

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

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

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


/* FAQ CSS END */

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

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

/* HOME TWO CSS ENDS */

/* HOME THREE(AGENCY) CSS START */

/* HOME THREE BANNER CSS START */

.body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main {
    padding-top: 225px;
    padding-bottom: 100px;
    background-size: 100% !important;
    background-position: bottom center !important;
    background-repeat: no-repeat;
}

.body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton {
  border-radius: 3px;
  box-shadow: 0 0 0 transparent;
  display: inline-flex;
  padding: 13px 44px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;  
  transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  text-decoration:none;
  margin-top:15px;
  margin-right: 10px;
}
.body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton2 {
  border-radius: 3px;
  box-shadow: 0 0 0 transparent;
  display: inline-flex;
  padding: 13px 44px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;  
  transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  text-decoration:none;
  margin-top:15px;
  margin-left: 10px;
}

.body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton:hover {
    transition-delay: .1s;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
}
.body-container--home-three .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);
}


@media screen and (min-width: 992px) and (max-width: 1024px) {
  .body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main {
    padding:70px 15px 50px 15px;
  }
}

/* @media screen and (max-width: 991px) {
  .body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main {
    padding:216px 5px 120px 5px;
  }
} */

/* HOME THREE BANNER CSS END */

/* .body-container--home-three .row-depth-1.row-number-1.dnd-section {
  margin-top:-70px;
} */

/* .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-4 {
  margin-top:9px;
} */

.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-4 .span4.dnd_area-module-6-flexbox-positioning {
  fill:#f94144;
  border-top:2px solid #ffffff;
  transition: all .12s ease-in-out;
  -webkit-transition: all .12s ease-in-out;
}

.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-4 .span4.dnd_area-module-6-flexbox-positioning:hover {
  border-top:2px solid #f94144;
}

.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-4 .span4.dnd_area-module-7-flexbox-positioning {
  fill:#00afb9;
  border-top:2px solid #ffffff;
  transition: all .12s ease-in-out;
  -webkit-transition: all .12s ease-in-out;
}

.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-4 .span4.dnd_area-module-7-flexbox-positioning:hover {
  border-top:2px solid #00afb9;
}

.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-4 .span4.dnd_area-module-8-flexbox-positioning {
  fill:#f85e00;
  border-top:2px solid #ffffff;
  transition: all .12s ease-in-out;
  -webkit-transition: all .12s ease-in-out;
}

.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-4 .span4.dnd_area-module-8-flexbox-positioning:hover {
  border-top:2px solid #f85e00;
}

.body-container--home-three .row-depth-1.row-number-5.dnd-section .row-depth-1.row-number-6.dnd-row {
    padding-bottom: 21px;
}

.body-container--home-three .row-depth-1.row-number-5.dnd-section .row-depth-1.row-number-7.dnd-row {
    padding-bottom: 12px;
}

.body-container--home-three .row-depth-1.row-number-5.dnd-section {
  margin-top:-165px;
}

.body-container--home-three .row-depth-1.row-number-9.dnd-section .dnd_area-module-21-flexbox-positioning.span3 svg {
  fill:#f94144;
}

.body-container--home-three .row-depth-1.row-number-9.dnd-section .dnd_area-module-22-flexbox-positioning.span3 svg {
  fill:#264fc5;
}

.body-container--home-three .row-depth-1.row-number-9.dnd-section .dnd_area-module-23-flexbox-positioning.span3 svg {
  fill:#fa9905;
}

.body-container--home-three .row-depth-1.row-number-9.dnd-section .dnd_area-module-24-flexbox-positioning.span3 svg {
  fill:#7338d3;
}

.body-container--home-three .row-depth-1.row-number-9.dnd-section .span3 .hm3-icon-seven {
  margin:0 auto;
}

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

.body-container--home-three .row-depth-1.row-number-15.dnd-section .span5 {
  padding:45px 50px 50px 50px;
}

.body-container--home-three .row-depth-1.row-number-15.dnd-section .span6 .radiant-counter-style-one .ml-2 {
  color:#fff;
}

.body-container--home-three .row-depth-1.row-number-15.dnd-section .span6 .row-depth-1.row-number-19 .radiant-h2,
.body-container--home-three .row-depth-1.row-number-15.dnd-section .span6 .row-depth-1.row-number-19 .radiant-counter-number-suffix {
  color:#f94144;
}

.body-container--home-three .row-depth-1.row-number-15.dnd-section .span6 .row-depth-1.row-number-20 .radiant-h2,
.body-container--home-three .row-depth-1.row-number-15.dnd-section .span6 .row-depth-1.row-number-20 .radiant-counter-number-suffix {
  color:#2669e7;
}

.body-container--home-three .row-depth-1.row-number-15.dnd-section .span6 .row-depth-1.row-number-21 .radiant-h2,
.body-container--home-three .row-depth-1.row-number-15.dnd-section .span6 .row-depth-1.row-number-21 .radiant-counter-number-suffix {
  color:#eb8d12;
}

.body-container--home-three .row-depth-1.row-number-15.dnd-section .span6 .span4 {
  border-right:2px solid #c2d4e8;
}

.body-container--home-three .row-depth-1.row-number-15.dnd-section .span6 .span8 p {
  margin-top:-6px;
}

.body-container--home-three .row-depth-1.row-number-15.dnd-section .span6 .row-depth-1.row-number-20 {
  padding:33px 0;
}


.body-container--home-three .row-depth-1.row-number-12.dnd-section .row-depth-1.row-number-13 .span4 {
  margin-top:14px;
}

/* HOME THREE BLOG CSS START */ 

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

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

/* HOME THREE BLOG CSS END */ 

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

@media screen and (max-width: 992px) {
    .body-container--home-three .dnd-section.row-number-22 {
    display:none;
  }
  
  .body-container--home-three .dnd-section.row-number-26 {
    display:block;
  }
}

@media screen and (min-width: 992px) {
  .body-container--home-three .dnd-section.row-number-22 {
    display:block;
  }
  
  .body-container--home-three .dnd-section.row-number-26 {
    display:none;
  }
}

@media screen and (min-width: 768px) {
  .hs-content-id-73757162875 .header__container.content-wrapper {
    margin-top:-30px;
  }
}

@media screen and (min-width: 768px) {
  .body-container--home-three .row-depth-1.row-number-12.dnd-section .span3 {
  width:25%;
  margin-left:0%;
  }
}

@media screen and (max-width: 1024px) {
/*   .body-container--home-three .row-depth-1.row-number-2.dnd-section {
    padding-top:90px !important;
  } */
  
  .body-container--home-three .row-depth-1.row-number-5.dnd-section {
    padding-top: 245px !important;
    padding-bottom: 63px !important;
  }
  
  .body-container--home-three .row-depth-1.row-number-9.dnd-section .span3 .hm3-icon-seven {
    margin-bottom:20px;
  }
  
  .body-container--home-three .row-depth-1.row-number-9.dnd-section {
    padding-top: 90px !important;
    padding-bottom: 61px !important;
  }
  
  .body-container--home-three .row-depth-1.row-number-15.dnd-section {
    padding-top: 100px !important;
    padding-bottom: 76px !important;
  }
  
  .body-container--home-three .row-depth-1.row-number-15.dnd-section .span5 {
  padding:25px 30px 30px 30px;
  }
  
    .body-container--home-three .row-depth-1.row-number-12.dnd-section {
    padding-top:90px!important;
    padding-bottom:85px !important;
  }
  
  .body-container--home-three .dnd-section.row-number-30 {
    padding-top: 90px !important;
    padding-bottom: 92px !important;
  }
}

@media screen and (max-width: 767px) {
  .body-container--home-three .row-depth-1.row-number-5.dnd-section .row-depth-1.row-number-6.dnd-row .span4 {
    float: left;
    margin-bottom:15px;
  }
  
  .body-container--home-three .row-depth-1.row-number-5.dnd-section .row-depth-1.row-number-7.dnd-row {
    padding-bottom: 0;
  }
  
  .body-container--home-three .row-depth-1.row-number-5.dnd-section {
    padding-top: 216px !important;
  }
  
  .body-container--home-three .row-depth-1.row-number-15.dnd-section .span6 .span4 {
    border:none;
  }
  
  .body-container--home-three .row-depth-1.row-number-15.dnd-section .span6 .row-depth-1.row-number-20 {
    padding:0;
  }
  
  .body-container--home-three .row-depth-1.row-number-12.dnd-section .row-depth-1.row-number-13 .span4 {
    float:left;
  } 
  
  .body-container--home-three .dnd-section.row-number-26 {
    padding-bottom:100px !important;
  }

}
/* HOME THREE(AGENCY) CSS END */

/* HOME FOUR (ADVISOR) CSS START */

/* HOME FOUR BANNER CSS START */

.body-container--home-four .row-depth-1.row-number-1.dnd-section .banner-main {
    padding-top: 254px;
    padding-bottom: 202px;
    background-size: cover !important;
    background-position: top center !important;
    background-repeat: no-repeat;
}

.body-container--home-four .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton {
  border-radius: 3px;
  box-shadow: 0 0 0 transparent;
  display: inline-flex;
  padding: 13px 44px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  text-decoration:none;
  margin-top:15px;
}

.body-container--home-four .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton:hover {
    transition-delay: .1s;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

/* HOME 3 FOOTER CORRECTION CSS STARTS */

.hm3-radiant-footer h3 {
  padding-right: 50px;
}

.hm3-radiant-footer .hm3-footer-para {
  padding-right: 85px;
}

@media screen and (max-width: 767px) {
  .hm3-radiant-footer h3 {
  padding-right: 0px;
  }
  
  .hm3-radiant-footer .button.customizable-button {
    margin-bottom:30px;
  }
  
  .hm3-radiant-footer .footer-widget-section .dnd-section {
    padding: 120px 15px 90px 15px !important;
  }
  
  .hm3-radiant-footer .hm3-footer-para {
  padding-right: 0px;
  }
  
  .hm3-radiant-footer {
    padding:0;
  }
}

/* HOME 3 FOOTER CORRECTION CSS ENDS */

@media screen and (min-width: 1200px) {
  .body-container--home-four .row-depth-1.row-number-1.dnd-section .banner-main h1 {
    font-size:68px;
    line-height:78px;
  }
}



@media screen and (min-width: 992px) and (max-width: 1024px) {
  .body-container--home-four .row-depth-1.row-number-1.dnd-section .banner-main {
    padding:175px 5px 120px 5px;
  }
}

@media screen and (max-width: 991px) {
  .body-container--home-four .row-depth-1.row-number-1.dnd-section .banner-main {
    padding:165px 5px 120px 5px;
  }
}
/* HOME FOUR BANNER CSS END */

.body-container--home-four .row-depth-1.row-number-4.dnd-section svg {
  width:60px;
  height:60px;
}

.body-container--home-four .hm4-icon-six1 .rt-icon-box6,
.body-container--home-four .hm4-icon-six3 .rt-icon-box6,
.body-container--home-four .hm4-icon-six4 .rt-icon-box6 {
  background:#fff !important;
}

.body-container--home-four .hm4-icon-six1 .rt-icon-box6 svg  {
  fill: #33aa5b;
}

.body-container--home-four .hm4-icon-six3 .rt-icon-box6 svg  {
  fill: #f94144;
}

.body-container--home-four .hm4-icon-six4 .rt-icon-box6 svg  {
  fill: #ff931d;
}

.body-container--home-four .hm4-icon-six1 .rt-icon-box6:hover .rt-img-box6 svg,
.body-container--home-four .hm4-icon-six3 .rt-icon-box6:hover .rt-img-box6 svg,
.body-container--home-four .hm4-icon-six4 .rt-icon-box6:hover .rt-img-box6 svg,
.body-container--home-four .hm4-icon-six-spcl .rt-icon-box6 svg {
    fill: #fff;
}

.body-container--home-four .hm4-icon-six-spcl .rt-icon-box6 {
  background:#1d4dc3 !important;
  transition:none !important;
}

.body-container--home-four .hm4-icon-six-spcl .rt-icon-box6 h6,
.body-container--home-four .hm4-icon-six-spcl .rt-icon-box6 p {
  color:#fff;
}

.body-container--home-four .hm4-icon-six1 .rt-icon-box6 {
  margin-top:-50px;
}

.body-container--home-four .hm4-icon-six-spcl .rt-icon-box6 {
  margin-top:-50px;
}

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

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

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

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

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

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

.body-container--home-four .row-depth-1.row-number-4.dnd-section .row-depth-1.row-number-9 .rt-progressbar-bar {
  background-color: #1d4dc3;
}

.body-container--home-four .row-depth-1.row-number-4.dnd-section .row-depth-1.row-number-10 .rt-progressbar-bar {
  background-color: #f94144;
}

.body-container--home-four .row-depth-1.row-number-4.dnd-section .row-depth-1.row-number-11 .rt-progressbar-bar {
  background-color: #33aa5b;
}

.rt-progressbar-left-label, .rt-progressbar-right-label {
    font-family:Poppins;
    padding-bottom: 10px;
}

.body-container--home-four .row-depth-1.row-number-12.dnd-section .row-depth-1.row-number-18.dnd-row {
  border-top: 1px solid #ededed;
  padding-top: 32px;
}

.body-container--home-four .row-depth-1.row-number-12.dnd-section .row-depth-1.row-number-15.dnd-row {
  padding-bottom: 32px;
}

.body-container--home-four .row-depth-1.row-number-12.dnd-section .span5 .row-depth-1.row-number-15 .span6 .row-number-16 .radiant-h2, 
.body-container--home-four .row-depth-1.row-number-12.dnd-section .span5 .row-depth-1.row-number-15 .span6 .row-number-16 .radiant-counter-number-suffix {
  color: #f94144;
}

.body-container--home-four .row-depth-1.row-number-12.dnd-section .span5 .row-depth-1.row-number-15 .span6 .row-number-17 .radiant-h2, 
.body-container--home-four .row-depth-1.row-number-12.dnd-section .span5 .row-depth-1.row-number-15 .span6 .row-number-17 .radiant-counter-number-suffix {
  color: #1e4ec4;
}

.body-container--home-four .row-depth-1.row-number-20.dnd-section .row-depth-1.row-number-22.dnd-row .span4 {
  margin-top:14px;
}

.body-container--home-four .hm4-icon-two {
  background:#fff;
  width:82%;
  padding:17px 20px;
  margin-top: 0px;
  cursor:pointer;
}

.body-container--home-four .hm4-icon-two,
.body-container--home-four .hm4-icon-two-middle {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.body-container--home-four .hm4-icon-two:hover,
.body-container--home-four .hm4-icon-two-middle:hover {
  transform: translate3d(0, -15px, 0);
  -webkit-transform: translate3d(0, -15px, 0);
  transition: all 0.3s ease;
   -webkit-transition: all 0.3s ease;
}

.body-container--home-four .hm4-icon-two .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title {
  padding-bottom:0;
  margin-left:0;
}

.body-container--home-four .hm4-icon-two-middle {
  background:#1d4dc3;
  width:82%;
  padding:17px 20px;
  margin-top: 0px;
  color:#fff;
  cursor:pointer;
}

.body-container--home-four .hm4-icon-two-middle .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title {
  color:#fff;
  padding-bottom:0;
  margin-left:0;
}

.body-container--home-four .hm4-icon-two .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title svg,
.body-container--home-four .hm4-icon-two-middle .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title svg {
  margin-left:0;
}

.body-container--home-four .hm4-icon-two-middle .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title svg {
  fill:#fff;
}

.body-container--home-four .hm4-icon-two .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title span,
.body-container--home-four .hm4-icon-two-middle .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title span {
  margin-right:70px;
}

.body-container--home-four .row-depth-1.row-number-23.dnd-section .span4 .row-number-24 svg {
  fill:#33aa5b;
}

.body-container--home-four .row-depth-1.row-number-23.dnd-section .span4 .row-number-26 svg {
  fill:#f94144;
}

.body-container--home-four .testimonial.rt-testimonial.style-one {
  padding-bottom:50px;
}

/* HOME FOUR FORM CORRECTION CSS START */

.body-container--home-four input[type=text],
.body-container--home-four input[type=tel],
.body-container--home-four input[type=email],
.body-container--home-four textarea {
  margin-left: 4px;
  margin-right: 4px;
}

.body-container--home-four input[type=submit] {
  width: 100% !important;
  text-align: center;
  margin-left: 4px;
}

.body-container--home-four .form-columns-1 {
  margin-top:-7px;
}

.body-container--home-four .row-depth-1.row-number-39.dnd-section .span5 {
    padding: 45px 50px 50px 50px;
}

.body-container--home-four .row-depth-1.row-number-39.dnd-section .span3,
.body-container--home-four .row-depth-1.row-number-39.dnd-section .span5 {
  margin-left:0;
  margin-right:0;
}

@media screen and (max-width: 1040px) {
  .body-container--home-four .row-depth-1.row-number-39.dnd-section .span3 {
    display:none;
  }
  
  .body-container--home-four .row-depth-1.row-number-39.dnd-section .span5 {
    width: 71.1%;
    margin: 0 auto;
  }  
}

@media screen and (max-width: 680px) {
   .body-container--home-four .row-depth-1.row-number-39.dnd-section .span5 {
    width: 100%;
    margin: 0 auto;
  } 
}

/* HOME FOUR FORM CORRECTION CSS END */

/* HOME 4 FOOTER CORRECTION CSS STARTS */


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

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


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

.ft6-logo .hs_cos_wrapper_type_linked_image:hover img {
    transform: none;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

/* .body-container--home-one .row-depth-1.row-number-40 .hs_cos_wrapper_type_linked_image img {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.body-container--home-one .row-depth-1.row-number-40 .hs_cos_wrapper_type_linked_image:hover img {
    transform: none;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
} */

.hm4-radiant-footer .ft6-logo,
.hm4-radiant-footer .footer-content,
.hm4-radiant-footer .footer6-menu {
  text-align:center;
}

.wraper_footer.custom-footer.hm4-radiant-footer .header-social-icons {
  display:block;
  text-align:center;
}

.hm4-radiant-footer .footer6-menu ul li a {
  color:#fff;
}

.hm4-radiant-footer .footer6-menu ul li {
  margin-bottom:8px;
}

.hm4-radiant-footer .ft6-logo {
  margin-bottom:20px;
}

.hm4-radiant-footer .footer-content {
  margin-top:10px;
}

.hm4-radiant-footer .span3 {
  margin-top:40px;
}

@media screen and (max-width: 767px) {
  .hm4-radiant-footer .span6 {
    margin-top: 10px;
    margin-bottom: 32px;
  }
  
  .hm4-radiant-footer .span3 {
  margin-top:0px;
  }
  
  .hm4-radiant-footer {padding:0px 0 0px 0;}
}

/* HOME 4 FOOTER CORRECTION CSS ENDS */

@media screen and (max-width: 1280px) {
  .body-container--home-four .hm4-icon-two .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title span,
  .body-container--home-four .hm4-icon-two-middle .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title span {
  display:none;
  }
  
  .body-container--home-four .hm4-icon-two,
  .body-container--home-four .hm4-icon-two-middle {
    text-align:center;
  }
}

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

@media screen and (max-width: 1024px) {
  .body-container--home-four .row-depth-1.row-number-12.dnd-section {
    padding-top:0px !important;
    padding-bottom:70px !important;
  }
  
  .body-container--home-four .row-depth-1.row-number-20.dnd-section {
    padding-top:100px !important;
  }
  
  .body-container--home-four .row-depth-1.row-number-23.dnd-section {
    padding-bottom:100px !important;
  }
  
  .body-container--home-four .row-depth-1.row-number-29.dnd-section {
    padding-top:100px !important;
    padding-bottom:92px !important;
  }
  
  .body-container--home-four .row-depth-1.row-number-32.dnd-section {
    padding-top:100px !important;
    padding-bottom:85px !important;
  }
  
  .body-container--home-four .row-depth-1.row-number-39.dnd-section {
    padding-top:100px !important;
    padding-bottom:100px !important;
  }
  
  .body-container--home-four .row-depth-1.row-number-35.dnd-section {
    padding-top:100px !important;
    padding-bottom:25px !important;
  }
    
}

@media screen and (min-width: 991px) {
  .body-container--home-four .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2.dnd-row {
    display:block;
  }
}
    
/*   .body-container--home-four .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-3.dnd-row {
    display:none;
  }
}
 */
/* @media screen and (max-width: 991px) {
  .body-container--home-four .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-2.dnd-row {
    display:none;
  }
    */
/*   .body-container--home-four .row-depth-1.row-number-1.dnd-section .row-depth-1.row-number-3.dnd-row {
    display:block;
  }
} */

@media screen and (max-width: 767px) {
  .body-container--home-four .hm4-icon-six1 .rt-icon-box6,
  .body-container--home-four .hm4-icon-six-spcl .rt-icon-box6 {
  margin-top:0;
  }
  
  .body-container--home-four .row-depth-1.row-number-4.dnd-section  .dnd_area-module-6-flexbox-positioning > div {
  width:100%;
  }
  
  .body-container--home-four .row-depth-1.row-number-4.dnd-section {
    padding-top:100px !important;
    padding-bottom:20px !important;
  }
  
  .body-container--home-four .row-depth-1.row-number-4.dnd-section .span5 {
    padding-top: 20px !important;
  }
  
  .body-container--home-four .row-depth-1.row-number-12.dnd-section .span5 .row-depth-1.row-number-15 .span6 {
    float:left;
    margin-right:20px;
  }

  .body-container--home-four .row-depth-1.row-number-12.dnd-section .span5 .row-depth-1.row-number-15 .span6 .block {
    display:none;
  }
  
  .body-container--home-four .row-depth-1.row-number-12.dnd-section {
    padding-top:0px !important;
    padding-bottom:100px !important;
  }
  
  .body-container--home-four .row-depth-1.row-number-12.dnd-section .span7 {
    padding-top: 32% !important;
    padding-bottom: 32% !important;
  }
  
  .body-container--home-four .row-depth-1.row-number-20.dnd-section .row-depth-1.row-number-22.dnd-row .span4 {
    float:left;
    margin-top:0;
  }
  
  .body-container--home-four .row-depth-1.row-number-23.dnd-section .span4 {
    margin-top:30px;
  }

}

/* HOME FOUR (ADVISOR) CSS END */

/* HOME FIVE (SUPPORT) CSS START */

@media only screen and (min-width: 992px) {
  .body-container--home-five .row-depth-1.row-number-1.dnd-section {
    margin-top: -70px;
  }
  
  .hs-content-id-74245607968 .header {background:transparent !important; box-shadow:none;}
}

/* HOME FIVE BANNER CSS START */

.body-container--home-five .row-depth-1.row-number-1.dnd-section .banner-main {
    padding-top: 332px;
    padding-bottom: 305px;
    background-size: cover !important;
    background-position: bottom center !important;
    background-repeat: no-repeat;
}

.body-container--home-five .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton {
  border-radius: 3px;
  box-shadow: 0 0 0 transparent;
  display: inline-flex;
  padding: 13px 44px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  transition: transform .6s .125s cubic-bezier(.1,.75,.25,1);
  text-decoration:none;
  margin-top:15px;
}

.body-container--home-five .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton:hover {
    transition-delay: .1s;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

@media screen and (min-width: 1200px) {
  .body-container--home-five .row-depth-1.row-number-1.dnd-section .banner-main h1 {
    font-size:68px;
    line-height:78px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .body-container--home-five .row-depth-1.row-number-1.dnd-section .banner-main {
    padding:240px 5px 122px 5px;
  }
}

@media screen and (max-width: 991px) {
  .body-container--home-five .row-depth-1.row-number-1.dnd-section .banner-main {
    padding:180px 5px 124px 5px;
  }
}

/* HOME FIVE BANNER CSS END */

.body-container--home-five .row-depth-1.row-number-2.dnd-section .span3.dnd_area-module-5-flexbox-positioning,
.body-container--home-five .row-depth-1.row-number-2.dnd-section .span3.dnd_area-module-6-flexbox-positioning,
.body-container--home-five .row-depth-1.row-number-2.dnd-section .span3.dnd_area-module-7-flexbox-positioning,
.body-container--home-five .row-depth-1.row-number-2.dnd-section .span3.dnd_area-module-8-flexbox-positioning,

.body-container--home-five .row-depth-1.row-number-2.dnd-section .span3.dnd_area-module-5-flexbox-positioning,
.body-container--home-five .row-depth-1.row-number-2.dnd-section .span3.dnd_area-module-6-flexbox-positioning,
.body-container--home-five .row-depth-1.row-number-2.dnd-section .span3.dnd_area-module-7-flexbox-positioning,
.body-container--home-five .row-depth-1.row-number-2.dnd-section .span3.dnd_area-module-8-flexbox-positioning {
  display:block !important;
}

.body-container--home-five .row-depth-1.row-number-2.dnd-section .span3.dnd_area-module-5-flexbox-positioning svg,
.body-container--home-five .row-depth-1.row-number-12.dnd-section .span3.dnd_area-module-21-flexbox-positioning svg {
  fill:#07b1bb;
}

.body-container--home-five .row-depth-1.row-number-2.dnd-section .span3.dnd_area-module-6-flexbox-positioning svg,
.body-container--home-five .row-depth-1.row-number-12.dnd-section .span3.dnd_area-module-22-flexbox-positioning svg {
  fill:#f94144;
}

.body-container--home-five .row-depth-1.row-number-2.dnd-section .span3.dnd_area-module-7-flexbox-positioning svg,
.body-container--home-five .row-depth-1.row-number-12.dnd-section .span3.dnd_area-module-23-flexbox-positioning svg {
  fill:#a549f2;
}

.body-container--home-five .row-depth-1.row-number-2.dnd-section .span3.dnd_area-module-8-flexbox-positioning svg,
.body-container--home-five .row-depth-1.row-number-12.dnd-section .span3.dnd_area-module-24-flexbox-positioning svg {
  fill:#ff8c0f;
}

p.consul-text {
  margin-bottom: 8px;
  margin-top: 33px;
}

.body-container--home-five .row-depth-1.row-number-5.dnd-section .span6 ul,
.body-container--service-two .row-depth-1.row-number-6.dnd-section .span6 ul {
  padding-left: 20px;
  padding-bottom:50px;
}

.body-container--home-five .row-depth-1.row-number-5.dnd-section .span6 ul li,
.body-container--service-two .row-depth-1.row-number-6.dnd-section .span6 ul li {
  margin-bottom:10px;
}

@media screen and (min-width: 992px) {
  .body-container--home-five .row-depth-1.row-number-12.dnd-section h3 {
  padding:0px 110px 0px 110px;
  } 
}

.body-container--home-five .row-depth-1.row-number-12.dnd-section .span1,
.body-container--home-five .row-depth-1.row-number-12.dnd-section .span2 {
  margin-left:0;
}

.body-container--home-five .rt-icon-box7 {
  margin:10px 0;
}

.body-container--home-five .row-depth-1.row-number-12.dnd-section .span3.dnd_area-module-21-flexbox-positioning > div,
.body-container--home-five .row-depth-1.row-number-12.dnd-section .span3.dnd_area-module-22-flexbox-positioning > div,
.body-container--home-five .row-depth-1.row-number-12.dnd-section .span3.dnd_area-module-23-flexbox-positioning > div,
.body-container--home-five .row-depth-1.row-number-12.dnd-section .span3.dnd_area-module-24-flexbox-positioning > div {
  margin:0 auto !important;
}

.body-container--home-five .row-depth-1.row-number-15.dnd-section .span5 p {
  margin-bottom:0;  
}

.body-container--home-five .row-depth-1.row-number-15.dnd-section .span5 {
  padding: 60px 50px 50px 50px;
}

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

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

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

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

.text-red {
  color:#f94144;
}

.body-container--home-five .row-depth-1.row-number-21.dnd-section .row-depth-1.row-number-24.dnd-row svg {
  margin-top:6px;
}

.body-container--home-five .row-depth-1.row-number-21.dnd-section .row-depth-1.row-number-24.dnd-row p {
  margin-bottom:0px
}

.body-container--home-five .row-depth-1.row-number-21.dnd-section .span6 .home-five-img-two img {
  width:100%;
}

.body-container--home-five .row-depth-1.row-number-21.dnd-section .span6.dnd_area-column-37-padding {
  padding-left:45px;
}

.body-container--home-five .row-depth-1.row-number-21.dnd-section .span6.dnd_area-column-37-padding .row-depth-1.row-number-24 {
  border-top: 1px solid #ededed;
  padding-top: 32px;
  margin-top: 10px;
}

.body-container--home-five .row-depth-1.row-number-21.dnd-section .span6.dnd_area-column-37-padding .row-depth-1.row-number-24 .span5 {
  padding-left:10px;
}

.body-container--home-five .row-depth-1.row-number-21.dnd-section .span6.dnd_area-column-37-padding .row-depth-1.row-number-24 svg {
  fill: #33aa5b;
  width: 45px;
  height: 45px;
}

.body-container--home-five .row-depth-1.row-number-25.dnd-section h3 {
  padding-bottom:0 !important;
}

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

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

.radiant-icon-box2-wrapper.icon-box2-parent-style-five .radiant-icon-box2-content h6.radiant-icon-box2-title {
  margin-left:30px;
  padding-bottom:10px;
  padding-right: 90px;
}

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

.body-container--home-five .dnd_area-module-56-flexbox-positioning,
.body-container--home-five .dnd_area-module-57-flexbox-positioning,
.body-container--home-five .dnd_area-module-58-flexbox-positioning {
  display:block !important;
}

@media screen and (max-width: 767px) {
  .radiant-icon-box2-wrapper.icon-box2-parent-style-five .radiant-icon-box2-content .radiant-icon-box-description {
    margin-left:0px;
  }
  
  .radiant-icon-box2-wrapper.icon-box2-parent-style-five .radiant-icon-box2-content h6.radiant-icon-box2-title svg {
    margin-top:0;
  }
  
  .radiant-icon-box2-wrapper.icon-box2-parent-style-five {
    margin-top:0px;
  }
  
  .body-container--home-five .row-depth-1.row-number-5.dnd-section .span6 img,
  .body-container--service-two .row-depth-1.row-number-6.dnd-section .span6 img {
    width:100%;
  }
}
 
.hm5-icon-box-style-four .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content {
  padding-left: 55px;
}

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

.body-container--home-five .row-depth-1.row-number-29.dnd-section .row-depth-1.row-number-34,
.body-container--home-five .row-depth-1.row-number-29.dnd-section .row-depth-1.row-number-35 {
    border-top: 1px solid #ededed;
    padding-top: 28px;
    margin-top: 27px;
}

/* HOME FIVE TESTIMONIAL CSS STARTS */

.hm5-testimonial-3 .testimonial.rt-testimonial.style-three .testimonial-item .testimonial-inner-main.holder blockquote p,
.testimonial.rt-testimonial.style-three .testimonial-item .testimonial-inner-main.holder .data p {
  color:#d3d6ef;
}

.testimonial.rt-testimonial.style-three .testimonial-item .testimonial-inner-main.holder .data h5 {
  color:#fff;
}

/* HOME FIVE TESTIMONIAL CSS ENDS */

/* HOME FIVE FOOTER CSS STARTS */

.hm5-radiant-footer .ft6-logo {
  text-align:center;
  margin-bottom:0px;
}

.wraper_footer.custom-footer.hm5-radiant-footer .header-social-icons {
  display:block;
  text-align:center;
}

.wraper_footer.custom-footer.hm5-radiant-footer .header-social-icons ul li,
.wraper_footer.custom-footer.inner-page-radiant-footer .header-social-icons ul li {
  margin-right:5px;
}

.wraper_footer.custom-footer.hm5-radiant-footer .header-social-icons ul li.facebook-square,
.wraper_footer.custom-footer.inner-page-radiant-footer .header-social-icons ul li.facebook-square {
  padding: 7px 10px 7px 10px;
  background: #6A67CE;
  border-radius: 50%;
  cursor:pointer;
}

.wraper_footer.custom-footer.hm5-radiant-footer .header-social-icons ul li.facebook-square:hover,
.wraper_footer.custom-footer.inner-page-radiant-footer .header-social-icons ul li.facebook-square:hover {
  background: #3b5998;
}

.wraper_footer.custom-footer.hm5-radiant-footer .header-social-icons ul li.twitter,
.wraper_footer.custom-footer.inner-page-radiant-footer .header-social-icons ul li.twitter {
  padding: 7px 10px 7px 10px;
  background: #6A67CE;
  border-radius: 50%;
  cursor:pointer;
}

.wraper_footer.custom-footer.hm5-radiant-footer .header-social-icons ul li.twitter:hover,
.wraper_footer.custom-footer.inner-page-radiant-footer .header-social-icons ul li.twitter:hover {
  background: #00acee;
}

.wraper_footer.custom-footer.hm5-radiant-footer .header-social-icons ul li.instagram-circle,
.wraper_footer.custom-footer.inner-page-radiant-footer .header-social-icons ul li.instagram-circle {
  padding: 7px 10px 7px 10px;
  background: #6A67CE;
  border-radius: 50%;
  cursor:pointer;
}

.wraper_footer.custom-footer.hm5-radiant-footer .header-social-icons ul li.instagram-circle:hover,
.wraper_footer.custom-footer.inner-page-radiant-footer .header-social-icons ul li.instagram-circle:hover {
  background: #8a3ab9;
}

.wraper_footer.custom-footer.hm5-radiant-footer .header-social-icons ul li.youtube-circle,
.wraper_footer.custom-footer.inner-page-radiant-footer .header-social-icons ul li.youtube-circle {
  padding: 7px 10px 7px 10px;
  background: #6A67CE;
  border-radius: 50%;
  cursor:pointer;
}

.wraper_footer.custom-footer.hm5-radiant-footer .header-social-icons ul li.youtube-circle:hover,
.wraper_footer.custom-footer.inner-page-radiant-footer .header-social-icons ul li.youtube-circle:hover {
  background: #FF0000;
}

.wraper_footer.custom-footer.hm5-radiant-footer .header-social-icons {
    margin-bottom: 25px;
  }

/* .hm5-radiant-footer .hs-menu-wrapper.hs-menu-flow-vertical ul {
    flex-direction: row;
} */

.hm5-radiant-footer .hs-menu-wrapper.hs-menu-flow-vertical ul li {
  margin-right:40px;
}

/* .hm5-radiant-footer .hs-menu-wrapper.hs-menu-flow-vertical ul li a {
  color:#fff;
} */

.hm5-radiant-footer .footer7-menu {
  text-align:center;
  margin-left: 18%;
  margin-bottom: 55px;
  margin-top: 55px;
}

/* @media screen and (max-width: 1140px) {
  .hm5-radiant-footer .hs-menu-wrapper.hs-menu-flow-vertical ul {
    flex-direction: column;
  } */
  
  .hm5-radiant-footer .footer7-menu {
    margin-left: 0;
    margin-bottom: 40px;
    margin-top: 40px;
  }
  
  .hm5-radiant-footer .hs-menu-wrapper.hs-menu-flow-vertical ul li {
  margin-right:0;
   margin-bottom:8px; 
  }
}

@media screen and (max-width: 1200px) {
  
  .hm5-radiant-footer .footer-widget-section .dnd-section {
    padding: 250px 15px 85px 15px;
  }  
}

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

/* HOME FIVE FOOTER CSS ENDS */

@media screen and (max-width: 1024px) {
 .body-container--home-five .row-depth-1.row-number-21.dnd-section .span6.dnd_area-column-37-padding .row-depth-1.row-number-24 {
   display:none;
  }
}

@media screen and (max-width: 1024px) {
  .body-container--home-five .row-depth-1.row-number-2.dnd-section {
    padding-top:90px !important;
    padding-bottom:60px !important;
  }
  
  .body-container--home-five .row-depth-1.row-number-5.dnd-section {
    padding-top:10px !important;
    padding-bottom:100px !important;
  }
  
  .body-container--home-five .row-depth-1.row-number-5.dnd-section .span6 ul,
  .body-container--service-two .row-depth-1.row-number-6.dnd-section .span6 ul {
    padding-bottom:8px;
  }
  
  .body-container--home-five .row-depth-1.row-number-12.dnd-section {
    padding-top: 90px !important;
  }
  
  .body-container--home-five .row-depth-1.row-number-15.dnd-section {
    padding-top: 70px !important;
    padding-bottom:100px !important;
  }
  
  .body-container--home-five .row-depth-1.row-number-17.dnd-section {
    padding-top: 82px !important;
    padding-bottom: 23px !important;
  }
  
  .body-container--home-five .row-depth-1.row-number-29.dnd-section {
    padding-top: 75px !important;
    padding-bottom: 90px !important;
  }
  
  .body-container--home-five .row-depth-1.row-number-29.dnd-section .dnd_area-column-50-padding {
    padding-top: 0px !important;
    padding-bottom: 35px !important;
  }
  
  .body-container--home-five .row-depth-1.row-number-40.dnd-section {
    padding-top: 90px !important;
  }
  
  .body-container--home-five .row-depth-1.row-number-25.dnd-section {
    padding-top: 60px !important;
    padding-bottom: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .body-container--home-five .row-depth-1.row-number-21.dnd-section .span6.dnd_area-column-37-padding {
    padding-left:0;
  }
}
/* HOME FIVE (SUPPORT) CSS END */

/* HOME SIX (CONSULTING) CSS START */

.body-container--home-six .row-depth-1.row-number-1.dnd-section h1 {
  font-size:56px;
  line-height:66px;
}


.body-container--home-six .row-depth-1.row-number-1.dnd-section .span5.dnd_area-column-5-background-color {
    padding: 45px 50px 50px 50px;
}

/*.body-container--home-six .row-depth-1.row-number-6.dnd-section {
  margin-top:-100px;
}*/

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

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

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

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

.body-container--home-six .row-depth-1.row-number-8.dnd-section .span5 .button.customizable-button {
  margin-bottom:23px;
}

.text-bg-red {
    display: inline-block;
    background: rgba(249,65,68,0.7);
    border-radius: 0px;
    margin-bottom:12px;
    padding: 3px 18px;
}

.text-bg-red p {
  font-weight: 500;
}

.hm6-text-box {
  padding:395px 30px 10px 30px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.hm6-text-box:hover {
  transform: translate3d(0, -15px, 0);
  -webkit-transform: translate3d(0, -15px, 0);
  transition: all 0.3s ease;
   -webkit-transition: all 0.3s ease;
}

.body-container--home-six .row-depth-1.row-number-21.dnd-section .row-number-22 svg {
  fill: #00afb9;
}

.body-container--home-six .row-depth-1.row-number-21.dnd-section .row-number-23 svg {
  fill: #ff8c0f;
}

.body-container--home-six .row-depth-1.row-number-21.dnd-section .row-number-24 svg {
  fill: #7e76e3;
}

.body-container--home-six .row-depth-1.row-number-21.dnd-section .row-number-26 svg {
  fill: #ff8c0f;
}

.body-container--home-six .row-depth-1.row-number-21.dnd-section .row-number-27 svg {
  fill: #f94144;
}

.body-container--home-six .row-depth-1.row-number-21.dnd-section .row-number-28 svg {
  fill: #48bd81;
}

.body-container--home-six .row-depth-1.row-number-19.dnd-section .row-depth-1.row-number-20 .span4 {
  margin-top:14px;
}

.consulting-counter1 .radiant-counter .radiant-counter-number-prefix {
  display:none !important;
}

/* .consulting-counter1 .radiant-counter .radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-prefix, 
.consulting-counter1 .radiant-counter .radiant-counter-style-one .radiant-counter-style-one_inner.items-start span.radiant-counter-number-suffix, 
.consulting-counter1 .radiant-counter .radiant-counter-style-one .radiant-counter_number.radiant-counter-style-one_number.radiant-h2,
.consulting-counter1 .radiant-counter .radiant-counter-style-one .ml-2 {
  color:#fff;
} */

.consulting-counter1 .radiant-counter {
  border-right:1px solid #5e7cca;
  padding-top: 15px;
  padding-bottom: 15px;
}

.home6-text-five {
  padding-top: 9px;
  padding-bottom: 9px;
}

.home6-text-five p {
  margin-bottom:0;
}

.body-container--home-six .row-depth-1.row-number-33.dnd-section .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title svg {
    margin-top: 5px;
    fill: #02c39a;
}

.body-container--home-six .row-depth-1.row-number-33.dnd-section .row-depth-1.row-number-36 {
  margin-top:20px;
}

.body-container--home-six .row-depth-1.row-number-39.dnd-section .span6.dnd_area-column-61-background-image {
    padding: 175px 0 !important;
}

.hm6-total-text span.hm6-big-text {
  font-family: Poppins,sans-serif;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  color: #00174d;
  font-size: 32px;
  line-height: 42px;
  vertical-align: middle;
}

.hm6-total-text span.hm6-small-text {
  font-family: Poppins,sans-serif;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  color: #00174d;
  font-size: 17px;
  line-height: 27px;
  padding-left: 10px;
}

.hm6-icon-box-two {
  background:#fff;
  padding:32px 32px 22px 32px;
}

.hm6-icon-box-two .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content .radiant-icon-box-description {
  border-top:1px solid #dfe2e8;
  padding-top: 11px;
  margin-top: 12px;
}

.hm6-icon-box-two .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title svg {
  margin-top: -6px;
}

.body-container--home-six .row-depth-1.row-number-44.dnd-section .span3.dnd_area-module-71-flexbox-positioning svg {
  fill:#f94144;
}

.body-container--home-six .row-depth-1.row-number-44.dnd-section .span3.dnd_area-module-72-flexbox-positioning svg {
  fill:#207ad3;
}

.body-container--home-six .row-depth-1.row-number-44.dnd-section .span3.dnd_area-module-73-flexbox-positioning svg {
  fill:#0dc69e;
}

.body-container--home-six .row-depth-1.row-number-44.dnd-section .span3.dnd_area-module-74-flexbox-positioning svg {
  fill:#f37119;
}

.hm6-icon-box-two {
  margin-top:10px;
  margin-bottom:30px;
}

.hm6-icon-15-one {
  background:#fff;
  padding:40px 50px 40px 50px;
  margin-top: 5px;
}

.hm6-icon-15-one .button.customizable-button,
.hm6-icon-15-two .button.customizable-button {
  width:100%;
  margin-top: 25px;
}

.body-container--home-six .row-depth-1.row-number-47.dnd-section .span6 .row-depth-1.row-number-50 {
  border-bottom:1px solid #dfe2e8;
  padding-bottom: 45px;
  margin-bottom: 45px;
}

.hm6-icon-15-one .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title svg,
.hm6-icon-15-two .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title svg {
  margin-top:-8px;
}

.hm6-icon-15-one .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title svg,
.hm6-icon-15-two .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title svg {
  width:55px;
}

.body-container--home-six .row-depth-1.row-number-47.dnd-section .dnd_area-module-77-flexbox-positioning svg {
  fill:#0fa3b1;
}

.body-container--home-six .row-depth-1.row-number-47.dnd-section .dnd_area-module-80-flexbox-positioning svg {
  fill:#305cc8;
}

.body-container--home-six .row-depth-1.row-number-47.dnd-section .dnd_area-module-79-flexbox-positioning svg {
  fill:#f37119;
}

.hm6-icon-15-two .radiant-icon-box2-wrapper.icon-box2-parent-style-one .radiant-icon-box2-content h6.radiant-icon-box2-title {
  margin-right:45px;
}

.body-container--home-six .row-depth-1.row-number-47.dnd-section .row-depth-1.row-number-48,
.body-container--home-six .row-depth-1.row-number-47.dnd-section .row-depth-1.row-number-49 {
  padding-right:40px;
}

.body-container--home-six .row-depth-1.row-number-47.dnd-section .row-depth-1.row-number-50,
.body-container--home-six .row-depth-1.row-number-47.dnd-section .row-depth-1.row-number-51 {
  padding-left:40px;
}


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

@media screen and (min-width: 1200px) {
  .body-container--home-six .row-depth-1.row-number-33.dnd-section .row-depth-1.row-number-35, 
  .body-container--home-six .row-depth-1.row-number-33.dnd-section .row-depth-1.row-number-36, 
  .body-container--home-six .row-depth-1.row-number-33.dnd-section .row-depth-1.row-number-37 {
    margin-left: 40px;
  }
}

@media screen and (min-width: 1038px) {
  .radiant-icon-box2-wrapper.icon-box2-parent-style-six .radiant-icon-box2-content h6.radiant-icon-box2-title {
    padding-right: 90px;
  }
  
  .body-container--home-six .row-depth-1.row-number-8.dnd-section .span5 {
    padding-right:40px;
  } 
}

@media screen and (max-width: 991px) {
  .body-container--home-six .row-depth-1.row-number-8.dnd-section .span5,
  .body-container--home-six .row-depth-1.row-number-8.dnd-section .span7 {
    width:100%;
    margin-left:0;
  }
  
  .body-container--home-six .row-depth-1.row-number-8.dnd-section .span7 {
    padding-top:40px;
  }
  
  .body-container--home-six .row-depth-1.row-number-8.dnd-section {
    padding-top: 0px !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-47.dnd-section .row-depth-1.row-number-48,
  .body-container--home-six .row-depth-1.row-number-47.dnd-section .row-depth-1.row-number-49 {
  padding-right:20px;
  }

  .body-container--home-six .row-depth-1.row-number-47.dnd-section .row-depth-1.row-number-50,
  .body-container--home-six .row-depth-1.row-number-47.dnd-section .row-depth-1.row-number-51 {
  padding-left:20px;
  }
  
 .body-container--home-six .row-depth-1.row-number-6.dnd-section {
  display:none;
  }
  

}

@media screen and (max-width: 1024px) {  
  .body-container--home-six .row-depth-1.row-number-1.dnd-section .span5.dnd_area-column-5-background-color {
    padding: 25px 30px 30px 30px;
  }
  
  .body-container--home-six .row-depth-1.row-number-1.dnd-section .span5.dnd_area-column-1-padding {
    padding-top:0px !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-8.dnd-section {
    padding-top:0px !important;
    padding-bottom:66px !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-15.dnd-section {
    padding-bottom: 70px !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-19.dnd-section,
  .body-container--home-six .row-depth-1.row-number-31.dnd-section,
  .body-container--home-six .row-depth-1.row-number-52.dnd-section{
    padding-top:90px !important;
    padding-bottom:0 !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-21.dnd-section {
    padding-bottom:158px !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-29.dnd-section .dnd_area-column-43-padding {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-39.dnd-section {
    padding-top: 90px !important;
    padding-bottom: 70px !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-44.dnd-section {
    padding-top: 90px !important;
    padding-bottom: 70px !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-54.dnd-section {
    padding-bottom: 145px !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-47.dnd-section {
    padding-top: 90px !important;
    padding-bottom: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .radiant-icon-box2-wrapper.icon-box2-parent-style-six .radiant-icon-box2-content .radiant-icon-box-description {
    margin-left:0px;
  }
  
  .radiant-icon-box2-wrapper.icon-box2-parent-style-six .radiant-icon-box2-content h6.radiant-icon-box2-title svg {
    margin-top:0;
  }
  
  .radiant-icon-box2-wrapper.icon-box2-parent-style-six {
    margin-top:0px;
  }

  .body-container--home-six .row-depth-1.row-number-6.dnd-section .span4 {
    display:block !important;
    margin-bottom:40px;
  }
  
 
  .body-container--home-six .row-depth-1.row-number-8.dnd-section {
    padding-top: 90px !important;
    padding-bottom: 40px !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-8.dnd-section .span5 {
    padding-top: 0px !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-15.dnd-section {
    padding-bottom: 70px !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-19.dnd-section .row-depth-1.row-number-20 .span4 {
    float:left;
    margin-top:0;
  }
  
  .consulting-counter1 .radiant-counter {
    padding-bottom: 0px;
  }
  
  .body-container--home-six .row-depth-1.row-number-39.dnd-section {
    padding-top: 30px !important;
    padding-bottom: 100px !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-8.dnd-section .dnd_area-module-17-flexbox-positioning,
  .body-container--home-six .row-depth-1.row-number-8.dnd-section .dnd_area-module-18-flexbox-positioning {
    display:block !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-8.dnd-section .dnd_area-module-17-flexbox-positioning img,
  .body-container--home-six .row-depth-1.row-number-8.dnd-section .dnd_area-module-18-flexbox-positioning img {
    width:100% !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-44.dnd-section .span3.dnd_area-module-71-flexbox-positioning,
  .body-container--home-six .row-depth-1.row-number-44.dnd-section .span3.dnd_area-module-72-flexbox-positioning,
  .body-container--home-six .row-depth-1.row-number-44.dnd-section .span3.dnd_area-module-73-flexbox-positioning,
  .body-container--home-six .row-depth-1.row-number-44.dnd-section .span3.dnd_area-module-74-flexbox-positioning {
    display:block !important;
  }
  
  .body-container--home-six .row-depth-1.row-number-47.dnd-section .row-depth-1.row-number-48,
  .body-container--home-six .row-depth-1.row-number-47.dnd-section .row-depth-1.row-number-49 {
  padding-right:0px;
  }

  .body-container--home-six .row-depth-1.row-number-47.dnd-section .row-depth-1.row-number-50,
  .body-container--home-six .row-depth-1.row-number-47.dnd-section .row-depth-1.row-number-51 {
  padding-left:0px;
  }
  
  .body-container--home-six .row-depth-1.row-number-47.dnd-section .row-depth-1.row-number-50 {
    margin-top:45px;
  }

}

/* HOME SIX (CONSULTING) CSS END */

/* INNERPAGE HEADER CSS STARTS */

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

.inner-page-header .top-header {
  visibility:hidden;
}

@media screen and (min-width: 992px) {
  .inner-page-header .header__container.content-wrapper {
    margin-top:-32px;
  }
}

@media screen and (max-width: 992px) {
  .down .marketing .header__container.content-wrapper,
  .down .support .header__container.content-wrapper,
  .down .business .header__container.content-wrapper{
    margin-top:35px;
  }
}

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

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

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

.inner_banner_main {
    text-align: left;
}

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

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

/* INNERPAGE HEADER CSS END */

/* ABOUT US CSS STARTS */

.body-container--about .row-number-2.dnd-section .span7 .row-depth-1.row-number-4,
.body-container--about .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 {
  margin-left:30px;
}

.body-container--about .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 .span9 {
  background:#fff;
  border-left:4px solid #f94144;
}

.body-container--about .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 .span9 p {
  margin-bottom:0;
}

.body-container--about .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 .span9 {
  padding:20px 40px;
}

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

.body-container--about .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 h3 {
  font-size:54px;
  line-height:30px;
  letter-spacing:1px;
  font-weight:600;
  color:#f94144;
}

.body-container--about .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 {
  margin-top:5px;
}

.body-container--about .row-depth-1.row-number-6.dnd-section .row-depth-1.row-number-7.dnd-row {
    padding-bottom: 21px;
}

.body-container--about .row-depth-1.row-number-6.dnd-section .row-depth-1.row-number-8.dnd-row,
.body-container--service-two .row-depth-1.row-number-2.dnd-section .row-depth-1.row-number-4.dnd-row {
    padding-bottom: 8px;
}

.about-col-img,
.body-container--service-two .row-depth-1.row-number-2.dnd-section .row-depth-1.row-number-3.dnd-row {
  text-align: center;
  padding-bottom: 18px;
}

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

.about-counter1 .radiant-counter {
    border-right: 1px solid #bbc1cf;
    padding-top: 15px;
    padding-bottom: 15px;
}

.about-counter1 .radiant-counter .radiant-counter-number-prefix {
  display:none !important;
}

.body-container--about .row-number-25.dnd-section .button.customizable-button,
.body-container--about .row-number-29.dnd-section .button.customizable-button {
  margin-top:20px;
}

@media screen and (min-width: 768px) and (max-width: 885px) {
  .body-container--about .row-number-2.dnd-section .span7 .row-depth-1.row-number-4, 
  .body-container--about .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 {
    margin-left:10px;
  }
  
  .body-container--about .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 h3 {
    font-size: 48px;
    margin-top:14px;
  }
}

@media screen and (min-width: 992px) {
  .body-container--about .row-number-25.dnd-section {display:block;}
  .body-container--about .row-number-29.dnd-section {display:none;}
}

@media screen and (max-width: 991px) {
  .body-container--about .row-number-25.dnd-section {display:none;}
  .body-container--about .row-number-29.dnd-section {display:block;}
}

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

@media screen and (max-width: 1024px) {
  .body-container--about .row-number-2.dnd-section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  
  .body-container--about .row-number-6.dnd-section {
    padding-top: 90px !important;
    padding-bottom: 63px !important;
  }
  
  .body-container--about .row-number-10.dnd-section {
    padding-top: 92px !important;
    padding-bottom: 69px !important;
  }
}

@media screen and (max-width: 767px) {
  .body-container--about .row-number-2.dnd-section .span7 .row-depth-1.row-number-4,
  .body-container--about .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 {
  margin-left:0px;
  }
  
  .body-container--about .row-depth-1.row-number-6.dnd-section .row-depth-1.row-number-8.dnd-row,
  .body-container--service-two .row-depth-1.row-number-2.dnd-section .row-depth-1.row-number-4.dnd-row {
    padding-bottom: 0;
  }
  
  .body-container--about .row-depth-1.row-number-6.dnd-section .row-depth-1.row-number-7.dnd-row {
    padding-bottom:7px;
  }
  
  .about-counter1 .radiant-counter {
    padding-bottom: 0px;
  }
  
  .body-container--about .row-number-29.dnd-section {
    padding-top: 30px !important;
    padding-bottom: 82px !important;
  }
  
  .body-container--about .row-number-29.dnd-section .button.customizable-button {
    margin-bottom:25px;
  }
}
/* ABOUT US CSS ENDS */

/* CONTACT US ONE AND CONTACT US TWO CSS STARTS */

.body-container--contact .row-depth-1.row-number-4 .span4 {
  box-shadow: 0px 5px 42px rgba(30,78,196,0.09);
  padding:50px 0 45px 0;
  margin-bottom: 30px;
}

.contact-icon-seven .rt-icon-box7 p {
  color:#505050;
}

.contact-icon-seven {
  margin:0 auto;
}

.body-container--contact .row-depth-1.row-number-4 .span4.dnd_area-module-7-flexbox-positioning svg {
  fill:#3862ca;
  width:60px;
}

.body-container--contact .row-depth-1.row-number-4 .span4.dnd_area-module-8-flexbox-positioning svg {
  fill:#f94144;
  width:60px;
}

.body-container--contact .row-depth-1.row-number-4 .span4.dnd_area-module-9-flexbox-positioning svg {
  fill:#23b245;
  width:60px;
}

.body-container--contact .row-depth-1.row-number-6.dnd-section .span5 p {
  margin-bottom:0;
}

.body-container--contact .row-depth-1.row-number-6.dnd-section .row-depth-1.row-number-8 .span9 {
  padding-left:10px;
}

.body-container--contact .row-depth-1.row-number-6.dnd-section .row-depth-1.row-number-8 {
  padding-top:30px;
  padding-bottom:26px;
}

.bold-text {
  font-weight:bold;
  margin-right: 5px;
}

.social-text-name {
  margin-left:10px;
}
 
.body-container--contact-two .row-depth-1.row-number-2.dnd-section .span5,
.body-container--contact-two .row-depth-1.row-number-2.dnd-section .span4 {
  border-right:1px solid #cfd5d5;
}

.body-container--contact-two .row-depth-1.row-number-2.dnd-section p {
  margin-bottom:10px;
}

@media screen and (max-width: 1024px) {
  .body-container--contact .row-depth-1.row-number-6.dnd-section {
    padding-top:90px !important;
  }
  
  .body-container--contact .row-depth-1.row-number-11.dnd-section {
  padding-top:50px !important;
  padding-bottom:79px !important;
  }
  
  .body-container--contact-two .row-depth-1.row-number-2.dnd-section .span5,
  .body-container--contact-two .row-depth-1.row-number-2.dnd-section .span4 {
  border-right:none;
  }
  
  .body-container--contact-two .row-depth-1.row-number-2.dnd-section {
  padding-top:90px !important;
  padding-bottom:82px !important;
  }
  
  .body-container--contact-two .row-depth-1.row-number-8.dnd-section {
  padding-top:84px !important;
  padding-bottom:62px !important;
  }
}

@media screen and (max-width: 767px) {
  .body-container--contact .row-depth-1.row-number-6.dnd-section .row-depth-1.row-number-8 .span9 {
  padding-left:0px;
  padding-top:25px;
  }
  
  .body-container--contact .row-depth-1.row-number-6 .span6 {
    margin-top:10px;
  }
}

.body-container--contact .row-depth-1.row-number-6 .span6 {
  padding:45px 50px 50px 50px;
}

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

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

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

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

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

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

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

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

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

/* SOCIAL ICON LIST CSS ENDS */

@media screen and (max-width: 1024px) {
  .body-container--contact .row-depth-1.row-number-2 {
    padding-top:90px !important;
  }
  
  .body-container--contact .row-depth-1.row-number-4 {
    padding-bottom:70px !important;
  }  
}
/* CONTACT US ONE AND CONTACT US TWO CSS ENDS */

/* FAQ CSS START */

.body-container--faq .row-depth-1.row-number-2.dnd-section .span8 {
  padding-right:30px;
}

.body-container--faq .row-depth-1.row-number-2.dnd-section .span4 img {
  width: 100%;
}

.body-container--faq .row-depth-1.row-number-2.dnd-section .span4:hover img {
  transform: none;
}

.body-container--faq .row-depth-1.row-number-2.dnd-section .span4 {
  box-shadow: 0px 10px 16px rgb(249 65 68 / 10%);
}

.body-container--faq .row-depth-1.row-number-2.dnd-section .span4 .button.customizable-button,
.body-container--faq .row-depth-1.row-number-2.dnd-section .span4 .dnd_area-module-7-flexbox-positioning > div {
  width:100%;
}

.body-container--faq .row-depth-1.row-number-2.dnd-section .row-depth-1.row-number-5 {
  padding:37px 40px 0 40px;
}

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

@media screen and (max-width: 1024px) {
  .body-container--faq .row-depth-1.row-number-2.dnd-section {
    padding-top: 100px !important;
    padding-bottom: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .body-container--faq .row-depth-1.row-number-2.dnd-section .span8 {
  padding-right:0px;
  }
  
  .body-container--faq .row-depth-1.row-number-2.dnd-section .span4 {
    margin-top:20px;
  }
  
  .body-container--faq .row-depth-1.row-number-2.dnd-section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}

/* FAQ CSS END */

/* OUR APPROACH CSS STARTS */

.body-container-our-approach .row-number-2.dnd-section .span7 .row-depth-1.row-number-4, 
.body-container-our-approach .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 {
    margin-left: 30px;
}
.body-container-our-approach .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 .span9 {
    padding: 20px 40px;
}
.body-container-our-approach .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 .span9 {
    background: #f7f5f5;
    border-left: 4px solid #f94144;
}
.body-container-our-approach .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 h3 {
    font-size: 54px;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #f94144;
}
.body-container-our-approach .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 .span9 p {
    margin-bottom: 0;
}

.body-container-our-approach .row-number-6.dnd-section .span8 {
  padding-right: 30px;
}

.body-container-our-approach .row-depth-1.row-number-6.dnd-section .span4 img {
  width: 100%;
}

.body-container-our-approach .row-depth-1.row-number-6.dnd-section .span4:hover img {
  transform: none;
}

.body-container-our-approach .row-depth-1.row-number-6.dnd-section .span4 {
  box-shadow: 0px 10px 16px rgb(249 65 68 / 10%);
}

.body-container-our-approach .row-depth-1.row-number-6.dnd-section .span4 .button.customizable-button,
.body-container-our-approach .row-depth-1.row-number-6.dnd-section .span4 .dnd_area-module-7-flexbox-positioning > div {
  width:100%;
}

.body-container-our-approach .row-depth-1.row-number-6.dnd-section .row-depth-1.row-number-12 {
  padding:37px 40px 0 40px;
}

.body-container-our-approach .row-depth-1.row-number-6.dnd-section .row-depth-1.row-number-13 {
  padding:0 45px 45px 45px;
}

.body-container-our-approach .row-number-6.dnd-section .span8 .dnd_area-module-10-flexbox-positioning svg {
  fill: #ff8c0f;
}

.body-container-our-approach .row-number-6.dnd-section .span8 .dnd_area-module-11-flexbox-positioning svg {
  fill: #f94144;
}

.body-container-our-approach .row-number-6.dnd-section .span8 .dnd_area-module-12-flexbox-positioning svg {
  fill: #5cc555;
}

.body-container-our-approach .row-number-6.dnd-section .span8 .dnd_area-module-13-flexbox-positioning svg {
  fill: #29b3d4;
}

.body-container-our-approach .row-number-6.dnd-section .span8 .dnd_area-module-14-flexbox-positioning svg {
  fill: #3862ca;
}

.body-container-our-approach .row-number-6.dnd-section .span8 .dnd_area-module-15-flexbox-positioning svg {
  fill: #a549f2;
}

@media screen and (min-width: 768px) and (max-width: 885px) {
.body-container-our-approach .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 h3 {
    font-size: 48px;
    margin-top: 14px;
  }
}

@media screen and (max-width: 1024px) {
  .body-container-our-approach .row-number-2.dnd-section {
    padding-top:100px !important;
    padding-bottom:50px !important;
  } 
  
  .body-container-our-approach .row-number-6.dnd-section {
    padding-top:50px !important;
    padding-bottom:62px !important;
  }
}

@media screen and (max-width: 767px) {
  .body-container-our-approach .row-number-2.dnd-section .span5 img,
  .body-container-our-approach .row-number-6.dnd-section .span4 img {
    width:100%;
  }
  
  .body-container-our-approach .row-number-2.dnd-section .span7 .row-depth-1.row-number-4, 
  .body-container-our-approach .row-number-2.dnd-section .span7 .row-depth-1.row-number-5 {
    margin-left: 0;
  }
  
  .body-container-our-approach .row-number-6.dnd-section .span8 {
  padding-right: 0;
  }
  
  .body-container-our-approach .row-number-6.dnd-section .span4 {
    margin-top: 5px;
  }
  
  .body-container-our-approach .row-number-6.dnd-section {
    padding-top:40px !important;
    padding-bottom:100px !important;
  }
}
/* OUR APPROACH CSS ENDS */

/* PRICING PAGE CSS START */

@media screen and (max-width: 1024px) {
  .body-container--pricing .row-number-2.dnd-section {
    padding-top:90px !important;
  }
  
  .body-container--pricing .row-number-4.dnd-section {
    padding-bottom:70px !important;
  }
}

/* PRICING PAGE CSS END */

/* FAQ TWO CSS START */

.rt-faq-two {
  background:tranparent;
  border:0px none;
  padding-left: 0px;
}
.rt-faq-two .rt-accordion-item  {
    padding-top: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}
.rt-faq-two .rt-accordion-item > .rt-faq-title {
    position: relative;
    padding: 12px 60px 12px 30px;
    cursor: pointer;
    display: block;
    background: #ffffff;
    color: #00174d;
    border-radius:0px;
    box-shadow:0px 10px 16px rgba(249,65,68,0.1);
}

.rt-faq-two .rt-accordion-item>.rt-faq-title h6{
    margin: 0;
    padding:0;
    text-transform: capitalize !important;
}

.rt-faq-two .rt-accordion-item.rt-faq-active > .rt-faq-title {
  background: #f94144;
  color: #ffffff;
}

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

.rt-faq-two .rt-accordion-item.rt-faq-active>.rt-faq-title svg {
  fill:#fff;
  margin-top:2px;
}

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

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

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

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

/* FAQ TWO CSS END */

/* SERVICE ONE CSS START */

.body-container--service .row-fluid-wrapper.row-depth-1.row-number-2 .span4 {
  border-top:2px solid #ffffff;
  transition: all .12s ease-in-out;
  -webkit-transition: all .12s ease-in-out;
}

.body-container--service .row-fluid-wrapper.row-depth-1.row-number-2 .span4:hover {
  border-top:2px solid #f94144;
}

.body-container--service .row-depth-1.row-number-5.dnd-section .span5 .row-depth-1.row-number-8 .rt-progressbar-bar {
  background-color: #f94144;
}

.body-container--service .row-depth-1.row-number-5.dnd-section .span5 .row-depth-1.row-number-9 .rt-progressbar-bar {
  background-color: #12d3bf;
}

.body-container--service .row-depth-1.row-number-5.dnd-section .span5 .row-depth-1.row-number-10 .rt-progressbar-bar {
  background-color: #1d4dc3;
}

.body-container--service .row-depth-1.row-number-11.dnd-section .row-depth-1.row-number-13 {
  text-align:center;
}

.body-container--service .row-depth-1.row-number-14.dnd-section .span3 {
  padding-top:10px;
  padding-bottom:20px;
}

.body-container--service .row-depth-1.row-number-14.dnd-section .span3.dnd_area-module-23-flexbox-positioning svg {
  fill:#f94144;
}

.body-container--service .row-depth-1.row-number-14.dnd-section .span3.dnd_area-module-24-flexbox-positioning svg {
  fill:#ff8c0f;
}

.body-container--service .row-depth-1.row-number-14.dnd-section .span3.dnd_area-module-25-flexbox-positioning svg {
  fill:#60b938;
}

.body-container--service .row-depth-1.row-number-14.dnd-section .span3.dnd_area-module-26-flexbox-positioning svg {
  fill:#9352db;
}

.body-container--service .row-depth-1.row-number-14.dnd-section .span3.dnd_area-module-27-flexbox-positioning svg {
  fill:#638cf6;
}

.body-container--service .row-depth-1.row-number-14.dnd-section .span3.dnd_area-module-28-flexbox-positioning svg {
  fill:#f15bb5;
}

.body-container--service .row-depth-1.row-number-14.dnd-section .span3.dnd_area-module-29-flexbox-positioning svg {
  fill:#ffd6a5;
}

.body-container--service .row-depth-1.row-number-14.dnd-section .span3.dnd_area-module-30-flexbox-positioning svg {
  fill:#29b3d4;
}

.body-container--service .row-number-18.dnd-section ul.service-list {
  padding-left: 15px;
  padding-bottom: 3px;
}

.body-container--service .row-number-18.dnd-section ul.service-list li {
  margin-bottom: 10px;
}

.body-container--service .testimonial.rt-testimonial.style-one,
.body-container--service-two .testimonial.rt-testimonial.style-one {
    padding-bottom: 50px;
}

@media screen and (max-width: 1024px) {
  .body-container--service .row-number-2.dnd-section {
     padding-top:90px !important;
  }
  
  .body-container--service .row-number-2.dnd-section .dnd_area-module-6-flexbox-positioning img,
  .body-container--service .row-number-2.dnd-section .dnd_area-module-7-flexbox-positioning img,
  .body-container--service .row-number-2.dnd-section .dnd_area-module-8-flexbox-positioning img {
    width:100%;
  }
  
  .body-container--service .row-number-5.dnd-section {
     padding-top:85px !important;
     padding-bottom:70px !important;
  }
  
  .body-container--service .row-number-11.dnd-section {
     padding-top:90px !important;
     padding-bottom:100px !important;
  }
  
  .body-container--service .row-number-14.dnd-section {
     padding-top:90px !important;
     padding-bottom:72px !important;
  }
  
  .body-container--service .row-number-18.dnd-section {
    padding-top:97px !important;
  }
  
  .body-container--service .row-number-22.dnd-section {
    padding-top:35px !important;
    padding-bottom:92px !important;
  }
}

@media screen and (max-width: 767px) {
  .body-container--service .row-number-2.dnd-section .dnd_area-module-6-flexbox-positioning,
  .body-container--service .row-number-2.dnd-section .dnd_area-module-7-flexbox-positioning,
  .body-container--service .row-number-2.dnd-section .dnd_area-module-8-flexbox-positioning {
    display:block !important;
  }
  
  .body-container--service .row-number-5.dnd-section {
     padding-top:50px !important;
     padding-bottom:82px !important;
  }
  
  .body-container--service .row-number-14.dnd-section h3 {
    padding:0 !important;
    margin:0 !important;
  }
  
  .body-container--service .row-number-14.dnd-section {
    padding-top:60px !important;
  }
  
  .body-container--service .row-number-14.dnd-section .span3.dnd_area-module-25-flexbox-positioning,
  .body-container--service .row-number-14.dnd-section .span3.dnd_area-module-26-flexbox-positioning,
  .body-container--service .row-number-14.dnd-section .span3.dnd_area-module-29-flexbox-positioning,
  .body-container--service .row-number-14.dnd-section .span3.dnd_area-module-30-flexbox-positioning {
    align-items: center !important;
  }
  
  .body-container--service .row-number-18.dnd-section .span7 {
    margin-top:35px;
  }
  
  .body-container--service .row-number-18.dnd-section {
    padding-bottom:12px !important;
  }
}

/* SERVICE ONE CSS END */

/* TEAM PAGE CSS START */

.body-container--team .row-number-2.dnd-section .row-depth-1.row-number-5 h6 {
  padding-bottom:0;
  margin-bottom:0;
  margin-top:5px;
}

.body-container--team .row-number-2.dnd-section .row-depth-1.row-number-5 .span4 {
  margin-left:0px;
  border-right: 1px solid #ededed;
}

.body-container--team .row-number-2.dnd-section .row-depth-1.row-number-5 .span6 {
  padding-left:30px;
}

.body-container--team .row-number-2.dnd-section .row-depth-1.row-number-6 {
    border-top: 1px solid #ededed;
    margin-top: 20px;
    padding-top: 20px;
}

.body-container--team .row-number-9.dnd-section {
    display: block;
  }
  
  .body-container--team .row-number-12.dnd-section {
    display: none;
  }

@media screen and (max-width: 1024px) {  
  .body-container--team .row-number-2.dnd-section {
    padding-top:100px !important;
  }
  
  .body-container--team .row-number-7.dnd-section {
    padding-top:10px !important;
  }
  
  .body-container--team .row-number-9.dnd-section {
    padding-bottom:70px !important;
  }
}

@media screen and (max-width: 991px) {
  .body-container--team .row-number-2.dnd-section .row-depth-1.row-number-5 .span4 {
    border:none;
  }
  
  .body-container--team .row-number-2.dnd-section .row-depth-1.row-number-5 .span4 {
    margin-left:10px;
  }
}

@media screen and (max-width: 767px) {
  .body-container--team .row-number-2.dnd-section .row-depth-1.row-number-5 .span6 {
  padding-left:0px;
  }
  
  .body-container--team .row-number-2.dnd-section .row-depth-1.row-number-5 .span4 {
    margin-left:0px;
  }
  
  .body-container--team .row-number-2.dnd-section .span6 .row-depth-1.row-number-3 img {
    width:100%;
  }
  
  .body-container--team .row-number-9.dnd-section {
    display: none;
  }
  
  .body-container--team .row-number-12.dnd-section {
    display: block;
  }
}
/* TEAM PAGE CSS END */

/* OUR HISTORY PAGE CSS START */

.body-container--history .row-number-2.dnd-section h6,
.body-container--history .row-number-5.dnd-section h6,
.body-container--history .row-number-8.dnd-section h6,
.body-container--history .row-number-11.dnd-section h6,
.body-container--history .row-number-14.dnd-section h6 {
  padding:0;
  margin:0;
}

.body-container--history .row-number-20.dnd-section .span3 .rt-icnbx12 {
  background:#fff;
  padding: 35px 25px 30px 35px;
}

.body-container--history .row-number-20.dnd-section .span3.dnd_area-module-29-flexbox-positioning svg {
  fill:#e68410;
}

.body-container--history .row-number-20.dnd-section .span3.dnd_area-module-30-flexbox-positioning svg {
  fill:#5eaf1b;
}

.body-container--history .row-number-20.dnd-section .span3.dnd_area-module-31-flexbox-positioning svg {
  fill:#fa5456;
}

.body-container--history .row-number-20.dnd-section .span3.dnd_area-module-32-flexbox-positioning svg {
  fill:#b323e2;
}

.body-container--history .row-number-16.dnd-section .span6 {
    padding-top: 12% !important;
    padding-bottom: 12% !important;
}

.body-container--history .row-number-16.dnd-section .span3 .text-left.widget-type-linked_image {
  margin-left:-10% !important;
}

@media screen and (max-width: 1200px) {
  .body-container--history .span6 {
    background-size: contain !important;
  }
}

@media screen and (max-width: 1024px) {
  .body-container--history .row-number-2.dnd-section {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  } 
  
  .body-container--history .row-number-5.dnd-section {
    padding-bottom: 20px !important;
  }
  
  .body-container--history .row-number-8.dnd-section {
    padding-top: 45px !important;
    padding-bottom: 40px !important;
  }
  
  .body-container--history .row-number-14.dnd-section {
    padding-top: 0 !important;
  }
  
  .body-container--history .row-number-16.dnd-section {
    padding-bottom: 100px !important;
  }
  
  .body-container--history .row-number-20.dnd-section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  } 
}

@media screen and (max-width: 767px) {
  .body-container--history .span6 {
    padding-left:0 !important;
    padding-right:0 !important;
    background-size: auto !important;
  }
  
  .body-container--history img {
    width:100%;
  }
  
  .body-container--history .row-number-8.dnd-section {
    padding-top: 80px !important;
  }
  
  .body-container--history .row-number-14.dnd-section {
    padding-top: 32px !important;
  }
  
  .body-container--history .row-number-20.dnd-section {
    padding-bottom: 75px !important;
  }
  
  .body-container--history .row-number-16.dnd-section .span3 {
    display:none !important;
  }
}
/* OUR HISTORY PAGE CSS END */

/* SERVICE TWO PAGE CSS START */

.body-container--service-two .row-depth-1.row-number-15 .span6 {
  padding:45px 50px 50px 50px;
  margin:0;
}

.service-two-counter1 svg {
  fill:#ff8c0f;
}

.service-two-counter2 svg {
  fill:#1d4dc3;
}

.service-two-counter3 svg {
  fill:#f94144;
}

.service-two-counter4 svg {
  fill:#60af4e;
}

@media screen and (max-width: 1040px) {
  
  .body-container--service-two .row-depth-1.row-number-15 .span6 {
    width: 100%;
    margin: 0 auto;
  }  
}

@media screen and (max-width: 680px) {
   .body-container--service-two .row-depth-1.row-number-15 .span6 {
    width: 100%;
    margin: 0 auto;
  } 
}

@media screen and (max-width: 1024px) {
  .body-container--service-two .row-depth-1.row-number-2 {
     padding-top: 90px !important;
  }
  
  .body-container--service-two .row-depth-1.row-number-6 {
     padding-top: 53px !important;
     padding-bottom: 100px !important;
  }
  
  .body-container--service-two .row-depth-1.row-number-13 {
    padding-bottom: 62px !important;
  }
  
  .body-container--service-two .row-depth-1.row-number-15 {
    padding-top: 100px !important;
     padding-bottom: 42px !important;
  }
  
  .body-container--service-two .row-depth-1.row-number-18 {
    padding-top: 90px !important;
     padding-bottom: 92px !important;
  }
  
  .body-container--service-two .radiant-counter {
    margin-bottom: 30px !important;
  } 
}



/* SERVICE TWO PAGE CSS END */

/* NEW CSS START */


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

@media screen and (max-width: 1024px) {
  div .systems-page {
      padding: 90px 0 90px 0;
  }
}

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

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

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


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

.membership-login-page form textarea {
      background: #f4f4f4;
      border-radius: 4px;
      width: 100%;
      height: 102px;
      border: 0;
      margin-bottom: 10px;
      padding: 0 20px;
      color: #696969;
      transition: all .3s ease-in-out;
      -webkit-transition: all .3s ease-in-out;
      border: 1px solid #d0dcec;
}

  .membership-login-page form input[type=text]:hover,
  .membership-login-page form input[type=email]:hover, 
  .membership-login-page form input[type=password]:hover, 
  .membership-login-page form input[type=tel]:hover, 
  .membership-login-page form input[type=number]:hover, 
  .membership-login-page form input[type=file]:hover, 
  .membership-login-page form select:hover, 
  .membership-login-page form textarea:hover {
    border: 1px solid #f94144;
}

form input[type=text], 
form input[type=email], 
form input[type=password], 
form input[type=tel], 
form input[type=number], 
form input[type=file], 
form select {
      background: #f4f4f4;
      border-radius: 4px;
      width: 100%;
      height: 45px;
      border: 0;
      margin-bottom: 10px;
      padding: 0 20px;
      color: #696969;
      transition: all .3s ease-in-out;
      -webkit-transition: all .3s ease-in-out;
      border: 1px solid #d0dcec;
  }

form textarea {
      background: #f4f4f4;
      border-radius: 4px;
      width: 100%;
      height: 102px;
      border: 0;
      margin-bottom: 10px;
      padding: 0 20px;
      color: #696969;
      transition: all .3s ease-in-out;
      -webkit-transition: all .3s ease-in-out;
      border: 1px solid #d0dcec;
  }

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 #f94144;
}
  
  .membership-login-page a{
    color:#000;
  }
  .membership-login-page p{
    padding:0;
    margin: 0;
  }
  .membership-login-page ul.no-list.hs-error-msgs,
  .membership-register ul.no-list.hs-error-msgs,
  .membership-reset-pass-req ul.no-list,
  .membership-reset-pass ul.no-list{
    display:none;
  }
  
  .membership-register form input[type=text],
  .membership-register form input[type=email], 
  .membership-register form input[type=password], 
  .membership-register form input[type=tel], 
  .membership-register form input[type=number], 
  .membership-register form input[type=file], 
  .membership-register form select {
      background: #f4f4f4;
      border-radius: 4px;
      width: 100%;
      height: 45px;
      border: 0;
      margin-bottom: 10px;
      padding: 0 20px;
      color: #696969;
      transition: all .3s ease-in-out;
      -webkit-transition: all .3s ease-in-out;
      border: 1px solid #d0dcec;
  }

.membership-register form textarea {
      background: #f4f4f4;
      border-radius: 4px;
      width: 100%;
      height: 102px;
      border: 0;
      margin-bottom: 10px;
      padding: 0 20px;
      color: #696969;
      transition: all .3s ease-in-out;
      -webkit-transition: all .3s ease-in-out;
      border: 1px solid #d0dcec;
  }

  .membership-register 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 #f94144;
}
  
  .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 {
      background: #f4f4f4;
      border-radius: 4px;
      width: 100%;
      height: 45px;
      border: 0;
      margin-bottom: 10px;
      padding: 0 20px;
      color: #696969;
      transition: all .3s ease-in-out;
      -webkit-transition: all .3s ease-in-out;
      border: 1px solid #d0dcec;
  }

.membership-reset-pass form textarea {
      background: #f4f4f4;
      border-radius: 4px;
      width: 100%;
      height: 102px;
      border: 0;
      margin-bottom: 10px;
      padding: 0 20px;
      color: #696969;
      transition: all .3s ease-in-out;
      -webkit-transition: all .3s ease-in-out;
      border: 1px solid #d0dcec;
  }

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

@media screen and (min-width: 992px) {
  .col-lg-9.col-md-12.col-sm-12.col-12.rt-search-results {
    padding-right: 50px;
  }
}



.systems-page--search-results .hs-search-results__featured-image {
    padding: 0;
}
.systems-page--search-results .hs-search-results__featured-image img{
    border-radius:0px;
  width:100%;
}
.systems-page--search-results ul li:first-child a{
    padding-top: 12px;
}
.systems-page--search-results ul li a {
    padding-top: 30px;
    display: inline-block;
}
/*.right-sidebar input[type="text"]{
  vertical-align: top;
    width: 100%;
    height: 45px;
    padding: 0px 45px 0px 15px;
    background-color: #f0f2f5;
    border: 0;
    font-weight: 400;
    font-size: 14px;
    color: #707173;
    line-height: 26px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    outline: 0;
}*/

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

.rt-search-results a.hs-search-results__next-page:hover,
.systems-page a.hs-search-results__prev-page:hover {
  transition-delay: .1s;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgb(0 0 0 / 12%);
  background: #f94144;
}
/*.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 #f94144;
}

.error-page a.button {
    /*padding-top: 16px;
    padding-right: 50px;
    padding-bottom: 16px;
    padding-left: 50px;*/
  background-color: #f94144;
    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 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;
  position: relative;
  border-radius: 4px;
  background: #f94144;
  -webkit-transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
  cursor:pointer;
}

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

.right-sidebar .actions::before {
  background-color: transparent;
}

.right-sidebar .hs-button {
    background-color: #f94144;
    border: 1px solid #f94144;
    border-radius: 4px;
    color: #fff;
    padding: 9px 53px;
  width: 100%;
  -webkit-transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
}

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

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

.right-sidebar form input[type=text],
.right-sidebar form input[type=email] {
    display: inline-block;
    vertical-align: top;
    height: 45px;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    resize: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border-radius: 4px;
    background-color: #f8f8f8;
    padding-top: 6px;
    padding-right: 10px;
    padding-bottom: 6px;
    padding-left: 10px;
    color: #989898;
    border: 1px solid #d8d8d8;
    width: 100%;
}

.right-sidebar form input[type=text]:hover,
.right-sidebar form input[type=email]:hover {
  border: 1px solid #f94144;
}

.widget-area>#text-2 {
    background: #171f31;
    box-shadow: 0 3px 20px rgb(0 0 0 / 10%);
    border-radius: 4px;
    padding: 20px 20px 20px 20px;
    margin-top: 35px;
}

.widget-area>#text-2 .widget-title {
    margin-top: 0;
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 25px;
    line-height: 34px;
    color: #fff;
  border-bottom:none;
  text-align:center;
}

.widget-area>#text-2 h5.widget-title:before {
  display:none;
}

.widget-area>#text-2 .textwidget p {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #d3d6ef;
  text-align:center;
}

.right-sidebar .widget-area>section.widget_radiantthemes_image_box_widget {
    box-shadow: 0 3px 20px rgb(0 0 0 / 10%);
    border-radius: 4px;
    padding: 20px 30px 30px 30px;
    margin-bottom: 55px;
  text-align: center;
}

.rt-image-box {
    position: relative;
    margin: auto;
    overflow: hidden;
}
.random-post-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.random-post-pic {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 10px 0 23px 0;
}

.rt-image-box img {
    max-width: 100%;
    transition: transform 1s cubic-bezier(.33,.02,0,.93);
    -webkit-transition: transform 1s cubic-bezier(.33,.02,0,.93);
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1.06);
  margin: 0 auto;
}


.random-post-wrapper>.random-post-pic img {
    width: 130px;
    height: 130px !important;
    transform: scale(1);
    border: 2px solid #f94144;
    border-radius: 100%;
    padding: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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


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

.blog-list-tags a:hover,
.right-sidebar .widget.widget_tags ul li a:hover {
    color: #f94144 !important;
}

.blog-list-tags a:before,
.right-sidebar .widget.widget_tags ul li a:before {
    content: "";
    width: 0;
    height: 1px;
    bottom: 0px;
    position: absolute;
    left: auto;
    right: 0;
    -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    background: currentColor;
}

.blog-list-tags a:hover:before,
.right-sidebar .widget.widget_tags ul li a:hover:before {
    right: auto;
    left: 0;
    width: 100%;
}

time.blog-post__timestamp i, 
.blog-list-tags i.ti-tag {
  color: #f94144;
  margin-right: 6px;
}


.right-sidebar .widget.widget_search input[type="search"], .right-sidebar .widget.widget_search input[type="text"]{
  vertical-align: top;
  width: 100%;
  height: 50px;
  padding: 0px 45px 0px 15px;
  background-color: #f0f2f5;
  border: none;
  font-weight: 400;
  font-size: 14px;
  color: #707173;
  line-height: 26px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  outline:none;
}
.widget.widget_search {
  margin-bottom: 40px;
}
.right-sidebar h5.widget-title{
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 22px;
  text-transform:capitalize;
}
.right-sidebar h5.widget-title:before{
  content: "";
  width: 75px;
  z-index: 9;
  height: 3px;
  top: 49px;
  position: absolute;
  left: 0;
  margin: 0;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
  color: #f94144;
}
.right-sidebar .widget.widget_tags ul{
  list-style:none;
  padding:0;
  margin:0;
}
.right-sidebar .widget.widget_tags ul li{
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 28px;
  color: #707173;
  letter-spacing: 0.2px;
  font-weight: 400;
}
.right-sidebar .widget.widget_tags ul li a{
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 26px;
  color: #707173;
  text-decoration:none;
}
.right-sidebar  ul.rt-recent-post-with-thumbnail-holder {
  margin: 0;
  padding: 0;
}
.right-sidebar ul.rt-recent-post-with-thumbnail-holder li{
  display:block;
  padding:0;
  margin-bottom:10px;
}
.right-sidebar .blog-widget-post{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.right-sidebar  .blog-widget-post-img{
  flex-shrink: 0;
  width: 82px;
  height: 82px;
  margin: 0 15px 0 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  overflow: hidden;
}
.right-sidebar  .blog-widget-post img{
  overflow: hidden;
  height: 100%;
  width: 100%;
  min-height: 84px;
  object-fit: cover;
  -webkit-transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.365, 0.84, 0.44, 1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.right-sidebar .blog-widget-post-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
.right-sidebar .blog-widget-date .excerpt {
  margin-top: 0px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 26px;
  color: #707173;
  position: relative;
}
.right-sidebar .blog-widget-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 26px;
  letter-spacing: -0.5px;
}
.right-sidebar .blog-widget-title a{
  text-decoration:none;
  color:#1D1846;
}
.widget.widget_recent_posts {
  padding-top: 0px;
  padding-bottom: 45px;
}

.right-sidebar button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    padding: 0;
    background-color: initial;
    border: 0;
    border-radius: 0 3px 3px 0;
    font-size: 0;
    background: #f94144;
}
.right-sidebar button:hover {
    background: #f94144;
}
div.hs-search-field__bar button svg {
    height: 16px;
}
.hs-search-field__bar button svg {
    filter: brightness(0) invert(1);
}

/* NEW CSS END */

/* SYSTEM PAGE CSS START */

@media only screen and (min-width: 992px) {
  .hs-landing-page.hs-page .header .content-wrapper.transparent-header,
  .hs-content-id-0.hs-site-page .header .content-wrapper.transparent-header {
    background: rgba(17, 48, 82, 1) !important;
  }
}


@media screen and (min-width: 797px) {
  .hs-landing-page.hs-page .inner-page-header .header__container.content-wrapper,
  .hs-content-id-0.hs-site-page .header .content-wrapper.transparent-header {
    margin-top: -37px;
  }
}

.hubspot-link__container.sproket {
  display: none !important;
}

/* SYSTEM PAGE CSS END */

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

.rt-search-btn2.fa-2x {
    font-size: 18px;
    cursor: pointer;
}
.search-btn2{
  float: right;
  padding: 0;
  font-size: 16px;
  cursor: pointer;
  display: block !important;
}
#search-header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  transform: translate(0px, 0%);
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
.search-form {
  position: absolute;
  width: 60%;
  margin: 0 auto;
}
#search-header input[type=search] {
  width: 100%;
  color: #262626;
  background: #fff;
  font-size: 30px;
  font-weight: 300;
  text-align: left;
  border: 0px;
  margin: 0px auto;
  padding-bottom: 10px;
  outline: none;
  border-bottom: 1px solid #262626;
}
#search-header .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 61px;
  margin-left: -45px;
  background-color: limegreen;
  border: black;
}
#search-header .close {
  position: fixed;
  top: 0px;
  right: 0px;
  color: #fff;
  background-color: #f94144;
  opacity: 1;
  padding: 10px 17px;
  width: 110px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.admin-bar #search-header .close {
    top: 32px;
}
#search-header .close:after {
  width: 25px;
  height: 1px;
  float: left;
  margin-bottom: 5px;
  background-color: #fff;
  content: "";
  transform: rotate(-45deg);
  top: -5px;
  position: relative;
  transition: transform .2s ease-out,opacity 0s .1s,visibility 0s .1s;
}
#search-header .close:before {
  width: 25px;
  height: 1px;
  float: left;
  margin-bottom: 5px;
  background-color: #fff;
  content: "";
  transform: rotate(45deg);
  transition: transform .2s ease-out,opacity 0s .1s,visibility 0s .1s;
}
#search-header .close:hover:after,
#search-header .close:hover:before {
    transform: rotate(0);
}
#search-header .close:hover:after {
    top: -6px;
}
#search-header .close span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
#search-header .close:hover span:after, 
#search-header .close:hover span:before {
    opacity: 1;
    visibility: visible;
    transition: transform .2s ease-out,opacity 0s,visibility 0s;
    transition-delay: .1s;
}
#search-header .close span:after, 
#search-header .close span:before {
    content: '';
    display: block;
    width: 15px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    right: -14px;
    bottom: 5px;
    background-color: currentColor;
    transform: rotate(0);
    transform-origin: right;
    transition: transform .2s ease-out,opacity 0s .1s,visibility 0s .1s;
}
#search-header .close:hover span:before {
    transform: rotate(45deg);
}
#search-header .close:hover span:after {
    transform: rotate(-45deg);
}
#search-header.open {
  transform: translate(0px, 0px);
  opacity: 1;
  visibility: visible;
  z-index: 9;
  background: #fff;
}

#search-header .open {
  transform: translate(0px, 0px);
  opacity: 1;
  visibility: visible;
  z-index: 999;
  background: #fff;
}
.open {
  opacity: 1;
  visibility: visible;
}

#search-overlay2,
#search-overlaytwo {
    display: none;
}

#search-overlay {
    display: none;
}

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

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

.search-area-grid {
    width: 100%;
    color: #1e4ec4;
    background: transparent;
    border: 1px solid #C8C8C7;
    overflow: hidden;
    margin: 0;
    height: 50px;
}

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

.search-form {
    overflow: hidden;
    padding: 0PX;
}

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

#search-box1 input[type="text"],
#search-box2 input[type="text"],
#search-boxtwo input[type="text"] {
    width: 100%;
    padding: 0;
    float: left;
    outline: none;
    color: #1e4ec4;
    font-size: 16px;
    line-height: 48px;
    height: 48px;
    background: none;
    border-bottom: none;
    border-top: none;
    border-left: none;
    border-right: none;
    padding-left: 15px;
    padding-right: 50px;
}

#search-box1 .rt-product-category-select,
#search-box2 .rt-product-category-select,
#search-boxtwo .rt-product-category-select {
    border: none;
    position: absolute;
    float: left;
    right: 105px;
    height: 40px;
    border-left: 1px solid #676766;
    line-height: 40px;
    top: 4px;
    padding-left: 10px;
    background: none;
}

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

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

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

.search-button2 {
    width: 89px;
    height: 40px;
    background: none;
    line-height: 43px;
    border: 0;
    cursor: pointer;
    float: left;
    padding: 0;
    text-align: left;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e4ec4;
    margin: 4px 6px;
}

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

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

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

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .search-area-grid {
        margin: 0;
    }

    #search-box2 {
        padding: 0;
        margin: 0;
    }

    #search-box2 input[type="text"] {
        width: auto;
        padding: 0;
    }

    .rt-search-box2 {
        float: right;
        position: absolute;
        top: 16px;
        right: 30px;
        display: none;
    }

    .rt-mainMenu-open #header .default-search .search-btn2 {
        display: none;
    }

    .rt-mainMenu-open #header .default-search .search-btn2 {
        display: block;
        color: #1e4ec4;
    }
}

@media only screen and (max-width: 767px) {
    .search-area-grid {
        margin: 0;
    }

    #search-box2 {
        padding: 0;
        margin: 0;
    }

    #search-box2 input[type="text"] {
        width: auto;
        padding: 0;
    }

    .rt-search-box2 {
        float: right;
        position: absolute;
        top: 16px;
        right: 30px;
    }

    .rt-mainMenu-open #header .default-search .search-btn2 {
        display: none;
    }

    .rt-mainMenu-open #header .default-search .search-btn2 {
        display: block;
        color: #1e4ec4;
    }

    .rt-mainMenu-open #header .rt-cart-box .ti-shopping-cart {
        display: block;
        color: #1e4ec4;
    }
}

@media (max-width: 1024px) {
    .menu-toggle .apr-nav-menu--layout-horizontal .mega-menu {
        display: none
    }
}

.header .hs-search-field {
    position: unset;
}

.header .softek-header-search {
  width:100%;
}

.header .search-form {
  position:relative;
}

.rt-image-box h3 {
    color: #000!important;
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 0;
}

.d-none {
  display:none;
}

.team.element-three .rt-team_box .team-data-area .team-member h6 {
  padding-bottom:0;
  color:#fff;
}

.search-result .content-wrapper .container div .systems-page {
    padding-top:120px;
    padding-bottom:65px;
} 

@media screen and (max-width: 991px) {
  .search-result .content-wrapper .container {
    padding-bottom:100px;
  }
  
  .search-result .content-wrapper .container div .systems-page {
    padding-top:100px;
    padding-bottom:0px;
  }
}

.search-result .content-wrapper .container .blog-post {
  margin-top:40px;
}

.header .top-header .row>* {
  padding-left:15px;
}

@media screen and (max-width: 991px) {
  .search-result .content-wrapper .container .blog-post {
    padding:0;
    margin:0;
  }
}

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

/* @media screen and (max-width: 1024px) {
  .body-container--home-one .dnd-section.row-number-40 {
    padding-bottom:73px !important;
  }
} */

@media screen and (max-width: 767px) {
  .body-container--home-six .dnd-section.row-number-1 {
    padding-top:130px !important;
  }
}
.dnd_area-row-0-background-image{ 
    background-position: top bottom !important;
}
/* p{
  font-size: 17px !important;
  line-height: 27px !important;
  font-family: 'Outfit';
} */
h2{
  color: #191D27 !important;
  font-weight: 600 !important;
}
h6{
 font-weight: 600 !important;
}


.dnd-section>.row-fluid{
  max-width:1290px !important;
  display: flex;
  align-items: center;
}
.sec3-tagline span#hs_cos_wrapper_dnd_area-module-4_ {
    text-align: center;
    
}
.body-container--home-two span#hs_cos_wrapper_dnd_area-module-5_ p{
    Font-size: 17px;
    Line-height: 28px;
    letter-spacing: 0.64px;
    color: #B5B5B5;
  padding-bottom: 7px;
}
.button{
    border-radius:4px !important;
/*   padding: 20px 30px !important; */
  border: none !important;
}
.dnd_area-module-8-flexbox-positioning{
  padding-right: 10px;
}
.body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-6.dnd-row{
  float: right !important;
}
.row-fluid-wrapper.row-depth-1.row-number-7.dnd-row {
    float: left;
}
.home2-sec1-tagline .tag-line {
    font-size: 58px !important;
    line-height: 72px;
  text-align: center;
  color: #fff;
}
.body-container--home-two div#hs_cos_wrapper_dnd_area-module-15 h6 {
    color: #191D27;
}
.body-container--home-two div#hs_cos_wrapper_dnd_area-module-16 h6 {
    color: #191D27;
}
.body-container--home-two .span6.widget-span.widget-type-cell.dnd_area-column-62-margin.dnd-column
/* .tag-line{
  
  color: #fff !important;
  font-size: 40px !important;
  color: #fff;
  padding-bottom: 22px !important;
} */
.body-container--home-two div#hs_cos_wrapper_dnd_area-module-10{
  text-align: center;
}
.body-container--home-two div#hs_cos_wrapper_dnd_area-module-10 h6 {
    text-align: center;
/*     font-family: 'Plus Jakarta Sans'; */
    font-weight: 500;
    font-size: 17px;
    line-height: 17px;
    letter-spacing: 0.64px;
  position: relative;
  padding-top: 47px;
  color: #B5B5B5;
}
.body-container--home-two div#hs_cos_wrapper_dnd_area-module-10 h6::before{
    content: '';
    width: 60%;
    height: 1px;
    position: absolute;
    left: 20%;
    bottom: 10px;
    background-color: #b5b5b5;
  z-index: 2
}
.navbar-expand-lg .navbar-collapse {
    justify-content: center !important;
}
.collapse.navbar-collapse.justify-content-md-end{

  float:none !important;
}

.body-container--home-two div#hs_cos_wrapper_dnd_area-module-10 h6 span{
  color: #FF5F55;
  position:relative;
}
.body-container--home-two div#hs_cos_wrapper_dnd_area-module-10 h6 span::before{
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -1px;
    background-color: #ff5f55;
    z-index: 10;
}
.body-container--home-two div#hs_cos_wrapper_dnd_area-module-2 img{
    width: 100%;
}

.tag-line .underline-text .underlinetxtone {
    bottom: -13px !important;
    display: flex;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.footer .row-fluid-wrapper.row-depth-1.row-number-6.dnd-row{
float:none !important;
}
.body-container--home-two div#hs_cos_wrapper_dnd_area-module-14 img{
  width: 100%;
}
.home2-sec2 span#hs_cos_wrapper_dnd_area-module-13_ h2 span {
    color: #FF5F55;
}
.body-container--home-two div#hs_cos_wrapper_dnd_area-module-18 img {
    width: 100%;
}

.home2-sec2 h2 span {
    color: #FF5F55;
}
.home2-sec2 p{
  color: #6B6B6B;
  padding-bottom: 15px;
}
.radiant-counter-style-one_content label {
    color: #6B6B6B;
}
.body-container--home-two .radiant-counter-style-one .radiant-counter_number.radiant-counter-style-one_number.radiant-h2{
  padding-bottom: 20px;
}
.body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-20.dnd-row {
    padding-top: 20px;
    border-top: 1px solid #DDDDDD;
}
.radiant-counter-style-one_content {
    padding-right: 12%;
}
.body-container--home-two span#hs_cos_wrapper_dnd_area-module-30_ p {
    text-align: center;
    color: #B5B5B5;
}
.dnd_area-row-3-background-image{
  background-size: 90% !important;
}
.dnd_area-module-32-flexbox-positioning > div{
    width: 100%;
    display: flex;
    justify-content: right;
    padding-right: 10px;
}
.dnd_area-module-34-flexbox-positioning > div{
  width: 100%;
    display: flex;
    justify-content: left;
    padding-left: 10px;
}
.sec3-tagline .tag-line{
padding: 0 24%;
  color: #fff;
  font-size: 40px;
    line-height: 50px;
}
.sec3-tagline{
  display:flex;
  justify-content: center;
  text-align: center;
}
.style-white .icon-box-style-four .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-title {
    color: #B5B5B5 !important;
}

.body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-29.dnd-row{
  padding: 0 12%;
}
.body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-26.dnd-row {
    padding-bottom: 30px;
}
.home2-sec4 span#hs_cos_wrapper_dnd_area-module-44_ h2{
  text-align:center;
  padding: 0 24%;
}
.home2-sec4 span#hs_cos_wrapper_dnd_area-module-44_ h2 span {
    color: #FF5F55;
}
.home2-sec4 h2 span {
    color: #FF5F55;
}
.home2-sec4 span#hs_cos_wrapper_dnd_area-module-44_ p{
  color: #6B6B6B;
  padding-bottom: 15px;
  text-align: center;
  padding: 0 20%;
  padding-bottom: 10px;
  text-transform: capitalize;
}
/* .radiant-icon-box2-wrapper.icon-box2-parent-style-one.icon-box-eight .radiant-icon-box2-content{
      padding: 100px 20px 22px 20px !important;
} */
.radiant-icon-box2-wrapper.icon-box2-parent-style-one.icon-box-eight img {
    display: none;
}
.ten-down {
    padding-top: 40px;
}
div#hs_cos_wrapper_dnd_area-module-61 img {
    width: 100%;
}
.extra-padding {
    padding-right: 13%;
}
.home2-sec5 span#hs_cos_wrapper_dnd_area-module-63_ h2{
  color: #fff !important;
}
.home2-sec5 span#hs_cos_wrapper_dnd_area-module-63_ h2 span {
    color: #FF5F55;
}
.home2-sec5 h2 span {
    color: #FF5F55;
}
.body-container--home-two .home2-sec5 span#hs_cos_wrapper_dnd_area-module-64_ p{
  color: #B5B5B5;
  padding-bottom: 25px;
  text-transform: capitalize;
}
.style-shite p.radiant-icon-box-title {
    color: #fff !important;
}
.body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-56.dnd-row  {
    text-align: center;
    border-bottom: 3px solid #EBEBEB;
}
.body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-56.dnd-row .span4.widget-span.widget-type-cell.dnd-column:hover .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-56.dnd-row{
  
  border-bottom: 3px solid #FF5F55;
}
.body-container--home-two div#hs_cos_wrapper_dnd_area-module-71, .body-container--home-two div#hs_cos_wrapper_dnd_area-module-74, .body-container--home-two div#hs_cos_wrapper_dnd_area-module-77{
    padding-bottom: 35px;
}
.body-container--home-two div#hs_cos_wrapper_dnd_area-module-71 img.retina-image, .body-container--home-two div#hs_cos_wrapper_dnd_area-module-74 img.retina-image, .body-container--home-two div#hs_cos_wrapper_dnd_area-module-77 img.retina-image{
  width: auto;
}
.body-container--home-two span#hs_cos_wrapper_dnd_area-module-72_ p, span#hs_cos_wrapper_dnd_area-module-75_ p, span#hs_cos_wrapper_dnd_area-module-78_ p {
    padding: 0 6%;
}
.body-container--home-two span#hs_cos_wrapper_dnd_area-module-69_ h2 {
    text-align: center;
  padding: 0 20%;
    padding-bottom: 40px !important;
}
.body-container--home-two .rt-faq-two .rt-accordion-item.rt-faq-active>.rt-faq-title{

  background: #4187FF;
  box-shadow: none;
  border-radius: 4px;
}
.body-container--home-two .rt-faq-two .rt-accordion-item>.rt-faq-title{
  border-radius: 4px;
  box-shadow: 0px 4px 50px 0px rgba(248, 241, 241, 1);
}
.body-container--home-two img.retina-image {
    width: 100%;
}
.body-container--home-two div#hs_cos_wrapper_dnd_area-module-67 img.retina-image, .body-container--home-two div#hs_cos_wrapper_dnd_area-module-20 img.retina-image{
  width: 100%;
}
.body-container--home-two .radiant-icon-box2-wrapper.icon-box2-parent-style-one.icon-box-eight .iconbox-eight-readmore{
  border-radius: 10px;
}
.body-container--home-two span#hs_cos_wrapper_dnd_area-module-5_ p {
    text-align: center;
}
.body-container--home-two .testimonial.rt-testimonial.style-one {
    padding-bottom: 0px;
}
.body-container--home-two .testimonial.rt-testimonial.style-one .testimonial-item>.holder{
padding: 20px 90px 0px 0;
}
.footer-widget-section .dnd-section {
    padding: 240px 15px 100px 15px !important;
}
.container-fluid.footer__container .hm5-radiant-footer .hs-menu-wrapper.hs-menu-flow-vertical ul {
    flex-direction: column !important;
  display: block !important;
}

.container-fluid.footer__container .row-fluid-wrapper.row-depth-1.row-number-10.dnd-row div#hs_cos_wrapper_footer-module-13 .header-social-icons {
  display:block;
  text-align:left !important;
}
.wraper_footer.custom-footer .header-social-icons ul li {
/*     padding-right: 10px 10px; */
    padding: 3px 11px;
    border: 1px solid #fff;
    border-radius: 50%;
}
.custom-footer .footer-menu ul li a:hover{
  color: #fff;
}
.footer h6{
  color: #fff !important;
}
.body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-29.dnd-row .span3.widget-span.widget-type-cell.dnd-column div#hs_cos_wrapper_dnd_area-module-36, .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-29.dnd-row .span3.widget-span.widget-type-cell.dnd-column div#hs_cos_wrapper_dnd_area-module-38, .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-29.dnd-row .span3.widget-span.widget-type-cell.dnd-column div#hs_cos_wrapper_dnd_area-module-40, .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-29.dnd-row .span3.widget-span.widget-type-cell.dnd-column div#hs_cos_wrapper_dnd_area-module-42{
    display: flex;
    width: 100%;
    justify-content: center;
}
.body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-26.dnd-row .span6.widget-span.widget-type-cell.dnd-column{
  margin: 0px;
}
.hm5-radiant-footer span#hs_cos_wrapper_footer_copyright-module-1_ p {
    text-align: center;
}
.hm5-radiant-footer h5 {
    color: #fff;
}





/*for-retina-img*/
img.retina-image {
    width: 100%;
}
@media screen and (max-width: 1366px) and (min-width: 1025px){
.body-container--home-two .dnd_area-row-3-background-image {
    background-size: cover !important;
}
 .body-container--home-two .dnd_area-row-3-padding {
    padding-top: 120px !important;
    padding-bottom: 90px !important;
  }
  .body-container--home-two .dnd_area-row-4-padding {
    padding-top: 113px !important ;
  }
  .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-29.dnd-row {
    padding: 0px 8%;
}
  
}

@media screen and (max-width: 1024px) and (min-width: 768px){

  .body-container--home-two .dnd_area-row-3-background-image {
    background-size: cover !important;
}
  .body-container--home-two img.retina-image{
    width: auto;
  }
  .body-container--home-two .dnd_area-row-3-padding {
    padding-top: 70px !important;
    padding-bottom: 40px !important;
}
  .body-container--home-two div#hs_cos_wrapper_dnd_area-module-10 h6::before {
    width: 40%;
    left: 30%;
}
  .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-29.dnd-row .span3{
    width: 47%;
    margin: 0px;
  }
  
  .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-29.dnd-row {
    padding: 0 0%;
}
   .body-container--home-two .dnd_area-row-6-padding {
    padding-top: 100px !important;
    padding-bottom: 50px !important;
}
  .radiant-icon-box-wrapper.icon-box-parent-style-one{
    margin-bottom: 30px;
}
  .body-container--home-two .dnd_area-row-4-padding{
    padding-bottom: 70px !important;
  }
  .body-container--home-two span#hs_cos_wrapper_dnd_area-module-5_ p {
    text-align: center;
}
  .body-container--home-two .dnd_area-row-1-padding {
    padding-top: 70px !important;
    padding-bottom: 60px !important;
}
  .home2-sec4 span#hs_cos_wrapper_dnd_area-module-44_ h2 {
    text-align: center;
    padding: 0 20%;
}
  .home2-sec4 span#hs_cos_wrapper_dnd_area-module-44_ p{
    padding: 0 10%;
  }
.body-container--home-two .dnd_area-row-5-padding{
    padding-bottom: 42px !important;
}
.body-container--home-two .testimonial.rt-testimonial.style-one{
     padding-bottom: 0px !important;
}
.body-container--home-two .testimonial.rt-testimonial.style-one .testimonial-item>.holder{
  padding: 20px 90px 0px 0;
}
.body-container--home-two .dnd_area-row-7-padding{
      padding-top: 60px !important;
}
.body-container--home-two .dnd_area-row-8-padding {
    padding-top: 70px !important;
    padding-bottom: 50px !important;
}
  .sec3-tagline .tag-line {
    padding: 0 18%;
}
  
  .body-container--home-two span#hs_cos_wrapper_dnd_area-module-69_ h2 {
    padding: 0 15%;
}
  .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-56.dnd-row .span4.widget-span.widget-type-cell.dnd-column {
    width: 100%;
    padding-bottom: 30px;
    margin: 0px;
}
  .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-36.dnd-row .span3.widget-span.widget-type-cell.dnd-column{
       width: 50% !important;
    margin: 0px;
    padding-top: 20px;
    padding-left: 10px;
    
  }
  .ten-down{
    padding: 0px;
  }
  .body-container--home-two div#hs_cos_wrapper_dnd_area-module-2 img {
    width: auto;
    padding-bottom: 30px;
}
  .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section.dnd_area-row-0-padding.dnd_area-row-0-background-image .span6.widget-span.widget-type-cell.dnd-column {
    width: 100%;
    margin: 0px;
}
  .body-container--home-two .dnd-section>.row-fluid{
    flex-wrap: wrap;
  }
  .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-5.dnd-row .row-fluid{
    display: flex;
    justify-content: center;
  }
  .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-5.dnd-row .span6.widget-span.widget-type-cell.dnd-column{
  padding-right: 20px;
  }
  .body-container--home-two div#hs_cos_wrapper_dnd_area-module-2 {
    display: flex;
    justify-content: center;
}
  .body-container--home-two div#hs_cos_wrapper_dnd_area-module-4 {
    text-align: center;
}
  .body-container--home-two div#hs_cos_wrapper_dnd_area-module-71 img.retina-image {
    width: auto;
}
  footer.wraper_footer.custom-footer.footer.hm5-radiant-footer .span12.widget-span.widget-type-cell .dnd-section>.row-fluid{
  flex-wrap:wrap;
}
  footer.wraper_footer.custom-footer.footer.hm5-radiant-footer .span12.widget-span.widget-type-cell .span3.widget-span.widget-type-cell.dnd-column{
    width: 47%;
    margin: 0px;
  }
  .footer-widget-section .dnd-section {
    padding: 181px 15px 57px 15px !important;
}
  
 
}

 @media screen and (max-width: 767px) and (min-width: 364px){
   
   .body-container--home-two div#hs_cos_wrapper_dnd_area-module-2 img {
    padding-bottom: 70px;
} 
   footer.wraper_footer.custom-footer.footer.hm5-radiant-footer .span12.widget-span.widget-type-cell .span3.widget-span.widget-type-cell.dnd-column{
    width: 100%;
    margin-bottom: 30px;
  }
   footer.wraper_footer.custom-footer.footer.hm5-radiant-footer .span12.widget-span.widget-type-cell .dnd-section>.row-fluid{
  flex-wrap:wrap;
}
   .body-container--home-two .testimonial.rt-testimonial.style-one .testimonial-item>.holder{
    padding: 0px 90px 0px 0;
}
   .footer-widget-section .dnd-section {
    padding: 330px 15px 30px 15px !important;
}
   .body-container--home-two .dnd-section>.row-fluid {
    flex-wrap: wrap;
}
   .body-container--home-two .span6.widget-span.widget-type-cell.dnd_area-column-11-margin.dnd-column {
    width: 100%;
    padding-bottom: 30px;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section.dnd_area-row-0-padding.dnd_area-row-0-background-image .span6.widget-span.widget-type-cell.dnd-column {
    width: 100%;
    margin: 0px;
}
   .body-container--home-two .home2-sec5 span#hs_cos_wrapper_dnd_area-module-64_ p{
  padding-bottom: 0px;
}
  
    .body-container--home-two .span6.widget-span.widget-type-cell.dnd_area-column-62-margin.dnd-column {
    overflow: hidden;
      width: 100%;
    }
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-5.dnd-row .row-fluid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-5.dnd-row .span6.widget-span.widget-type-cell.dnd-column {
    padding-right: 0px;
  }
   .body-container--home-two .dnd_area-module-7-flexbox-positioning > div {
    max-width: 100%;
    width: 100%;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-7.dnd-row{
    float: none;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-6.dnd-row {
    float: none;
    padding-bottom: 30px;
     width: 100%;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-9.dnd_area-row-1-padding.dnd-section .span6.widget-span.widget-type-cell.dnd-column {
    width: 100%;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-9.dnd_area-row-1-padding.dnd-section .span6.widget-span.widget-type-cell.dnd-column img {
    display:none;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-9.dnd_area-row-1-padding.dnd-section {
    padding-bottom: 0px !important;
    padding-top: 70px !important;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-16.dnd_area-row-2-padding.dnd-section .span6.widget-span.widget-type-cell.dnd-column {
    width: 100%;
     padding-bottom: 0px;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-16.dnd_area-row-2-padding.dnd-section div#hs_cos_wrapper_dnd_area-module-25 {
    padding-bottom: 40px;
}
   .body-container--home-two .radiant-counter-style-one_content {
    padding-right: 0%;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-17.dnd-row {
    padding-bottom: 70px;
}
   .body-container--home-two .dnd_area-row-3-background-image {
    background-size: cover !important;
     padding-top: 70px !important;
    padding-bottom: 70px !important;
}
   .sec3-tagline .tag-line{
    padding: 0px;
   }
   .body-container--home-two .dnd_area-module-32-flexbox-positioning > div {
    justify-content: center;
     padding-bottom: 30px;
     padding-right: 0px;
}
   .body-container--home-two  .dnd_area-module-34-flexbox-positioning > div {
    justify-content: center;
     padding-left: 0px;
}
   
   .body-container--home-two .dnd_area-module-36-flexbox-positioning > div, .body-container--home-two .dnd_area-module-38-flexbox-positioning > div, .body-container--home-two .dnd_area-module-40-flexbox-positioning > div, .body-container--home-two .dnd_area-module-42-flexbox-positioning > div{
    width: 100%;
   }
  .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-14.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon, .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-13.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon {
    position: absolute;
    left: 2%;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-14.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content, .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-13.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content{
    text-align:left;
   }
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-29.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon{
    left: 35%;
   }
   .body-container--home-two .dnd_area-module-34-flexbox-positioning>div, .body-container--home-two .dnd_area-module-32-flexbox-positioning>div{
      padding: none;
   }
   .body-container--home-two .radiant-icon-box-wrapper.icon-box-parent-style-one {
    text-align: center;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-46.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content, .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-47.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-content{
    text-align:left;
   }
   .home2-sec4 span#hs_cos_wrapper_dnd_area-module-44_ h2 {
    padding: 0 0%;
}
   .home2-sec4 span#hs_cos_wrapper_dnd_area-module-44_ p {
    padding: 0 0;
}
   .body-container--home-two .radiant-icon-box2-wrapper.icon-box2-parent-style-one.icon-box-eight .radiant-icon-box2-content {
    padding: 22px 20px 22px 20px !important;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-36.dnd-row .radiant-icon-box2-wrapper.icon-box2-parent-style-one.icon-box-eight .radiant-icon-box2-content h6.radiant-icon-box2-title svg {
    margin-top: 30px;
}
   .ten-down {
    padding-top: 0px;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-34.dnd_area-row-4-background-image.dnd-section.dnd_area-row-4-padding {
    padding-bottom: 70px !important;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-41.dnd-section.dnd_area-row-5-padding .span6.widget-span.widget-type-cell.dnd-column{
    width: 100%;
   }
   .body-container--home-two div#hs_cos_wrapper_dnd_area-module-57 .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-icon {
    position: absolute;
    left: 2%;
    }
   .body-container--home-two div#hs_cos_wrapper_dnd_area-module-57 .icon-box-style-four .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-description{
    text-align: left;
   }
  .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-41.dnd-section.dnd_area-row-5-padding {
    padding-bottom: 0px !important;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-49.dnd_area-row-6-padding.dnd-section.dnd_area-row-6-background-image {
    padding-bottom: 70px !important;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-54.dnd-section.dnd_area-row-7-padding {
    padding-top: 70px !important;
}
   .body-container--home-two span#hs_cos_wrapper_dnd_area-module-69_ h2 {
    padding: 0px 0%;
}
   .body-container--home-two span#hs_cos_wrapper_dnd_area-module-72_ p, span#hs_cos_wrapper_dnd_area-module-75_ p, span#hs_cos_wrapper_dnd_area-module-78_ p {
    padding: 0% 0% 6% 0%;
}
   .body-container--home-two div#hs_cos_wrapper_dnd_area-module-71 img.retina-image, .body-container--home-two div#hs_cos_wrapper_dnd_area-module-74 img.retina-image, .body-container--home-two div#hs_cos_wrapper_dnd_area-module-77 img.retina-image{
    width: auto;
}
   .body-container--home-two .row-fluid-wrapper.row-depth-1.row-number-63.dnd-section.dnd_area-row-8-padding{
    padding-top: 70px !important;
     padding-bottom: 0px !important;
   }
   .extra-padding {
    padding-right: 0;
}
   .footer-row-0-background-image {
    background-position: left top !important;
}
   .body-container--home-two .radiant-icon-box2-wrapper.icon-box2-parent-style-one.icon-box-eight .radiant-icon-box2-content {
    padding: 22px 20px 0px 20px !important;
}
   .body-container--home-two div#hs_cos_wrapper_dnd_area-module-10 h6{
   
    line-height: 27px;
   }
   
  
  }
  
/* ==============starting of home three saastek================ */

.hm3-radiant-footer .footer-widget-section .dnd-section {
    padding: 120px 15px 120px 15px !important;
}
.hm3-radiant-footer {
    padding: 0px !important;
}
.hm3-radiant-footer .wraper_footer.custom-footer .header-social-icons ul li {
    padding: 7px 11px;
}
.body-container--home-three .dnd_area-row-1-padding{
  padding: 0px !important; 
}
.body-container--home-three .dnd_area-row-0-padding {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section.dnd_area-row-1-background-image.dnd_area-row-1-force-full-width-section {
    background-size: 16% !important;
    background-position: 90% 55% !important;
}
.body-container--home-three div#hs_cos_wrapper_dnd_area-module-3{
  text-align:center;
}
.body-container--home-three div#hs_cos_wrapper_dnd_area-module-3 img.retina-image {
    width: 80%;
}
.body-container--home-three span.highlight-line {
    position: absolute;
    left: 27%;
    top: -3px;
}
.body-container--home-three .underline-text {
    position: relative;
}
.body-container--home-three .text-white {
    color: #191D27 !important;
    font-weight: 700 !important;
  padding: 0 11%;
}
.body-container--home-three .banner-inner p {
    padding: 0 12%;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-7.dnd-row {
    float: none;
  text-align:center;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-6.dnd-section.dnd_area-row-3-padding img.retina-image {
    width: 15%;
}
.body-container--home-three .span4.widget-span.widget-type-cell.dnd-column {
    text-align: center;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-9.dnd-row img.retina-image, .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-13.dnd-row img.retina-image, .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-17.dnd-row img.retina-image {
    width: 30% !important;
  padding-bottom: 10px;
  padding-top: 10px;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-4 div#hs_cos_wrapper_dnd_area-module-5 .tag-line{
  color: #191D27;
  padding: 0 34%;
  margin-bottom: 40px;
}
.body-container--home-three div#hs_cos_wrapper_dnd_area-module-5 .tag-line .underline-text .underlinetxtone{
      left: -3px;
  width: 110%;
  bottom: -8px !important;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-19.dnd-section.dnd_area-row-4-padding .span8.widget-span.widget-type-cell.dnd-column.dnd_area-column-21-background-image {
    padding: 60px 40px;
  border-radius: 20px;
}
.body-container--home-three .sec3-tagline .tag-line{
  padding: 0 10%;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-19.dnd-section.dnd_area-row-4-padding span#hs_cos_wrapper_dnd_area-module-22_ h5 {
    text-align: center;
    background-image: linear-gradient(90deg, #f1bc53, #fff);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    fill: transparent;
  position:relative;
  font-weight: 700 !important;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-19.dnd-section.dnd_area-row-4-padding{
  padding: 0px 15px !important;
}
.body-container--home-three .dnd_area-row-5-padding {
    padding-top: 55px !important;
  padding-bottom: 0px !important;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-19.dnd-section.dnd_area-row-4-padding span#hs_cos_wrapper_dnd_area-module-22_ h5::before{
    content: '';
    position: absolute;
    left: 35%;
    bottom: 31%;
    width: 30%;
    height: 1px;
    background: #f1bc53;
}
.body-container--home-three .rt-icnbx14 .rt-img-box14{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.body-container--home-three .rt-icnbx14 .rt-img-box14 svg {
    width: 14% !important;
}
.body-container--home-three .rt-icnbx14 .rt-img-box14 h6 {
    width: 80%;
  text-align:left;
  padding-top:0px !important;
  padding-right: 30px !important;
  word-spacing: 2px;
}
.body-container--home-three .rt-icnbx14 p {
    text-align: left;
  color: #6B6B6B;
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
.body-container--home-three .rt-icnbx14 {
    padding: 30px 40px 30px 40px;
  box-shadow: 0 14px 26px rgba(217, 226, 243, 0.4);
  border-radius:10px;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-30.dnd-row div#hs_cos_wrapper_dnd_area-module-35 {
    text-align: center;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-30.dnd-row div#hs_cos_wrapper_dnd_area-module-35 img.retina-image {
    width: 70% !important;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-28.dnd-row div#hs_cos_wrapper_dnd_area-module-33  .tag-line{
  color: #191D27 !important;
  padding: 0 36%;
  padding-bottom: 30px;
}
.body-container--home-three div#hs_cos_wrapper_dnd_area-module-34 span#hs_cos_wrapper_dnd_area-module-34_ {
    text-align: center;
}
.body-container--home-three div#hs_cos_wrapper_dnd_area-module-34 span#hs_cos_wrapper_dnd_area-module-34_ p {
    padding: 0 30%;
}
.body-container--home-three .dnd_area-row-6-background-image {
    background-size: 2% !important;
    background-position: 11% 18% !important;
}
.body-container--home-three .rt-icnbx14 a.button.customizable-button {
    padding: 0px !important;
    text-align: left;
    background: none;
    color: #191D27;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-19.dnd-section.dnd_area-row-4-padding .button.customizable-button:hover{
  transition-delay: .1s;
    transform: translateY(-5px);
    box-shadow: none;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-23.dnd-section.dnd_area-row-5-padding .button.customizable-button:hover{
    transition-delay: .1s;
    transform: translateY(-5px);
    box-shadow: none;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-34.dnd-row img.retina-image {
    width: 15%;
}
.body-container--home-three .dnd_area-row-7-background-image{
  background-size: 90% !important;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-34.dnd-row .span4.widget-span.widget-type-cell.dnd-column{
      border: 1px solid #384361;
    margin: 0 10px;
    padding-top: 30px;
    padding-bottom: 15px;
  border-radius: 10px;
  position:relative;
  background-color: #15233D;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
  z-index: 5;
}


.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-34.dnd-row .span4.widget-span.widget-type-cell.dnd-column:hover{
  background-color: #1F2F4B;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-33.dnd-row span#hs_cos_wrapper_dnd_area-module-38_ p {
    text-align: center;
  color: #DCE0EA;
  padding: 0 20%;
    padding-bottom: 15px;
}
.body-container--home-three div#hs_cos_wrapper_dnd_area-module-37 .tag-line {
    padding: 0px 22%;
    padding-bottom: 15px;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-34.dnd-row h5 {
    color: #fff;
  padding-top: 20px;

}
.body-container--home-three div#hs_cos_wrapper_dnd_area-module-51 .tag-line{
  color: #191D27;
  text-align:left;
  padding: 0px;
  padding-bottom: 20px;
  padding-left: 10%;
}
.body-container--home-three span#hs_cos_wrapper_dnd_area-module-52_ p{
padding-left: 10%;
  padding-bottom: 8px;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-45.dnd-row .icon-box-style-four .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-title{
  color: #191D27;
  font-weight: 400;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-46.dnd-row .icon-box-style-four .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-title{
  color: #191D27;
  font-weight: 400;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-47.dnd-row .icon-box-style-four .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-title{
  color: #191D27;
  font-weight: 400;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-45.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one{
  padding-left: 10%;
  padding-right: 26%;
  margin:0px;
  padding-bottom: 10px;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-46.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one{
  padding-left: 10%;
  padding-right: 19%;
    margin:0px;
  padding-bottom: 10px;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-47.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one{
  padding-left: 10%;
    margin:0px;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-45.dnd-row .dnd_area-module-53-flexbox-positioning > div, .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-46.dnd-row .dnd_area-module-54-flexbox-positioning > div, .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-47.dnd-row .dnd_area-module-55-flexbox-positioning > div{
  width:100%;
}
.body-container--home-three .dnd_area-row-8-background-image{
  background-size: 25% !important;
    background-position: 22% 0% !important;
    background-repeat: no-repeat !important;
}
.body-container--home-three div#hs_cos_wrapper_dnd_area-module-59 .tag-line{
text-align: left;
  color: #191D27;
  padding: 0px;
  padding-bottom: 15px;
}
.body-container--home-three div#hs_cos_wrapper_dnd_area-module-61 .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-title{
color:#191D27;
}
.body-container--home-three div#hs_cos_wrapper_dnd_area-module-62 .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-title{
color:#191D27;
}
.body-container--home-three div#hs_cos_wrapper_dnd_area-module-63 .radiant-icon-box-wrapper.icon-box-parent-style-one .radiant-icon-box-title{
color:#191D27;
}
.body-container--home-three .dnd_area-row-9-background-image{
background-size: 31% !important;
    background-position: 95% 0% !important;
}
.body-container--home-three div#hs_cos_wrapper_dnd_area-module-65 .tag-line{
  color:#191D27;
  padding: 0 28%;
  padding-bottom: 20px;
}
.body-container--home-three span#hs_cos_wrapper_dnd_area-module-66_ p {
    text-align: center;
  color: #6B6B6B;
  padding: 0px 21%;
  padding-bottom: 20px;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-60.dnd-row div#hs_cos_wrapper_dnd_area-module-69{
    text-align: left;
  margin-top: 20px;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-62.dnd-row div#hs_cos_wrapper_dnd_area-module-72 {
    text-align: left;
  margin-top: 20px;
}

.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-64.dnd-row div#hs_cos_wrapper_dnd_area-module-75{
text-align: left;
  margin-top: 20px;
}
.body-container--home-three span#hs_cos_wrapper_dnd_area-module-75_ span, .body-container--home-three span#hs_cos_wrapper_dnd_area-module-69_ span, .body-container--home-three span#hs_cos_wrapper_dnd_area-module-72_ span{
    background: #EBF2FF;
    padding: 5px 10px;
    border-radius: 50px;
  color:#447EFC;
}
.body-container--home-three span#hs_cos_wrapper_dnd_area-module-75_ h5, .body-container--home-three span#hs_cos_wrapper_dnd_area-module-69_ h5, .body-container--home-three span#hs_cos_wrapper_dnd_area-module-72_ h5{
    margin-top: 10px;
  color: #191D27;
  font-weight: 600;
}
.body-container--home-three div#hs_cos_wrapper_dnd_area-module-77 .tag-line {
    padding: 0 17%;
  padding-bottom: 15px;
}
.body-container--home-three span#hs_cos_wrapper_dnd_area-module-78_ p {
    text-align: center;
  color: #DCE0EA;
  padding: 0 20%;
  margin-bottom: 40px;
  text-transform: capitalize;
}
.body-container--home-three div#hs_cos_wrapper_dnd_area-module-82 a.button.customizable-button{
  background: none;
  border: 1px solid #fff !important;
}
.hm2-radiant-footer .dnd-section>.row-fluid{
  align-items: flex-start;
}
.hm2-radiant-footer .footer-widget-section .dnd-section {
    padding: 120px 15px 120px 15px !important;
}
.hm2-radiant-footer span#hs_cos_wrapper_footer-module-3_ p{
  padding-bottom: 0px;
  color: #6B6B6B;
}
.hm2-radiant-footer span#hs_cos_wrapper_footer-module-3_ h5{
  color:#191D27;
  font-weight: 600;
}
.hm2-radiant-footer span#hs_cos_wrapper_footer-module-5_ h6, span#hs_cos_wrapper_footer-module-8_ h6, span#hs_cos_wrapper_footer-module-11_ h6{
  color:#191D27 !important;
  font-weight: 600;
}
.hm2-radiant-footer div#hs_menu_wrapper_footer-module-6_ ul li a, .hm2-radiant-footer div#hs_menu_wrapper_footer-module-9_ ul li a, .hm2-radiant-footer span#hs_cos_wrapper_footer-module-11_ p{
  color: #6B6B6B;

}
.hm2-radiant-footer span#hs_cos_wrapper_footer-module-11_ h6 a{
  color: #447EFC;
}
.hm2-radiant-footer span#hs_cos_wrapper_footer_copyright-module-1_ p {
    text-align: center;
}
.hm2-radiant-footer .footer-copyright-section .dnd-section{
  background: transparent !important;
}
.body-container--home-three .row-fluid .span4{
  width: 30% !important;
}
@media screen and (max-width: 1024px){
  .body-container--home-three .row-fluid .span4{
  width: 100% !important;
    margin: 0px;
}
}
.body-container--home-three .row-fluid{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 1493px){
  .body-container--home-three .dnd_area-row-7-background-image {
    background-size: cover !important;
}
}
@media screen and (max-width: 1366px) and (min-width: 1025px){
  .body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main {
    padding-top: 120px;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-4 div#hs_cos_wrapper_dnd_area-module-5 .tag-line {
    padding: 0 16%;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-28.dnd-row div#hs_cos_wrapper_dnd_area-module-33 .tag-line, .body-container--home-three div#hs_cos_wrapper_dnd_area-module-34 span#hs_cos_wrapper_dnd_area-module-34_ p {
    padding: 0 20%;
    padding-bottom: 20px;
}
  .body-container--home-three div#hs_cos_wrapper_dnd_area-module-77 .tag-line {
    padding-bottom: 20px;
    padding: 0 14%;
}
  .body-container--home-three span#hs_cos_wrapper_dnd_area-module-78_ p{
        padding: 0 12%;
  }
  .body-container--home-three div#hs_cos_wrapper_dnd_area-module-65 .tag-line {
    padding: 0 20%;
}
}
@media screen and (max-width: 1024px) and (min-width: 768px){
    .body-container--home-three .text-white {
    padding: 0 0% !important;
      margin-bottom: 20px;
    }
  .body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main {
    background-size: cover !important;
}
  .body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main {
    padding: 70px 15px 20px 15px;
  }
  .body-container--home-three div#hs_cos_wrapper_dnd_area-module-3 img.retina-image {
    width: 100%;
}
  .body-container--home-three span.highlight-line {
    left: 32%;
}
.body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-4 div#hs_cos_wrapper_dnd_area-module-5 .tag-line {
    color: #191D27;
    padding: 0 12%;
    margin-bottom: 40px;
}
  .dnd_area-row-2-padding {
    padding-top: 40px !important;
    padding-bottom: 0px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-9.dnd-row img.retina-image, .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-13.dnd-row img.retina-image, .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-17.dnd-row img.retina-image {
    width: 35% !important;
    padding-bottom: 10px;
    padding-top: 10px;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-6.dnd-section.dnd_area-row-3-padding .row-fluid .span4{
    width: 30% !important;
  
  }
   .body-container--home-three .span8.widget-span.widget-type-cell.dnd-column.dnd_area-column-21-background-image {
    width: 100%;
     margin-bottom: 30px;
}
   .body-container--home-three .dnd_area-module-25-flexbox-positioning > div, .body-container--home-three .dnd_area-module-27-flexbox-positioning > div, .body-container--home-three .dnd_area-module-29-flexbox-positioning > div, .body-container--home-three .dnd_area-module-31-flexbox-positioning > div{
    width: 100%;
     margin-bottom: 30px;
}
  .body-container--home-three .dnd_area-row-3-padding {
    padding-top: 0px !important;
    padding-bottom: 40px !important;
}
  .body-container--home-three .dnd_area-row-5-padding {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-28.dnd-row div#hs_cos_wrapper_dnd_area-module-33 .tag-line {
    color: #191D27 !important;
    padding: 0 15%;
    padding-bottom: 30px;
}
  .body-container--home-three div#hs_cos_wrapper_dnd_area-module-34 span#hs_cos_wrapper_dnd_area-module-34_ p {
    padding: 0 8%;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-30.dnd-row div#hs_cos_wrapper_dnd_area-module-35 img.retina-image {
    width: 100% !important;
}
  .body-container--home-three .dnd_area-row-6-padding {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}
  .body-container--home-three .dnd_area-row-7-padding {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}
  .body-container--home-three div#hs_cos_wrapper_dnd_area-module-37 .tag-line {
        padding: 0px 12%;
    padding-bottom: 20px;
  }
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-33.dnd-row span#hs_cos_wrapper_dnd_area-module-38_ p {
    padding: 0px 5%;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-34.dnd-row .span4.widget-span.widget-type-cell.dnd-column {
    margin-bottom: 20px;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-45.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one, .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-46.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one{
      padding-right: 0%;
  }
  .body-container--home-three .dnd_area-row-9-padding {
    padding-top: 70px !important;
  }
    .body-container--home-three .dnd_area-row-10-padding {
    padding-top: 60px !important;
    padding-bottom: 70px !important;
}
  .body-container--home-three div#hs_cos_wrapper_dnd_area-module-65 .tag-line {
    padding: 0 16%;
    padding-bottom: 20px;
}
  .body-container--home-three span#hs_cos_wrapper_dnd_area-module-66_ p {
    padding: 0px 8%;
    padding-bottom: 10px;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-58.dnd-row .span4 {
    width: 30% !important;
}
  .body-container--home-three .dnd_area-row-11-padding {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}
  .body-container--home-three div#hs_cos_wrapper_dnd_area-module-77 .tag-line {
    padding: 0 10%;
    padding-bottom: 15px;
}
  .hm2-radiant-footer .footer-widget-section .dnd-section {
    padding: 70px 15px 40px 15px !important;
}
  .flyouts ul {
    padding-bottom: 0px;
}
  .hm2-radiant-footer .dnd-section>.row-fluid {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}
  .hm2-radiant-footer .span3 {
    width: 50% !important;
    margin: 0px;
    padding-bottom: 30px;
}
  .body-container--home-three span#hs_cos_wrapper_dnd_area-module-78_ p {
    padding: 0 10%;
}  
  .body-container--home-three .rt-icnbx14 .rt-img-box14{
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 767px) and (min-width: 364px){
  
  .body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main {
    background-size: cover !important;
}
  .body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main {
    padding: 70px 15px 20px 15px;
  }
  .body-container--home-three .text-white {
    padding: 0 0%;
}
  .body-container--home-three span.highlight-line {
    display: none;
}
  .body-container--home-three div#hs_cos_wrapper_dnd_area-module-3 img.retina-image {
    width: 100%;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-4 div#hs_cos_wrapper_dnd_area-module-5 .tag-line {
    padding: 0 0%;
}
  .row-fluid-wrapper.row-depth-1.row-number-6.dnd-section.dnd_area-row-3-padding .span12.widget-span.widget-type-custom_widget.dnd-module {
    width: 100%;
}
  .body-container--home-three span#hs_cos_wrapper_dnd_area-module-10_ p {
    margin: 0px;
    padding-bottom: 40px;
}
  .body-container--home-three .dnd_area-row-5-padding {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
  .body-container--home-three .span8.widget-span.widget-type-cell.dnd-column.dnd_area-column-21-background-image {
    width: 100%;
    margin-bottom: 30px;
}
  .body-container--home-three .dnd_area-row-3-padding {
    padding-top: 0px !important;
    padding-bottom: 40px !important;
}
  .body-container--home-three .dnd_area-row-6-padding {
    padding-top: 50px !important;
    padding-bottom: 70px !important;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-28.dnd-row div#hs_cos_wrapper_dnd_area-module-33 .tag-line {
    padding: 0 0%;
    padding-bottom: 20px;
}
  .body-container--home-three div#hs_cos_wrapper_dnd_area-module-37 .tag-line {
    padding: 0px 0%;
    padding-bottom: 15px;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-33.dnd-row span#hs_cos_wrapper_dnd_area-module-38_ p {
    padding: 0 0%;
}
  .body-container--home-three div#hs_cos_wrapper_dnd_area-module-34 span#hs_cos_wrapper_dnd_area-module-34_ p {
    padding: 0 0%;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-30.dnd-row div#hs_cos_wrapper_dnd_area-module-35 img.retina-image {
    width: 100% !important;
}
  .body-container--home-three .dnd_area-row-7-padding {
    padding-top: 60px !important;
    padding-bottom: 50px !important;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-34.dnd-row .span12.widget-span.widget-type-custom_widget.dnd-module {
    width: 100%;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-34.dnd-row .span4.widget-span.widget-type-cell.dnd-column {
   margin-bottom:30px;
}
 .body-container--home-three .dnd_area-row-8-padding {
    padding-top: 50px !important;
    padding-bottom: 0px !important;
}
   .body-container--home-three .span6.widget-span.widget-type-cell.dnd-column {
    width: 100%;
}
  .body-container--home-three .span6.widget-span.widget-type-cell.dnd-column .span12{
    width: 100%;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-47.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one{
    padding-left: 0px;
  }
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-46.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one {
    padding-left: 0%;
    padding-bottom: 30px;
    padding-right: 0%;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-45.dnd-row .radiant-icon-box-wrapper.icon-box-parent-style-one{
    padding-left: 0%;
    padding-bottom: 30px;
    padding-right: 0%;
  }
  .body-container--home-three span#hs_cos_wrapper_dnd_area-module-52_ p {
    padding-left: 0%;
}
  .body-container--home-three div#hs_cos_wrapper_dnd_area-module-51 .tag-line {
    padding-left: 0%;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-42.dnd-row div#hs_cos_wrapper_dnd_area-module-49 img.retina-image {
    padding-bottom: 50px;
}
  .body-container--home-three .dnd_area-row-9-padding {
    padding-top: 50px !important;
    padding-bottom: 0px !important;
}
  .body-container--home-three .dnd_area-row-9-background-image {
    background-size: 0% !important;
}
 .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-54.dnd-row div#hs_cos_wrapper_dnd_area-module-57 img.retina-image {
    padding-top: 30px;
}
  .body-container--home-three .dnd_area-row-10-padding {
    padding-top: 0px !important;
    padding-bottom: 50px !important;
}
  .body-container--home-three div#hs_cos_wrapper_dnd_area-module-65 .tag-line {
    padding: 0 0%;
    padding-bottom: 20px;
}
  .body-container--home-three span#hs_cos_wrapper_dnd_area-module-66_ p {
    padding: 0px 0;
}
  .row-fluid-wrapper.row-depth-1.row-number-58.dnd-row .span4 .span12{
    width: 100%;
  }
  .body-container--home-three .span4.widget-span.widget-type-cell.dnd-column {
    text-align: center;
    padding-bottom: 30px;
}
  .body-container--home-three .dnd_area-row-11-padding {
    padding-top: 70px !important;
    padding-bottom: 40px !important;
}
  .body-container--home-three div#hs_cos_wrapper_dnd_area-module-77 .tag-line {
    padding: 0 0%;
    padding-bottom: 15px;
}
  .body-container--home-three span#hs_cos_wrapper_dnd_area-module-78_ p {
    padding: 0 0%;
}
 .body-container--home-three .dnd_area-module-80-flexbox-positioning > div, .body-container--home-three .dnd_area-module-82-flexbox-positioning > div{
    width: 100%;
   text-align: center;
   padding-bottom:30px;
}
  .hm2-radiant-footer .dnd-section>.row-fluid {
    display: flex;
    flex-wrap: wrap;
}
  .hm2-radiant-footer .footer-widget-section .dnd-section {
    padding: 70px 15px 40px 15px !important;
}
  .hm2-radiant-footer .span3 {
    width: 100% !important;
    margin: 0px;
    padding-bottom: 30px;
}
  .hm2-radiant-footer span#hs_cos_wrapper_dnd_area-module-78_ p {
    padding: 0 10%;
}
  .flyouts ul {
    padding-bottom: 0px;
}
  .body-container--home-three .sec3-tagline .tag-line{
  padding: 0 0%;
}
  .body-container--home-three .row-fluid-wrapper.row-depth-1.row-number-19.dnd-section.dnd_area-row-4-padding span#hs_cos_wrapper_dnd_area-module-22_ h5::before {
    left: 0%;
    bottom: 31%;
    width: 100%;
}
  .body-container--home-three .banner-inner p {
    padding: 0 0%;
}
  .body-container--home-three .row-depth-1.row-number-1.dnd-section .banner-main a.banner-botton2 {
    margin-left: -10px;
}
  .body-container--home-three .rt-icnbx14 {
    margin-bottom: 0px;
  }
  .body-container--home-three .rt-icnbx14 .rt-img-box14{
    padding-bottom: 15px;
  }

}