/* ORGANIZATION OF CSS FILE
0 – Reset
1 – Typography
2 – Navigation
3 – Content Layout
4 – Footer
5 - Timeline Page Styling (timeline.html)
6 - Layout changes for >1200px width screens
------------- */


/* ----- 0 RESET ----- */
/* ----- (taken from http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/)----- */

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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/* ----- 1 TYPOGRAPHY ----- */

h1 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 3rem;
  color: #4a4a4a;
	line-height: 3.5rem;
}

h2 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 1.3rem;
  color: #4a4a4a;
}

h3 {
  font-family: Source Sans Pro;
  font-weight: 400;
  font-size: 1.25rem;
  color: #4a4a4a;
	line-height: 2rem;
}

h4 {
  font-family: Source Sans Pro;
  font-weight: 600;
  font-size: 1.3rem;
  color: #4a4a4a;
	line-height: 2rem;
}

h5 {
  font-family: Source Sans Pro;
  font-weight: 600;
  font-size: 1.2rem;
  color: #4a4a4a;
	line-height: 2rem;
}

p {
  font-family: Source Sans Pro;
  font-weight: 400;
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.75rem;
}

a {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 1rem;
  color: #9B9B9B;
  text-decoration: none;
}

.product-helper-text {
	font-family: Montserrat;
	letter-spacing: 0.01rem;
	line-height: 0.85rem !important;
	font-size: 0.7rem;
	color: #4a4a4a;
}

.caps-link-text {
	text-transform: uppercase;
	letter-spacing: 0.02rem;
	font-size: 0.9rem;
	font-weight: 600;
}

.product-link-text {
	letter-spacing: 0.025rem;
	font-size: 0.7rem !important;
}

.material-icons {
	font-size: 1.2rem;
	margin-right: 0.5rem;
	vertical-align: text-bottom;
	color: #A4A4A4;
}


/* ----- 2 NAVIGATION ----- */

/* ----- 3 CONTENT LAYOUT ----- */

.layout-bounds-wide {
	max-width: 1200px;
	margin: 0 auto;
}

.layout-bounds {
	max-width: 1000px;
	margin: 0 auto;
}

.clear {
  clear: both;
}

.big-header {
	height: 10rem;
}

.big-header h1 {
	color: white;
	padding-top: 6rem;
	padding-left: 3rem;
}

.home-link-with-arrow {
	margin-left: 3rem;
	margin-right: 3rem;
	text-decoration: underline;
}

.home-link-with-arrow  a {
	color: #2D81B5;
}

.home-link-with-arrow  img {
	margin-left: 0.5rem;
	height: 0.9rem;
	vertical-align: top;
}

/* -- NAV -- */

#home-navigation {
	background-color: #ffffff;
	border-bottom: 0.1rem solid #f0f0f0;
	height: 5rem;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
}

#home-navigation-contents {
	width: 100%;
	max-width: 96rem;
	margin: 0 auto;
	padding: 0;
	height: 3rem;
	width: 100%;
}

#home-navigation-logo {
	width: 20%;
	float: left;
	height: 5rem;
}

#home-navigation-logo img {
	height: 2.5rem;
	margin-top: 1.25rem;
	margin-left: 2rem;
}

#home-navigation-menu {
	width: 80%;
	float: right;
	text-align: right;
	height: 5rem;
}

#home-navigation-menu li {
	display: inline-block;
	margin-right: 2rem;
	margin-top: 2rem;
}


/* -- HERO -- */

#home-hero {
	height: 36rem;
	background-image: url("../img/hero.jpg");
	background-size: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: table;
	width: 100%;
}

#home-hero-text-container {
	vertical-align: middle;
	display: table-cell;
	overflow: wrap;
	padding-left: 3rem;
	padding-right: 3rem;
}

#home-hero-subtext {
	margin-top: 2rem;
}

/* -- THREE PREVIEWS -- */

#home-three-previews {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.home-three-previews-item {
	width: 33.333%;
	float: left;
	padding-top: 3rem;
	padding-bottom: 4rem;
}

#preview-blue-background {
	background-color: #2D81B5;
	color: white;
}

#preview-dark-blue-background {
	background-color: #1A577E;
	color: white;
}

.home-three-previews-icon img {
	height: 2.5rem;
	margin-left: 3rem;
	margin-bottom: 2rem;
}

.home-three-previews-body {
	margin: 2rem 3rem 2rem 3rem;
}

.home-three-previews-header {
	margin-left: 3rem;
	margin-right: 3rem;
}

/* -- ABOUT -- */

#home-about-covis {
	margin-top: 6rem;
	width: 100%;
}

#home-about-covis-big-logo {
	float: left;
	width: 35%;
}

#home-about-covis-big-logo img {
	height: 15rem;
	display: block;
	margin: 0 auto;
	padding: 4rem;
	padding-top: 5.5rem;
}

#home-about-covis-text {
	float: left;
	width: 65%;
}

#home-about-covis-text-container {
	padding: 4rem;
}

#home-about-covis-text-container p {
	margin-top: 2rem;
}

/* -- HOMEPAGE TIMELINE -- */

#home-covis-timeline {
	margin-top: 6rem;
	background-color: #4A4A4A;
	padding: 6rem 3rem 6rem 3rem;
}

#home-covis-timeline-big-header h1 {
	color: white;
	font-size: 2rem;
}

.full-width-image img {
	width: 100%;
	margin-top: 4rem;
	margin-bottom: 2rem;
}

.timeline-link-fixes {
	margin-left: 0;
	margin-top: -4rem;
}

.timeline-link-fixes a {
	color: #ffffff;
}

/* -- HOMEPAGE compliance -- */

#home-covis-compliance {
	margin-top: 6rem;
	background-color: #2D81B5;
	padding: 6rem 3rem 6rem 3rem;
}

#home-covis-compliance-big-header h1 {
	color: white;
	font-size: 2rem;
}

.full-width-image img {
	width: 100%;
	margin-top: 4rem;
	margin-bottom: 2rem;
}

.compliance-link-fixes {
	margin-left: 0;
	margin-top: -4rem;
}

.compliance-link-fixes a {
	color: #ffffff;
}


/* -- TEAM -- */
#home-meet-the-team-big-header {
	background-color: #2D81B5;
}

#home-meet-the-team-container {
	width: 100%;
}

.home-team-left {
	width: 40%;
	float: left;
}

.home-team-right {
	width: 60%;
	float: left;
}

#home-team-select-category-container {
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.home-team-select-category-item {
	display: inline-block;
	margin-right: 2rem;
}

.home-team-select-category-item a {
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 0.1rem;
}

.home-team-select-category-item.ui-state-active a {
	color: #4a4a4a;
	text-decoration: underline;
}

.home-team-name {
	margin-bottom: 2rem;
	border-left: 2px solid rgba(0, 0, 0, 0);
	padding-left: 1rem;
}

.home-team-name.ui-state-active {
	border-left: 2px solid #2D81B5;
	padding-left: 1rem;
}

.home-team-name h4 {
	color: #9B9B9B;
	text-decoration: none;
}

.home-team-name p {
	color: #9B9B9B;
	text-decoration: none;
}

.home-team-name.ui-state-active h4 {
	color: #4a4a4a;
}

.home-team-name.ui-state-active p {
	color: #2D81B5;
}

.home-team-right p {
	margin-left: 3rem;
	margin-right: 3rem;
}

/* -- PARTNERSHIPS -- */
#home-partnerships {
	margin-top: 6rem;
}

#home-partnerships-big-header {
	background-color: #1A577E;
}

#home-subheader {
	margin-top: 3rem;
	width: 75%;
}

#home-partnerships-container {
	margin-left: 3rem;
}

#home-partnerships-ops {
	width: 33%;
	float: left;
}

#home-partnerships-bd {
	width: 33%;
	float: left;
}

#home-partnerships-pd {
	width: 33%;
	float: left;
}

.home-partnerships-body {
	margin-top: 2rem;
	margin-right: 2rem;
}

.home-partnerships-body a {
	font-weight: 400;
	font-family: Source Sans Pro;
	font-size: 1.1rem;
	color: #1A577E;
	text-decoration: underline;
}

.home-partnerships-header {
	margin-right: 2rem;
}

#home-partnerships-container h4 {
	color: #1A577E;
}

#home-subheader h4 {
	color: #4a4a4a;
}

#home-partnerships h4 {
		margin-top: 4rem;
}

#home-partnerships-logos {
	padding-right: 3rem;
}

#home-partnerships-logos img {
	margin-top: 1rem !important;
	margin-bottom: 0rem !important;
}

/* -- PRODUCTS -- */
#home-products {
	margin-top: 6rem;
}

#home-products-big-header {
	background-color: #2D81B5;
}

#home-products-all-products {
	margin-left: 3rem;
	margin-right: 3rem;
}

#home-products-all-products h4 {
	color: #2D81B5;
}

.home-products-product {
	height: 15rem;
	width: 13rem;
	border-radius: 0.5rem;
	box-shadow: 0px 72 25px 7px rgba(0, 0, 0, .05);
	float: left;
	margin-right: 2rem;
	margin-top: 2rem;
	position: relative;
}

.home-products-product span {
	position: absolute;
	left: 1.5rem;
	bottom: 1.5rem;
	margin-right: 1.5rem;
}

.home-products-product span a {
	font-size: 0.75rem;
	letter-spacing: normal;
	text-decoration: underline;
}

.home-products-product img {
	max-width: 10rem;
	margin-left: 1.5rem;
	margin-top: 1.5rem;
}

#home-products-product-information {
	margin-top: 3rem;
	font-size: 0.8rem;
	color: #9B9B9B;
	line-height: 1rem;
}

.home-products-product-small {
	height: auto;
	width: auto;
	border-radius: 0.5rem;
	box-shadow: 0px 72 25px 7px rgba(0, 0, 0, .05);
	float: left;
	margin-right: 2rem;
	margin-top: 2rem;
	padding: 1rem 0 1rem 0;
	position: relative;
}

.home-products-product-small h5 {
	font-family: Source Sans Pro;
	font-weight: 600;
	font-size: 1.3rem;
	color: #4a4a4a;
	line-height: 2rem;
}


/* -- COPAY -- */
#home-copay {
	margin-top: 6rem;
}

#home-copay-big-header {
	background-color: #1A577E;
}

#home-copay-description {
	margin-bottom: 1rem;
}


/* -- NEWS -- */
#home-news {
	margin-top: 6rem;
}

#home-news-big-header {
	background-color: #2D81B5;
}

#home-news-all-news {
	margin-left: 3rem;
	margin-right: 3rem;
}

.news-story-headline {
	margin-top: 2rem;
}

.news-story-date {
	margin-top: 0.5rem;
	color: #9B9B9B;
}

.news-link-fixes {
	margin-left: 0rem !important;
	margin-top: 1rem;
}

.news-link-fixes a {
	color: #2D81B5;
}

/* -- CAREERS -- */
#home-careers {
	margin-top: 6rem;
}

/* ----- 4 FOOTER ----- */

#home-footer {
	margin-top: 6rem;
	background-color: #4a4a4a;
}

#home-footer-container {
	margin-top: 3rem;
	padding-bottom: 6rem;
	margin-left: 3rem;
}

#home-footer-row {
	width: 100%;
}

.home-footer-next-row {
	width: 100%;
	margin-top: 3rem;
}

.home-footer-category {
	width: 33%;
	float: left;
}

.add-height {
	height: 3.25rem;
}

.home-footer-category-title p {
	font-size: 1rem;
	color: #A4A4A4;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	line-height: 1.25rem;
	margin-bottom: 0.75rem;
}

.home-footer-category-info p {
	color: #ffffff;
	font-size: 1rem;
}

.home-footer-category-info a {
	color: #ffffff;
	font-size: 1rem;
	font-family: Source Sans Pro;
	font-weight: 400;
}

.home-footer-headquarters {
	margin-top: 5rem;
}

.home-footer-address-and-copyright {
	margin: 3rem auto;
}

#home-footer-copyright p {
	color: #A4A4A4;
	font-size: 0.8rem;
	line-height: 1.35rem;
}

.hide-on-desktop {
  visibility: hidden;
  height: 0;
  padding: 0;
  margin: 0;
}

/* -- CAREERS -- */
#home-careers {
	margin-top: 6rem;
}

#home-careers-big-header {
	background-color: #1A577E;
}

#home-careers-description {
	margin-bottom: 1rem;
}

/* ----- Dropdown ----- */

.dropdown-layout {
	display: inline-block;
}

select {
	appearance: none;
    outline: 0;
    background: #cccccc;
    background-image: none;
    color: #1a1a1a;
    cursor: pointer;
    border:1px solid black;
    border-radius:3px;
}

.dropselect {
	float: left;
	margin-top: 5px;
	margin-right: 15px;
}

.dropchoice {
	float: left;
}

#selectMe-mobile,
#selectMe-desktop {
	height: 20px;
	font-family: Source Sans Pro;
  	font-weight: 400;
  	font-size: 0.85rem;
}

.contact-list {
	margin-top: 72;
}


/* ----- 5 TIMELINE PAGE STYLING (timeline.html) ----- */
#timeline-container {
	padding: 40px 0;
}

#timeline-big-header {
	height: 15rem;
	background-color: #2D81B5;
}

#timeline-big-header h1 {
	color: white;
	padding-top: 11rem;
	padding-left: 3rem;
}

.timeline-left {
	width: 20%;
	float: left;
}

.timeline-left-container {
	padding: 3.5rem;
	text-align: right;
	position: relative;
}

.timeline-left-year {
	color: #2D81B5;
}

.timeline-dot {
	height: 1.25rem;
	width: 1.25rem;
	border-radius: 100%;
	background-color: #2D81B5;
	position: absolute;
	top: 3.5rem;
	right: -.75rem;
}

.timeline-right {
	width: 75%;
	float: left;
	border-left: 0.3rem solid #f0f0f0;
}

.timeline-right-event-container {
	padding: 3rem 3.5rem 0rem 3.5rem;
}

.timeline-event-date {
	color: #9B9B9B;
}

#margin-2017-fix {
	padding-bottom: 2rem;
}

.timeline-event-details {
	margin-top: 0rem;
}

/* ----- 5 compliance PAGE STYLING (compliance.html) ----- */
#compliance-container {}

#compliance-big-header {
	height: 15rem;
	background-color: #2D81B5;
}

#compliance-big-header h1 {
	color: white;
	padding-top: 8rem;
}

.compliance-year {}

.compliance-left {
	width: 20%;
	float: left;
}

.compliance-left-container {
	padding: 3.5rem;
	text-align: right;
	position: relative;
}

.compliance-left-year {
	color: #2D81B5;
}

.compliance-dot {
	height: 1.25rem;
	width: 1.25rem;
	border-radius: 100%;
	background-color: #2D81B5;
	position: absolute;
	top: 3.5rem;
	right: -.75rem;
}

.compliance-right {
	width: 75%;
	float: left;
	border-left: 0.3rem solid #f0f0f0;
}

.compliance-right-event-container {
	padding: 3rem 3.5rem 0rem 3.5rem;
}

.compliance-event-date {
	color: #9B9B9B;
}

#margin-2017-fix {
	padding-bottom: 2rem;
}

.compliance-event-details {
	margin-top: 0rem;
}


/* ----- 6 LAYOUT CHANGES for >1200px ----- */

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

	.big-header h1 {
		padding-left: 0rem;
	}

	#home-partnerships-container {
		margin: 0 auto;
	}

	#home-partnerships-logos {
		padding: 0rem;
	}

	#home-products-all-products {
		margin: 0 auto;
	}

	#home-news-all-news {
		margin: 0 auto;
	}

	#home-footer-container {
		margin: 0 auto;
		margin-top: 3rem;
	}

	.home-team-right p {
		margin-right: 0rem;
	}

}
