* {
  box-sizing: border-box;
  webkit-tap-highlight-color: transparent;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #767676;
}

p {
  margin: 0 0 20px
}

p:last-child {
  margin: 0
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #32487a;
  transition: all 200ms linear
}

a:focus, a:hover {
  color: #ffc81f;
  text-decoration: none;
}

h2 {
  font-weight: 600;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

h3 {
  color: #333;
  font-weight: 600
}

h4 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 15px;
  color: #333
}

header:after, section:after, footer:after, .midContainer:after, nav:after {
  visibility: hidden;
  display: block;
  font-size: 0px;
  content: " ";
  clear: both;
  height: 0%;
}

.verticalSpace {
  padding: 80px 0
}

.container {
  width: 100% !important;
  max-width: 1170px;
}

.button {
  background-color: #32487a;
  color: #fff;
  padding: 6px 35px 8px 15px;
  display: inline-block;
  position: relative;
}

.button:after {
  content: "";
  background: url('../images/button-arrow.png') no-repeat center center;
  background-size: 6px 12px;
  width: 6px;
  height: 12px;
  vertical-align: middle;
  display: inline-block;
  transition: all 200ms linear;
  position: absolute;
  right: 15px;
  bottom: 0;
  top: 0;
  margin: auto;
}

.button:hover {
  background-color: #68aca3;
  color: #fff;
}

.button:hover:after {
  right: 10px;
}

header {
  padding: 10px 0 0;
}

.logo {
  float: left;
  padding: 10px 0 10px
}

nav {
  background-color: #32487a;
  clear: both;
  padding: 12px 0 10px
}

nav .container>ul {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: stretch;
  flex-direction: row;
  list-style: none;
  margin-bottom: 0
}

nav ul li {
  padding: 0 20px;
  font-size: 14px;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600
}

nav>ul li:last-child {
  padding-right: 0;
}

nav ul li a {
  color: #fff;
}

nav ul li a:hover, nav ul li a.active {
  color: #68aca3;
}

nav>ul li>ul {
  position: absolute;
  left: 0;
  top: 44px;
  background: #fff;
  box-shadow: 0 9px 14px rgba(0, 0, 0, .1);
  margin: 0;
  padding: 0;
  list-style: none;
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms linear;
}

nav>ul li>ul>li {
  padding: 0;
}

nav>ul li>ul>li a {
  padding: 7px 15px;
  display: block;
}

nav>ul li>ul>li:hover {
  background-color: #000
}

nav>ul li>ul>li:hover a {
  color: #fff;
}

.profileRgtSec a.burger {
  width: 30px;
  height: 40px;
  display: none;
  transition: all 0.6s ease-in-out;
  position: relative;
  opacity: 0.8;
  z-index: 111;
  right: 0;
  border-radius: 5px;
}

.burger i {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.burger i:before, .burger i:after {
  content: '';
  position: absolute;
  height: 2px;
  background: #fff;
  width: 30px;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.burger i:before {
  margin-top: -10px;
}

.burger i:after {
  margin-top: 10px;
}

.burger:hover i, .burger:hover i:after, .burger:hover i:before {
  background: #fff;
}

.burger.active i, .burger.active i:after, .burger.active i:before {
  background: #fff;
}

.burger.active i {
  background: transparent;
}

.burger.active i:before, .burger.active i:after {
  left: 0;
  width: 30px;
}

.burger.active i:before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 10px;
}

.burger.active i:after {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -10px;
}

.rightSec {
  text-align: center;
  padding: 0 10px;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  float: right;
  color: #6aada4;
}

.rightSec span {
  color: #32487a
}

nav .container {
  position: relative;
}

.profileRgtSec {
  position: absolute;
  right: 15px;
  top: 0px;
  font-size: 0;
  line-height: 0
}

.profileRgtSec a {
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  width: 21px;
  height: 21px;
  display: inline-block;
  margin: 0 10px;
  position: relative;
}


.search {
  background-image: url('../images/search-icon.png');
z-index: 1;
}


.account {
  background-image: url('../images/profile-icon.png')
}

.whishlist {
  background-image: url('../images/whishlist-icon.png')
}

.cart {
  background-image: url('../images/cart-icon.png')
}

.cart span {
  font-size: 12px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  position: absolute;
  right: -12px;
  top: -6px;
  border-radius: 50%;
  background-color: #32487a;
  color: #fff;
  border: 1px solid #fff
}

.banner ul {
  margin: 0;
  padding: 0;
  list-style: none
}

.banner img {
  width: 100%
}

.overlayTxt {
  position: absolute;
  left: 10%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 50%;
  transform: translateY(-50%);
  padding: 50px;
  font-size: 20px;
  color: #fff;
  max-width: 40%;
  line-height: 26px;
}

.overlayTxt h3 {
  color: #68aca3;
  text-transform: uppercase;
  margin-top: 0
}

.overlayTxt p:last-child {
  margin-bottom: 0
}

.whoweareSec {
  text-align: center;
  padding: 80px 0 0
}

.whoweareSec .container>div {
  text-align: center;
  max-width: 85%;
  margin: 0 auto;
}

.featuredSec .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: stretch;
  flex-direction: row;
}

.featuredSec .row .col-sm-4 {
  padding-bottom: 60px;
  text-align: center;
}

.featuredSec .button {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.whatwedoSec {
  overflow: hidden;
  background-color: #68aca3;
}

.whatwedoSec .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.whatwedoSec .col-sm-6:first-child {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.whatwedoSec img {
  width: 100%;
  display: none
}

.textSec {
  color: #fff;
  padding: 80px 65px 80px 50px;
}

.featuredCustomersSec {
  text-align: center;
}

.slide {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
}

.slide img {
  margin: 0 auto;
}

.featuredSlider .slick-list {
  padding: 10px 0
}

.featuredSlider .slick-slide {
  margin: 10px;
}

.contactUsSec {
  background-color: #324b7c;
  color: #fff;
  text-align: center;
}

.contactUsSec ul {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.contactUsSec ul li:nth-child(odd) {
  float: left;
  padding-right: 15px;
  width: 50%
}

.contactUsSec ul li:nth-child(even) {
  float: right;
  padding-left: 15px;
  width: 50%
}

.contactUsSec ul li {
  padding-bottom: 30px;
}

.contactUsSec ul li input, .contactUsSec ul li textarea {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  border-radius: 5px;
  border: 0;
  color: #938c86
}

.contactUsSec ul li:last-child, .contactUsSec ul li:nth-last-child(2) {
  width: 100%;
  padding-right: 0
}

.contactUsSec ul li input[type="submit"] {
  width: auto;
  text-transform: uppercase;
  padding: 10px 40px;
  background-color: #68aca3;
  color: #fff;
  font-weight: 600
}

.contactUsSec ul li input[type="submit"]:hover {
  background-color: #1f1f1f
}

footer {
  background-color: #1f1f1f;
  color: #a6a6a6;
  padding: 30px 0 0;
  font-size: 16px;
  line-height: 22px;
}

footer h4 {
  color: #FFF
}

footer a {
  color: #a6a6a6;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footerLinks ul {
  column-count: 2;
  margin: 0;
  padding: 0;
  list-style: none
}

.footerLinks ul li {
  padding-bottom: 8px;
}

.socialIcons a {
  margin-right: 10px;
  background-color: #68aca3;
  display: inline-block;
  padding: 7px;
}

.socialIcons a img {
  width: 30px;
  height: 30px;
}

.socialIcons a:hover {
  background-color: #a6a6a6
}

.footerCopyright {
  background-color: #3c3c3c;
  text-align: center;
  padding: 8px 20px;
  margin-top: 20px
}

.searchOverlay {
  background-color: #32487a;
  position: fixed;
  left: -100%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  z-index: 111;
  top: 0;
  transition: all 300ms linear
}

.searchOverlay.active {
  left: 0
}

.searchOverlay input {
  border-radius: 5px;
  padding: 15px;
  font-size: 22px;
  border: 0;
  background-color: #fff;
  width: 80%
}

.closebtn {
  position: absolute;
  right: 20px;
  top: 20px;
  background: url('../images/close.png') no-repeat center center;
  background-size: 30px;
  width: 30px;
  height: 30px;
  font-size: 0
}

.search-wrapper {
	padding: 25px;
	width: 100%;
	float: left;
}
.search-reasults {
		padding-bottom: 10px;
		width: 100%;
		text-align: right;
		display: inline-block;
}
.product-wrapper h4 {
		margin-top: 0;
		color: #32487a;
}
.product-wrapper span {
		margin: 2px 0 20px 5px;
		display: inline-block;
		color: #6aada4;
		font-weight: 600;
}
.pagination-wrapper {
	text-align: right;	
	border-bottom: solid 1px #e1e1e1;
	margin-bottom: 15px;
}
.pagination-wrapper .pagination {
	margin: 5px 0 20px;
}
.product-info .table {
	width: auto;
}

.product-info .table>tbody>tr>th,
.product-info .table>tbody>tr>td{
	border: none;
	color: #32487a;
  padding: 1px !important;
  line-height: 2;
}

.common-info {
  border: none;
  color: #32487a;
}
.common-info a {
  text-decoration: underline;
}

.box {	
		display: none;
}

.modal-body h5 {
	margin: 15px 10px;
	color: #32487a;
}

.tag-line {
	font-size: 18px;
	color: #32487a;
	border-left: 4px solid #32487a;
	margin: 15px 5px;
	padding-left: 10px;
}

.feature-customers {
	text-align: center;
}
.feature-customers .thumbnail {
	display: inline-block;
	min-width: 80px;
}
.panel-primary.customers-panel .panel-title {
	font-size: 14px;
	font-weight: normal;
}

.search-details {
	padding: 10px;
	background: #f2f2f2;
	margin-bottom: 20px;
	border: 1px solid #e1e1e1;
}

.search-details .table {
	margin-bottom: 0;
}
.search-details .table>tbody>tr>td {
	border: none;
	padding: 5px;
}

.search-details .product-name a {
	font-weight: 600;
}

/*New Classes 14-10*/
.search-reasults .navbar-nav>li>a {
  padding: 5px 15px;
}
.search-reasults .navbar-nav>li>a:hover,
  .search-reasults .navbar-nav>li>a:focus {
  color: #32487a;
}

.profileRgtSec .searchboxParent ul {
    margin: 0;
min-width: 250px;  
}

.profileRgtSec .searchboxParent ul li {
    padding: 0;
    display: block;
}

.profileRgtSec .searchboxParent li a {
    font-size: 14px;
    padding: 5px;
    display: inline-block;
    width: 100%;
    line-height: normal;
    margin: 0;
    height: auto;
}

.profileRgtSec .searchboxParent li.active a {
    color: #FFF;
    background: ##32487a;
}

@media screen and (min-width:320px) and (max-width:767px) {

.search-reasults {
display: block;
text-align: left;
}

.search-reasults .navbar-nav li {
width: 48%;
float: left;
}
.search-reasults .navbar-nav .open .dropdown-menu {
position: absolute;
background-color: #fff;
width: 100%;
}
.search-reasults .navbar-nav li ul li {
width: 100%;
float: left;
}

}