* {
    outline: none;
    margin: 0px;
    padding: 0px;
    border: none;
    text-decoration: none;
}
a {text-decoration: none;}

.toggleMenu {
    display:  none;
    background-color:#fda91c !important;
    padding: 10px 0px;
    color: #fff;
	width:100%;
	background:url(../images/nav.png) no-repeat 95% center;
	font-size:1.2em;
	font-weight:500;
	font-family: 'Heebo', sans-serif;
	padding-left:5%
}
.nav {
    list-style: none;
     *zoom: 1;
     background: none;
	 float:right; margin-top:14px;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
}
.nav a {
    margin:1px 15px;
    color:#000;
	text-transform:uppercase;
	font-size:1em;
	font-weight:500;
	font-family: 'Heebo', sans-serif;
	line-height:30px;
	
}
.nav li {
    position: relative;
}
.nav > li {
    float: left;
}
.nav > li > a:hover {
    display: block;
	color:#e74c3c;
}

.solution_cln { width:100%; float:left; height:auto;}
.solution_cln img { width:100%;}
.solution_lft img { width:100%;}
.solution_rgt img { width:100%;}

.solution_lft { width:49%; float:left; height:auto;}
.solution_rgt { width:49%; float:right; height:auto;}

.hvr-underline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e74c3c;
  height: 2px;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.nav > li > .parent {
    background-image: url("images/downArrow.html");
    background-repeat: no-repeat;
    background-position: right;
}
.nav > li > a {
    display: block;
}
.nav li  ul {
    position: absolute;
    left: -9999px;
	
}
.nav > li.hover > ul {
    left: 0;
}
.nav li li.hover ul {
    left: 100%;
    top: 0;
	
}

.nav li li { margin-bottom:0px;} 

.nav li li a {
    display: block;
    background:#ed1821;
    position: relative;
    z-index:100;
    border-bottom: 1px solid #ccc;
	width:90%;
	padding:5px;
}
.nav li li a:hover{ background-color:#fff; color:#025aaa}
.nav li li li a {
    background:#249578;
    z-index:200;
    border-top: 1px solid #1d7a62;
}



.tbs {
	display: flex;
	flex-wrap: wrap; // make sure it wraps
}
.tbs label {
	order: 1; // Put the labels first
	display: block;
	padding: 1rem 2rem;
	margin-right: 0.2rem;
	cursor: pointer;
  background: #90CAF9;
  font-weight: bold;
  transition: background ease 0.2s;
}
.tbs .ta {
  order: 99; // Put the tabs last
  flex-grow: 1;
	width: 100%;
	display: none;
  padding: 1rem;
  background: #fff;
}
.tbs input[type="radio"] {
	display: none;
}
.tbs input[type="radio"]:checked + label {
	background: #fff;
}
.tbs input[type="radio"]:checked + label + .ta {
	display: block;
}

@media screen and (max-width: 768px) {
    .active {
        display: block;
    }
    .nav > li {
        float: none;
    }
    .nav > li > .parent {
        background-position: 95% 50%;
    }
    .nav li li .parent {
        background-image: url("images/downArrow.html");
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    .nav ul {
        display: block;
        width: 100%;
    }
   .nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }

}