/*-----CSS Reset - Eric Meyer-----*/

/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    /*overflow-x: hidden;*/
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong {
  font-weight: 700;
}

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

div {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;
}


/*-----Generic CSS-----*/

@font-face {
    font-family: 'icomoon';
    src:url('../fonts/icomoon.eot?-z96mqj');
    src:url('../fonts/icomoon.eot?#iefix-z96mqj') format('embedded-opentype'),
        url('../fonts/icomoon.woff?-z96mqj') format('woff'),
        url('../fonts/icomoon.ttf?-z96mqj') format('truetype'),
        url('../fonts/icomoon.svg?-z96mqj#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    color: #6a6a6a;
    font-family: 'Roboto', sans-serif;
    font-size: 1.000em;
    line-height: 20px;
    font-weight: 300;
    background-color: #292d37;
}

h1 { font-size: 1.875em; font-family: 'Roboto', sans-serif; }
h2 { font-size: 1.500em; font-family: 'Roboto', sans-serif; padding: 10px 0; line-height: 20px; }
h3 { font-size: 1.300em; font-family: 'Roboto', sans-serif; padding: 10px 0; line-height: 18px; }
h4 { font-size: 1.200em; font-family: 'Roboto', sans-serif; padding: 10px 0; line-height: 18px; }

.ctr {
    text-align: center;
}

.white {
    color: #ffffff;
}

#wrapper {
    width: 100%;
    position: relative;
    height: auto;
    background-color: #ffffff;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 10px;
    /*overflow: hidden;*/
    height: 85px;
    border-top: 3px solid #f57f20;
    background: rgba(255,255,255,0.8);
    width: 100%;
    z-index: 10000;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.anim-header {
    opacity: 1;
}

.logo {
    display: block;
/*  -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;*/
    margin-left: 25px;
    position: relative;
    width: 310px;
    height: 100%;
    float: left;
}

.logo a {
    outline: none;
}

img.normal {
    position: absolute;
    top: 0;
    left: 0;
}


img.compact {
    position: absolute;
    top: 0;
    left: 0;
}

.header > .logo img.compact {
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transition-delay: 0s;  Safari
    transition-delay: 0s;
}

.header > .logo img.normal {
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transition-delay: 0.5s;  Safari
    transition-delay: 0.5s;
}

.header.anim-header {
    height: 70px;
    background: rgba(244,244,244,1);
    border-bottom: 1px solid #ececec;
}

.anim-header > .logo img.normal {
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transition-delay: 0s; /* Safari */
    transition-delay: 0s;
}

.anim-header > .logo img.compact {
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transition-delay: 0.5s; /* Safari */
    transition-delay: 0.5s;
}

nav {
    margin-top: 10px;
    max-width: 550px;
    width: 100%;
    float: left;
    z-index: 9999;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.anim-header > nav {
    margin-top: 0px;
}

.main {
    width: 100%;
    position: relative;
    height: auto;
}

.contentWrapper {
    max-width: 1000px;
    margin: 0 10px;
    position: relative;
    height: auto;
    padding: 40px 10px;
}

.contentWrapper p {
  padding: 10px 0;
}

.subContent a {
  text-decoration: none;
  color: #e74c3c;
}

.subContent a:hover {
  text-decoration: underline;
}

.rtbImg {
  width: 100%;
  height: 100%;
}

section {
    position: relative;
    display: block;
    width: 100%;
}

section p {
    padding: 10px 0;
}

section img {
    width: 100%;
    height: auto;
}

#topRight {
    float: right;
    position: relative;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 360px;
    font-size: 12px;
    margin-right: 18px;
    margin-top: 10px;
}

.anim-header > #topRight {
    margin-top: 0px;
}

.navMenu {
    height: 36px;
    line-height: 36px;
    width: auto;
    overflow: hidden;
    /* CSS 3 */
    /*background-image: linear-gradient(bottom, rgb(170,170,170) 11%, rgb(238,238,238) 77%);
    background-image: -o-linear-gradient(bottom, rgb(170,170,170) 11%, rgb(238,238,238) 77%);
    background-image: -moz-linear-gradient(bottom, rgb(170,170,170) 11%, rgb(238,238,238) 77%);
    background-image: -webkit-linear-gradient(bottom, rgb(170,170,170) 11%, rgb(238,238,238) 77%);
    background-image: -ms-linear-gradient(bottom, rgb(170,170,170) 11%, rgb(238,238,238) 77%);
    background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.11, rgb(170,170,170)), color-stop(0.77, rgb(238,238,238)) );
    border-radius: 5px;*/
}

.navMenu a {
    color: #333;
    display: inline-block;
    float: left;
    font-size: 12px;
    padding: 0 5px;
    text-align: center;
    text-shadow: 0 1px 1px #FFF;
    text-transform: uppercase;
    text-decoration: none;
    width: 55px;
    /* CSS3 */
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.navMenu .searchBtn {
    display: none;
}

.dummy {
    color: #333;
    display: inline-block;
    float: left;
    font-size: 14px;
    padding: 0 5px;
    text-align: center;
    text-shadow: 0 1px 1px #FFF;
    text-transform: uppercase;
    text-decoration: none;
    width: 135px;
    text-indent: -1000px;
    /* CSS3 */
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}


.navMenu a.social {
    color: #333;
    display: inline-block;
    float: left;
    font-size: 16px;
    padding: 0 5px;
    text-align: center;
    text-shadow: 0 1px 1px #FFF;
    text-transform: uppercase;
    text-decoration: none;
    width: 16px;
    /* CSS3 */
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.navMenu a:hover { color: #f57f20; }
a.fb:hover { color: #3b5998; }
a.tw:hover { color: #55acee;}
.navMenu input.searchField {
    background: url(../img/magni.png) 2px center no-repeat;
    background-color: rgba(255,255,255,0.0);
    border: 1px solid transparent;
    color: #666;
    float: right;
    font-size: 11px;
    margin: 3px 10px 0 0;
 /*   opacity: 0.2;*/
    outline: none;
    padding: 7px 0px 7px 26px;
    width: 0%;
    /* CSS3 */
    border-radius: 5px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.navMenu .searchField:hover { opacity: 1 }

.navMenu .searchField:focus {
    border: 1px solid #AAA;
    background-color: rgba(255,255,255,1);
    width: 130px;
}

.navMenu .searchField:focus ~ .dummy { width: 1px }
.navMenu .searchField:focus ~ a { width: 53px; }
.navMenu .searchField:focus ~ a.social { width: 12px }

ul li {
    list-style: none;
    display: inline-block;
}

.greySection {
    background-color: #f4f4f4;
    width: 100%;
    height: auto;
    position: relative;
}


/*-----CONTENT CSS-----*/

.banner {
    width: 100%;
    height: auto;
    position: relative;
}

.banner img {
    width: 100%;
}

.title {
    padding: 10px 0;
}

.vmid {
    position: relative;
}

.shrink {
    transform: scale(1);
}

.vdiv {
    border-left: 0px solid #c4c4c4;
    margin-left: 0px !important;
}

a.solutionLink {
    text-decoration: none;
    color: #6a6a6a;
    height: 100%;
}

.solutionItem {
    text-align: center;
    position: relative;
    padding: 20px;
    border-bottom: 2px solid transparent;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.solutionItem img {
  width: auto !important;
}

.solutionItem:hover {
    background: #f7f7f7;
    border-bottom: 2px solid #f57f20;
    color: #333;
}

.solutionIcon {
    margin-bottom: 0px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}


.solutionTitle {
    margin-bottom: 5px;
}

.solutionDesc {
    width: 90%;
    margin: 0 auto;
}

.searchInput2 {
  margin: 20px auto;
  width: 90%;
}

.searchField2 {
  width: 100%;
  display: inline-block;
  padding: 10px 10px 10px 30px;
  border-radius: 5px;
  border: 1px solid #aaaaaa;
  background: url(../img/magni.png) 2px center no-repeat;
  box-sizing: border-box;
}



/*.flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex .solutionLink {
    display: block;
}
*/

.breadcrumbsBar {
    background-color: #f4f4f4;
    height: auto;
    padding: 20px;
}

.breadcrumbs {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 300;
    color: #666666;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 25px;
}

.breadcrumbs a {
    color: #666666;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs li:after {
    content: "/";
    padding: 0 5px 0 10px;
}

.breadcrumbs li.current {
    color: #e74c3c;
}

.breadcrumbs li.current:after {
    content: "";
}

.icon-puzzle:before {
    content: "\e026";
}

.icon-profile-male:before {
    content: "\e040";
}

#tmsEKP,
#tmsWORKFLOW {
    font-family: 'Roboto', sans-serif;
    line-height: 20px;
    font-weight: 300;
}

.pCon {
    width: 80%;
    margin: 0;
}

.pName {
    font-size: 1.500em;
}

.pName i {
    margin-right: 10px;
}

.pDesc {
    font-size: 1.000em;
}
/*
.tabContent {
    position: relative;
}*/

.tabContent h3 {
    margin: 15px 0;
}

.tabContent p {
    padding: 10px 0;
    margin-bottom: 10px;
    line-height: 24px;
    text-align: justify;
}

.tabContent hr {
    width: 30%;
    border-top: 1px solid #d4d4d4;
    margin: 0 auto;
}

.tabContent li {
/*    margin: 10px 10px 10px 15px;*/
    display: table-row;
}

.tabContent li:before {
    font-family: 'FontAwesome';
    content: '\f00c';
    padding: 5px 5px 5px 10px;
    color: #4f4f4f;
    display: table-cell;
}

.fa span {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    display: block;
    padding-left: 20px;
    line-height: 20px;
}

.check:before {
    float: left;
    margin-top: 4px;
}

.tabContent img {
    display:block;
    margin:auto;
    width: 100%;
}

.tabContent:after {
    clear: both
}

#benefits ul {
  list-style: inside;
  display: block;
}

#benefits li:before {
  display: none;
}

#benefits ul li {
  display: block;
  margin: 5px;
}

#benefits i {
  margin-right: 10px;
}

.fLeft {
    float: none;
    margin: 10px;
}

.fRight {
    float: none;
    margin: 10px;
}

.rightContent {
    width: 100%;
    position: relative;
    margin-top: 20px;
}

.subContent {
  min-height: 250px;
}

/*.subContent p {
    padding: 10px 0;
}*/

.sideNavCon ul {
    display: none;
}

#dl-menu {
    display: block;
}


.sideNavCon li {
    display: block;
    background-color: #f9f9f9;
    border-bottom: 1px solid #a6a6a6;
}

.sideNavCon a {
    color: #6a6a6a;
    text-decoration: none;
    width: auto;
    display: block;
    padding: 10px;
}

.sideNavCon a:hover {
    text-decoration: none;
    color: #e74c3c;
    background-color: #eeeeee;
}

.sideNavCon a.active {
     text-decoration: none;
    color: #e74c3c;
}

.sideNavCon a:active {
    text-decoration: none;
    color: #e74c3c;
}

.narrow {
  width: 80%;
  margin: 0 auto !important;
}

a.anchor {
  display: block; position: relative; top: -100px; visibility: hidden;
}

.irList ul {
  padding: 0;
  margin: 0;
}

.irList ul li {
  list-style: none;
  display: block;
}

.irList i {
  margin-right: 10px;
}

.irList a {
  display: block;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  padding: 10px;
  margin: 5px 0;
  text-decoration: none;
  color: #999999;
}

.irList a:hover {
  background-color: #eae9e9;
  color: #666666;
}

.prospectusGrid {
  margin-bottom: 10px;
}

.prospectusGrid a {
  display: block;
  position: relative;
  text-align: center;
  color: #6a6a6a;
  text-decoration: none;
  background-color: #fcfcfc;
  border: 1px solid #e7e7e7;
  padding: 8px 8px 0px 8px;
  min-height: 70px;
  height: 100%;
  box-sizing: border-box;
}

.prospectusGrid a:hover {
  background-color: #f5f4f4;
  color: #565656;
}
/*
.prospectusItem {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);   Chrome, Opera 15+, Safari 3.1+
  -ms-transform: translate(-50%, -50%);  /* IE 9 */
  /*transform: translate(-50%, -50%); */ /* Firefox 16+, IE 10+, Opera */
/*}*/

.prospectusGrid i {
  display: block;
  text-align: center;
  font-size: 1.875em;
}

.prospectusDesc {
  display: block;
  width: 100%;
  text-align: center;
}

.prospectusDesc span {
    font-size: 0.875em;
}

.mapAddress {
  margin-top: 30px;
}

.mapContainer {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.mapContainer iframe,
.mapContainer object,
.mapContainer embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contactDetails {
  margin-left: 0;
  margin-top: 30px;
}

.contactDetails img {
  width: 100%;
}

/*----- Accordion CSS-----*/

.transition, p, ul li i:before, ul li i:after {
  transition: all 0.25s ease-in-out;
}

.transition, p, ul li em:before, ul li em:after {
  transition: all 0.25s ease-in-out;
}

/*.flipIn, h1, ul li {
  animation: flipdown 0.5s ease both;
}*/

.no-select, h2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.subsidiaries h1, .subsidiaries h2 {
  color: #6a6a6a;
}

.subsidiaries h1 {
  text-transform: uppercase;
  font-size: 1.875em;
  line-height: 30px;
  letter-spacing: 3px;
  font-weight: 100;
}

.subsidiaries h2 {
  font-size: 1em;
  font-weight: 300;
  padding: 0;
  display: block;
  background-color: transparent;
  margin: 0;
  cursor: pointer;
  width: 85%;
}

.subsidiaries p {
  color: #6a6a6a;
  font-size: 14px;
  line-height: 18px;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
  transition: all 0.25s ease-in-out;
}

.subsidiariesContent {
  color: #6a6a6a;
  font-size: 14px;
  line-height: 18px;
  position: relative;
  overflow: hidden;
  /*max-height: 800px;*/
  height: auto;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
  transition: all 0.25s ease-in-out;
}

.subsidiariesContent ul {
    list-style: disc !important;
    padding: 20px 0;
}

.subsidiariesContent ul li {
    padding: 5px !important;
    margin: 0 0 0 10px !important;
    display: block;
    border: none !important;
    animation-delay: 0s !important;
}

.subsidiariesContent li span {
    font-family: "Roboto", sans-serif;
    display: inline;
    padding-left: 0px;
}

.subsidiariesContent li.fa-check:before {
    margin-right: 10px;
}

.subsidiariesContent

.subsidiaries ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0 0 10px 0;
}
.subsidiaries ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #dce7eb;
}
.subsidiaries ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}
.subsidiaries ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}
.subsidiaries ul li:nth-of-type(3) {
  animation-delay: 1s;
}
.subsidiaries ul li:nth-of-type(4) {
  animation-delay: 1.25s;
}
.subsidiaries ul li:nth-of-type(5) {
  animation-delay: 1.5s;
}
.subsidiaries ul li:last-of-type {
  padding-bottom: 10px;
}
.subsidiaries ul li i {
  position: absolute;
  transform: translate(-15px, 0);
  -webkit-transform: translate(-15px, 0);
  -ms-transform: translate(-15px, 0);
  margin-top: 8px;
  right: 15px;
}
.subsidiaries ul li i:before, .subsidiaries ul li i:after {
  content: "";
  position: absolute;
  background-color: #6a6a6a;
  width: 3px;
  height: 9px;
}
.subsidiaries ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
  -webkit-transform: translate(-2px, 0) rotate(45deg);
  -ms-transform: translate(-2px, 0) rotate(45deg);
}
.subsidiaries ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
  -webkit-transform: translate(2px, 0) rotate(-45deg);
  -ms-transform: translate(2px, 0) rotate(-45deg);
}
.subsidiaries ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.subsidiaries ul li input[type=checkbox]:checked ~ .subsidiariesContent {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);

}
.subsidiaries ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
  -webkit-transform: translate(2px, 0) rotate(45deg);
  -ms-transform: translate(2px, 0) rotate(45deg);
}
.subsidiaries ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
  -webkit-transform: translate(-2px, 0) rotate(-45deg);
  -ms-transform: translate(-2px, 0) rotate(-45deg);
}

.subsidiaries ul li em {
  position: absolute;
  transform: translate(-15px, 0);
  -webkit-transform: translate(-15px, 0);
  -ms-transform: translate(-15px, 0);
  margin-top: 8px;
  right: 15px;
}
.subsidiaries ul li em:before, .subsidiaries ul li em:after {
  content: "";
  position: absolute;
  background-color: #6a6a6a;
  width: 3px;
  height: 9px;
}
.subsidiaries ul li em:before {
  transform: translate(-2px, 0) rotate(45deg);
  -webkit-transform: translate(-2px, 0) rotate(45deg);
  -ms-transform: translate(-2px, 0) rotate(45deg);
}
.subsidiaries ul li em:after {
  transform: translate(2px, 0) rotate(-45deg);
  -webkit-transform: translate(2px, 0) rotate(-45deg);
  -ms-transform: translate(2px, 0) rotate(-45deg);
}

.subsidiaries ul li input[type=checkbox]:checked ~ em:before {
  transform: translate(2px, 0) rotate(45deg);
  -webkit-transform: translate(2px, 0) rotate(45deg);
  -ms-transform: translate(2px, 0) rotate(45deg);
}
.subsidiaries ul li input[type=checkbox]:checked ~ em:after {
  transform: translate(-2px, 0) rotate(-45deg);
  -webkit-transform: translate(-2px, 0) rotate(-45deg);
  -ms-transform: translate(-2px, 0) rotate(-45deg);
}

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform: rotateX(-90deg);
    -webkit-transform: rotateX(-90deg);
    -ms-transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
    -webkit-transform: rotateX(8deg);
    -ms-transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
    -webkit-transform: rotateX(6deg);
    -ms-transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
    -webkit-transform: rotateX(-3deg);
    -ms-transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
  }
}

.accordionContent li {
    display: block;
    list-style: circle;
    margin: 0 0 0 5px !important;
    padding: 0 0 0 5px !important;
    border-bottom: none !important;
}

/*-----Banner CSS-----*/

.tagline {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translate(-50%, -50%);  /* IE 9 */
    transform: translate(-50%, -50%);  /* Firefox 16+, IE 10+, Opera */
    width: 280px;
    text-shadow: 1px 1px 2px rgba(150, 150, 150, 1);
    text-align: center;
    font-weight: 300;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.fadeInBlock {
    opacity:0;
}

.tagline h1 {
     padding: 15px 0; line-height: 30px;
}

.tagline p {
    display: none;
}

.bx-wrapper .bx-pager {
    display: none;
}


/*-----Index ClientCarousel CSS-----*/

.clientCarousel {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
}

.carousel img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(0%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}

.carousel img:hover {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
}
/*-----Footer CSS-----*/

#footerWrapper {
    min-height: 100px;
    position: relative;
    width: 100%;
}

footer {
    max-width: 1000px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    color: #999999;
    padding: 15px 10px;
    box-sizing: border-box;
}

footer a {
    color: #999999;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer ul {
    padding-top: 10px;
}

footer ul li {
    display: block;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
}

footer li {
    margin: 10px 0;
}

.footerLinks {
    margin: 15px 0;
    display: block;
    position: relative;
}

.fcolumn1,
.fcolumn2 {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.fLinkTitle {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.footerTM {
    text-align: center;
    margin: 15px 0;
    display: block;
}

.trademark {
    font-size: 11px;
    font-weight: 300;
    line-height: 18px;
    margin-top: 10px;
}

/*-----Media Quaries-----*/

@media (min-width: 481px) {
  .flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px !important;
}

  .flexWrap {
      flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -webkit-flex-wrap: wrap; /* Safari 6.1+ */
  }

  .prospectusGrid a {
   /* padding: 8px;*/
    min-height: 82px;
  }

}

@media (min-width: 640px) {

h1 { font-size: 2.500em; font-family: 'Roboto', sans-serif; padding: 20px 0; line-height: 40px; }
h2 { font-size: 1.875em; font-family: 'Roboto', sans-serif; padding: 15px 0; line-height: 30px; }
h3 { font-size: 1.500em; font-family: 'Roboto', sans-serif; padding: 10px 0; line-height: 20px; }

.tagline {
    width: 400px;
}


.tagline h1 {
     padding: 20px 0; line-height: 40px;
}

.tagline p {
    line-height: 20px;
    display: block;
}

.bx-wrapper .bx-pager {
    display: block;
}

.solutionIcon {
    margin-bottom: 20px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.vmid {
    position: relative;
    margin-top: 10% !important;
}

.contactDetails {
  margin-left: 10%;
  margin-top: 0px;
}

/*
.flex .solutionLink {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
*/

#tmsEKP,
#tmsWORKFLOW {
    width: 45%;
}

.carousel img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.carousel img:hover {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
}

#footerWrapper {
    min-height: 100px;
    position: relative;
    width: 100%;
}
}

@media (min-width: 768px) {
    .contentWrapper {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        height: auto;
        padding: 40px 10px;
    }

    .vdiv {
        border-left: 1px solid #c4c4c4;
        margin-left: 0px !important;
    }

    .pCon {
        width: 55%;
        margin: 0 auto;
    }

    .check:before {
        margin-right: 10px;
    }

    .searchInput2 {
      margin: 20px auto;
      width: 70%;
    }

    .breadcrumbs {
      font-size: 18px;
      text-transform: uppercase;
      font-weight: 300;
      color: #666666;
      max-width: 1000px;
      margin: 0 auto;
      line-height: 25px;
  }

    footer ul {
        padding-top: 20px;
    }

    footer ul li {
        float: left;
        text-align: left;
    }

    footer li {
        margin: 5px 0;
        text-align: left;
        width: 100%;
    }

    .fcolumn1 {
        width: 22%;
        margin-bottom: 0px;
        display: block;
        float: left;
        text-align: left;
    }

    .fcolumn2 {
        width: 61.6666%;
        display: block;
        float: left;
        border-right: 1px solid #1f232b;
        border-top: 0px solid transparent;
        border-left: 0px solid transparent;
        border-bottom: 0px solid transparent;
        box-shadow: 1px 0px 0px 0px #50535a;
        position: relative;
        text-align: left;
    }

    .fcolumn2 li {
        width: 50%;
        float: left;
        text-align: left;

    }

    .footerTM {
        width: 38%;
        display: block;
        float: left;
        text-align: right;
    }



}

@media (min-width: 769px) {

    .fLeft {
        float: left;
        margin: 10px;
    }

    .fRight {
        float: right;
        margin: 10px;
    }

    .rightText {
        float: left;
        width: 48%;
        position: relative;
    }

    .tabContent:after {
        clear: both;
    }

    ..tabContent img {
      width: auto;
    }

    .sideNavCon {
        width: 26.26%;
        padding-right: 2%;
    }

    .sideNavCon ul {
        display: block;
    }


    #dl-menu {
        display: none;
    }


    .rightContent {
        width: 70.13%;
    }

    .sideNavCon li {
        display: block;
        background-color: transparent;
        border-bottom: 1px solid #a6a6a6;
    }
}


@media (max-width: 1279px) {

    #topRight {
        float: none;
        position: absolute;
        right: 0px;
        width: 90px;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        }


    .navMenu a div.searchBtn {
        width: 25px;
    }

    .navMenu .searchBtn {
        display: block;
        background: url(../img/magni.png) center no-repeat;
        border: none;
        height: 35px;
        width: 21px;
        padding-top: 10px 0;
    }

    .navMenu input.searchField {
        display: none;
    }

    .dummy {
        display: none;
    }
    .navMenu .lk {
        display: none;
    }

}


@media (max-width: 960px) {
    body {
        font-size: 14px;
    }

    .header {
        position:relative;
        z-index:9999;
        height: 70px;
        background: rgba(244,244,244,1);
        -webkit-transition: all 0.0s ease;
        -moz-transition: all 0.0s ease;
        -o-transition: all 0.0s ease;
        transition: all 0.0s ease;
    }

    .header .logo img {
        max-width:100%;
    }

    .header .menu {
        float:none;
        clear:both;
    }

    .header .mobile_menu {
        float:right;
    }

    .menu>ul>li {
        display:block;
        background-color: #f2f2f2;
    }

    .menu ul li a{
        padding:15px 20px;
    }

    .menu ul ul {
        position:static; width:100%;
    }

    .menu ul ul a {
        padding-left:30px;
    }

    .desktop {
        display:none!important;
    }

    .desktop_menu {
        display:none;
        border-top:1px solid #DDD4BA;
    }

    .desktop_menu.displayMenu, .mobile_menu {
        display:block;
    }

    .mobile_menu {
        text-align: right;
    }

    nav {
        margin-top: 0px;
        max-width: 100%;
        width: 100%;
        float: none;
        position: absolute;
        top: 0;
        z-index: 999;
        -webkit-transition: all 0.0s ease;
        -moz-transition: all 0.0s ease;
        -o-transition: all 0.0s ease;
        margin-ttransition: all 0.0s ease;
    }

    #topRight {
        float: none;
        position: absolute;
        right: 30px;
        top: 0;
        width: 90px;
        -webkit-transition: all 0.0s ease;
        -moz-transition: all 0.0s ease;
        -o-transition: all 0.0s ease;
        transition: all 0.0s ease;
        }

    .anim-header > nav {
        margin-top: 0px;

    }

    .anim-header > #topRight {
        margin-top: 10px;
    }

    .header > .logo {
        position: absolute;
        top: 10px;
        left: 0;
        width: 126px;
        z-index: 9999;
    }
    .header > .logo img.compact {
        opacity: 1;
        -webkit-transition: all 0.0s ease;
        -moz-transition: all 0.0s ease;
        -o-transition: all 0.0s ease;
        transition: all 0.0s ease;
        -webkit-transition-delay: 0s;  Safari
        transition-delay: 0s;
    }

    .header > .logo img.normal {
        display: none;
    }

    .header.anim-header {
        height: 70px;
        background: rgba(244,244,244,1);
        border-bottom: 1px solid #ececec;
    }

    .anim-header > .logo img.normal {
        display: none;
    }

    .anim-header > .logo img.compact {
        opacity: 1;
        -webkit-transition: all 0.0s ease;
        -moz-transition: all 0.0s ease;
        -o-transition: all 0.0s ease;
        transition: all 0.0s ease;
        -webkit-transition-delay: 0.0s; /* Safari */
        transition-delay: 0.0s;
    }

}


@media (max-width: 1000px) {
    #topRight {
        width: 90px;
        z-index: 999;
        }

}

@media (min-width: 1601px) {
    .logo {
        width: 450px;
    }
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}


/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        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) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}