/* -------------------------------- 

Primary style

-------------------------------- */
/*
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::after, *::before {
  content: '';
}
*/
body {
	color:fff;
  font-family: "PT Sans", sans-serif;
}

a {
  color: #97B6A1;
  text-decoration: none;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.headernav {
  position: relative;
  height: 160px;
  line-height: 180px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.headernav h1 {
  font-size: 20px;
  font-size: 1.25rem;
}

@media only screen and (min-width: 768px) {

.headernav {
    height: 200px;
    line-height: 225px;
  }
.headernav h1 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.headbanner {
	position: relative;
  background-image: url(../img/bg3.jpg);
  background-position: center;
  background-attachment: cover;
  margin: 0 auto;
  background-repeat: no-repeat;
  height: 200px;
  
  
}

.servicebox{
margin-top: 20px;
}

.cd-tabs {
  position: relative;
  width: 90%;
  max-width: 1170px;
  margin: 2em auto;
}
.cd-tabs:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabs::after {
  /* subtle gradient layer on top right - to indicate it's possible to scroll */
  position: absolute;
  top: 0;
  right: 0;
  height: 200px;
  width: 50px;
  z-index: 1;
  pointer-events: none;
 /* background: -webkit-linear-gradient( right , #f8f7ee, rgba(248, 247, 238, 0));
  background: linear-gradient(to left, #f8f7ee, rgba(248, 247, 238, 0));*/
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.no-cssgradients .cd-tabs::after {
  display: none;
}
.cd-tabs.is-ended::after {
  /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-tabs nav {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  /*background: #f8f7ee;*/
  box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
}

/* ---> TABLET */
@media only screen and (min-width: 768px) {
  .cd-tabs::after {
    display: none;
  }
  .cd-tabs nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    box-shadow: inset -2px 0 3px rgba(0, 0, 0, 0.06);
    z-index: 1;
  }
}

/* ---> DESKTOP SMALL */
@media only screen and (min-width: 960px) {
  .cd-tabs nav {
    position: relative;
    float: none;
    background: transparent;
    box-shadow: none;
  }
}

.cd-tabs-navigation { /* LM10-07-15 ul height and width for responsive */
  width: 360px;
  height: 80px;
}
.cd-tabs-navigation:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabs-navigation li { /* LM10-07-15 float for responsive */
  float: left;
  width: auto; /* LM10-07-15 edit to restrict width after mobile styles */
  -webkit-box-shadow: 4px 0px 11px -4px rgba(0,0,0,0.66);
-moz-box-shadow: 4px 0px 11px -4px rgba(0,0,0,0.66);
box-shadow: 4px 0px 11px -4px rgba(0,0,0,0.66);
}
.cd-tabs-navigation a { /* LM10-07-15 display block causing image to move underneath */
  position: relative;
  display: block;
  height: 80px;  /*LM edit 10-07-15 to fix responsive on small displays height: 160px;*/
  width: 60px;  /*LM edit 10-07-15 to fix responsive on small displays width: 100%;*/
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  color: #c3c2b9;
  padding-top: 34px;
}
.no-touch .cd-tabs-navigation a:hover {
  color: #29324e;
  background-color: rgba(256, 256, 256, 1);
}
.cd-tabs-navigation a.selected {
  background-color: #ffffff !important;
  box-shadow: inset 0 2px 0 #185F33;
  color: #29324e;
  height: 80px;
}
.cd-tabs-navigation a::before {
  /* icons */
  position: absolute;
  top: 12px;
  left: 50%;
  margin-left: -10px;
  display: inline-block;
  height: 20px;
  width: 20px;
  background-image: url("../img/vicons.svg");
  background-repeat: no-repeat;
}


/* Mobile */
@media only screen and (max-width: 767px) {
.cd-tabs-navigation {width:100%;}/* LM edit 10-07-15 to fix responsive on small displays */
.cd-tabs-navigation a {height:100%;width:100%; padding-top: 5px;}/* LM edit 10-07-15 to fix responsive on small displays */
.cd-tabs-navigation a img{height:60px; vertical-align: top;}/* LM edit 10-07-15 to fix responsive on small displays */
.cd-tabs-navigation li {height: 80px; width: 100%; text-align: center;} /* LM edit 10-07-15 to fix responsive on small displays padding-top: 46px;*/

}
/* ---> TABLET */
@media only screen and (min-width: 768px) {
  .cd-tabs-navigation {
    /* move the nav to the left on medium sized devices */
    /*width: 80px;*/
    float: left;
  }
  .cd-tabs-navigation a {
    height: 80px;
    width: 80px;
    padding-top: 46px;
  }
  .cd-tabs-navigation a.selected {
    box-shadow: inset 2px 0 0 #185F33;
  }
  .cd-tabs-navigation a::before {
    top: 22px;
  }
  

  
}
/* ---> DESKTOP FULL */
@media only screen and (min-width: 960px) {
  .cd-tabs-navigation {
    /* tabbed on top on big devices */
    width: auto;
    /*background-color: #fbfbfb;*/
    box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.06);
  }
  .cd-tabs-navigation a {
    height: 80px;
    line-height: 80px;
    width: 256px;
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem;
    padding: 0 20px 0 20px;
  }
  .cd-tabs-navigation a.selected {
    box-shadow: inset 0 2px 0 #185F33;
  }
  .cd-tabs-navigation a::before {
    top: 50%;
    margin-top: -10px;
    margin-left: 0;
    left: 38px;
  }
}

.cd-tabs-navigation a.selected img{
margin-top:4px;
opacity: 1;

}

.cd-tabs-navigation img{
margin-top:4px;
opacity: 0.4;

}

/* ---> ANIMATIONS */

@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*Accordion List*/

.dept-content .list ul{
color: #414042;
list-style-type: disc;

}
.dept-content .list li{
margin-left: 40px;
list-style-type: disc;
}

.row{margin-bottom: 15px;}

.form-actions .btn-primary {
  color: #fff;
  background-color: #165F31;
  border-color: #689775;
}

/*bootrstrap fix*/
@media (min-width: 768px){
	.navbar-collapse.collapse {
		display: block!important;
		height: auto!important;
		padding-bottom: 0;
		overflow: hidden!important;
	}
}

	#rotpunktlogotop{
	height:80px;
	}
	#rotpunktlogotop img{
	vertical-align:top;
	}
	#rotpunktlogonav{
	height:80px;
	display:none;
	}
	#rotpunktlogonav img{
	vertical-align:top;
	}
	
@media only screen and (min-width: 320px) {
	#rotpunktlogotop{
	display:inherit;
	height: 80px;
    float: left;
    width: 100%;
	}
	#rotpunktlogotop img{
	height:60px;
	margin-top: 12px;
	}
	#rotpunktlogonav{
	display:none;
	}

}	
	
@media only screen and (min-width: 768px) {
	#rotpunktlogotop{
	display:inherit;
	float:left;
	}
	#rotpunktlogotop img{
	height:60px;
	}
	#rotpunktlogonav{
	display:none;
	}

}
@media only screen and (min-width: 960px) {
	#rotpunktlogotop{
	display:none;
	}
	#rotpunktlogonav{
	display:none;
	}

}
@media only screen and (min-width: 992px) {
	#rotpunktlogonav{
	float:left;
	display:inherit;
	height:60px;
	}
	#rotpunktlogonav img{
	height:60px;
	}
}
@media only screen and (min-width: 1240px) {
	#rotpunktlogotop{
	display: inherit;
	float:right;
	width:auto;
	}
	#rotpunktlogonav{
	display:none;
	}

}




