.mi-slider-content {
  width: 100%;
}

.mi-slider-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.mi-slider-content h2 {
  font-size: 32px;
  line-height: 48px;
}

/* Header Style */
.codrops-top {
  line-height: 24px;
  font-size: 11px;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  z-index: 9999;
  position: relative;
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2);
}

.codrops-top a {
  padding: 0 10px;
  letter-spacing: 1px;
  color: #333;
  display: inline-block;
}

.codrops-top a:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
}

.codrops-top span.right {
  float: right;
}

.codrops-top span.right a {
  float: left;
  display: block;
}

/* Demo Buttons Style */
.codrops-demos {
  float: right;
  padding-top: 10px;
}

.codrops-demos a {
  display: inline-block;
  margin: 10px;
  color: #666;
  font-weight: 700;
  line-height: 30px;
  border-bottom: 4px solid transparent;
}

.codrops-demos a:hover {
  color: #000;
  border-color: #000;
}

.codrops-demos a.current-demo,
.codrops-demos a.current-demo:hover {
  color: #aaa;
  border-color: #aaa;
}

.mi-slider {
  position: relative;
  /*margin-top: 30px;*/
  margin-top: 0;
  height: 550px;
}

.mi-slidern .icon-employee-benefits {
  position: absolute;
  width: 62px;
  height: 62px;
  background: red;
  bottom: 0;
  left: 0;
}

.mi-slider .icon-salary-data {
  position: absolute;
  width: 62px;
  height: 62px;
  background: blue;
  bottom: 0;
  right: 0;
}

.mi-slider .icon-hr-policy {
  position: absolute;
  width: 62px;
  height: 62px;
  background: green;
  bottom: 5px;
  left: 50%;
}

.mi-slider ul {
  list-style-type: none;
  position: absolute;
  width: 100%;
  left: 0;
  /*bottom: 140px;*/
  top: 0;
  overflow: hidden;
  text-align: center;
  pointer-events: none;
}

.no-js .mi-slider ul {
  position: relative;
  left: auto;
  bottom: auto;
  margin: 0;
  overflow: visible;
}

.mi-slider ul.mi-current {
  pointer-events: auto;
}

.mi-slider ul li {
  display: inline-block;
  padding: 20px;
  width: 100%;
  max-width: 1020px;
  -webkit-transform: translateX(600%);
  transform: translateX(600%);
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
}

.no-js .mi-slider ul li {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.mi-slider ul li a,
.mi-slider ul li img {
  display: block;
  /*margin: 25px auto;*/

  /* margin: 80px auto; */
  margin: 15px auto;
  /*margin: 0 auto;*/
}

.mi-slider ul li a {
  outline: none;
  cursor: pointer;
  color: #2a3744;
}

.mi-slider ul li img {
  max-width: 100%;
  border: none;
}

.mi-slider nav {
  position: relative;
  top: 500px;
  text-align: center;
  width: 85%;
  margin: 0 auto;
  border-top: 2px solid #333;
}

.no-js nav {
  display: none;
}

.mi-slider nav a {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 5px;
  padding: 40px 30px 30px 34px;
  position: relative;
  color: rgb(131, 131, 131);
  outline: none;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
  font-size: 12px;
}

.mi-slider nav a.mi-selected,
.mi-slider nav a:hover {

  /*color: rgb(177, 177, 177);*/
  color: rgb(68, 68, 68);
}

.mi-slider nav a.mi-selected:after,
.mi-slider nav a.mi-selected:before {
  content: '';
  position: absolute;
  top: -2px;
  border: 2px solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.mi-slider nav a.mi-selected:after {
  border-color: transparent;
  border-top-color: white;
  border-width: 24px;
  left: 50%;
  margin-left: -24px;
}

.mi-slider nav a.mi-selected:before {
  border-color: transparent;
  border-top-color: #333;
  border-width: 27px;
  left: 50%;
  margin-left: -27px;
}

/* Move classes and animations */
.mi-slider ul:first-child li,
.no-js .mi-slider ul li {
  -webkit-animation: scaleUp 350ms ease-in-out both;
  animation: scaleUp 350ms ease-in-out both;
}
@-webkit-keyframes scaleUp {
  0% {
    -webkit-transform: translateX(0) scale(0);
  }

  100% {
    -webkit-transform: translateX(0) scale(1);
  }

}
@keyframes scaleUp {
  0% {
    -webkit-transform: translateX(0) scale(0);
    transform: translateX(0) scale(0);
  }

  100% {
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
  }

}

.mi-slider ul:first-child li:first-child {
  -webkit-animation-delay: 90ms;
  animation-delay: 90ms;
}

.mi-slider ul:first-child li:nth-child(2) {
  -webkit-animation-delay: 180ms;
  animation-delay: 180ms;
}

.mi-slider ul:first-child li:nth-child(3) {
  -webkit-animation-delay: 270ms;
  animation-delay: 270ms;
}

.mi-slider ul:first-child li:nth-child(4) {
  -webkit-animation-delay: 360ms;
  animation-delay: 360ms;
}

/* moveFromRight */
.mi-slider ul.mi-moveFromRight li {
  -webkit-animation: moveFromRight 350ms ease-in-out both;
  animation: moveFromRight 350ms ease-in-out both;
}

/* moveFromLeft */
.mi-slider ul.mi-moveFromLeft li {
  -webkit-animation: moveFromLeft 350ms ease-in-out both;
  animation: moveFromLeft 350ms ease-in-out both;
}

/* moveToRight */
.mi-slider ul.mi-moveToRight li {
  -webkit-animation: moveToRight 350ms ease-in-out both;
  animation: moveToRight 350ms ease-in-out both;
}

/* moveToLeft */
.mi-slider ul.mi-moveToLeft li {
  -webkit-animation: moveToLeft 350ms ease-in-out both;
  animation: moveToLeft 350ms ease-in-out both;
}

/* Animation Delays */
.mi-slider ul.mi-moveFromLeft li:nth-child(4),
.mi-slider ul.mi-moveFromRight li:first-child,
.mi-slider ul.mi-moveToLeft li:first-child,
.mi-slider ul.mi-moveToRight li:nth-child(4) {
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

.mi-slider ul.mi-moveFromLeft li:nth-child(3),
.mi-slider ul.mi-moveFromRight li:nth-child(2),
.mi-slider ul.mi-moveToLeft li:nth-child(2),
.mi-slider ul.mi-moveToRight li:nth-child(3) {
  -webkit-animation-delay: 90ms;
  animation-delay: 90ms;
}

.mi-slider ul.mi-moveFromLeft li:nth-child(2),
.mi-slider ul.mi-moveFromRight li:nth-child(3),
.mi-slider ul.mi-moveToLeft li:nth-child(3),
.mi-slider ul.mi-moveToRight li:nth-child(2) {
  -webkit-animation-delay: 180ms;
  animation-delay: 180ms;
}

.mi-slider ul.mi-moveFromLeft li:first-child,
.mi-slider ul.mi-moveFromRight li:nth-child(4),
.mi-slider ul.mi-moveToLeft li:nth-child(4),
.mi-slider ul.mi-moveToRight li:first-child {
  -webkit-animation-delay: 270ms;
  animation-delay: 270ms;
}

/* Animations */
@-webkit-keyframes moveFromRight {
  0% {
    -webkit-transform: translateX(600%);
  }

  100% {
    -webkit-transform: translateX(0%);
  }

}
@-webkit-keyframes moveFromLeft {
  0% {
    -webkit-transform: translateX(-600%);
  }

  100% {
    -webkit-transform: translateX(0%);
  }

}
@-webkit-keyframes moveToRight {
  0% {
    -webkit-transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(600%);
  }

}
@-webkit-keyframes moveToLeft {
  0% {
    -webkit-transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-600%);
  }

}
@keyframes moveFromRight {
  0% {
    -webkit-transform: translateX(600%);
    transform: translateX(600%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

}
@keyframes moveFromLeft {
  0% {
    -webkit-transform: translateX(-600%);
    transform: translateX(-600%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

}
@keyframes moveToRight {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(600%);
    transform: translateX(600%);
  }

}
@keyframes moveToLeft {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-600%);
    transform: translateX(-600%);
  }

}

.mi-slider {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  position: relative;
  min-height: 100%;
}

html,
html a {
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

html {
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

button,
html,
input,
select,
textarea {
  font-family: sans-serif;
}

a:focus {
  outline: none;
}

a:active,
a:hover {
  outline: 0;
}

h1 {
  font-size: 2em;
  margin: .67em 0;
}

h2 {
  font-size: 1.5em;
  margin: .83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: .83em;
  margin: 1.67em 0;
}

h6 {
  font-size: .67em;
  margin: 2.33em 0;
}

.text-center {
  text-align: center;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

mark {
  background: yellow;
  color: black;
}

p,
pre {
  margin: 1em 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:after,
q:before {
  content: "";
  content: none;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0 0 0 40px;
}

menu,
ol,
ul {
  padding: 0 0 0 40px;
}

nav ol,
nav ul {
  list-style: none;
  list-style-image: none;
}

img.ajax-loader {
  background: url("../img/ajax-loader.gif") no-repeat center center;
  padding: 5px;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}

button[disabled],
html input[disabled] {

  /* text-shadow: none;
	      background: #F7C2C2; */

  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before {
  content: "";
  content: none;
}

q:after,
q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

button,
html,
input,
select,
textarea {
  color: #222222;
}

html {
  font-size: 16px;
  line-height: 1.4;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

audio,
canvas,
img,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.browsehappy {
  margin: .2em 0;
  background: #cccccc;
  color: black;
  padding: .2em 0;
}

h1,
h2,
h3,
h4,
h5,
html,
html a,
p {
  -webkit-font-smoothing: antialiased !important;
}

a {
  color: #27ae60;
  font-weight: normal;
  -webkit-transition: all .2s ease-in;
  -moz-transition: all .2s ease-in;
  -ms-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  transition: all .2s ease-in;

}

a:hover {
  color: #028644;
  text-decoration: none;
}

body {
  font-size: 100%;
  margin: 0;
  padding: 0;
  background: white;
  font-family: 'Noto Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

p {
  line-height: 21px;
  margin: 0 0 10px;
  font-size: .75em;
  color: #3c4d5e;
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

/* h1, h2, h3, h4, h5 {
  color: #384047;
  color: #18527c; } */
h2 {

  /*  font-size: 2em; */

  font-size: 24px;
  font-weight: bold;
}

h3 {
  color: #5e6063;
}

.fr {
  float: right;
}

.fl {
  float: left;
}

.bt-sp {
  margin: 45px 0;
  width: 100%;
  display: block;
}

.order-btn {
  background: #36b072;
  color: white;
  float: left;
  margin: 35px auto;
  outline: none;
  display: block;
  width: 425px;
  text-align: center;
  font-weight: normal;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 44.8%;
  padding: 14px 0;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.order-btn:hover {
  background: #00bc5e;
  color: white;
}

.main-logo {
  width: 270px;
  height: 70px;
  float: left;
  display: inline-block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url("../img/company-logo.png") no-repeat left center;
}

.navbar-top .main-logo {
  width: 265px;
  height: 52px;
  float: left;
  display: inline-block;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  background: url("../img/company-logo.png") no-repeat left center;
}

.navbar-top-inner {
  width: 100%;
  min-height: 52px;
  padding: 0;
  background: #2a3744;
}

.navbar-top .navbar-top-inner ul {
  margin: 0;
  height: 54px;
}

.navbar-top .navbar-top-inner ul li {
  float: left;
  display: inline-block;
  line-height: 54px;
  position: relative;
  z-index: 82;
  /*background: red;*/
}

.navbar-top .navbar-top-inner ul li a {
  text-decoration: none;
  font-family: 'Noto Sans', sans-serif;
  font-size: 11px;
  margin-left: 14px;
  color: #e0e0e0;
  text-shadow: 1px 0 0 #4e4e4e;
  text-align: left;
  font-weight: normal;
  word-spacing: 2px;
  position: relative;
}

.navbar-top .navbar-top-inner li .on {
  color: #26a65b;
}

.navbar-top .navbar-top-inner ul li a:hover {
  color: #d5d5d5;
}

.navbar-top .navbar-top-inner ul li .client-login {
  padding: 5px 30px 5px 10px;
  border-radius: 3px;
  color: white;
  background: url("../img/users.png") 82px center #27ae60 no-repeat;
}

.navbar-top .navbar-top-inner ul li .client-login:hover {
  color: #f1eded;
  background: url("../img/users.png") 82px center #14A953 no-repeat;
}

.navbar-top .navbar-top-inner ul li .call-us {
  color: white;
  background: #e74c3c url("../img/phone.png") no-repeat 197px center;
  padding: 5px 30px 5px 10px;
  border-radius: 3px;
}

/* sub menu */
.navbar-top .submenu {
  display: none;
  position: absolute;
  z-index: 80;
  background: repeat-x left top #33404c;
  /*border: 1px solid #000;*/
  left: 0;
  top: 54px;
  min-width: 100%;
  /*	-o-box-shadow: 2px 2px 3px #000;
	-icab-box-shadow: 2px 2px 3px #000;
	-khtml-box-shadow: 2px 2px 3px #000;
	-moz-box-shadow: 2px 2px 3px #000;
	-webkit-box-shadow: 2px 2px 3px #000;
	box-shadow: 2px 2px 3px #000;*/
}

.navbar-top .submenu li {
  display: block;
  width: 100%;
  line-height: 27px !important;
  padding: 10px 5px;
  font-size: 14px;

}

.navbar-top .submenu li:hover {
  background: #2a3744;
}

.navbar-top .submenu a {
  display: block;
  line-height: 27px !important;
  white-space: nowrap;
}

.top-nav > li:hover .submenu {
  display: block;
}

.top-nav > li:hover > .submenu .submenu {
  display: none;
}

.top-nav .padding {
  display: block;
  position: absolute;
  z-index: 78;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: none !important;
}

.top-nav > li > .submenu > .padding {
  width: 160%;
  left: -30%;
  height: 140%;
}

.top-nav .buffer {
  display: block;
  position: absolute;
  bottom: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background: none !important;
}

.top-nav .shadow {
  display: none !important;
}

/*	Third-level Subnavigation */

.top-nav .submenu .submenu {
  position: absolute;
  left: 100%;
  top: -1px;
}

.top-nav .submenu .submenu .padding {
  width: 150%;
  top: -35%;
  height: 170%;
}

/*	Show subnavigation */
.top-nav > li:hover .submenu li:hover > .submenu {
  display: block;
  z-index: 70 !important;
}

/* CSS3 Transition Handling */

.top-nav.use-trans li > .submenu {
  opacity: 0;
  display: block !important;
  left: -9999px !important;
  -moz-transition: .2s opacity ease-in, 0s left linear .22s;
  -webkit-transition: .2s opacity ease-in, 0s left linear .22s;
  -khtml-transition: .2s opacity ease-in, 0s left linear .22s;
  -icab-transition: .2s opacity ease-in, 0s left linear .22s;
  -ms-transition: .2s opacity ease-in, 0s left linear .22s;
  -o-transition: .2s opacity ease-in, 0s left linear .22s;
  transition: .2s opacity ease-in, 0s left linear .22s;
}

/* Hide next level of subnavigation */
.top-nav.use-trans > li:hover > .submenu .submenu {
  display: block !important;
  left: -9999px !important;
}

/* Hover */
.top-nav.use-trans > li > .submenu li:hover > .submenu,
.top-nav.use-trans > li:hover > .submenu {
  opacity: 1 !important;
  -moz-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  -khtml-transition-delay: 0s;
  -icab-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.top-nav.use-trans > li:hover > .submenu {
  left: 0 !important;
}

.top-nav.use-trans > li > .submenu li:hover > .submenu {
  left: 100% !important;
}

/*	Running Border on Subnavigation
		-	Stable implementation requires an additional span tag at the end of each anchor tag.
		*/

.top-nav ul a {
  position: relative;
}

.top-nav ul a span {
  /*background-color: #5a5a5a;*/
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}

i.fa.fa-caret-right {
  /* float: right; */
  position: absolute;
  right: 0;
  top: 10px;
}

/*	Outlining Rules for Debugging */
/*
.showbounds .padding,
.showbounds .buffer {
	outline-style: solid;
	outline-width: 1px;
}*/

/* Theming can go here */

/*.top-nav {
	outline: 1px solid #111;
	background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #404040), color-stop(100%, #282828));
	background: -webkit-linear-gradient(#404040, #282828);
	background: -moz-linear-gradient(#404040, #282828);
	background: -o-linear-gradient(#404040, #282828);
	background: linear-gradient(#404040, #282828);
}

.top-nav > li {
	border-left: 1px solid #333;
	border-right: 1px solid #222;
}*/

/*.top-nav > li:first-child {
	border-left: 0 !important;
}

.top-nav > li:hover {
	background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1a1a1a), color-stop(100%, #282828));
	background: -webkit-linear-gradient(#141414, #282828);
	background: -moz-linear-gradient(#141414, #282828);
	background: -o-linear-gradient(#141414, #282828);
	background: linear-gradient(#141414, #282828);
}

.top-nav .submenu li {
	background-image: -webkit-linear-gradient(#292929, #242424);
}
*/

.navbar-top .navbar-top-inner nav select {
  display: none;
}

.navbar-top .navbar-top-inner ul li a.client-loggedin {
  color: #60CA94;
}

.hero-unit {
  padding: 60px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
  color: inherit;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  height: 650px;
}

.relative {
  position: relative;
}

a.order-bt {
  background: url("../img/shopping-store12.png") no-repeat 14px center;
  position: absolute;
  top: 0;
  right: 10px;
  padding: 14px 21px 14px 42px;
  background-color: #3fc380;
  border-radius: 3px;
  text-align: center;
  color: white;
  outline: none;
  border: none;
  font-size: .875em;
  text-shadow: 0 -1px 0 #1b8046;
  -webkit-transition: all .25s ease-in;
  -moz-transition: all .25s ease-in;
  -ms-transition: all .25s ease-in;
  -o-transition: all .25s ease-in;
  transition: all .25s ease-in;
}

a.order-bt:hover {
  color: #ffffff;
  background: url("../img/shopping-store12.png") no-repeat 14px center #36b072;
}

.readmore {
  width: 35%;
  padding: 14px 21px;
  line-height: 35px;
  background-color: #3fc380;
  border-radius: 3px;
  text-align: center;
  color: white;
  outline: none;
  border: none;
  font-size: .875em;
  text-shadow: 0 -1px 0 #1b8046;
  -webkit-transition: all .25s ease-in;
  -moz-transition: all .25s ease-in;
  -ms-transition: all .25s ease-in;
  -o-transition: all .25s ease-in;
  transition: all .25s ease-in;
}

.readmore:hover {
  background-color: #36b072;
  color: white;
}

.submit,
a.sa-link {
  width: 35%;
  padding: 14px 21px;
  line-height: 35px;
  background-color: #3fc380;
  border-radius: 3px;
  text-align: center;
  color: white;
  outline: none;
  border: none;
  font-size: .875em;
  text-shadow: 0 -1px 0 #1b8046;
  -webkit-transition: all .25s ease-in;
  -moz-transition: all .25s ease-in;
  -ms-transition: all .25s ease-in;
  -o-transition: all .25s ease-in;
  transition: all .25s ease-in;
  background: #f64747;
  margin: 0 10px 0 0;
  text-shadow: 0 -1px 0 #f41212;
}

a.sa-link {
  width: 100%;
  display: inline-block;
  margin: 0 0 10px;
}

.btn-close {
  background: #f64747;
  padding: 7px 14px;
  border: none;
  outline: none;
  color: white;
  apple-border-radius: 3px;
  khtml-border-radius: 3px;
  moz-outline-radius: 3px;
  webkit-border-radius: 3px;
  border-radius: 3px;
  font-size: 11px;
}

.marketing {
  text-align: center;
}

.backtoptop {
  font-size: 2em;
  line-height: 2em;
  position: fixed;
  border-radius: 10%;
  cursor: pointer;
  z-index: 1;
  display: none;
  right: 5%;
  bottom: 25px;
  opacity: .8;
  z-index: 1000;
  color: #171718;
  text-indent: 100%;
  padding: 20px;
  background: #36b072 url("../img/collapse3.png") no-repeat center center;
  width: 32px;
  height: 32px;
}

.cookie-banner {
  display: none;
  background: #2c3e50;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 4px 0 0 rgba(171, 175, 179, 0.98);
  box-shadow: 0 4px 0 0 rgba(171, 175, 179, 0.98);
  cursor: pointer;
  z-index: 9999;
  white-space: nowrap;
}

.cookie-banner a {
  color: #e74c3c;
  text-decoration: none;
  padding: 0 0 0 7px;
}

.cookie-banner .cookie-container {
  margin: 0 auto;
  width: 90%;
  color: #fefffb;
  padding: 15px;
}

.cookie-banner .cookie-container p {
  font-size: .75em;
  float: left;
  line-height: 2.8125em;
  height: 2.8125em;
  margin: 0;
  color: whitesmoke;
}

.cookie-banner .cookie-button {
  font-size: .75em;
  background: #95a5a6;
  color: #f2f2f2;
  text-decoration: none;
  padding: 10px 12px;
  float: right;
  border: 1px solid #212f3d;
  border-radius: 3px;
}

.jumbotron-holder {
  width: 100%;
  /*  padding: 108px 0; */

  /* padding: 81px 0; */

  padding: 81px 0 0;
  /* padding: 5px 0 70px 0; */
}

.jumbotron-holder .jumbotron {
  border: none;
}

.jumbotron-holder a.home-btn {
  background: #3fc380;
  color: white;
  text-shadow: 0 -1px 0 #1b8046;
  margin: 0 auto;
  outline: none;
  display: block;
  text-align: center;
  font-weight: normal;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 44.8%;
  padding: 18px 0;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jumbotron-holder a.home-btn:hover {
  color: white;
  background: #36b072;
}

.jumbotron-holder img {
  margin: 0;
  padding: 0;
}

.bradind-section {
  padding: 0;
  margin: 0;
}

.tabber-holder {
  padding: 1.5625em 0;
  font-size: 12px;
}

.tabber-holder h1 {
  color: #323232;
  font-size: 2.625em;
  font-weight: bold;
}

.tabber-holder p {
  font-size: 1.125em;
  margin: 25px 0;
  color: rgba(85, 94, 106, 0.8);
  text-shadow: 0 -1px 0 #f8f8f8;
}

.tabber-holder .tabber-moreinfo-1,
.tabber-holder .tabber-moreinfo-2,
.tabber-holder .tabber-moreinfo-3,
.tabber-holder .tabber-moreinfo-4 {
  padding: 10px 30px;
  background: #faf8f8;
  box-shadow: 4px 4px 0 #e4e4e4;
  text-shadow: 0 -1px 0 #f3f3f3;
}

.cookie-table {
  font-size: 12px;
  color: #3c4d5e;
}

.policy-report-container {
  text-align: center;
  /*  padding: 20px 0; */
}

.policy-report-container .policy-report-heading {
  margin: 0 0 52px;
  font-size: 24px;
}

.policy-report-container .quotehome {
  font-style: italic;
  font-size: 18px;
  text-align: center;
  font-weight: 100;
  line-height: 1.6em;
  margin: 65px 0 0;
  color: #858c92;
}

.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  *text-indent: -9999px;
}

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:after,
.clearfix:before {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}
@font-face {
  font-family: "WebSymbolsRegular";
  src: url("fonts/websymbols-regular-webfont.eot");
  src: url("fonts/websymbols-regular-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/websymbols-regular-webfont.woff") format("woff"), url("fonts/websymbols-regular-webfont.ttf") format("truetype"), url("fonts/websymbols-regular-webfont.svg#WebSymbolsRegular") format("svg");
}

.monitor {
  background: url("../img/about-aj-logo.png") no-repeat;
}

.benefits {
  background: url("../img/benefits-icon.png") no-repeat;
}

.acc_container {
  float: left;
  padding: 30px;
  background: #edeff2;
  box-shadow: 4px 4px 0 #dbdbdb;
  text-shadow: 0 -1px 0 #f3f3f3;
  border: 1px solid #e5e5e5;
  margin: 45px 0;
}

.acc_container h2 {
  margin-top: 0;
}

.acc_container ul.acc-ul {
  background: none;
  list-style-type: square;
}

.acc_container ul.acc-ul li {
  text-shadow: none;
  line-height: 18px;
  /* margin: 20px 0px 0px 20px;  */
}

.active,
.readmore-benefits {
  width: 30%;
  outline: none;
  padding: 14px 21px;
  line-height: 35px;
  /* background-color: #27ae60 ; */
  border-radius: 3px;
  text-align: center;
  color: white;
  outline: none;
  border: none;
  font-size: .875em;
  text-shadow: 0 -1px 0 #1b8046;
  -webkit-transition: all .25s ease-in;
  -moz-transition: all .25s ease-in;
  -ms-transition: all .25s ease-in;
  -o-transition: all .25s ease-in;
  transition: all .25s ease-in;
  /* width: 125px; */
  background: #27ae60 url("../img/plus.png") 10px center no-repeat;
  padding: 14px 14px 14px 35px;
  line-height: 21px;
  margin: 0 0 1.3125em;
  font-size: .75em;
  display: block;
  float: left;
}

.active:hover,
.readmore-benefits:hover {
  background-color: #36b072;
  color: white;
}

.readmore-benefits:after {
  content: 'Read more';
}

.active {
  background: #36b072 url("../img/minus.png") 10px center no-repeat;
  padding: 14px 14px 14px 35px;
}

.active:after {
  content: 'Read less';
}

#bespoke,
#clubhr,
#comp-car,
#comp-car,
#generalsurveys,
#geograph,
#indust,
#maternity,
#redun,
#shift-overtime,
#uk-ben {
  cursor: pointer;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

#bespoke:hover,
#clubhr:hover,
#comp-car:hover,
#comp-car:hover,
#generalsurveys:hover,
#geograph:hover,
#indust:hover,
#maternity:hover,
#redun:hover,
#shift-overtime:hover,
#uk-ben:hover {
  background: #e7f1f3;
}

#bespoke h3,
#clubhr h3,
#comp-car h3,
#comp-car h3,
#generalsurveys h3,
#geograph h3,
#indust h3,
#maternity h3,
#redun h3,
#shift-overtime h3,
#uk-ben h3 {
  font-weight: bold;
}

#geograph ul.salarysurveys-jds-sub-links,
#indust ul.salarysurveys-jds-sub-links {
  list-style: none;
  padding: 10px 0 0;
  border-top: 1px solid #dfef;
}

#geograph ul.salarysurveys-jds-sub-links li,
#indust ul.salarysurveys-jds-sub-links li {
  display: inline-block;
  padding: 10px 7px;
  font-size: 12px;
  font-weight: 200;
  background: #5cbe8c;
  border-radius: 3px;
  margin: 0 10px 10px 0;
}

#geograph ul.salarysurveys-jds-sub-links li:hover,
#indust ul.salarysurveys-jds-sub-links li:hover {
  background: #4cb27e;
}

#geograph ul.salarysurveys-jds-sub-links li a,
#indust ul.salarysurveys-jds-sub-links li a {
  color: white;
}

.success {
  padding: 1em;
  margin-bottom: .75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.error {
  padding: 1em;
  margin-bottom: .75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.valid {
  padding: 1em;
  margin-bottom: .75rem;
  color: white;
  background-color: #36b072;
  border: 1px solid rgba(185, 74, 72, 0.3);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.form-group span {
  color: #f64747;
  font-size: 11px;
}

.login-inner {
  border-bottom: 4px solid #e7e8ec;
  margin-top: 54px;
}

.login-inner span {
  margin: 0;
  display: block;
  font-size: 11px;
  color:color: rgb(90, 90, 90);
}

.trouble-section {
  padding: 2.8125em 0;
}

.panel-body form input {
  float: left;
  display: block;
  width: 100%;
  margin: 0 0 1.5625em;
  line-height: 45px;
  height: 45px;
  font-size: .75em;
  padding: 5px 35px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  outline: none;
  border: 1px solid #e7e8ec;
  color: #3c4d5e;
}

.panel-body form label {
  display: block;
  width: 100%;
  color: #3c4d5e;
  font-size: 12px;
  margin: 0 0 10px;
}

.panel-body #ajusername {
  background: url("../img/users2.png") no-repeat 10px 15px;
}

.panel-body #password,
.panel-body #password2 {
  background: url("../img/key2.png") no-repeat 10px 15px;
}

.form-signin.submit-bt,
.panel-body .submit-bt,
a.submit-bt {
  background: #1d9650;
  width: 35%;
  line-height: 35px;
  background-color: #27ae60;
  border-radius: 3px;
  text-align: center;
  color: white;
  outline: none;
  box-shadow: 0 4px 0 #1a7741;
  border: none;
  font-size: .6875em;
  text-shadow: 0 -1px 0 #1b8046;
  -webkit-transition: all .25s ease-in;
  -moz-transition: all .25s ease-in;
  -ms-transition: all .25s ease-in;
  -o-transition: all .25s ease-in;
  transition: all .25s ease-in;
}

.panel-body .submit-bt:hover {
  background-color: #1d9650;
}

.trouble-section-3 h3 {
  margin: 1.3125em 0;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1em;
}

.well > span {
  color: #676d74;
}

.charts {
  background: url("../img/chart1.png") no-repeat;
}

.charts_second {
  background: url("../img/chart2.png") no-repeat;
}

.charts_third {
  background: url("../img/chart3.png") no-repeat;
}

.geographical {
  background: url("../img/world91.png") no-repeat;
}

.indust {
  background: url("../img/factory1.png") no-repeat;
}

.chart-salary {
  background: url("../img/chart8.png") no-repeat;
}

.bespoke {
  background: url("../img/bespoke.png") no-repeat;
}

.hrsurvey {
  background: url("../img/hr-survey.png") no-repeat;
}

.salarysurveys {
  background: url("../img/ss-services.png") no-repeat;
}

.onlineservices {
  background: url("../img/Browser_window.png") no-repeat;
}

.jd {
  background: url("../img/new_jd.png") no-repeat;
}

.ia {
  background: url("../img/new_ia.png") no-repeat;
}

.clienthome-bg {
  background: url("../img/clienthome-bg.png") no-repeat;
}

.groupshare {
  background: url("../img/new_groupshare.png") no-repeat;
}

.online-quest {
  background: url("../img/online-questionnaire.png") no-repeat;
}

.other-services {
  background: url("../img/other-services.png") no-repeat;
}

h1,
h2,
h3,
h4,
h5 {
  color: #2c3e50;
  margin: 0 0 27px;
  padding: 0;
  display: block;
  text-shadow: 0 1px white;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 4px solid #e9e9e9;
  margin: 20px 0;
  padding: 0;
}

.main-header-feature {
  padding: 81px 0 54px;
  background: #2a3744;
}

.main-header-feature h1 {
  color: white;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: .0625em;
  text-align: center;
  line-height: 40px;
  margin: 0;
  text-shadow: 0 0 1px black;
}

.ft {
  padding: 25px 0;
}

.relative {
  position: relative;
}

.more-below {
  position: absolute;
  bottom: 10px;
  left: 50%;
  background: url("../img/phone.png") no-repeat;
  z-index: 9999px;
  width: 150px;
  height: 150px;
}

.ft-copy {
  margin-top: 0;
}

.salary-list {
  margin: 0;
  padding: 0;
}

.salary-list h3 {
  font-weight: bold;
}

.salary-list a {
  color: #27ae60;
}

.salary-list a:hover {
  color: white;
}

.salary-list li {
  background: #f1f7f4;
  padding: 21px 14px;
  color: #858c92;
  font-size: 12px;
  margin: 3px 0;
  line-height: 18px;
  opacity: .8;
  cursor: pointer;
}

.salary-list li:hover {
  background: #27ae60;
  color: white;
}

.salary-list li:hover a {
  color: white;
  font-weight: bold;
}

.feature-icon {
  width: 95%;
  height: 330px;
  position: relative;
  background-size: 100%;
}

.sections-home,
.sections-home-list {
  margin: 0;
}

.section-subheader p {
  margin: 0;
}

.more-jobdescriptions {
  font-size: 12px;
  display: block;
  padding: 15px 10px;
  background: #0072c6;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  text-shadow: 1px 1px 0 #015592;
  color: #f8f8f8;
  font-weight: bold;
  margin: 0 0 10px;
}

.more-jobdescriptions:hover {
  color: #fbfbfb;
}

.section-1 ul {
  margin: 0;
}

.section-2 {
  background: #f3faf6;
}

.footer-section {
  background: #2a3744;
  padding: 54px 0;
  height: auto;
  text-align: center;
}

.footer-section h3 {
  color: #f4f4f4;
  font-size: 1.25em;
  line-height: 1.875em;
}

.footer-section p {
  margin: 0;
  font-size: .750em;
  color: #cac8c8;
}

.forget-p-container {
  width: auto;
  min-height: 650px;
  width: 750px\0/;
}

.form-signin {
  cursor: pointer;
  max-width: 330px;
  padding: 15px;
  margin: 45px auto 20px;
  background-color: #27ae60;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 4px 0 #1a7741;
}

.form-signin:hover {
  background-color: #1d9650;
}

.form-signin a {
  color: white;
  text-shadow: 0 -1px 0 #1b8046;
}

span.error_loggin {
  display: block;
  margin: 10px 0;
}

.black {
  background: black;
}

.sections {
  padding: 0;
  position: relative;
}

.sections h4 {
  margin: 0 0 15px;
  font-size: 14px;
  color: #2a3744;
  font-weight: bold;
}

.sections .group-list {
  background: #f1f7f4;
  list-style-type: none;
  border: 1px solid #e5e7e6;
  margin: 20px 0;
  box-shadow: 0 1px 4px #e9e9e9;
}

.sections .group-list li {
  padding: 10px;
  border-bottom: 1px solid #e5e7e6;
  margin: 0;
  color: #64ae87;
  font-weight: bold;
}

.sections ul {
  /*margin: 0 10px 25px 35px;*/
  margin: 0 10px 25px 20px;
  list-style-type: circle;
}

.sections ul li {
  /*font-size: .75em;
  padding: 5px 0;
  line-height: 18px;*/
  font-size: .75em;
  padding: 5px 0 5px 10px;
  line-height: 18px;
}

.sections ul li a {
  color: #3c4d5e;
  border-bottom: 1px dotted #000;
  text-decoration: none;
}

.sections span {
  font-size: 11px;
  margin: 0 0 14px;
  display: block;
  font-style: italic;
  color: #3c4d5e;
}

.sections span.subtitle {
  font-size: 11px;
  font-style: normal;
  color: #4c5a68;
}

.sections h3 {
  font-weight: bold;
  color: #2c3e50;
  font-size: 16px;
  margin: 0 0 10px;
  line-height: 24px;
}

.modal-header span {
  font-size: 42px;
}

.sections-home,
.sections-home-list {
  padding: 54px 0;
}

.sections-home-list {
  background: #f7f8f9;
}

.sections-home-list ul {
  margin: 20px 0;
}

.sections-home-list ul li {
  font-size: 12px;
  margin: 3px 0;
  padding: 7px 0;
  line-height: 18px;
}

.sections-home-list ul li a {
  color: #adb3b9;
}

.sections-home-list ul li a:hover {
  color: #2f353e;
}

/* .sections-home-list ul li a{
color: red;} */
.sections-home-list h2,
.sections-home-list h3 {
  margin: 0 0 .6875em;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
}

.sections-job-list {
  margin: 0 0 25px;
  background: #36535a;
  text-align: center;
  background: #36535a;
  opacity: .8;
  -o-transition: .2s;
  -ms-transition: .2s;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  transition: .2s;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.22);
}

.sections-job-list:hover {
  opacity: .9;
}

.sections-job-list ul {
  float: none;
  overflow: auto;
}

.sections-job-list ul li {
  margin-right: 1.26582%;
  margin-right: 0;
  display: inline-block;
  border-right: 1px solid #637c82;
  text-align: center;
  padding: 0;
  height: 55px;
  line-height: 55px;
  width: 20%;
  float: left;
  opacity: .7;
}

.sections-job-list ul li:hover {
  opacity: 1;
}

.sections-job-list ul li:last-child {
  border-right: none;
}

.sections-job-list ul li a {
  color: white;
  font-weight: bold;
  font-size: 12px;
}

blockquote {
  margin: 3.5em 3em;
  color: #999999;
  border-left: 2px solid #999999;
  padding-left: 1em;
  font-size: 12px;
  line-height: 18px;
}

.viewsample {
  cursor: pointer;
  padding: 5px 7px;
  margin: 0 0 7px;
  color: #4183d7;
  text-shadow: none;
  -webkit-transition: all .25s ease-in;
  -moz-transition: all .25s ease-in;
  -ms-transition: all .25s ease-in;
  -o-transition: all .25s ease-in;
  transition: all .25s ease-in;
}

/*.viewsample:hover {
  background: #3573c3;
  color: white;
  border-radius: 3px;
  khtml-border-radius: 3px;
  moz-outline-radius: 3px;
  apple-border-radius: 3px;
}*/

.table-font {
  font-size: 12px;
}

.alert-small {
  font-size: 12px;
  text-align: center;
  font-weight: bold;
}

.highlight-heading {
  background: url('../img/cream_pixels.png') repeat;
  border-top: 5px solid #eaeaea;
  border-bottom: 5px solid rgba(234, 234, 234, 0.27);
}

.sections-nav-wrap {
  z-index: 9999;
  margin: 0;
  text-align: center;
  background: #36535a;
  padding: 5px 0;
  /* opacity: 0.9; */
  -o-transition: .2s;
  -ms-transition: .2s;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  transition: .2s;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.22);
}

.sections-nav-wrap.stuck {
  position: fixed;
  top: 53px;
  width: 100%;
  padding: 0;
}

#scroll_gs,
#scroll_ia,
#scroll_os,
#scroll_sc {
  height: 65px;
}

/*   .sections-nav-wrap:hover {
opacity: 0.9; } */
.sections-nav-wrap .sections-nav {
  padding: 0;
  margin: 0;
  list-style-type: none;
  overflow: hidden;
  display: inline-block;
}

.sections-nav-wrap .sections-nav li {
  float: left;
  font-size: .8125em;
  padding: 10px 22px;
}

.sections-nav-wrap .sections-nav li a {
  color: white;
  font-weight: bold;
  text-shadow: 0 -1px 0 #012c14;
}

.sections-nav-wrap .sections-nav li a:hover {
  color: #c4c4c4;
}

.sections-nav-wrap .sections-nav .selected-nav {
  background: #b9e4d0;
  padding: 10px 22px;
}

.main-nav-scrolled {
  position: fixed;
  width: 100%;
  /* top: 71px; */
  top: 51px;
  z-index: 50;
}

.image-header-arrow-down {
  display: block;
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 16px;
  height: 9px;
  margin-left: -12px;
  background-image: url("../img/down14.png");
  background-repeat: no-repeat;
  opacity: .4;
  content: "";
}

#form {
  margin: 0;
  padding: 0 0 35px;
}

#form input[type="checkbox"] {
  /*	width: 16px;
	height: 16px;*/
  padding: 0;
  /*	text-align: center;*/
  margin: 0;
  width: auto;
}

#form h3 {
  margin: 0;
}

#form legend {
  font-size: 20px;
  display: block;
  font-weight: bold;
  padding: 5px 0 25px;
  color: #282828;
  border-bottom: 2px solid #282828;
}

#form hr {
  margin: 45px 0;
}

/*#form label {
	margin: 35px 0 0 0;
	display: block;
	color: #3c4d5e;
	font-size: 0.75em;
	font-weight: bold;
}*/

#form select {
  margin: 14px 0;
  width: 100%;
}

#form input,
#form textarea {
  width: 90%;
  border-radius: 0;
  font-size: 12px;
  color: #373737;
  margin: 14px 0;
  background: white;
  padding: 7px 14px;
  border: 1px solid #e6e6e6;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#form #title {
  width: 80%;
}

#form .label-p {
  font-weight: bold;
  font-size:12px;
  margin: 0 0 0 20px;
}

.contact-section {
  background: #f64747;
  padding: 20px 40px;
  min-height: 400px;
}

.contact-section h2,
.contact-section p {
  color: white;
}

.header-label {
  font-weight: bold;
  text-align: center;
}

.center-checkbox {
  text-align: center;
}

.message-holder {
  text-align: center;
  padding: 35px 0 0;
}

.message-holder p {
  padding: 15px;
}

span.error_message {
  color: #c0392b;
  font-size: .875em;
}

.text-ar {
  text-align: right;
}

.form-group {
  position: relative;
}

.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group span.required {
  font-size: 11px;
  position: absolute;
  left: 0;
  top: 25%;
}

p.required-title {
  color: red;
  font-size: 11px;
  margin: 30px 0;
}

.no-margin {
  margin: 0;
}

.no-margin h2 {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.content--holder {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto 11.7em;
}

.readmore-jds {
  width: auto;
  outline: none;
  padding: 14px 21px;
  line-height: 35px;
  border-radius: 3px;
  text-align: center;
  color: white;
  outline: none;
  border: none;
  font-size: .875em;
  text-shadow: 0 -1px 0 #1b8046;
  -webkit-transition: all .25s ease-in;
  -moz-transition: all .25s ease-in;
  -ms-transition: all .25s ease-in;
  -o-transition: all .25s ease-in;
  transition: all .25s ease-in;
  /* width: 125px; */
  background: #27ae60;
  padding: 14px;
  line-height: 21px;
  margin: 0 0 1.3125em;
  font-size: .75em;
  display: block;
  float: left;
}

.readmore-jds:hover {
  background-color: #36b072;
  color: white;
}

.resp-icon-title i {
  font-size: 62px;
  margin: 0 0 10px;
}

.row.ft.content--height {
  height: 600px;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-style: 12px;
}

.form-control-static {
  margin: 0 0 10px;
}

.form-group > label {
  font-size: 12px;
}

.bs-example {
  margin: 0 -15px 15px;
  border-color: #e5e5e5 #eee #eee;
  border-width: 1px 0;
}

/*------------------------------------------
  Responsive Grid Media Queries - 1280, 1024, 768, 480
   1280-1024   - desktop (default grid)
   1024-768    - tablet landscape
   768-480     - tablet 
   480-less    - phone landscape & smaller
--------------------------------------------*/

/* ==========================================================================
   Slider media queries
   ========================================================================== */
@media only screen and (min-width:768px) and (max-width:959px) {
  .jumbotron p {
    text-align: justify;
    margin: 10px 0 20px;
  }

  .mi-slider-content h1 {
    font-size: 27px;
  }

  .mi-slider nav {
    top: 775px;
  }

  .mi-slider {
    height: 1050px;
  }

  .mi-slider ul {
    position: relative;
    display: inline;
    bottom: auto;
    pointer-events: auto;
  }

  .mi-slider ul li {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
    padding: 10px 3px;
    min-width: 140px;
  }

}
@media screen and (max-width:910px) {
  .jumbotron p {
    text-align: justify;
    margin: 10px 0 20px;
  }

  .mi-slider nav {
    max-width: 90%;
  }

  .mi-slider nav a {
    font-size: 12px;
    padding: 40px 10px 30px 14px;
  }

  .mi-slider nav {
    top: 775px;
  }

  .mi-slider {
    height: 1050px;
  }

  .mi-slider ul {
    position: relative;
    display: inline;
    bottom: auto;
    pointer-events: auto;
  }

  .mi-slider ul li {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
    padding: 10px 3px;
    min-width: 140px;
  }

}
@media screen and (max-width:740px) {
  .jumbotron p {
    text-align: justify;
    margin: 10px 0 20px;
  }

  .mi-slider-content h1 {
    font-size: 1.375em;
    line-height: 30px;
  }

  .mi-slider {
    text-align: center;
    height: auto;
  }

  .mi-slider ul {
    position: relative;
    display: inline;
    bottom: auto;
    pointer-events: auto;
  }

  .mi-slider ul li {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
    padding: 10px 3px;
    min-width: 140px;
  }

}
@media screen and (max-width:490px) {
  .jumbotron p {
    text-align: justify;
    margin: 10px 0 20px;
  }

  .mi-slider {
    text-align: center;
    height: auto;
  }

  .mi-slider ul {
    position: relative;
    display: inline;
    bottom: auto;
    pointer-events: auto;
  }

  .mi-slider ul li {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
    padding: 10px 3px;
    min-width: 140px;
  }

}

/* ==========================================================================
   Contents media queries
   ========================================================================== */
@media all and (min-width:1024px) and (max-width:1280px) {
  .mi-slider-content h1 {
    font-size: 32px;
  }

  .sections-home,
  .sections-home-list {
    padding: 104px 0;
  }

  .main-header-feature {
    padding-top: 121px;
  }

  .active,
  .readmore-benefits {
    width: 100%;
  }

  .acc_container {
    margin: 0;
  }

}
@media (max-width:1200px) {
  .navbar-top .navbar-top-inner ul li a {
    font-size: 10px;
  }

  .navbar-top .navbar-top-inner ul li .client-login {
    padding: 5px 45px 5px 10px;
  }

}
@media all and (min-width:959px) and (max-width:1024px) {
  .ft {
    padding: 20px 0;
  }

  .navbar-top .navbar-top-inner nav select {
    display: block;
    width: 100%;
    color: #2c3e50;
    font-weight: 700;
    margin: 21px 0;
    height: 2.625em;
    border: 1px solid #ccc;
    outline: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 19.5px;
  }

  .top-nav {
    display: none;
  }

  .jumbotron-holder {
    padding: 120px 0 0;
  }

  .sections-home,
  .sections-home-list {
    padding: 104px 0;
  }

  .main-header-feature {
    padding-top: 121px;
  }

  .active,
  .readmore-benefits {
    width: 100%;
  }

  .acc_container {
    margin: 0;
  }

  .feature-icon {
    height: 220px;
  }

  h2 {
    font-size: 20px;
  }

  .well {
    margin-bottom: 250px;
  }

}
@media all and (min-width:770px) and (max-width:959px) {
  body {
    font-size: .875em;
  }

  .ft {
    padding: 20px 0;
  }

  .navbar-top .navbar-top-inner nav select {

    /* background: red;*/
    display: block;
    width: 100%;
    color: #2c3e50;
    font-weight: 700;
    margin: 21px 0;
    height: 2.625em;
    border: 1px solid #ccc;
    outline: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 19.5px;
  }

  .jumbotron-holder {
    padding: 120px 0 0;
  }

  .mi-slider nav {
    display: none;
  }

  .bradind-section {
    display: none;
  }

  .main-header-feature {
    padding-top: 121px;
  }

  .main-header-feature h1 {
    font-size: 1.500em;
  }

  .active,
  .readmore-benefits {
    width: 100%;
  }

  .acc_container {
    margin: 0;
  }

  .feature-icon {
    height: 180px;
  }

  a.order-bt {
    position: relative;
    display: block;
    width: 100%;
    left: 0;
  }

  h2 {
    font-size: 18px;
  }

  .well {
    margin-bottom: 250px;
  }

}
@media all and (min-width:741px) and (max-width:767px) {
  ul.nav.top-nav {
    display: none;
  }

  .mi-slider {
    height: 900px;
  }

  .mi-slider-content h1 {
    font-size: 1.375em;
    line-he ight: 45px;
  }

  .well {
    margin-bottom: 250px;
  }

}
@media all and (min-width:480px) and (max-width:768px) {
  body {
    font-size: .875em;
  }

  .ft {
    padding: 20px 0 35px;
  }

  .readmore-jds {
    width: 100%;
  }

  .navbar-top .navbar-top-inner nav select {
    display: block;
    width: 100%;
    color: #2c3e50;
    font-weight: 700;
    margin: 21px 0;
    height: 2.625em;
    border: 1px solid #ccc;
    outline: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 19.5px;
  }

  .jumbotron-holder {
    padding: 120px 0 0;
  }

  .mi-slider nav {
    display: none;
  }

  .sections-home,
  .sections-home-list {
    padding: 24px 0;
  }

  .bradind-section {
    display: none;
  }

  .main-header-feature {
    padding-top: 121px;
  }

  .main-header-feature h1 {
    font-size: 1.500em;
  }

  .active,
  .readmore-benefits {
    width: 100%;
  }

  .acc_container {
    margin: 0;
  }

  .feature-icon {
    height: 180px;
  }

  a.order-bt {
    position: relative;
    display: block;
    width: 100%;
    left: 0;
  }

  h2 {
    font-size: 17px;
  }

  .policy-report-container .quotehome {
    font-style: italic;
    font-size: 14px;
    text-align: center;
    color: #94989b;
    margin: 0;
    padding: 20px 0 40px;
  }

  .policy-report-container .policy-report-heading {
    font-size: 1.375em;
  }

  .well {
    margin: 0 0 250px;
  }

}
@media all and (max-width:480px) {
  body {
    font-size: .875em;

  }

  p {
    text-align: justify;
  }

  .footer-section {
    bottom: -50px;
  }

  .well {
    margin: 0 0 250px;
  }

  .navbar-top .navbar-top-inner nav select {
    display: block;
    width: 100%;
    color: #2c3e50;
    font-weight: 700;
    margin: 21px 0;
    height: 2.625em;
    border: 1px solid #ccc;
    outline: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 19.5px;
  }

  .navbar-top .main-logo {
    width: auto;
  }

  .jumbotron-holder {
    padding: 120px 0 0;
  }

  .mi-slider nav {
    display: none;
  }

  .bradind-section {
    display: none;
  }

  .policy-report-container .policy-report-heading {
    font-size: 1.375em;
  }

  .sections-home,
  .sections-home-list {
    padding: 0;
  }

  .main-header-feature {
    padding-top: 121px;
  }

  .main-header-feature h1 {
    font-size: 1.375em;
  }

  .active,
  .readmore-benefits {
    width: 100%;
  }

  .acc_container {
    margin: 0;
  }

  .feature-icon {
    height: 180px;
  }

  a.order-bt {
    position: relative;
    display: block;
    width: 100%;
    left: 0;
  }

  h2 {
    font-size: 17px;
    text-align: left;
  }

  .policy-report-container .quotehome {
    font-style: italic;
    font-size: 10px;
    text-align: center;
    color: #94989b;
    margin: 0;
    padding: 20px 0 40px;
  }

  .login-inner {
    margin-top: 100px;
  }

  h2 {
    font-size: 16px;
  }

  .form-signin.submit-bt,
  .panel-body .submit-bt,
  a.submit-bt {
    width: 100%;
  }

}
@media (min-width: 768px) {
  .bs-example {
    margin-right: 0;
    margin-left: 0;
    background-color: #fff;
    /*    border-color: #ddd;
	border-width: 1px;
	border-radius: 4px 4px 0 0;*/
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " ("attr(href) ")";
  }

  abbr[title]:after {
    content: " ("attr(title) ")";
  }

  .ir a:after,
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  blockquote,
  pre {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  img,
  tr {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }
  @page {
    margin: .5cm;
  }

  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

}

.breadcrumb {
  background-color: #dabf81 rgba(42, 55, 68, 0.06);
  padding: 8px 15px;
  margin-bottom: 0;
  list-style: none;
  border-radius: 4px;
}

.breadcrumb > li,
.breadcrumb > li a {
  display: inline-block;
  color: #5b5f63;
  font-size: 11px;
  margin: 0 0 5px;
}

.breadcrumb > li a.text-info {
  color:;
}

.breadcrumb > li a:hover,
.breadcrumb > li:hover {
  color: #2a3744;
}

.breadcrumb > li+li:before {
  padding: 0;
  color: #ccc;
  content: "/\00a0";
}

span.header-subtitle {
  font-size: 12px;
  margin: 5px 0 0;
  font-weight: normal;
  font-style: normal;
}

a.no-link {
  cursor: default;
}
/*#the-cambridge-network-salary-survey {
  background:;
}*/
/*
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 0;
  list-style: none;
  border-radius: 4px;
}

.breadcrumb > li,
.breadcrumb > li a {
  display: inline-block;
  color: #1ea256;
  font-size: 12px;
  margin: 0 0 5px;
}


.breadcrumb > li a.text-info{
  color:;
}
.breadcrumb > li a:hover,
.breadcrumb > li:hover {
  color: #148242;
}

.breadcrumb > li+li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
*/
/*@media (min-width: 768px) {*/
/*.breadcrumb { 
  list-style: none; 
  overflow: hidden; 
  font: 18px Sans-Serif;
}
.breadcrumb li { 
  float: left; 
}
.breadcrumb li a.text-info { 
  color: white; 
}
.breadcrumb li a:hover.text-info { 
  color: #f5f5f5; 
}
.breadcrumb li a {
  font-size: 11px;
  color: white;
  text-decoration: none; 
  padding: 10px 0 10px 65px;
  background: brown; 
  background: #2c3e50; 
  position: relative; 
  display: block;
  float: left;
}

.breadcrumb li a::after { 
  content: " "; 
  display: block; 
  width: 0; 
  height: 0;
  border-top: 50px solid transparent; 
  border-bottom: 50px solid transparent;
  border-left: 30px solid #2c3e50;
  position: absolute;
  top: 50%;
  margin-top: -50px; 
  left: 100%;
  z-index: 2; 
}
.breadcrumb li a::before { 
  content: " "; 
  display: block; 
  width: 0; 
  height: 0;
  border-top: 50px solid transparent;       
  border-bottom: 50px solid transparent;
  border-left: 30px solid white;
  position: absolute;
  top: 50%;
  margin-top: -50px; 
  margin-left: 1px;
  left: 100%;
  z-index: 1; 
}
.breadcrumb li:first-child a {
  padding-left: 10px;
}
.breadcrumb li:nth-child(2) a       { background:        hsla(210, 29%, 24%, 0.91); }
.breadcrumb li:nth-child(2) a:after { border-left-color: hsl(210, 21%, 31%); }
.breadcrumb li:nth-child(3) a       { background:        hsla(210, 29%, 24%, 0.85); }
.breadcrumb li:nth-child(3) a:after { border-left-color: hsl(211, 17%, 35%); }
.breadcrumb li:nth-child(4) a       { background:        hsla(210, 29%, 24%, 0.65); }
.breadcrumb li:nth-child(4) a:after { border-left-color: hsl(211, 9%, 50%); }
.breadcrumb li:nth-child(5) a       { background:        hsla(210, 29%, 24%, 0.50); }
.breadcrumb li:nth-child(5) a:after { border-left-color: hsl(210, 9%, 62%); }*/

/*}*/
