/* 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: 600;
  font-size: 13px;
  color: #000;
  line-height: 22px;

}
.header-data-contact p {
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size:13px;
  color: #000;
  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: 600;
  font-size: 14px;
  color: #000;
  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{
  background-color: #f8f8f8;
  padding:20px 15px;
  position:relative;
}
.top-header a { display: inline-block; width: auto; }
.top-header a img { width: 250px !important; }
.top-header-text-left p {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 26px;
  letter-spacing: 0px;
  display: inline-block;
}
.top-header-text-left p a{
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 26px;
  letter-spacing: 0px;
  text-decoration:none;
}
.top-header ul{
  list-style:none;
  padding:0 0 0 0px;
  margin:0;
  display: inline-block;
}
.top-header ul li{
  display: inline-block;
  padding: 0 4px;
  margin: 0;
  font-size: 13px;
}
.top-header ul li a{
  text-decoration: none;
  color: #fff;
  background: #dd4b39;
  border-radius: 50%;
  display: block;
  width: 22px;
  height: 22px;
  text-align: center;
  font-size: 10px;
  line-height: 22px;
  padding: 1px 2px;
  cursor: pointer;
}
.top-header ul li:nth-child(1) a {
  background: #3b5999;
}
.top-header ul li:nth-child(2) a {
  background: #55acee;
}
.top-header ul li:nth-child(3) a {
  background: #e60023;
}
.top-header ul li:nth-child(3) a {
  background: #c41200 ;
}
.header {
  position: relative width:100%;
  z-index: 199;
  background: #fff;
  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%;
}
.header .content-wrapper .header__column {
  left: 0;
  right: 0;
  transition: all .4s ease-in-out;
}
.nav-item.dropdown > .navbar-nav.submenu.level-2.in {
  transition: all .5s ease-in-out;
}
.header .content-wrapper .header__column .header__logo--main, .header .content-wrapper .header__column .hs_cos_wrapper_type_logo {
  float: left;
  font-size: 28px;
  position: relative;
  z-index: 1;
  transition: all .4s ease-in-out;
  padding: 0;
  width: 150px;
}
.header .content-wrapper .header__column .header__logo--main a > img, .header .content-wrapper .header__column .header__logo--main a > img {
  vertical-align: inherit;
  transition: all .4s ease-in-out;
  height: auto;
  width: auto;
}
.header .header-navigation {
  width: 100%;
}
.header .content-wrapper .header__row-1 {
  padding: 0;
}
.header nav.navigation-primary ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  text-align: right;
}
.collapse.navbar-collapse.justify-content-md-end {
  float: left;
}
.header nav.navigation-primary ul li {
  border: 0;
  transition: all .3s ease;
  padding:0 12px 0 0;
  margin-right: 20px;
  position: relative;
  display: inline-block;
  text-align: left;
  text-transform: uppercase;
  line-height: 25px;
  letter-spacing: 1px;
  font-weight: 400;
  font-style: normal;
  color: #5b5b5b;
  font-size: 13px;
  padding-top: 0px;
}

.header nav.navigation-primary ul li a {
  position: relative;
  padding: 30px 0 25px 0;
  text-transform: ca;
  line-height: 25px !important;
  letter-spacing: 1px;
  font-weight: 600;
  font-style: normal;
  color: #000 !important;
  font-size: 15px;
  border-radius: 4px;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
  transition: all .3s ease;
  line-height: normal;
  line-height: normal;
}
.header nav.navigation-primary > ul > li > a:after {
  content: '';
  width: 0;
  height: 3px;
  bottom: -3px;
  position: absolute;
  left: auto;
  right: 0;
  -webkit-transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
  display: none;
}
.submenu.level-2 .menu-item .menu-link {
  display: inline-block;
}
.header nav.navigation-primary ul li a:hover:after {
  width: 100%;
  left: 0;
  right: auto;
  margin: 0;
}
.header nav.navigation-primary ul li .menu-arrow {
  position: absolute;
  z-index: 1;
  right: -4px;
  top: 35%;
  cursor: pointer;
}
.header nav.navigation-primary ul li .menu-arrow:after {
  transition: all .3s ease;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0px;
  content: "\e64b";
  font-family: 'themify';
  transition: all .3s ease-in-out;
  font-size: 8px;
}
input[type="checkbox"]:checked ~ .submenu{padding-bottom:20px;margin-top:0px}
.submenu.level-1>li.has-submenu:hover .submenu.level-2, .submenu.level-1>li.has-submenu.focus .submenu.level-2{
}
.header nav.navigation-primary ul li ul {
  position: absolute;
  top: 55px;
  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: #000;
}
.header nav.navigation-primary ul li:not(.hover-active):hover>ul{visibility:visible;opacity:1;transform:translateY(0);-webkit-transform:translateY(0)}
.header nav.navigation-primary > ul > li > ul > li, .header nav.navigation-primary > ul > li > ul > li > ul > li, .header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li, .header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li, .header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li, .header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li, .header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li, .header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li, .header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li, .header nav.navigation-primary > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li {
  padding:0 20px 22px 20px;
  text-align: left;
  display: block;
}

.header nav.navigation-primary ul li ul li a {
  padding: 0 !important;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px !important;
  letter-spacing: 1px;
  background:none;
  color:#5b5b5b !important;
  text-transform: uppercase;
}
.header nav.navigation-primary ul li a:hover {
  color: #5b5b5b;
  background:none;
}
.nav-item.dropdown > .navbar-nav .nav-item .nav-link:hover {
  color: #fff;
  background:none;
}
.nav-item.dropdown > .navbar-nav .nav-item .nav-link {
  padding: 15px 0;
  color:#fff;
}
.header nav > ul > li > ul > li > a:hover {
  color: #fff;
  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: 15px 0 0 0;
  max-width: 100%;
  display: block;
  width: 100%;
  position: relative;
  z-index: 999;
  font-family: "Poppins",Sans-serif;
  font-weight: 600;
  color: #000;
  text-decoration:none;
}
div.bsnav-mobile .navbar-nav .nav-item .navbar-nav {
  margin-left: 0;
  box-sizing: inherit;
}
div.bsnav-mobile .navbar-nav .nav-item .navbar-nav li a {
  padding: 5px 0;
}
.hs-skip-lang-url-rewrite.in .navbar-nav.navbar-mobile.mr-0.submenu {
  padding: 0 15px;
}
div.bsnav-mobile.in .navbar {
  width: 100%;
}
.navbar-toggler {
  float: right;
  margin-top: 25px;
}
.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: 14px;
  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 END*/

/* Footer SECTION START*/
.custom-footer .logo {
  margin-bottom: 20px;
}
.social-icon-wrapper .social-links {
  width: 100%;
  word-spacing: var(--grid-column-gap);
  margin-bottom: calc(-1 * var(--grid-row-gap));
  display: inline-blog;
}
.social-icon-wrapper .social-links a.social-links__icon {
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 10px;
  border: 0;
  text-align: left;
  font-size: 18px;
  color: #fff;
  padding: 0 15px 0 0;
  font-weight: 500;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  border-radius: 50%;
}
.social-icon-wrapper .social-links a.social-links__icon span svg {
  height: 20px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  filter: brightness(0) invert(1);
}
.body-wrapper .custom-footer h6{
  margin-top: 0;
  margin-bottom: 35px;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  line-height: 30px;
  letter-spacing: 1px;
  padding: 0;
}
.body-wrapper .footer-address p{
  color: #fff;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0;
  padding-bottom: 20px;
  margin: 0;
}
.body-wrapper .footer-content p{
  color: #fff;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0;
  padding-bottom: 20px;
  margin: 0;
  padding-right: 15px;
}
.body-wrapper  .footer-subscribe-form p{
  color: #fff;
  font-size: 15px;
  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: 18px !important;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  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{
  color: #fff;
  text-decoration:none;
  padding: 0;
  background: none;
  border: 0px none;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
}
.custom-footer .footer-menu ul li a:hover{
  border:0px none;
}
.footer-subscribe-form input[type=email] {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  background: #fafafa;
  height: 52px;
  padding: 0 20px;
  border-radius: 0px;
  width: 100%;
  box-shadow: 8px 8px 25px 0 rgb(42 67 113 / 15%);
  -webkit-box-shadow: 8px 8px 25px 0 rgb(42 67 113 / 15%);
  -moz-box-shadow: 8px 8px 25px 0 rgba(42, 67, 113, .15);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  border:0px none;
}
.footer-subscribe-form input[type="submit"] {
  width: 100%;
  border-radius: 0px;
  display: inline-block;
  padding: 11px 0;
  letter-spacing: 0;
  line-height: 28px;
  font-size: 16px;
  letter-spacing: 0;
  border: none;
  color: #fff;
  background:#ED1B24;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  font-weight: 600;
  margin-top: 10px;
}
.footer-subscribe-form .hs-form-field{
  margin-bottom: 0;
}
.custom-footer .dnd-section {
  padding: 100px 0 0 0;
}
.footer-copyright-section .dnd-section {
  padding: 20px 0;
  background:#fafafa;
  margin:60px 0 0 0;
}
.body-wrapper .footer-copyright-section p{
  padding:0;
  margin:0;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 13px;
  color: #161616;
  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 #fff solid;
  border-radius: 30px;
  box-shadow: initial;
  font-size: 13px;
  color: #fff;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.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: #fff; }
.footer-subscribe-form input::placeholder{color: #c3caf6;}
.footer-subscribe-form .submitted-message, form {color: #fff;}
.footer-subscribe-form form input[type=submit]{
  padding-top: 16px;
  padding-right: 50px;
  padding-bottom: 16px;
  padding-left: 50px;
  background-color:transparent;
  border-radius: 35px;
  color: #505050;
  line-height: 20px;
  font-size: 12px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: .5px;
  z-index:99;
  margin:0;
}
.footer-subscribe-form h3 {
  display: none;
}

.footer-subscribe-form .actions {
  display: inline-block;
  position: relative;
  z-index:2;
  overflow:hidden;
  border-radius: 35px;
  background:#fff;
  text-align:center;
}
.footer-subscribe-form .actions:hover{
  color: #fff !important;
}
.footer-subscribe-form .actions:hover::before {
  opacity: 1;
  width: 100%;
  color: #fff;
}
.footer-subscribe-form form input[type=submit]:hover,
.footer-subscribe-form form input[type=submit]:focus,
.footer-subscribe-form form .hs-button:hover, form .hs-button:focus{
  background-color: none;
  border-color: #fff;
  color: #fff;
}
.footer-subscribe-form .actions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background-color: #273272;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
/* Footer SECTION END*/



@media(max-width:1199px){
  .top-header a img { width: 200px !important; }
}

@media(max-width:991px){
  .top-header a img { width: 180px !important; }
}
/* 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%;
}

/*HOME PAGE START*/
.home-text-nine {
  width: 70%;
  margin: 0 auto;
}
/* case-study-box */

.rt-case-study-box.element-two{
}
.rt-case-study-box.element-one.row{
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
  height: 564px
}
.rt-case-study-box.element-one .rt-case-study-box-item{
  text-align:center;
  padding: 15px;
}

.rt-case-study-box.element-one .rt-case-study-box-item > .holder{
  background-color:#f8f8f8;
  transition:all 0.25s ease-in-out;
  -webkit-transition:all 0.25s ease-in-out;
  height: 100%;
}

.rt-case-study-box.element-one .rt-case-study-box-item > .holder:hover{
  transform:translateY(-7px);
  -webkit-transform:translateY(-7px);
}

.rt-case-study-box.element-one .rt-case-study-box-item > .holder > .pic{
  position:relative;
  overflow:hidden;
  height: 100%;
}

.rt-case-study-box.element-one .rt-case-study-box-item > .holder > .pic:before{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  z-index:2;
  content:" ";
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.75+100 */
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#bf000000',GradientType=0 ); /* IE6-9 */
}

.rt-case-study-box.element-one .rt-case-study-box-item > .holder > .pic > img{
  width:100%;
}

.rt-case-study-box.element-one .rt-case-study-box-item > .holder > .pic > .holder{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  z-index:1;
  background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
  transition:all 0.5s ease-in-out;
  -webkit-transition:all 0.5s ease-in-out;
}

.rt-case-study-box.element-one .rt-case-study-box-item > .holder:hover > .pic > .holder{
  transform:scale(1.1);
  -webkit-transform:scale(1.1);
}

.rt-case-study-box.element-one .rt-case-study-box-item > .holder > .pic > .data{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  z-index:3;
  padding:18px 25px 18px 25px;
}
.rt-case-study-box.element-one .rt-case-study-box-item>.holder>.pic>.data h6 {
  color: #fff;
}
.rt-case-study-box.element-one .rt-case-study-box-item > .holder > .pic > .data{
  text-align:left;
}
.rt-case-study-box.element-one .rt-case-study-box-item > .holder > .pic > .data > *:last-child{
  margin-bottom:0 !important;
}

.rt-case-study-box.element-one .rt-case-study-box-item > .holder > .pic > .data p.category{
  margin-bottom:5px;
  font-weight:400;
  font-size:14px;
  color:#fff;
  line-height:22px;
  opacity:0.9;
}

.rt-case-study-box.element-one .rt-case-study-box-item > .holder > .pic > .data h4{
  margin-bottom:7px;
  font-weight:600;
  font-size:16px;
  color:#fff;
  line-height:25px;
}

.rt-case-study-box.element-one .rt-case-study-box-item > .holder > .pic > .data h4 a{
  color:inherit;
}

.rt-case-study-box.element-one .rt-case-study-box-item > .holder > .pic > .data p{
  margin-bottom:10px;
  color:#fff;
}
/* case-study-box */

.icon-box-style-img-box .icon-box-parent-style-img-box .radiant-icon-box-icon {
  width: auto;
  display: inline-block;
  vertical-align: top;
}
.icon-box-style-img-box .icon-box-parent-style-img-box .radiant-icon-box-content {
  width: 70%;
  display: inline-block;
  padding-left: 10px;
}
.radiant-icon-box-wrapper.icon-box-parent-style-img-box {
  padding: 40px 0 0 0;
}
.icon-box-style-img-box .icon-box-parent-style-img-box .radiant-icon-box-content h4 {
  font-size: 14px;
  line-height: 23px;
  text-align: left;
  margin:0 0 5px 0;
  padding:0;
}
.contact-form-two {
  width: 95%;
  margin: 0 auto;
}
.banner-main {
  padding: 150px 0 150px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.banner-inner h2 {
  text-transform: uppercase;
  font-weight: 900;
  color:#0c5394;
  text-decoration: none;
  white-space: nowrap;
  line-height: 40px;
  letter-spacing: 0px;
  font-size: 40px;
  font-family: Poppins,sans-serif;
}
.banner-inner h3 {
  font-weight: 700;
  color:#03143B;
  text-decoration: none;
  white-space: normal;
  line-height: 69px;
  letter-spacing: -0.9894px;
  font-size: 59px;
}
.banner-inner p {
  color: #fff;
  text-decoration: none;
  white-space: normal;
  line-height: 30px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 20px;
}
.banner-inner a.banner-botton{
  padding-top: 16px;
  padding-right: 30px;
  padding-bottom: 16px;
  padding-left: 42px;
  background-color: #273272;
  border-radius: 35px;
  color: #fff;
  line-height: 20px;
  font-size: 12px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: .5px;
  z-index:1;
}
.banner-inner a.banner-botton:hover{
  color: #fff !important;
}
.banner-inner a.banner-botton:hover::before {
  opacity: 1;
  width: 100%;
  color: #fff;
}
.banner-inner a.banner-botton::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background-color: #001a57;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.home-text-one h1 {
  font-size: 36px;
  color: #273272;
  line-height: 45px;
  text-align: center;
}
.home-text-one p {
  padding: 0 100px;
}
.icon-box-style-eight .radiant-icon-box-wrapper.icon-box-parent-style-eight {
  text-align: center;
  padding: 0 30px;
}
.icon-box-style-eight .radiant-icon-box-wrapper.icon-box-parent-style-eight .radiant-icon-box-icon{
  margin-bottom:10px;
}
.icon-box-style-eight .radiant-icon-box-wrapper.icon-box-parent-style-eight .radiant-icon-box-content h4 {
  font-size: 17px;
  color: #001a57;
  line-height: 28px;
  text-align: center;
  font-weight: 600;
}
.home-text-two {
  padding: 0 0 20px 0;
}
.home-text-three h6 {
  font-size: 17px;
  color: #6f779a;
  line-height: 28px;
  text-align: left;
  font-weight: 600;
}
.body-container--home .radiant-counter-style-one {
  padding: 0;
  margin: 0;
}
.body-container--home .radiant-counter-style-one_inner.items-start{

}
.body-container--home  .radiant-counter-style-one_inner.items-start .radiant-counter-style-one_content {
  width: auto;
  display: inline-block;
  color: #00174d;
  padding-left: 0;

}
.body-container--home .radiant-counter_number.radiant-counter-style-one_number.radiant-h2 {
  display: inline-block;
  font-size: 39px;
  color: #6f779a;
  line-height: 40px;
  text-align: left;
  font-weight: 800;
  font-family: Poppins;
}
.body-container--home .radiant-counter-style-one_inner.items-start span.radiant-counter-number-suffix{
  display: inline-block;
  font-size: 39px;
  color: #6f779a;
  line-height: 40px;
  text-align: left;
  font-weight: 800;
  font-family: Poppins;
}
.body-container--home .ml-2{
  font-size: 16px;
  color: #6f779a;
  line-height: 25px;
  text-align: left;
  font-weight:600;
}
.home-counter-one{
  position:relative;
}
.home-counter-one:after {
  position: absolute;
  content: "";
  height: 63px;
  width: 1px;
  border-right: 1px solid #e4e4e4;
  top: 7px;
  right: 6px;
}
.body-container--home .span5.widget-span.widget-type-cell.dnd-column {
  margin-left: 0;
}
.home-text-five h2 {
  color: #fff;
  padding: 0;
}
.home-text-five p {
  color: #fff;
  padding: 0;
  margin-bottom: 32px;
}
.icon-box-parent-style-nine .radiant-icon-box-wrapper.icon-box-style-nine {
  padding: 0;
  margin: 0 0 30px 0;
}
.icon-box-parent-style-nine .radiant-icon-box-wrapper.icon-box-style-nine .radiant-icon-box-icon {
  width: auto;
  display: inline-block;
}
.icon-box-parent-style-nine .radiant-icon-box-wrapper.icon-box-style-nine .radiant-icon-box-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  object-position: center;
}
.icon-box-parent-style-nine .radiant-icon-box-wrapper.icon-box-style-nine .radiant-icon-box-content {
  width: 80%;
  display: inline-block;
  vertical-align: top;
  padding-left: 25px;
}
.icon-box-parent-style-nine .radiant-icon-box-wrapper.icon-box-style-nine .radiant-icon-box-content h4 {
  font-size: 14px;
  color: #ffffff;
  line-height: 22px;
  text-align: left;
  margin-bottom:10px;
  padding:0;
}
.icon-box-parent-style-nine .radiant-icon-box-wrapper.icon-box-style-nine .radiant-icon-box-description{
  color: #ffffff;
}
.contact-form-two{
}
.contact-form-two input[type = text],
.contact-form-two input[type = email],
.contact-form-two input[type = url],
.contact-form-two input[type = tel],
.contact-form-two input[type = number],
.contact-form-two input[type = password],
.contact-form-two input[type = date],
.contact-form-two input[type = time],
.contact-form-two select, .contact-form-two textarea{
  border-top: 0px none;
  border-right: 0px none;
  border-bottom: 1px solid #dedede;
  border-left: 0px none;
  background: none;
  padding-left: 0;
  color: #9d9d9e;
  font-size: 15px;
  font-weight: 500;
}
.contact-form-two input::placeholder{
  color: #9d9d9e;
}
.contact-form-two textarea::placeholder{
  color: #9d9d9e;
}
.contact-form-two textarea{
  height:100px;
  resize:none;
}
.contact-form-two form input[type=submit] {
  padding-top: 16px;
  padding-right: 50px;
  padding-bottom: 16px;
  padding-left: 50px;
  background: none;
  color: #03143b;
  border-radius: 35px;
  line-height: 20px;
  font-size: 12px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: left;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: .5px;
  border: 2px solid #ededed;
  z-index: 3;
}
.contact-form-two .actions {
  display: inline-block;
  position: relative;
  z-index:2;
  overflow:hidden;
  border-radius: 35px;
  background:#fff;
}
.contact-form-two .actions:hover{
  color: #fff !important;
}
.contact-form-two .actions:hover::before {
  opacity: 1;
  width: 100%;
  color: #fff;
}
.contact-form-two form input[type=submit]:hover,
.contact-form-two form input[type=submit]:focus,
.contact-form-two form .hs-button:hover, form .hs-button:focus{
  background-color: none;
  border-color: #fff;
  color: none;
}
.contact-form-two .actions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background-color: #95afcc;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.contact-form-two .hs-form-field {
  margin-bottom: 8px;
}
/*TEAM START*/
.team{
  width: auto;
  margin-left: -15px;
  margin-right: -15px;
  margin-top:30px;
  overflow:hidden;
}
.team .rt-professionals-team{
}
.team .rt-professionals-team > .holder {
  text-align: center;
}
.team .rt-professionals-team > .holder  > .pic {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}
.home-text-seven p {
  width: 60%;
  margin: 0 auto;
  padding-bottom:15px;
}
.team .rt-professionals-team > .holder  > .pic > img {
  width: 100%;
  height:auto;
}
.team .rt-professionals-team > .holder  > .pic > .holder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: center top no-repeat;
  background-size: cover;
}
.team .rt-professionals-team > .holder  > .pic > .data {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 25px 20px 25px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  background-color: rgba(9,39,111,0.8);
}
.team .rt-professionals-team > .holder:hover > .pic > .data {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
.team .rt-professionals-team > .holder > .title {
}
.team .rt-professionals-team > .holder > .title h5 {
  margin-bottom: 0px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  color: #001a57;
  line-height: 27px;
  letter-spacing: 1px;
  padding: 0;
}
.team .rt-professionals-team > .holder > .title p.designation {
  margin-bottom: 0px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  color: #6d6d6d;
  line-height: 22px;
}
.team .rt-professionals-team > .holder > .pic > .data p {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  line-height: 22px;
}
.team .rt-professionals-team > .holder > .pic > .data p > strong {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
}
/*TEAM END*/
/*TESTMONIAL  START*/
.testimonial.rt-testimonial.style-three{
  text-align:center;
}
.testimonial{
  overflow:hidden;
}
.testimonial.rt-testimonial.style-three .testimonial-inner-main.holder {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial.rt-testimonial.style-three .testimonial-inner-main.holder blockquote{
  border:0px none;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 25px;
}
.testimonial.rt-testimonial.style-three .testimonial-inner-main.holder blockquote p{
  margin:0;
}
.testimonial.rt-testimonial.style-three .testimonial-inner-main.holder > .data blockquote:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 0;
  content: " ";
  width: 28px;
  height: 4px;
  margin-left: -14px;
  background-color: #95afcc;
  border-radius: 2px;
}
.testimonial.rt-testimonial.style-three .testimonial-inner-main.holder > .data h5 {
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  color: #001a57;
  line-height: 26px;
  letter-spacing: 0.06em;
  padding: 0;
  margin: 0;
}
.testimonial.rt-testimonial.style-three .testimonial-inner-main.holder > .data .role {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 12px;
  color: #636363;
  line-height: 22px;
}
.testimonial.rt-testimonial.style-three .swiper-pagination.swiper-pagination-bullets {
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  text-align: right;
  display:none;
}
.testimonial.rt-testimonial.style-three .swiper-pagination-bullet {
  border-radius: 0;
  width: 12px;
  height: 5px;
  background-color: #585555cc;
  cursor: pointer;
}
.testimonial.rt-testimonial.style-three .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #001a57;
}

/*TESTMONIAL  END*/

/*BLOG  START*/
.recent-blogs .blog-item > .holder {
  position: relative;
}
.recent-blogs .blog-item > .holder > .pic {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.recent-blogs .blog-item > .holder > .pic > img {
  width: 100%;
  height: auto;
}
.recent-blogs .blog-item > .holder > .pic > .holder {
  position: absolute;
  top: 0;
  left: -15%;
  z-index: 1;
  width: 130%;
}
.recent-blogs .blog-item > .holder > .pic > .holder img {
  width: 100%;
}
.recent-blogs .blog-item > .holder > .category-display {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  max-width: calc(100% - 24px);
  max-height: calc(100% - 24px);
}
.recent-blogs .blog-item > .holder > .category-display ul {
  font-size: 0;
}
.recent-blogs .blog-item > .holder > .category-display ul > li {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  margin-bottom: 7px;
}
.recent-blogs .blog-item > .holder > .category-display ul > li a {
  display: block;
  padding: 6px 15px 5px 15px;
  background-color: #fff;
  border: 1px #c6d3e3 solid;
  border-radius: 25px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 12px;
  color: #001139;
  line-height: 21px;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
}
.recent-blogs .blog-item > .holder > .data h6 {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 16px;
  color: #00174d;
  line-height: 28px;
  padding: 0;
}
.recent-blogs .blog-item > .holder > .data h6 a{
  text-decoration:none;
}
.recent-blogs .blog-item > .holder > .data p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 25px;
}
.recent-blogs .blog-item > .holder > .data > *:last-child {
  margin-bottom: 0;
}
.recent-blogs .blog-item > .holder > .data ul.post-meta{
  padding:0;
}
.recent-blogs .blog-item > .holder > .data ul.post-meta li {
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  color: #626262;
  line-height: 25px;
  padding:0 10px 0 0;
}
.recent-blogs .blog-item > .holder > .data ul.post-meta li a {
  text-decoration: none;
  color: inherit;
}
.recent-blogs .blog-item > .holder > .data ul.post-meta li strong {
  color: #001a57;
}
/*BLOG  END*/

/*HOME PAGE END*/

/*INNER PAGE BANNER START*/
.radiant-container {
  max-width: 1170px;
  margin: 0 auto;
}
.inner_banner_main {
  padding: 70px 0 60px 0;
}
.wraper_inner_banner.banner-one { background-size: cover; background-repeat: no-repeat; width: 100%; display: inline-block; background-position: center; padding:90px 0; }
.inner_banner_main p {
  margin: 0;
}
.inner_banner_main h1 {
  font-family: Poppins;
  line-height: 40px;
  letter-spacing: 0px;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  font-size: 32px;
}
/*INNER PAGE BANNER END*/

/*ABOUT US PAGE BANNER START*/
.radiant-heading.style-one h1 {
  position: relative;
  padding-left: 21px;
  margin-bottom:28px;
  padding-bottom: 0;
  letter-spacing: 0.7px;
}
.radiant-heading.style-one h1:after {
  content: "";
  background-color: #c3d3e5;
  width: 4px;
  height: 80%;
  position: absolute;
  left: 0px;
  top: 10px;
}
.icon-box-parent-style-one .radiant-icon-box-icon {
  width: auto;
  padding: 0 0 20px 0;
}
.icon-box-parent-style-one .radiant-icon-box-content h4{
  font-size: 18px;
  color: #161616;
  line-height: 30px;
  text-align: left;
  font-weight:700;
  padding-bottom:23px;
}
.icon-box-parent-style-one .radiant-icon-box-content .radiant-icon-box-description {
  padding-right: 44px;
}
.icon-box-parent-style-one .radiant-icon-box-wrapper.icon-box-style-one{
  position: relative;
}
.icon-box-parent-style-one .radiant-icon-box-wrapper.icon-box-style-one:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  border-right: 1px solid #eaeaea;
  top: 0;
  right: 19px;
}
.icon-box-parent-style-one.icon-box-separator .radiant-icon-box-wrapper.icon-box-style-one:after{
  display:none;
}
.about-text-two p {
  margin-top: 0;
  margin-bottom: 35px;
  padding-right: 10px;
}
.about-button-one a.button {
  padding-top: 16px;
  padding-right: 30px;
  border:0px none;
  /* font-weight: 600; */
  padding-bottom: 16px;
  padding-left: 42px;
  background-color: #273272;
  border-radius: 35px;
  color: #ffffff;
  line-height: 20px;
  font-size: 12px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: 0.5px;
  z-index: 1;
}
.about-button-one a.button:hover{
  color: #fff !important;
}
.about-button-one a.button:hover::before {
  opacity: 1;
  width: 100%;
  color: #fff;
}
.about-button-one a.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background-color: #001a57;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.about-button-one a.button i.ti-arrow-right {
  visibility: hidden;
  opacity: 0;
  transition: margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -webkit-transition: margin 0.3s ease-in-out, opacity 0.3s ease-in-out;

}
.about-button-one a.button:hover i.ti-arrow-right {
  visibility: visible;
  opacity: 1;
  margin-left:10px;
}
.icon-box-parent-style-two .radiant-icon-box-icon {
  width: 11%;
  display: inline-block;
  vertical-align: top;
  margin-top: 8px;
}
.icon-box-parent-style-two .radiant-icon-box-content {
  width: 86%;
  display: inline-block;
  padding-left: 30px;
  padding-bottom: 25px;
}
.radiant-icon-box-content h4{
  font-size: 18px;
  line-height: 23px;
  text-align: left;
  font-weight:700;
}
.about-text-three h4 {
  font-size: 22px;
  line-height: 24px;
  text-align: left;
}
.about-button-two a.button {
  padding-top: 16px;
  padding-right: 30px;
  border: 0px none;
  padding-bottom: 16px;
  padding-left: 42px;
  background-color: #273272;
  border-radius: 35px;
  color: #fff;
  line-height: 20px;
  font-size: 12px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: .5px;
  z-index: 1;
}

.about-button-two a.button:hover{
  color: #fff !important;
}
.about-button-two a.button:hover::before {
  opacity: 1;
  width: 100%;
  color: #fff;
}
.about-button-two a.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background-color: #001a57;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.about-text-three p {
  width: 92%;
}
.radiant-counter-style-one_inner.items-start .radiant-icon-primary {
  width: auto;
  display: inline-block;
  vertical-align: top;
}
.radiant-counter-style-one_inner.items-start .radiant-counter-style-one_content {
  width: auto;
  display: inline-block;
  color:#00174d;
  padding-left: 30px;
}
.body-container--about .radiant-counter-style-one_inner.items-start .radiant-counter-style-one_content 
.radiant-counter_number.radiant-counter-style-one_number.radiant-h2{
  font-size: 48px;
  color: #00174d;
  line-height: 40px;
  text-align: left;
  font-weight:600;
  display: inline-block;
}
.flex.items-end {
  position: relative;
}
.radiant-counter-style-one_inner.items-start span.radiant-counter-number-suffix {
  font-size: 48px;
  color: #00174d;
  line-height: 40px;
  text-align: left;
  font-weight: 600;
}
.body-container--about .radiant-counter-style-one_inner.items-start .ml-2 {
  font-size: 18px;
  color: #00174d;
  line-height: 30px;
  text-align: left;
  margin-top: 8px;
  font-weight: 600;
}
.radiant-counter-style-one_inner.items-start label.block.mt-2 {
  font-size: 18px;
  color: #161111;
  line-height: 26px;
  text-align: left;
  margin:0 !important;
}
.about-text-four h4 {
  font-size: 22px;
  line-height: 24px;
  text-align: left;
}
.about-button-three a.button {
  padding-top: 16px;
  padding-right: 30px;
  padding-bottom: 16px;
  padding-left: 42px;
  background-color: #273272;
  border-radius: 35px;
  color: #fff;
  line-height: 20px;
  font-size: 12px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: .5px;
  z-index:1;
}
.about-button-three a.button:hover{
  color: #fff !important;
}
.about-button-three a.button:hover::before {
  opacity: 1;
  width: 100%;
  color: #fff;
}
.about-button-three a.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background-color: #001a57;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.about-button-three a.button i.ti-arrow-right {
  visibility: hidden;
  opacity: 0;
  transition: margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -webkit-transition: margin 0.3s ease-in-out, opacity 0.3s ease-in-out;

}
.about-button-three a.button:hover i.ti-arrow-right {
  visibility: visible;
  opacity: 1;
  margin-left:10px;
}
.about-img-one {
  overflow: hidden;
}
.about-img-one img{
  transition: transform .5s;
}
.about-img-one:hover img{
  transform: scale(1.2);
}
/*ABOUT US PAGE BANNER END*/

/*Company Overview PAGE BANNER START*/
.icon-box-parent-style-three {
  padding-top: 30px;
  padding-right: 40px;
  padding-bottom: 46px;
  padding-left: 40px;
  background-color: #f9f9f9;
  border:1px solid #f0f0f0;
  text-align: center;
}
.icon-box-parent-style-three .radiant-icon-box-content h4{
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  margin:15px 0 6px 0;
  padding:0;
}
.comp-overview-text-two {
  width: 96%;
}
.comp-overview-text-two h3{
  font-size: 30px;
  line-height: 38px;
  text-align: left;
  margin-bottom:30px;
  padding:0;
}
.comp-overview-text-one {
  padding: 0 0 45px 0;
}
.text-center h4{
  font-size: 20px;
  line-height: 26px;
  font-weight:700;
}
.text-center h2{
  font-size: 36px;
  line-height: 45px;
}
.radiant-counter-style-two .radiant-counter-style-one {
  width: 100%;
}
.radiant-counter-style-two .radiant-counter-style-one .radiant-counter-style-one_icon{
  width: 100%;
  display: block;
  vertical-align: top;
}
.radiant-counter-style-two .radiant-counter-style-one .radiant-counter-style-one_content{
  padding:0;
  width:100%;
  position:relative;
}
.radiant-counter-style-two .radiant-counter-style-one .radiant-counter_number.radiant-counter-style-one_number.radiant-h2{
  color:#fff;
  text-align: left;
  font-size: 50px;
  line-height: 60px;
  font-family: Montserrat;
  font-weight: 700;
  font-style: normal;
  display: inline-block;
  vertical-align: top;
}
.radiant-counter-style-two .radiant-counter-style-one .radiant-counter-style-one_content .ml-2{
  font-size: 18px;
  color: #ffffff;
  line-height: 22px;
  text-align: left;
  font-weight:600;
  display: inline-block;
  padding-left:14px;
  vertical-align: middle;
}
.radiant-counter-style-two .radiant-counter-style-one .radiant-counter-style-one_content label.block.mt-2 {
  font-size: 18px;
  color: #ffffff;
  line-height: 22px;
  text-align: left;
  font-weight:600;
  display: inline-block;
  padding-left:14px;
  position: absolute;
  top: 40px;
  right: 26%;
}
.span3.widget-span.widget-type-cell.dnd-column:first-child .icon-box-parent-style-four {
  text-align: right;
}
.span3.widget-span.widget-type-cell.dnd-column:first-child .icon-box-parent-style-four .radiant-icon-box-content h4{
  text-align: right;
  font-size: 20px;
  line-height: 26px;
  font-weight:600;
}
.icon-box-parent-style-four .radiant-icon-box-icon {
  width: auto;
  display: inline-block;
}
.icon-box-parent-style-four .radiant-icon-box-content {
  margin: 22px 0 40px 0;
}
.comp-overview-text-three {
  padding-bottom: 50px;
}
.comp-overview-text-four h4{
  color:#fff;
  font-size: 35px;
  color: #ffffff;
  line-height: 40px;
  padding-bottom:30px;
}
.comp-overview-text-four p{
  color:#fff;
}
.comp-overview-btn-one a.button {
  padding-top: 16px;
  padding-right: 30px;
  /* font-weight: 600; */
  padding-bottom: 16px;
  padding-left: 40px;
  background-color: #fff;
  border-radius: 35px;
  color: #252525;
  line-height: 26px;
  font-size: 13px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: 1px;
  z-index: 1;
  border:0px none;
}

.comp-overview-btn-one a.button:hover{
  color: #fff !important;
}
.comp-overview-btn-one a.button:hover::before {
  opacity: 1;
  width: 100%;
  color: #fff;
}
.comp-overview-btn-one a.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background-color: #001a57;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.comp-overview-btn-one a.button i.ti-arrow-right {
  visibility: hidden;
  opacity: 0;
  transition: margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -webkit-transition: margin 0.3s ease-in-out, opacity 0.3s ease-in-out;

}
.comp-overview-btn-one a.button:hover i.ti-arrow-right {
  visibility: visible;
  opacity: 1;
  margin-left:10px;
}
.comp-overview-btn-one {
  position: absolute;
  right: 0;
  top: 60px;
}
.body-container--company-overview .span12.widget-span.widget-type-custom_widget.dnd_area-module-28-flexbox-positioning.dnd-module {
  position: relative;
}
/* TESTMONIAL START */
.testimonial.element-eight *{
  margin:0 auto;
}

.testimonial.rt-testimonial.style-one .testimonial-item{
  padding:5px 15px 10px 15px;
}

.testimonial.rt-testimonial.style-one:not(.owl-carousel) .testimonial-item{
  float:left;
  margin-bottom:40px;
}

.testimonial.rt-testimonial.style-one .testimonial-item > .holder{
  position:relative;
  padding-left:55px;
}

.testimonial.rt-testimonial.style-one .testimonial-item.no-image > .holder{
  padding-left:0;
}

.testimonial.rt-testimonial.style-one .testimonial-item > .holder > .pic{
  position:absolute;
  top:50%;
  bottom:0;
  left:0;
  z-index:1;
  width:auto;
  height:auto;
  margin-top:-55px;
  text-align:center;
}

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

.testimonial.rt-testimonial.style-one .testimonial-item > .holder > .pic > .holder{
  display:inline-block;
  vertical-align:top;
}

.testimonial.rt-testimonial.style-one .testimonial-item > .holder > .pic > .holder img{
  width:110px;
  border:5px #fff solid;
  box-shadow:0px 3px 5px rgba(0,0,0,0.15);
}

.testimonial.rt-testimonial.style-one.image-square .testimonial-item > .holder > .pic > .holder img{
  border-radius:0;
}

.testimonial.rt-testimonial.style-one.image-round .testimonial-item > .holder > .pic > .holder img{
  border-radius:5px;
}

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

.testimonial.rt-testimonial.style-one .testimonial-item > .holder > .data{
  position:relative;
  margin:0px 0px 50px 0px;
  padding:27px 25px 35px 85px;
  background-color: rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
}
.testimonial.rt-testimonial.style-one  blockquote {
  border: 0px none;
  padding: 0;
}
.testimonial.rt-testimonial.style-one .testimonial-item.no-image > .holder > .data{
  padding-left:25px;

}

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

.testimonial.rt-testimonial.style-one .testimonial-item > .holder > .data > .holder blockquote{
}

/*.testimonial.rt-testimonial.style-one .testimonial-item > .holder > .data > .holder blockquote:before{
display:block;
margin-bottom:10px;
content:"\f10d";
font-family:'FontAwesome';
font-size:30px;
color:rgba(0,0,0,0.3);
line-height:30px;
}*/
.testimonial.rt-testimonial.style-one .testimonial-item > .holder > .data > .title h5 {
  margin: 0px 0px 3px 0px;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 25px;
  color:#505050;
  padding:0;
}
.testimonial.rt-testimonial.style-one .testimonial-item > .holder > .data > .title p {
  font-size: 15px;
  line-height: 25px;
  padding:0;
  margin:0;

}
/* TESTMONIAL END */

/* clients SECTION */

.clients.style-two{
  width:auto;
}

.clients.style-two:not(.owl-carousel):after{
  display:block;
  content:" ";
  width:100%;
  height:0;
  clear:both;
}

.clients.style-two *{
  margin:0 auto;
}

.clients.style-two .clients-item{
  padding:20px 15px 20px 15px;
  border:1px #f2f2f2 solid;
}

.clients.style-two:not(.owl-carousel) .clients-item{
  float:left;
}

.clients.style-two .owl-stage > .owl-item .clients-item,
.clients.style-two:not(.owl-carousel) .clients-item{
  background-color:#fafafa;
}

.clients.style-two .owl-stage > .owl-item:nth-child(even) .clients-item,
.clients.style-two:not(.owl-carousel) .clients-item:nth-child(even){
  background-color:#f4f4f4;
}

.clients.style-two .clients-item > .holder{
  text-align:center;
}

.clients.style-two .clients-item > .holder > .table{
  display:table;
  table-layout:fixed;
  width:100%;
  height:100%;
  margin:0;
}

.clients.style-two .clients-item > .holder > .table > .table-cell{
  display:table-cell;
  width:100%;
  height:100%;
  vertical-align:middle;
}

.clients.style-two .clients-item > .holder .pic{
  display:inline-block;
  vertical-align:top;
}

.clients.style-two .clients-item > .holder .pic img{
  opacity:0.5;
  transition:all 0.3s ease-in-out;
  -webkit-transition:all 0.3s ease-in-out;
}

.clients.style-two .clients-item > .holder:hover .pic img{
  opacity:1;
}
/* clients SECTION */
/*Company Overview PAGE BANNER END*/

/*FAQ PAGE START*/
.icon-box-parent-style-five .radiant-icon-box-wrapper.icon-box-style-five {
  width: 100%;
}
.icon-box-parent-style-five .radiant-icon-box-wrapper.icon-box-style-five .radiant-icon-box-icon {
  width: auto;
  display: inline-block;
}
.icon-box-parent-style-five .radiant-icon-box-wrapper.icon-box-style-five .radiant-icon-box-content {
  width: auto;
  display: inline-block;
  vertical-align: top;
  padding-left: 20px;
}
.icon-box-parent-style-five .radiant-icon-box-wrapper.icon-box-style-five .radiant-icon-box-content h4 {
  font-size: 28px;
  color: #001a57;
  line-height: 27px;
  text-align: left;
  padding:0 0 7px 0;
}

.faq-style-one .softek-faq{
  background:none;
  border:0px none;
  padding-left: 82px;
}
.faq-style-one .softek-faq .softek-accordion-item  {
  padding-top: 13px;
  padding-bottom: 13px;
  border-bottom: 1px #e4e3eb solid;
}
.faq-style-one .softek-faq .softek-accordion-item > .softek-faq-title {
  position: relative;
  padding-right: 35px;
  cursor: pointer;
  padding:0;
  display: block;
}
.faq-style-one .softek-faq .softek-accordion-item > .softek-faq-title > .softek-faq-icon {
  position: absolute;
  top: 4px;
  right: 0;
  z-index: 1;
  border: 1px solid #8b8c8e;
  border-radius: 50%;
}
.faq-style-one .softek-faq .softek-accordion-item.softek-faq-active .softek-faq-icon:after{
  opacity: 1;
  background: #8b8c8e;
}
.faq-style-one .softek-faq .softek-accordion-item .softek-faq-icon:before {
  content: '';
  display: block;
  width: 85%;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity .2s ease-out;
  background: #8b8c8e;
  left: 1px;
}
.faq-style-one .softek-faq .softek-accordion-item .softek-faq-icon:after {
  content: '';
  display: block;
  height: 80%;
  width: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #8b8c8e;
  top: 1px;
}
.faq-style-one .softek-faq .softek-accordion-item>.softek-faq-title h6{
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  padding:0;
  color:#505050;
}
.faq-style-one .softek-faq .softek-accordion-item .softek-faq-description {
  padding:20px 35px 0 0;
}
.faq-style-one .softek-faq .softek-accordion-item:last-child {
  border-bottom: none;
}
.flyouts ul{
  width: 100%;
  display: inline-block;
  vertical-align: top;
}
.flyouts ul li{
  list-style-type: none;
  margin: 0px;
  padding: 0;
}
.flyouts ul li a{
  display: block;
  padding: 14px 24px;
  font-weight: 400;
  font-size: 17px;
  color: #001040;
  line-height: 27px;
  opacity: 0.9;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  background: #f3f4f5;
  margin-bottom: 3px;
  border-left: 4px solid #f3f4f5;
  text-decoration: none;
}
/* .flyouts ul.active-branch li.active  a {
border-left: 4px solid #c3d3e5;
}
.flyouts ul li a:hover{
border-left: 4px solid #c3d3e5;
} */
.active-branch {
  margin-bottom: 35px;
}
.faq-text-one h4 {
  font-size: 22px;
  color: #ffffff;
  line-height: 35px;
  text-align: center;
  padding:0 0 16px 0;
  border-bottom:1px solid rgba(255,255,255,0.3);
}
.faq-text-one hr {
  display: none;
}
.faq-text-one p{
  color: #ffffff;
  margin-top: 18px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 4px;
}
.faq-text-one h4:last-child{
  font-size: 18px;
  color: #ffffff;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 17px;
  border-bottom:0px none
}
.faq-button-one a.button {
  padding-top: 16px;
  padding-right: 30px;
  /* font-weight: 600; */
  padding-bottom: 16px;
  padding-left: 40px;
  background-color: #fff;
  border-radius: 35px;
  color: #252525;
  line-height: 26px;
  font-size: 13px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: 1px;
}
.faq-button-one a.button i.ti-arrow-right {
  visibility: hidden;
  opacity: 0;
  transition: margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -webkit-transition: margin 0.3s ease-in-out, opacity 0.3s ease-in-out;

}
.faq-button-one a.button:hover i.ti-arrow-right {
  visibility: visible;
  opacity: 1;
  margin-left:10px;
}

/*FAQ PAGE END*/

/*Software & Research START*/
.software-research-text-one p {
  padding: 0 50px 6px 0;
}
.software-research-text-one img {
  padding-bottom: 30px;
}
.software-research-text-one {
  padding-bottom: 40px;
}
.software-research-text-two ul,
.software-research-text-three ul{
  list-style: none;
  padding: 0;
}
.software-research-text-two ul li,
.software-research-text-three ul li{
  list-style: none;
  padding:0 0px 10px 20px;
  position:relative;
}
.software-research-text-two ul li:before,
.software-research-text-three ul li:before{
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #9caec3;
  border-radius: 50%;
  left: 0;
  bottom: 50%;
}

.faq-style-two .softek-faq {
  border: none 0px;
  background: none;
  margin-top: 40px;
}
.faq-style-two .softek-faq .softek-accordion-item {
  padding-bottom: 16px;
  border: none 0px;
}
.faq-style-two .softek-faq .softek-accordion-item > .softek-faq-title {
  position: relative;
  padding-left: 40px;
  padding-bottom: 10px;
  padding-top:0;
  cursor: pointer;
  display:block;
}
.faq-style-two .softek-faq .softek-accordion-item > .softek-faq-title h6{
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  padding:0;
}
.faq-style-two .softek-faq .softek-accordion-item > .softek-faq-title > .softek-faq-icon {
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 1;
  margin:0;
}
.faq-style-two .softek-faq .softek-accordion-item.softek-faq-active .softek-faq-icon:after{
  opacity: 1;
  background: #00174d;
}
.faq-style-two .softek-faq .softek-accordion-item .softek-faq-icon:before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity .2s ease-out;
  background: #00174d;
  left: 0px;
}
.faq-style-two .softek-faq .softek-accordion-item .softek-faq-icon:after {
  content: '';
  display: block;
  height: 100%;
  width: 3px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #00174d;
  top: 0px;
}

.faq-style-two .softek-faq .softek-accordion-item .softek-faq-description {
  padding:8px 0px 0px 40px;
}
.faq-style-two .softek-faq .softek-accordion-item:last-child {
  border-bottom: none;
}
/*Software & Research END*/

/*Business Services*/
.business-services-text-one img {
  padding: 15px 0 30px 0;
  width:100%;
}
h2.business-services-heading-one{
  font-size: 18px;
  color: #273272;
  text-align: left;
}
.icon-box-parent-style-six .icon-box-style-six {
  position: relative;
  box-shadow: 0px 0px 50px rgb(5 6 6 / 8%);
  text-align: center;
  margin: 0px;
  padding-top: 22px;
  padding-right: 30px;
  padding-bottom: 22px;
  padding-left: 30px;
  background-color: #ffffff;
  border:1px solid #e6e6e6
}
.icon-box-parent-style-six .radiant-icon-box-content h4{
  text-align: center;
  font-size: 14px;
  line-height: 22px;
}
.icon-box-parent-style-six .radiant-icon-box-icon{
  margin-bottom:20px;
}
.icon-box-parent-style-six .icon-box-style-six:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  height: 5px;
  background: #c3d3e5;
  width: 100%;
}
.icon-box-parent-style-six .icon-box-style-six:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  height: 5px;
  background: #001a57;
  width: 0%;
  transition: width 0.5s;
}
.icon-box-parent-style-six .icon-box-style-six:hover:after {
  width: 100%;
  background: #001a57;
}
.business-service-text-one {
  padding-top: 60px;
}
.business-service-text-one h5 {
  padding-bottom: 50px;
}
.business-service-text-two h6,
.business-service-text-three h6,
.business-service-text-four h6{
  font-size: 16px;
  color: #6b829d;
  text-align: left;
  padding:0 0 10px 0;
  margin:0;
}
.business-service-text-three {
  padding-bottom: 25px;
}
/*Business Services*/

/*CONTACT PGE START*/

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

.contact-box-content ul li {
  padding: 0 0 5px 0;
  margin: 0;
  list-style: none;
  color:#505050;
}
.contact-box-content ul li i {
  padding: 0 7px 0 0;
  color:#001a57;
}
.contact-form-one .hs-fieldtype-text {
  width: 50%;
  display: inline-block;
  padding:0 7px;
  margin-bottom: 10px;
}
.contact-form-one .hs-fieldtype-textarea {
  padding: 0 10px 0 10px;
  width: 100%;
  margin-bottom: 10px;
}
.contact-form-one input[type = text],
.contact-form-one input[type = email],
.contact-form-one input[type = url],
.contact-form-one input[type = tel],
.contact-form-one input[type = number], 
.contact-form-one input[type = password],
.contact-form-one input[type = date],
.contact-form-one input[type = time],
.contact-form-one select, 
.contact-form-one textarea{
  background-color: #f8f8f8;
  padding-top: 6px;
  padding-right: 10px;
  padding-bottom: 6px;
  padding-left: 10px;
  border-radius:0;
  color: #989898;
  border: 1px solid #d8d8d8;
  width: 100%;
  resize: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.contact-form-one input::placeholder{
  color: #989898;
}
.contact-form-one textarea::placeholder{
  color: #989898;
}
.contact-form-one textarea{
  height: 100px;
}
.contact-form-one .actions {
  text-align: center;
}
.contact-form-one form input[type=submit]{
  padding-top: 16px;
  padding-right: 50px;
  padding-bottom: 16px;
  padding-left: 50px;
  background-color:transparent;
  border-radius: 35px;
  color: #fff;
  line-height: 20px;
  font-size: 12px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: .5px;
  z-index:99;
}

.contact-form-one .actions {
  display: inline-block;
  position: relative;
  z-index:2;
  overflow:hidden;
  border-radius: 35px;
  background:#273272;
  text-align:center;
}
.contact-form-one .actions:hover{
  color: #fff !important;
}
.contact-form-one .actions:hover::before {
  opacity: 1;
  width: 100%;
  color: #fff;
}
.contact-form-one form input[type=submit]:hover,
.contact-form-one form input[type=submit]:focus,
.contact-form-one form .hs-button:hover, form .hs-button:focus{
  background-color: none;
  border-color: #fff;
  color: none;
}
.contact-form-one .actions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background-color: #95afcc;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

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

/*LANDING PAGE START*/
.body-container--landing .banner-main {
  padding: 150px 0 150px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.body-container--landing .banner-inner h2 {
  text-transform: uppercase;
  font-weight: 300;
  color: rgb(0, 26, 87);
  text-decoration: none;
  white-space: nowrap;
  line-height: 59px;
  letter-spacing: 0px;
  font-size: 56px;
}
.body-container--landing .banner-inner h3 {
  font-weight: 700;
  color: rgb(0, 26, 87);
  text-decoration: none;
  white-space: normal;
  line-height: 69px;
  letter-spacing: -0.9894px;
  font-size: 59px;
}
.body-container--landing .banner-inner p {
  color: rgb(30, 33, 41);
  text-decoration: none;
  white-space: normal;
  line-height: 30px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 20px;
}
.body-container--landing .banner-inner a.banner-botton{
  padding-top: 16px;
  padding-right: 30px;
  padding-bottom: 16px;
  padding-left: 42px;
  background-color: #273272;
  border-radius: 35px;
  color: #fff;
  line-height: 20px;
  font-size: 12px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: .5px;
}
.landing-text-one{
  position: relative;
}
.landing-text-one h4 {
  font-size: 30px;
  line-height: 40px;
  text-align: left;
  font-weight: 700;
  padding:0;
}
.landing-text-two p{
  padding:0;
  margin:0;
}
.landing-text-one:after {
  content: "";
  position: absolute;
  background-color: #c6d3e3;
  width: 4px;
  height: 60px;
  border-radius: 50px;
  right: 25px;
  top: 11px;
}
.landing-text-three h2 {
  font-size: 36px;
  color: #ffffff;
  line-height: 40px;
  text-align: center;
}
.landing-text-three p {
  color: #ffffff;
  padding-bottom: 40px;
}
/* fancy-text-box */

.radiant-fancy-text-box.style-one{
}

.radiant-fancy-text-box.style-one .holder{
  background:#fff;
  transition:all 0.3s ease-in-out;
  -webkit-transition:all 0.3s ease-in-out;
  padding-bottom: 10px;
}
.radiant-fancy-text-box.style-one.hover-active .holder {
  box-shadow: 0px 0px 50px rgb(5 6 6 / 8%);
}
.radiant-fancy-text-box.style-one:hover .holder{
  box-shadow:0px 0px 0px rgba(5,6,6,0.08);
}

.radiant-fancy-text-box.style-one .holder:hover{
  position:relative;
  box-shadow:0px 0px 50px rgba(5,6,6,0.08);
}

.radiant-fancy-text-box.style-one[data-fancy-text-box-align=left] > .holder{
  text-align:left;
}

.radiant-fancy-text-box.style-one > .holder > *:last-child{
  margin-bottom:0;
}

.radiant-fancy-text-box.style-one > .holder > .pic{
  margin-bottom:20px;
  overflow: hidden;
}
.radiant-fancy-text-box.style-one > .holder > .pic img{
  width:100%;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.radiant-fancy-text-box.style-one > .holder:hover .pic img{
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.radiant-fancy-text-box.style-one > .holder > .title{
  margin-bottom:5px;
  padding: 0 30px 0 30px;
}

.radiant-fancy-text-box.style-one > .holder > .data{
  margin-bottom:20px;
  padding: 0 30px 0 30px;
}

.radiant-fancy-text-box.style-one > .holder > .data > *:last-child{
  margin-bottom:0;
}

.radiant-fancy-text-box.style-one > .holder > .more{
  margin-bottom:15px;
  padding: 0 30px 0 30px;
}
.radiant-fancy-text-box.style-one>.holder>.title h5 a{
  text-decoration:none;
}
.radiant-fancy-text-box.style-one > .holder > .more .btn{
  padding:0;
  border-radius:0;
  cursor:pointer;
  transition:all 0.3s ease-in-out;
  -webkit-transition:all 0.3s ease-in-out;
  text-transform: uppercase;
  line-height: 25px;
  letter-spacing: 1px;
  font-weight: 600;
  font-style: normal;
  color: #001139;
  font-size: 12px;
  position: relative;
  text-decoration:none;
}
.radiant-fancy-text-box.style-one > .holder > .more >.btn:hover::before {
  width: 100%;
}
.radiant-fancy-text-box.style-one > .holder > .more >.btn:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 2px;
  background: #555f99;
  transition: width .3s;
  bottom: 0px;
}
.radiant-fancy-text-box.style-one span.ti-angle-right {
  padding: 0 0 0 7px;
  font-size: 10px;
}
.landing-text-four h5 {
  color: #555f99;
  text-align: left;
}
.landing-button-one a.button {
  padding-top: 16px;
  padding-right: 30px;
  /* font-weight: 600; */
  padding-bottom: 16px;
  padding-left: 42px;
  background-color: #273272;
  border-radius: 35px;
  color: #ffffff;
  line-height: 20px;
  font-size: 12px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: 0.5px;
  z-index:1;
  border:0px none;
}

.landing-button-one a.button:hover{
  color: #fff !important;
}
.landing-button-one a.button:hover::before {
  opacity: 1;
  width: 100%;
  color: #fff;
}
.landing-button-one a.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background-color: #001a57;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.landing-button-one a.button i.ti-arrow-right {
  visibility: hidden;
  opacity: 0;
  transition: margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -webkit-transition: margin 0.3s ease-in-out, opacity 0.3s ease-in-out;

}
.landing-button-one a.button:hover i.ti-arrow-right {
  visibility: visible;
  opacity: 1;
  margin-left:10px;
}
.landing-text-five h5 {
  margin-top: 0px;
  margin-bottom: 0px;
  border-bottom-width: 1px;
  padding-top: 21px;
  padding-bottom: 21px;
  background-color: #ebf4fd;
  border-bottom-color: #e9e9e9;
  border-bottom-style: solid;
  border-radius: 10px 10px 0 0;
}
.pricing-sec {
  font-size: 72px;
  color: #444f95;
  line-height: 80px;
  text-align: center;
  font-weight: 700;
  background: #fff;
  padding: 15px 0 0 0;
}

element.style {
}
.pricing-month {
  font-size: 13px;
  color: #808080;
  line-height: 24px;
  text-align: center;
  margin-top: 0px;
  border-bottom-width: 1px;
  padding-top: 10px;
  padding-bottom: 25px;
  border-bottom-color: #e9e9e9;
  border-bottom-style: solid;
  background: #fff;
  font-weight: 600;
}
.landing-text-five {

}
.rt-list ul {
  margin: 0;
  background: #fff;
  padding: 20px 0 20px 0;
}
.rt-list ul {
  margin: 0;
  background: #fff;
  padding: 30px 50px 30px 75px;
  text-align: left;
}
.rt-list ul li {
  list-style: none;
  padding: 0 0px 10px 20px;
  position: relative;
}
.rt-list ul li:before{
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #9caec3;
  border-radius: 50%;
  left: 0;
  bottom: 50%;
}
.body-container--landing .span12.widget-span.widget-type-custom_widget.dnd_area-module-17-flexbox-positioning.dnd-module {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  bottom: 0px;
  background-color: #efefef;
  padding: 30px 0;
} 
.landing-button-two a.button {
  padding-top: 16px;
  padding-right: 30px;
  /* font-weight: 600; */
  padding-bottom: 16px;
  padding-left: 42px;
  background-color: #273272;
  border-radius: 35px;
  color: #ffffff;
  line-height: 20px;
  font-size: 12px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: 0.5px;
}
.landing-button-two a.button i.ti-arrow-right {
  visibility: hidden;
  opacity: 0;
  transition: margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -webkit-transition: margin 0.3s ease-in-out, opacity 0.3s ease-in-out;

}
.landing-button-two a.button:hover i.ti-arrow-right {
  visibility: visible;
  opacity: 1;
  margin-left:10px;
}

.landing-text-five{
  position:relative;
  box-shadow: 0px 0px 30px rgb(0 0 0 / 40%);
}
.landing-text-five:before {
  transition: all 0.5s ease;
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 30px rgb(0 0 0 / 40%);
  width: 92%;
  height: 410px;
  left: -37px;
  z-index: -1;
  top: 93px;
}
.landing-text-five:after {
  transition: all 0.5s ease;
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 30px rgb(0 0 0 / 40%);
  width: 92%;
  height: 361px;
  left:-70px;
  z-index: -1;
  top: 142px;
}
.landing-text-five:hover:before {
  -webkit-transform: rotate(-4deg);
  top: 84px;
}
.landing-text-five:hover:after {
  -webkit-transform: rotate(
    -6deg
  );
  top: 133px;
}
.landing-text-six h2 {
  font-size: 36px;
  color: #ffffff;
  line-height: 40px;
  text-align: left;
}
.landing-text-six p {
  color: #ffffff;
}
.radiant-icon-box-wrapper.icon-box-style-seven .radiant-icon-box-icon {
  width: auto;
  padding: 0;
}
.radiant-icon-box-wrapper.icon-box-style-seven .radiant-icon-box-description{
  font-size: 15px;
  color: #ced3f5;
  line-height: 26px;
  text-align: left;
}
.radiant-icon-box-wrapper.icon-box-style-seven {
  padding: 5px 0 25px 0;
  position: relative;
}


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

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

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

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

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

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

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

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

/* System Page Start*/
/* Search Page End*/
.systems-page .hs-search-results__featured-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
}
.systems-page .hs-search-results__featured-image img {
  width: 100%;
  transform: scale(1.06);
  transition: transform 1s cubic-bezier(.33,.02,0,.93);
}
.systems-page .hs-search-results__featured-image:hover img{
  transform: scale(1.06) translateX(1%);
  transition: transform 1s cubic-bezier(.33,.02,0,.93);
}
.systems-page .hs-search-results__title{
  font-family: Poppins;
  text-transform: capitalize;
  line-height: 50px;
  letter-spacing: 0px;
  font-weight: 700;
  font-style: normal;
  color: #273272;
  font-size: 36px;
  text-decoration: none;
  padding: 20px 30px 8px 30px;
  display: inline-block;
}
.systems-page  p.hs-search-results__description{
  padding:0px 30px 10px 30px;
}
.systems-page .hs-search-results ul li{
  width: 100%;
  margin-bottom: 55px;
  box-shadow: 0px 3px 20px rgb(0 0 0 / 10%);
  border-radius: 4px;
  overflow: hidden;
}
.systems-page a.hs-search-results__next-page,
.systems-page a.hs-search-results__prev-page{
  align-items: center;
  justify-content: center;
  width: auto;
  height: 40px;
  vertical-align: top;
  position: relative;
  text-align: right;
  text-decoration: none;
  box-shadow: none;
  background: #273272;
  color: #fff;
  padding: 7px 35px 12px 35px;
  border: 0px none;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  text-transform: capitalize;
  font-size: 12px;
  line-height: 25px;
  font-weight: 600;
  border-radius: 35px;
}
.systems-page a.hs-search-results__next-page:hover,
.systems-page a.hs-search-results__prev-page:hover{
  background: #273272;
  color: #fff;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}
body .systems-page--search-results {
  max-width: 100%;
  padding-top: 120px;
  padding-bottom: 111px;
}
.hs-search-results__title:hover {
  text-decoration: none;
  color: #273272 !important;
}
/* Search Page End*/
.widget-type-email_subscriptions_confirmation h2 {
  padding: 0;
  margin: 0;
}
div.systems-page .success{
  background: #fafafa;
  border-radius: 4px;
  width: 100%;
  height: 55px;
  line-height: 55px;
  border: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #696969;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  border: 1px solid #d0dcec;
}
div .systems-page {
  padding: 94px 0 107px 0;

}
div .systems-page .header {
  background-color: transparent;
  border-bottom: 0;
  padding: 10px 15px;
}
div .systems-page:first-child .header {
  margin-top: 15px;
}
.systems-page form input[type='submit']{
  padding-top: 16px;
  padding-right: 30px;
  padding-bottom: 16px;
  padding-left: 42px;
  background-color: #273272;
  border-radius: 35px;
  color: #fff;
  line-height: 20px;
  font-size: 12px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-align: center;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  line-height: 19px;
  letter-spacing: .5px;
  z-index: 1;
}

.systems-page form input[type='submit']:hover{
  color: #fff !important;
}
.systems-page form input[type='submit']:hover::before {
  opacity: 1;
  width: 100%;
  color: #fff;
}
.systems-page form input[type='submit']::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background-color: #95afcc;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

form input[type=text]:focus, 
form input[type=email]:focus, 
form input[type=password]:focus, 
form input[type=tel]:focus, 
form input[type=number]:focus, 
form input[type=file]:focus, form select:focus, form textarea:focus{
  border:1px solid #104cba;
  outline:none;
}
form input[type=text]:focus-visible, 
form input[type=email]:focus-visible, 
form input[type=password]:focus-visible, 
form input[type=tel]:focus-visible, 
form input[type=number]:focus-visible, 
form input[type=file]:focus, form select:focus-visible, form textarea:focus-visible{
  outline:none;
}
.backup-unsubscribe input[type=email]{
  background-color: #f8f8f8;
  padding-top: 6px;
  padding-right: 10px;
  padding-bottom: 6px;
  padding-left: 10px;
  border-radius: 0;
  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: 0;
  color: #989898;
  border: 1px solid #d8d8d8;
  width: 100%;
  resize: none;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}
#search-box2 ul{
  border:0px none;
}
#search-box2 ul li {
  text-align: left;
  padding: 5px 10px;
}
.hs-search-field__bar {
  display: block;
  float: left;
  width: 100%;
  padding: 0 10px;
}
#search-box2 ul li a {
  color: #000;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
}
#search-box2 ul li a:hover {
  background: no-repeat;
  text-decoration: none;
}

.membership-login-page form input[type=text],
.membership-login-page form input[type=email], 
.membership-login-page form input[type=password], 
.membership-login-page form input[type=tel], 
.membership-login-page form input[type=number], 
.membership-login-page form input[type=file], 
.membership-login-page form select, form textarea{
  background: #fafafa;
  border-radius: 4px;
  width: 100%;
  height: 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;
}

.membership-login-page a{
  color:#000;
}
.membership-login-page p{
  padding:0;
  margin: 0;
}
.membership-login-page ul.no-list.hs-error-msgs,
.membership-register ul.no-list.hs-error-msgs,
.membership-reset-pass-req ul.no-list,
.membership-reset-pass ul.no-list{
  display:none;
}

.membership-register form input[type=text],
.membership-register form input[type=email], 
.membership-register form input[type=password], 
.membership-register form input[type=tel], 
.membership-register form input[type=number], 
.membership-register form input[type=file], 
.membership-register form select, form textarea{
  background: #fafafa;
  border-radius: 4px;
  width: 100%;
  height: 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;
}

.membership-register a{
  color:#00174d;
}
.membership-register p{
  padding:0;
  margin: 0;
}
.membership-reset-pass-req ul.no-list.hs-error-msgs {
  display: none;
}

.membership-reset-pass-req a{
  color:#00174d;
  text-decoration:none;
}
.membership-reset-pass-req p{
  padding:0;
  margin: 0;
}
.membership-register form input[type=email]{
  background: #fafafa;
  border-radius: 4px;
  width: 100%;
  height: 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;
}


.membership-reset-pass form input[type=text],
.membership-reset-pass form input[type=email], 
.membership-reset-pass form input[type=password], 
.membership-reset-pass form input[type=tel], 
.membership-reset-pass form input[type=number], 
.membership-reset-pass form input[type=file], 
.membership-reset-pass form select, form textarea{
  background: #fafafa;
  border-radius: 4px;
  width: 100%;
  height: 55px;
  line-height: 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 a{
  color:#00174d;
  text-decoration:none;
}
.membership-reset-pass p{
  padding:0;
  margin: 0;
}
/*SEARCH PAGE START*/
body .systems-page--search-results {
  padding-left: 0px;
  padding-right: 0px;
}
.col-lg-3.col-md-12.col-sm-12.col-12.right-sidebar {
  padding-right: 0;
}
.col-lg-9.col-md-12.col-sm-12.col-12.rt-search-results {
  padding-left: 0;
}
.systems-page--search-results .hs-search-results__featured-image {
  padding: 0;
}
.systems-page--search-results .hs-search-results__featured-image img{
  border-radius:0px;
  width:100%;
}
.systems-page--search-results ul li:first-child a{
  padding-top: 12px;
}
.systems-page--search-results ul li a {
  padding-top: 30px;
  display: inline-block;
}
.right-sidebar input[type="text"]{
  vertical-align: top;
  width: 100%;
  height: 50px;
  padding: 0px 45px 0px 15px;
  background-color: #f0f2f5;
  border: 0;
  font-weight: 400;
  font-size: 14px;
  color: #707173;
  line-height: 26px;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  outline: 0;
}

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

.softek-pricing-table .holder {width: 100%;display: inline-block;padding: 35px 20px;border-radius: 5px;box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;text-align:center;position:relative;background-color:#fff;}
.softek-pricing-table .holder .list {margin: 15px 0 20px 0;text-align:left;}
.softek-pricing-table .holder .pricing {margin: 10px 0 0 0;}
.softek-pricing-table .holder .pricing p.price {width: 100%;display: inline-block;margin: 15px 0;font-size: 24px;font-weight: 600;}
.softek-pricing-table .holder .popular-text { background-color: #00174d; border-radius: 3px; max-width: 125px; position: absolute; top: 0; width: 100%; margin: 0 auto; left: 50%; transform: translate(-50%, -50%); }
.softek-pricing-table .holder .popular-text span { display: inline-block; font-size: 12px; font-weight: 700; line-height: 28px; min-height: 28px; padding: 0 8px; text-align: center; text-transform: uppercase; vertical-align: top; width: 100%; color: #fff; letter-spacing: 1px; }
.body-wrapper .custom-footer h6 {margin-bottom: 25px;}
.body-wrapper .custom-footer .sign-up {width: 100%;display: inline-block;}
.body-wrapper .custom-footer .sign-up a {width: auto;display: inline-block;color: #fff;text-decoration: none;background: none;font-weight: 400;font-size: 16px;line-height: 26px;position: relative;top: -14px;text-transform: capitalize;padding: 6px 30px;border: 1px solid #fff;border-radius:30px;transition: all 0.4s ease-in;}
.body-wrapper .custom-footer .sign-up a:hover {background-color: #fff;color: #000;}



/* RESPONSIVE SECTION START*/
@media screen and (min-width:1200px){
}

/* DESKTOP PART */
@media screen and (min-width:992px) and (max-width:1199px){
  .header .content-wrapper .header__row-1 {
    padding: 0 15px;
  }
  .top-header {
    padding: 20px 15px;
  }
  .submenu.level-1>.has-submenu>.menu-arrow {
    right: -3px !important;
    top: 17px !important;
  }
  .radiant-container {
    padding: 0 15px;
  }
  
  .custom-footer.footer .dnd-section{padding-left:15px;padding-right:15px;}
}
/* TABLET LANDSCAPE PART */
@media screen and (min-width:768px) and (max-width:991px){
  /* HOME PAGE START*/ 
  .banner-inner h3 {
    line-height: 56px;
    font-size: 45px;
  }
  .banner-inner h2 {
    line-height: 34px;
    font-size: 24px;
  }
  .banner-inner p {
    line-height: 28px;
    font-size: 18px;
  }
  .banner-main {
    padding: 80px 0 80px 0;
  }
  .home-text-one p {
    padding: 0;
  }
  .icon-box-style-eight .radiant-icon-box-wrapper.icon-box-parent-style-eight {
    text-align: center;
    padding: 0;
  }
  .icon-box-parent-style-nine .radiant-icon-box-wrapper.icon-box-style-nine .radiant-icon-box-content {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 7px 0 0 0;
  }
  .text-center h2 {
    font-size: 33px;
    line-height: 45px;
  }
  .home-text-seven p {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  .testimonial.rt-testimonial.style-three .swiper-pagination.swiper-pagination-bullets {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: right;
  }
  /* HOME PAGE START*/
  /*HEADER START*/
  .top-header {
    text-align: center;
    padding: 20px 15px;
  }
  .header-data-contact.hidden-xs {
    text-align: left;
  }
  .header-data-contact p:after{
    display:none;
  }
  .header-data-social {
    padding-left: 8px;
    margin-top: 12px;
    padding-right: 12px;
  }
  .rt-search-box2 {
    left: 0px;
    top: 14px;
    position: absolute;
  }
  .navbar-toggler {
    margin-top: 19px;
    margin-bottom: 8px;
  }
  .bsnav-mobile, .bsnav-mobile .bsnav-mobile-overlay, .bsnav-sticky.navbar-fade, .bsnav-sticky.navbar-slide {
    top: 121px !important;
  }
  .active-branch {
    margin-bottom: 0px;
  }
  div .submenu.level-2 .menu-item{
    background:none;
    border:0px none;
  }
  .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;
  }
  div .submenu.level-1>li{
    padding:0;
    display: block;
    padding: 0;
  }
  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;
  }
  div .bsnav-mobile .navbar {
    padding: 0 0 15px;

  }
  /*HEADER END*/
  /*  INNER BANNER */
  .radiant-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  .icon-box-parent-style-one .radiant-icon-box-content .radiant-icon-box-description {
    padding-right: 44px;
    padding-bottom: 20px;
  }
  .icon-box-parent-style-one .radiant-icon-box-wrapper.icon-box-style-one:after{
    display:none;
  }
  .body-container--software-research .row-fluid-wrapper.row-depth-1.row-number-2.dnd-section {
    padding: 70px 15px;
  }

  /*  INNER BANNER */

  /*  INNER PAGE */
  .software-research-text-one {
    padding-bottom: 40px;
    padding-top: 30px;
  }
  .software-research-text-two ul li:before, .software-research-text-three ul li:before {
    bottom: 70%;

  }
  .software-research-text-one p {
    padding: 0;
  }
  .software-research-text-three h5 {
    padding-top: 30px;
  }
  .body-container--software-research img {
    width: 100%;
  }
  .radiant-counter-style-two .radiant-counter-style-one .radiant-counter_number.radiant-counter-style-one_number.radiant-h2 {
    font-size: 25px;
    line-height: 35px;
    vertical-align: middle;
  }
  .contact-box-content h6 {
    font-weight: 700;
    font-size: 14px;
  }
  /*  INNER PAGE */
  .body-container--landing .banner-inner h2 {
    font-size: 44px;
  }
  .landing-text-one:after {
    right: 2px;
  }
  /* FOOTER START*/
  .custom-footer.footer .dnd-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer__copyright.text-right {
    text-align: center !important;
  }
  .social-links {
    margin-bottom: 22px !important;
  }
  .body-wrapper .custom-footer h6 {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .footer-menu ul{
    margin-bottom: 21px;
  }
  .social-icon-wrapper .social-links a.social-links__icon {
    margin-right: 6px;
  }
  /* FOOTER END*/
  .softek-pricing-table .holder h2.plan-heading {font-size: 30px;line-height: 35px;margin: 15px 0 0 0;}
  .softek-pricing-table .holder .pricing p.price{font-size:19px;}
}

/* TABLET PROTRAIT PART */
@media screen and (min-width:480px) and (max-width:767px){
  /* HOME PAGE START*/
  .banner-inner h3 {
    line-height: 56px;
    font-size: 45px;
  }
  .banner-inner h2 {
    line-height: 34px;
    font-size: 24px;
  }
  .banner-inner p {
    line-height: 28px;
    font-size: 18px;
  }
  .banner-main {
    padding: 80px 0 80px 0;
  }
  .home-text-one p {
    padding: 0;
  }
  .icon-box-style-eight .radiant-icon-box-wrapper.icon-box-parent-style-eight {
    text-align: center;
    padding: 0;
  }
  .icon-box-parent-style-nine .radiant-icon-box-wrapper.icon-box-style-nine .radiant-icon-box-content {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 7px 0 0 0;
  }
  .text-center h2 {
    font-size: 33px;
    line-height: 45px;
  }
  .home-text-seven p {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  .testimonial.rt-testimonial.style-three .swiper-pagination.swiper-pagination-bullets {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: right;
  }
  /* HOME PAGE START*/
  /*HEADER START*/
  .top-header {
    text-align: center;
  }
  .header-data-contact.hidden-xs {
    text-align: left;
  }
  .header-data-contact p:after{
    display:none;
  }
  .header-data-social {
    padding-left: 8px;
    margin-top: 12px;
    padding-right: 12px;
  }
  .rt-search-box2 {
    left: 0px;
    top: 14px;
    position: absolute;
  }
  .navbar-toggler {
    margin-top: 19px;
    margin-bottom: 8px;
  }
  .bsnav-mobile, .bsnav-mobile .bsnav-mobile-overlay, .bsnav-sticky.navbar-fade, .bsnav-sticky.navbar-slide {
    top: 166px !important;
  }
  .active-branch {
    margin-bottom: 0px;
  }
  div .submenu.level-2 .menu-item{
    background:none;
    border:0px none;
  }
  .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;
  }
  /*HEADER END*/
  /*  INNER BANNER */
  .radiant-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  .icon-box-parent-style-one .radiant-icon-box-content .radiant-icon-box-description {
    padding-right: 44px;
    padding-bottom: 20px;
  }
  .icon-box-parent-style-one .radiant-icon-box-wrapper.icon-box-style-one:after{
    display:none;
  }
  .body-container--software-research .row-fluid-wrapper.row-depth-1.row-number-2.dnd-section {
    padding: 70px 15px;
  }

  /*  INNER BANNER */

  /*  INNER PAGE */
  .software-research-text-one {
    padding-bottom: 40px;
    padding-top: 30px;
  }
  .software-research-text-two ul li:before, .software-research-text-three ul li:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #9caec3;
    border-radius: 50%;
    left: 0;
    bottom: 73%;
    vertical-align: top;
  }
  .software-research-text-one p {
    padding: 0;
  }
  .software-research-text-three h5 {
    padding-top: 30px;
  }
  .body-container--company-overview .row-fluid-wrapper.row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section {
    padding: 70px 15px !important;
  }
  .icon-box-parent-style-three {
    margin-bottom: 15px;
  }
  .span3.widget-span.widget-type-cell.dnd-column:first-child .icon-box-parent-style-four {
    text-align: center;
  }
  .span3.widget-span.widget-type-cell.dnd-column:first-child .icon-box-parent-style-four .radiant-icon-box-content h4 {
    text-align: center;
  }
  .icon-box-parent-style-four {
    text-align: center;
  }
  .radiant-icon-box-content h4 {
    text-align: center;
  }
  .comp-overview-img-two {
    padding-bottom: 50px;
  }
  .comp-overview-btn-one {
    position: absolute;
    right: 0;
    top: -57px;
    left: 0;
  }
  .testimonial.rt-testimonial.style-one .testimonial-item>.holder>.data {
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 27px 15px 35px 15px;

  }
  .testimonial.rt-testimonial.style-one .testimonial-item>.holder {
    position: relative;
    padding-left: 0;
    margin-top:30px;
  }
  .testimonial.rt-testimonial.style-one .testimonial-item>.holder>.pic {
    position: relative;
    top: 24px;
  }
  .clients.style-two .owl-stage>.owl-item .clients-item, .clients.style-two:not(.owl-carousel) .clients-item {

    width: 100% !important;
  }
  .body-container--faq .row-fluid-wrapper.row-depth-1.row-number-2.dnd-section {
    padding: 70px 15px;
  }
  .icon-box-parent-style-five .radiant-icon-box-wrapper.icon-box-style-five .radiant-icon-box-icon {
    padding: 0 0 20px 0;
  }
  .icon-box-parent-style-five .radiant-icon-box-wrapper.icon-box-style-five .radiant-icon-box-content {
    padding-left: 0;
  }
  .faq-style-one .softek-faq {
    padding-left: 0;
  }
  .faq-style-one .softek-faq .softek-accordion-item .softek-faq-description {
    padding: 20px 0px 0 0;
  }
  .faq-style-one .softek-faq .softek-accordion-item>.softek-faq-title>.softek-faq-icon {
    right: -27px;
  }
  .body-container--business-sevices .row-fluid-wrapper.row-depth-1.row-number-2.dnd-section {
    padding: 70px 15px;
  }
  .business-services-text-one {
    padding: 30px 0 0 0;
  }
  .icon-box-parent-style-six .icon-box-style-six {
    margin: 0 0 15px 0;
  }
  .business-service-text-one {
    padding-top: 20px;
  }
  .business-service-text-one h5 {
    padding-bottom: 20px;
  }
  .business-service-img-one img {
    width: 100%;
    padding: 0 0 20px 0;
  }
  .business-service-img-two img {
    width: 100%;
    padding: 0 0 20px 0;
  }
  .business-service-img-three img {
    width: 100%;
    padding: 0 0 20px 0;
  }
  .body-container--contact .row-fluid-wrapper.row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section {
    padding: 70px 15px;
  }
  .contact-box-wrapper {
    border: 1px solid #dcdcdc;
    margin: 0 0 15px 0;
  }
  .body-container--contact .row-fluid-wrapper.row-depth-1.row-number-3.dnd-section {
    padding: 55px 15px;
  }
  .body-container--contact .span6.widget-span.widget-type-cell.dnd_area-column-5-padding.dnd_area-column-5-background-color.dnd-column {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 0 30px 0;
  }
  .contact-text-five p {
    margin: 0;
  }
  .contact-box-img img {
    width: 100%;
  }
  .body-container--about .row-fluid-wrapper.row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section {
    padding: 0px 15px 0 15px !important;
  }
  .body-container--about  .row-fluid-wrapper.row-depth-1.row-number-6.dnd_area-row-2-padding.dnd-section{
    padding-top: 40px !important;
    padding-bottom: 70px !important;
  }
  .body-container--about .span6.widget-span.widget-type-cell.dnd_area-column-14-background-color.dnd_area-column-14-padding.dnd-column {
    padding: 0 !important;
  }
  .body-container--about .radiant-icon-box-content h4 {
    text-align: left;
  }
  .icon-box-parent-style-two .radiant-icon-box-icon {
    width: auto;
    margin-bottom: 20px;
  }
  .icon-box-parent-style-two .radiant-icon-box-content {
    width: 100%;
    padding-left: 0;
    padding-bottom: 40px;
  }
  .radiant-heading.style-one h1 {
    margin-top: 30px;
  }
  .about-text-three p {
    width: 100%;
  }
  .radiant-counter-style-one {
    margin: 0 0 20px 0;
  }
  .body-container--about  .row-fluid-wrapper.row-depth-1.row-number-24.dnd_area-row-6-padding.dnd-section {
    padding: 30px 15px 70px 15px !important;
  }
  .about-button-three a.button {
    margin-bottom: 50px;
  }
  /*  INNER PAGE */
  /*  Landing PAGE */
  .body-container--landing .banner-main {
    padding: 80px 0 80px 0;
  }
  .body-container--landing .banner-inner h2 {
    line-height: 35px;
    font-size: 24px;
  }
  .body-container--landing .banner-inner p {
    font-size: 18px;
  }
  .body-container--landing .row-fluid-wrapper.row-depth-1.row-number-3.dnd_area-row-2-padding.dnd-section.dnd_area-row-2-background-image {
    padding-bottom: 0px !important;
  }
  .body-container--landing .row-fluid-wrapper.row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section.dnd_area-row-1-background-image {
    padding: 70px 15px;
  }
  .radiant-fancy-text-box.style-one .holder {
    margin-bottom: 20px;
  }
  .body-container--landing  .row-fluid-wrapper.row-depth-1.row-number-6.dnd-section.dnd_area-row-3-padding {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .body-container--landing .span6.widget-span.widget-type-cell.dnd_area-column-11-padding.dnd-column {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .landing-text-six {
    padding: 30px 0 0 0;
  }
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder>.pic {
    position: static;
  }
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder {
    padding: 26px 15px 26px 15px;
  }
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder>.data {
    position: relative;
    padding-left: 0;
  }
  /*  Landing PAGE */
  /* FOOTER START*/
  .custom-footer.footer .dnd-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer__copyright.text-right {
    text-align: center !important;
  }
  .social-links {
    margin-bottom: 22px !important;
  }
  .body-wrapper .custom-footer h6 {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .footer-menu ul{
    margin-bottom: 21px;
  }

  .wraper_inner_banner.banner-one{padding:60px 0;}
  
  /* FOOTER END*/
  .softek-pricing-table .holder{margin:0 0 30px 0;}
  .softek-pricing-table .holder h2.plan-heading{margin-top:15px;}

}



/* SMART PHONE LANDSCAPE PART */
@media screen and (min-width:321px) and (max-width:479px){
  /* HOME PAGE START*/
  .banner-inner h2 {
    line-height: 34px;
    font-size: 24px;
    white-space: break-spaces;
  }
  .banner-inner p {
    line-height: 28px;
    font-size: 18px;
  }
  .banner-main {
    padding: 80px 0 80px 0;
  }
  .home-text-one p {
    padding: 0;
  }
  .icon-box-style-eight .radiant-icon-box-wrapper.icon-box-parent-style-eight {
    text-align: center;
    padding: 0;
  }
  .icon-box-parent-style-nine .radiant-icon-box-wrapper.icon-box-style-nine .radiant-icon-box-content {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 7px 0 0 0;
  }
  .text-center h2 {
    font-size: 33px;
    line-height: 45px;
  }
  .home-text-seven p {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  .testimonial.rt-testimonial.style-three .swiper-pagination.swiper-pagination-bullets {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: right;
  }
  /* HOME PAGE START*/
  /*HEADER START*/
  .top-header {
    text-align: center;
  }
  .top-header .text-right {
    text-align: center !important;
  }
  .header-data-contact p {
    padding-right: 0;
  }
  .header-data-contact p:after{
    display:none;
  }
  .header-data-social {
    padding-left: 0;
  }
  .rt-search-box2 {
    left: 0px;
    top: 14px;
    position: absolute;
  }
  .navbar-toggler {
    margin-top: 19px;
    margin-bottom: 8px;
  }
  .bsnav-mobile, .bsnav-mobile .bsnav-mobile-overlay, .bsnav-sticky.navbar-fade, .bsnav-sticky.navbar-slide {
    top: 166px !important;
  }
  .active-branch {
    margin-bottom: 0px;
  }
  div .submenu.level-2 .menu-item{
    background:none;
    border:0px none;
  }
  .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;
  }
  /*HEADER END*/
  /*  INNER BANNER */
  .radiant-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  .icon-box-parent-style-one .radiant-icon-box-content .radiant-icon-box-description {
    padding-right: 44px;
    padding-bottom: 20px;
  }
  .icon-box-parent-style-one .radiant-icon-box-wrapper.icon-box-style-one:after{
    display:none;
  }
  .body-container--software-research .row-fluid-wrapper.row-depth-1.row-number-2.dnd-section {
    padding: 70px 15px;
  }

  /*  INNER BANNER */

  /*  INNER PAGE */
  .software-research-text-one {
    padding-bottom: 40px;
    padding-top: 30px;
  }
  .software-research-text-two ul li:before, .software-research-text-three ul li:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #9caec3;
    border-radius: 50%;
    left: 0;
    bottom: 73%;
    vertical-align: top;
  }
  .software-research-text-one p {
    padding: 0;
  }
  .software-research-text-three h5 {
    padding-top: 30px;
  }
  .body-container--company-overview .row-fluid-wrapper.row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section {
    padding: 70px 15px !important;
  }
  .icon-box-parent-style-three {
    margin-bottom: 15px;
  }
  .span3.widget-span.widget-type-cell.dnd-column:first-child .icon-box-parent-style-four {
    text-align: center;
  }
  .span3.widget-span.widget-type-cell.dnd-column:first-child .icon-box-parent-style-four .radiant-icon-box-content h4 {
    text-align: center;
  }
  .icon-box-parent-style-four {
    text-align: center;
  }
  .radiant-icon-box-content h4 {
    text-align: center;
  }
  .comp-overview-img-two {
    padding-bottom: 50px;
  }
  .comp-overview-btn-one {
    position: absolute;
    right: 0;
    top: -57px;
    left: 0;
  }
  .testimonial.rt-testimonial.style-one .testimonial-item>.holder>.data {
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 27px 15px 35px 15px;

  }
  .testimonial.rt-testimonial.style-one .testimonial-item>.holder {
    position: relative;
    padding-left: 0;
    margin-top:30px;
  }
  .testimonial.rt-testimonial.style-one .testimonial-item>.holder>.pic {
    position: relative;
    top: 24px;
  }
  .clients.style-two .owl-stage>.owl-item .clients-item, .clients.style-two:not(.owl-carousel) .clients-item {

    width: 100% !important;
  }
  .body-container--faq .row-fluid-wrapper.row-depth-1.row-number-2.dnd-section {
    padding: 70px 15px;
  }
  .icon-box-parent-style-five .radiant-icon-box-wrapper.icon-box-style-five .radiant-icon-box-icon {
    padding: 0 0 20px 0;
  }
  .icon-box-parent-style-five .radiant-icon-box-wrapper.icon-box-style-five .radiant-icon-box-content {
    padding-left: 0;
  }
  .faq-style-one .softek-faq {
    padding-left: 0;
  }
  .faq-style-one .softek-faq .softek-accordion-item .softek-faq-description {
    padding: 20px 0px 0 0;
  }
  .faq-style-one .softek-faq .softek-accordion-item>.softek-faq-title>.softek-faq-icon {
    right: -27px;
  }
  .body-container--business-sevices .row-fluid-wrapper.row-depth-1.row-number-2.dnd-section {
    padding: 70px 15px;
  }
  .business-services-text-one {
    padding: 30px 0 0 0;
  }
  .icon-box-parent-style-six .icon-box-style-six {
    margin: 0 0 15px 0;
  }
  .business-service-text-one {
    padding-top: 20px;
  }
  .business-service-text-one h5 {
    padding-bottom: 20px;
  }
  .business-service-img-one img {
    width: 100%;
    padding: 0 0 20px 0;
  }
  .business-service-img-two img {
    width: 100%;
    padding: 0 0 20px 0;
  }
  .business-service-img-three img {
    width: 100%;
    padding: 0 0 20px 0;
  }
  .body-container--contact .row-fluid-wrapper.row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section {
    padding: 70px 15px;
  }
  .contact-box-wrapper {
    border: 1px solid #dcdcdc;
    margin: 0 0 15px 0;
  }
  .body-container--contact .row-fluid-wrapper.row-depth-1.row-number-3.dnd-section {
    padding: 55px 15px;
  }
  .body-container--contact .span6.widget-span.widget-type-cell.dnd_area-column-5-padding.dnd_area-column-5-background-color.dnd-column {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 0 30px 0;
  }
  .contact-text-five p {
    margin: 0;
  }
  .body-container--about .row-fluid-wrapper.row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section {
    padding: 0px 15px 0 15px !important;
  }
  .body-container--about  .row-fluid-wrapper.row-depth-1.row-number-6.dnd_area-row-2-padding.dnd-section{
    padding-top: 40px !important;
    padding-bottom: 70px !important;
  }
  .body-container--about .span6.widget-span.widget-type-cell.dnd_area-column-14-background-color.dnd_area-column-14-padding.dnd-column {
    padding: 0 !important;
  }
  .body-container--about .radiant-icon-box-content h4 {
    text-align: left;
  }
  .icon-box-parent-style-two .radiant-icon-box-icon {
    width: auto;
    margin-bottom: 20px;
  }
  .icon-box-parent-style-two .radiant-icon-box-content {
    width: 100%;
    padding-left: 0;
    padding-bottom: 40px;
  }
  .radiant-heading.style-one h1 {
    margin-top: 30px;
  }
  .about-text-three p {
    width: 100%;
  }
  .radiant-counter-style-one {
    margin: 0 0 20px 0;
  }
  .body-container--about  .row-fluid-wrapper.row-depth-1.row-number-24.dnd_area-row-6-padding.dnd-section {
    padding: 30px 15px 70px 15px !important;
  }
  .about-button-three a.button {
    margin-bottom: 50px;
  }
  /*  INNER PAGE */
  /*  Landing PAGE */
  .body-container--landing .banner-main {
    padding: 80px 0 80px 0;
  }
  .body-container--landing .banner-inner h2 {
    line-height: 35px;
    font-size: 24px;
  }
  .body-container--landing .banner-inner p {
    font-size: 18px;
  }
  .body-container--landing .row-fluid-wrapper.row-depth-1.row-number-3.dnd_area-row-2-padding.dnd-section.dnd_area-row-2-background-image {
    padding-bottom: 0px !important;
  }
  .body-container--landing .row-fluid-wrapper.row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section.dnd_area-row-1-background-image {
    padding: 70px 15px;
  }
  .radiant-fancy-text-box.style-one .holder {
    margin-bottom: 20px;
  }
  .body-container--landing  .row-fluid-wrapper.row-depth-1.row-number-6.dnd-section.dnd_area-row-3-padding {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .body-container--landing .span6.widget-span.widget-type-cell.dnd_area-column-11-padding.dnd-column {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .landing-text-six {
    padding: 30px 0 0 0;
  }
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder>.pic {
    position: static;
  }
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder {
    padding: 26px 15px 26px 15px;
  }
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder>.data {
    position: relative;
    padding-left: 0;
  }
  /*  Landing PAGE */
  /* FOOTER START*/
  .custom-footer.footer .dnd-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer__copyright.text-right {
    text-align: center !important;
  }
  .social-links {
    margin-bottom: 22px !important;
  }
  .body-wrapper .custom-footer h6 {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .footer-menu ul{
    margin-bottom: 21px;
  }

  .wraper_inner_banner.banner-one{padding:60px 0;}
  /* FOOTER END*/
  .softek-pricing-table .holder{margin:0 0 30px 0;} 
}
/* SMART PHONE PROTRAIT PART */
@media screen and (max-width:320px){
  /* HOME PAGE START*/
  .contact-form-two form input[type=submit]{
    padding-right:40px;
    padding-left:40px;
  }
  .banner-inner h2 {
    line-height: 34px;
    font-size: 24px;
  }
  .banner-inner p {
    line-height: 28px;
    font-size: 18px;
  }
  .banner-main {
    padding: 80px 0 80px 0;
  }
  .home-text-one p {
    padding: 0;
  }
  .icon-box-style-eight .radiant-icon-box-wrapper.icon-box-parent-style-eight {
    text-align: center;
    padding: 0;
  }
  .icon-box-parent-style-nine .radiant-icon-box-wrapper.icon-box-style-nine .radiant-icon-box-content {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 7px 0 0 0;
  }
  .text-center h2 {
    font-size: 33px;
    line-height: 45px;
  }
  .home-text-seven p {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  .testimonial.rt-testimonial.style-three .swiper-pagination.swiper-pagination-bullets {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: right;
  }
  /* HOME PAGE START*/

  /*HEADER START*/
  .top-header {
    text-align: center;
  }
  .top-header .text-right {
    text-align: center !important;
  }
  .header-data-contact p {
    padding-right: 0;
  }
  .header-data-contact p:after{
    display:none;
  }
  .header-data-social {
    padding-left: 0;
  }
  .rt-search-box2 {
    left: 0px;
    top: 14px;
    position: absolute;
  }
  .navbar-toggler {
    margin-top: 19px;
    margin-bottom: 8px;
  }
  .bsnav-mobile, .bsnav-mobile .bsnav-mobile-overlay, .bsnav-sticky.navbar-fade, .bsnav-sticky.navbar-slide {
    top: 166px !important;
  }
  .active-branch {
    margin-bottom: 0px;
  }
  div .submenu.level-2 .menu-item{
    background:none;
    border:0px none;
  }
  .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;
  }
  /*HEADER END*/

  /*  INNER BANNER */
  .radiant-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  .icon-box-parent-style-one .radiant-icon-box-content .radiant-icon-box-description {
    padding-right: 44px;
    padding-bottom: 20px;
  }
  .icon-box-parent-style-one .radiant-icon-box-wrapper.icon-box-style-one:after{
    display:none;
  }
  .body-container--software-research .row-fluid-wrapper.row-depth-1.row-number-2.dnd-section {
    padding: 70px 15px;
  }

  /*  INNER BANNER */

  /*  INNER PAGE */
  .software-research-text-one {
    padding-bottom: 40px;
    padding-top: 30px;
  }
  .software-research-text-two ul li:before, .software-research-text-three ul li:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #9caec3;
    border-radius: 50%;
    left: 0;
    bottom: 73%;
    vertical-align: top;
  }
  .software-research-text-one p {
    padding: 0;
  }
  .software-research-text-three h5 {
    padding-top: 30px;
  }
  .body-container--company-overview .row-fluid-wrapper.row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section {
    padding: 70px 15px !important;
  }
  .icon-box-parent-style-three {
    margin-bottom: 15px;
  }
  .span3.widget-span.widget-type-cell.dnd-column:first-child .icon-box-parent-style-four {
    text-align: center;
  }
  .span3.widget-span.widget-type-cell.dnd-column:first-child .icon-box-parent-style-four .radiant-icon-box-content h4 {
    text-align: center;
  }
  .icon-box-parent-style-four {
    text-align: center;
  }
  .radiant-icon-box-content h4 {
    text-align: center;
  }
  .comp-overview-img-two {
    padding-bottom: 50px;
  }
  .comp-overview-btn-one {
    position: absolute;
    right: 0;
    top: -57px;
    left: 0;
  }
  .testimonial.rt-testimonial.style-one .testimonial-item>.holder>.data {
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 27px 15px 35px 15px;

  }
  .testimonial.rt-testimonial.style-one .testimonial-item>.holder {
    position: relative;
    padding-left: 0;
    margin-top:30px;
  }
  .testimonial.rt-testimonial.style-one .testimonial-item>.holder>.pic {
    position: relative;
    top: 24px;
  }
  .clients.style-two .owl-stage>.owl-item .clients-item, .clients.style-two:not(.owl-carousel) .clients-item {

    width: 100% !important;
  }
  .body-container--faq .row-fluid-wrapper.row-depth-1.row-number-2.dnd-section {
    padding: 70px 15px;
  }
  .icon-box-parent-style-five .radiant-icon-box-wrapper.icon-box-style-five .radiant-icon-box-icon {
    padding: 0 0 20px 0;
  }
  .icon-box-parent-style-five .radiant-icon-box-wrapper.icon-box-style-five .radiant-icon-box-content {
    padding-left: 0;
  }
  .faq-style-one .softek-faq {
    padding-left: 0;
  }
  .faq-style-one .softek-faq .softek-accordion-item .softek-faq-description {
    padding: 20px 0px 0 0;
  }
  .faq-style-one .softek-faq .softek-accordion-item>.softek-faq-title>.softek-faq-icon {
    right: -27px;
  }

  .body-container--business-sevices .row-fluid-wrapper.row-depth-1.row-number-2.dnd-section {
    padding: 70px 15px;
  }
  .business-services-text-one {
    padding: 30px 0 0 0;
  }
  .icon-box-parent-style-six .icon-box-style-six {
    margin: 0 0 15px 0;
  }
  .business-service-text-one {
    padding-top: 20px;
  }
  .business-service-text-one h5 {
    padding-bottom: 20px;
  }
  .business-service-img-one img {
    width: 100%;
    padding: 0 0 20px 0;
  }
  .business-service-img-two img {
    width: 100%;
    padding: 0 0 20px 0;
  }
  .business-service-img-three img {
    width: 100%;
    padding: 0 0 20px 0;
  }

  .body-container--contact .row-fluid-wrapper.row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section {
    padding: 70px 15px;
  }
  .contact-box-wrapper {
    border: 1px solid #dcdcdc;
    margin: 0 0 15px 0;
  }
  .body-container--contact .row-fluid-wrapper.row-depth-1.row-number-3.dnd-section {
    padding: 55px 15px;
  }
  .body-container--contact .span6.widget-span.widget-type-cell.dnd_area-column-5-padding.dnd_area-column-5-background-color.dnd-column {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 0 30px 0;
  }
  .contact-text-five p {
    margin: 0;
  }
  .body-container--about .row-fluid-wrapper.row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section {
    padding: 0px 15px 0 15px !important;
  }
  .body-container--about  .row-fluid-wrapper.row-depth-1.row-number-6.dnd_area-row-2-padding.dnd-section{
    padding-top: 40px !important;
    padding-bottom: 70px !important;
  }
  .body-container--about .span6.widget-span.widget-type-cell.dnd_area-column-14-background-color.dnd_area-column-14-padding.dnd-column {
    padding: 0 !important;
  }
  .body-container--about .radiant-icon-box-content h4 {
    text-align: left;
  }
  .icon-box-parent-style-two .radiant-icon-box-icon {
    width: auto;
    margin-bottom: 20px;
  }
  .icon-box-parent-style-two .radiant-icon-box-content {
    width: 100%;
    padding-left: 0;
    padding-bottom: 40px;
  }
  .radiant-heading.style-one h1 {
    margin-top: 30px;
  }
  .about-text-three p {
    width: 100%;
  }
  .radiant-counter-style-one {
    margin: 0 0 20px 0;
  }
  .body-container--about  .row-fluid-wrapper.row-depth-1.row-number-24.dnd_area-row-6-padding.dnd-section {
    padding: 30px 15px 70px 15px !important;
  }
  .about-button-three a.button {
    margin-bottom: 50px;
  }
  /*  INNER PAGE */

  /*  Landing PAGE */
  .body-container--landing .banner-main {
    padding: 80px 0 80px 0;
  }
  .body-container--landing .banner-inner h2 {
    line-height: 35px;
    font-size: 24px;
  }
  .body-container--landing .banner-inner p {
    font-size: 18px;
  }
  .body-container--landing .row-fluid-wrapper.row-depth-1.row-number-3.dnd_area-row-2-padding.dnd-section.dnd_area-row-2-background-image {
    padding-bottom: 0px !important;
  }
  .body-container--landing .row-fluid-wrapper.row-depth-1.row-number-2.dnd_area-row-1-padding.dnd-section.dnd_area-row-1-background-image {
    padding: 70px 15px;
  }
  .radiant-fancy-text-box.style-one .holder {
    margin-bottom: 20px;
  }
  .body-container--landing  .row-fluid-wrapper.row-depth-1.row-number-6.dnd-section.dnd_area-row-3-padding {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .body-container--landing .span6.widget-span.widget-type-cell.dnd_area-column-11-padding.dnd-column {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .landing-text-six {
    padding: 30px 0 0 0;
  }
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder>.pic {
    position: static;
  }
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder {
    padding: 26px 15px 26px 15px;
  }
  .testimonial.rt-testimonial.style-two .testimonial-item>.holder>.data {
    position: relative;
    padding-left: 0;
  }
  /*  Landing PAGE */
  .home-text-nine {
    width: 70%;
    margin: 0 auto;
  }
  /* FOOTER START*/
  .custom-footer.footer .dnd-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer__copyright.text-right {
    text-align: center !important;
  }
  .social-links {
    margin-bottom: 22px !important;
  }
  .body-wrapper .custom-footer h6 {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .footer-menu ul{
    margin-bottom: 21px;
  }
  /* FOOTER END*/
}


/* RESPONSIVE SECTION END*/


.body-container--home .span5.widget-span.widget-type-cell.dnd-column img.hs-image-widget {width: 100%;height: 450px !important;object-fit: cover;object-position: center;}
.flexible-btn { width: 100%; display: inline-block; text-align: center; }
.flexible-btn a { padding-top: 16px; padding-right: 30px; border: 0px none; padding-bottom: 16px; padding-left: 42px; background-color: #273272; border-radius: 35px; color: #ffffff; line-height: 20px; font-size: 12px; position: relative; display: inline-block; vertical-align: top; overflow: hidden; text-align: center; -webkit-transition: all .5s; -moz-transition: all .5s; -o-transition: all .5s; transition: all .5s; text-transform: uppercase; font-weight: 600; text-decoration: none; line-height: 19px; letter-spacing: 0.5px; z-index: 1; }
.flexible-btn a:before { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; z-index: -1; opacity: 0; background-color: #001a57; -webkit-transition: all 0.6s; -moz-transition: all 0.6s; -o-transition: all 0.6s; transition: all 0.6s; }
.flexible-btn a:hover:before { color: #fff !important; opacity: 1; width: 100%; }
.flexible-btn a:hover{color: #fff;}
.icon-box-style-eight .radiant-icon-box-wrapper.icon-box-parent-style-eight .radiant-icon-box-icon img {width:75px;height:75px !important;object-fit: contain;object-position: center;}
.header-data-social{display:flex;justify-content: flex-end;align-items: center;}
.header-data-social p {margin-bottom: 0;}
.custom-footer .logo{max-width:250px;}
@media(max-width:767px){
  .icon-box-style-eight .radiant-icon-box-wrapper.icon-box-parent-style-eight .radiant-icon-box-icon img {
    width: 60px;
    height: 60px !important;
  }
  .icon-box-parent-style-five .radiant-icon-box-wrapper.icon-box-style-five .radiant-icon-box-icon img{
    max-width: 60px !important;
    height: 40px !important;
  }
  .custom-footer .logo{max-width:200px;}
}

@media(max-width:480px){
  .banner-inner h3 {
    line-height: 40px;
    font-size: 36px;
  }
}