@import url('bootstrap.css'); 

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  font-size: 120%;
  font-family: "Roboto", sans-serif;
  color: #3d3536;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c5cad6+0,e1ecf7+100 */
  background: #d9e1ec; /* Old browsers */
 
}

body, html {
  /* important */
  height: 100%;
}

a {
  color: #b4d7a8;
  text-decoration: none;
}

h1, h3, h4 {
	color:#1e5799;
	
}

h2 {
	font-size:110%;
}

h4 {
	font-size:125%;
}

.diag_desc {
	width:60%;
	margin:20px auto;
	position:relative;
}

#interior_backdrop {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	background:#d9e1ec url(../images/Build-A-Wall.jpg) no-repeat;
	background-size:100%;
	height:800px;	
	z-index:-5;
	
}

.wrapper {width:90%;position:relative;margin:5px auto;}

.pl-logo {
	position:absolute;
	top:100px;
	right:25px;
}

.social_bar {background-color:#2d5582;color:#FFF;width:100%;height:auto;padding:5px;font-size:99%;}

.top_right_nav {width:auto;float:right;text-align:left;font-size:92%;}

.top_right_nav a:link {
	display:inline-block;
	padding:5px 4px;
	color:#b2bed3;
	
}

.top_right_nav a:hover {
	display:inline-block;
	padding:5px 4px;
	color:#FFF;
	
}

.top_right_nav a:visited {
	display:inline-block;
	padding:5px 4px;
	color:#e0e0e0;
	
}

.social_bar a:link {color:#cad4e0;font-size:90%;display:inline-block;margin-right:10px;text-decoration:none;}
.social_bar a:hover {color:#435e8d;font-size:90%;display:inline-block;margin-right:10px;text-decoration:underline;}
.social_bar a:visited {color:#c3cedb;font-size:90%;display:inline-block;margin-right:10px;text-decoration:none;}




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

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

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

Main components 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 35px;
  color:#1e5799;
  padding:10px;
  background: transparent;
  border-bottom: #1e5799 1px solid;
  z-index: 2;
  margin-bottom:50px;
 
}

.cd-header-interior {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 35px;
  color:#1e5799;
  padding:10px;
  background: #d9e1ec;
  z-index: 2;
 
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
.cd-header #cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
  }
  .cd-header #cd-logo {
    margin: 23px 0 0 5%;
  }
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../img/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-main-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #2f292a;
  border-top: 1px solid #453c3d;
  color: #8e7d7f;
}
@media only screen and (min-width: 768px) {
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    color: #3d3536;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .no-touch .cd-main-nav a:hover {
    color: #99a478;
  }
}

.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}

.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
 
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-size: 1.875rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}

.cd-fixed-bg.pl-logo {
    position: absolute;
    right: 35%;
    top: 25px;
    padding:20px;	
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../images/diagnostic-tools-business.jpg");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../images/leadership-development.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/cd-background-3.jpg");
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("http://pldiagnostictools.com/images/Build-A-Wall.jpg");
}
@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 48px;
    font-weight: 300;
  }
}

.cd-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 4em 0;
  line-height: 1.6;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cd-scrolling-bg.cd-color-1 {
	background: #efefe3; /* Old browsers */
	background: -moz-linear-gradient(top,  #bdd4dd 0%, #efefe3 99%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #bdd4dd 0%,#efefe3 99%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #bdd4dd 0%,#efefe3 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bdd4dd', endColorstr='#efefe3',GradientType=0 ); /* IE6-9 */
	color: #3d3536;
}

header {
	background-color:#8bb17e;
	min-height:200px;
	width:100%;
	-webkit-box-shadow: -1px 3px 5px 0px rgba(125,120,125,1);
	-moz-box-shadow: -1px 3px 5px 0px rgba(125,120,125,1);
	box-shadow: -1px 3px 5px 0px rgba(125,120,125,1);
	position:relative;
}

.cd-scrolling-bg.cd-color-2 {
	background: #efefe3; /* Old browsers */
	background: -moz-linear-gradient(top,  #bdd4dd 0%, #efefe3 99%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #bdd4dd 0%,#efefe3 99%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #bdd4dd 0%,#efefe3 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bdd4dd', endColorstr='#efefe3',GradientType=0 ); /* IE6-9 */
	color: #3d3536;
}
.cd-scrolling-bg.cd-color-3 {
	background: #efefe3; /* Old browsers */
	background: -moz-linear-gradient(top,  #bdd4dd 0%, #efefe3 99%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #bdd4dd 0%,#efefe3 99%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #bdd4dd 0%,#efefe3 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bdd4dd', endColorstr='#efefe3',GradientType=0 ); /* IE6-9 */
	color: #3d3536;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 8em 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}


h2 {
	color:#000;
	font-size:110%;
	font-weight:bold;
}

.h3 {
	color:#1e5799;
	font-size:200%;
	
}

h4 {
	color:#1e5799;
	font-size:125%;
	font-weight:bold;
	
}

.content {
	width:90%;
	position:relative;
	max-width:1000px;
	margin: 20px auto;
	
}


a:link {
	color:#069;
}

a:hover {
	color:#39c;
}

a:visited {
	color:#069;
}

.position-box {
	position:absolute;
	bottom:0;
	width:100%;
	
	
}

.featured-diag {
	position:relative;
	margin:25px auto;
	margin-top:200px;
	width:50%;
	max-width:600px;
}

.diag-box {
	width:100%;
	background:#FFF;
	border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
	border: 0px solid #000000;
	padding:15px;
	text-align:center;
	margin-bottom:50px;
	opacity:0.9;
	
	
}

.statement-box {
	
	width:70%;
	position:relative;
	margin: 50px auto 10px auto;
	background:#FFF;
	border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
	border: 0px solid #999999;
	padding:25px 25px 75px 25px;
	opacity:0.95;
	
	
	
}

@media (max-width: 991px) {
	
	.statement-box {
	
	width:95%;
	position:relative;
	margin: 30px auto 10px auto;
	background:#FFF;
	border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
	border: 0px solid #999999;
	padding:25px;
	opacity:0.95;
	
	
}

.diag_desc {
	width:90%;
	margin:20px auto;
	position:relative;
}
	
}

.btn {
    padding: 14px 24px;
    border: 0 none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
	font-size:18px;
	font-weight:bold;
	
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100 */

background: #1e5799; /* Old browsers */

background: -moz-linear-gradient(top,  #1e5799 0%, #7db9e8 100%); /* FF3.6-15 */

background: -webkit-linear-gradient(top,  #1e5799 0%,#7db9e8 100%); /* Chrome10-25,Safari5.1-6 */

background: linear-gradient(to bottom,  #1e5799 0%,#7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */


	
}

.btn-secondary {
	background: #FFF !important;
}

.interior-wrapper {
	width:100%;
	position:relative;
	font-size:135%;

	
}	

.footer_interior {
	width:100%;
	position:absolute;
	bottom:5px;
	text-align:center;
}


textarea {
	width: 90%;
	height: 300px;
	
}

.display_error {
	width:90%;
	color:#900;
	position:relative;
	margin:10px auto;
	text-align:center;
}

.display_message {
	width:90%;
	color:#308A25;
	position:relative;
	margin:10px auto;
	text-align:center;
}


#diag_container {
    position: absolute;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;  
	z-index:20000;
}

.box {
    position: absolute;
    width: 50%;
    height: auto;
    font-size: 50px;
    text-align: center;
    border: 2px solid black;
    left: 50%;
    top: 100px;
    margin-left: -25%;
}

#diag_box1 {
    background-color: white;
    left: -150%;
}

#diag_box2 {
    background-color: white;
}

#diag_box3 {
    background-color: white;
    left: 150%;
}



.next_page {
	position:absolute;
	right:25px;
	bottom:25px;
	font-size:200%;
	
}

.radio-input {
	margin-left:25px;
	margin-bottom:50px;
}

.radio-input label {
    display:inline-block;
    color:#333;
    font-weight  : 500;
    font-size    : 12px;
	margin-left:3px;
}

label {
	font-weight:normal;
	margin-left:3px;
}

.hide_desc {
	display:none;
	
}

#submit_bottom {
	
	position:absolute;
	bottom:20px;
}

.bottom-image {
	width:100%;
	height:auto;
	position:relative;

}

.main-image {
	margin-top:75px;
	width:100%;
	height:auto;
	position:relative;
	min-height:200px;

}

.main-image img {
	width:100%;
}

.intro-home {
	position:absolute;
	top:30%;
	left:12%;
	text-align:center;
	width:40%;
}

.intro-mobile {
	position:absolute;
	top:10%;
	left:3%;
	text-align:center;
	width:90%;
}

.intro-home h1 {
	font-size:150%;
}

.intro-home h2 {
	font-size:120%;
	line-height:140%;
}

.header-spot {
	width:100%;
	position:relative;
	height:50px;
	margin-bottom:10px;
}

.gray-header-spot {
	background-color:#666666;
	width:60%;
	height:50px;
	float:right;
	text-align:right;
	padding-right:10px;
	
}

.gray-header-spot h1 {
	color:#FFF;
	font-size:25px;
}

.head-end {
	margin:0;
	padding:0;
	float:left;
}

