
/*Boiler plate styles */
/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, sans-serif; /* Choose your brand font */
  font-size: 16px;
  line-height: 1.6;
  color: #333; /* Neutral dark text */
  background-color: #f9f9f9; /* Light background */
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif; /* For headings if different from body */
  color: #222; /* Slightly darker for emphasis */
  line-height: 1.3;
  margin: 1rem 0 0.5rem;    
    font-weight: 700;
}

p {
  font-family: 'Roboto', Arial, sans-serif; /* Choose your brand font */
  font-size: 25px;
  line-height: 1.6;
  color: #333; /* Neutral dark text */
  margin: 0 0 1rem;
  padding: 0;
}

a {
  color: #0077cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: #005999; /* Darker hover state */
}

ul, ol {
  margin: 0 0 1rem 1.5rem;
  padding: 0;
}

li {
  font-family: 'Roboto', Arial, sans-serif; /* Choose your brand font */
  font-size: 25px;
  line-height: 1.6;
  color: #333; /* Neutral dark text */
  margin-bottom: 0.5rem;
  padding: 0;
    
}

blockquote {
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  background-color: #f0f0f0;
  border-left: 4px solid #ccc;
  font-style: italic;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem 0;
}

code, pre {
  font-family: 'Courier New', Courier, monospace;
  background-color: #f4f4f4;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}

pre {
  overflow-x: auto;
  padding: 1rem;
}
.smallprint{
    font-size: 1rem;
}
/* Responsive Typography */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.4rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-bold {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

/*Page top extras*/
/*Back to top button*/
.top-link {
  	transition: all .25s ease-in-out;
  	position: fixed;
  	bottom: 0;
  	right: 0;
  	display: inline-flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	margin: 0 0.5em 0.5em 0;
	padding: .25em;
	width: 55px;
	height: 55px;
	z-index:1;
}
  
.top-link.show {
    visibility: visible;
    opacity: 1;
  }
  
.top-link.hide {
    visibility: hidden;
    opacity: 0;
}

svg {
	fill: #000;
	width: 24px;
	height: 12px;
}

svg:hover {
		background-color: #E8E8E8;
}

svg {
	fill: #000000;
}
/*end back to top button*/

/*Index Styles*/
/*-------------------------------------------Brand-----*/
.header{
	margin-top:2rem;
	margin-bottom:2rem;
}
.color-blocks{
	margin-right:0;
}
.square{
	height: 45px;
  	width: 45px;
	margin:2rem 0.5rem 0 0.5rem;
}
.square.orange{
	background-color:#D85100;
}
.square.dark-gray{
	background-color:#333333;
}
.square.light-gray{
	background-color:#D3D3D3;
}
hr{
	border-bottom:3px solid #d3d3d3;
}
/*-------------------------------------------Content Body-----*/

a {
	color:#25839F;
	text-decoration:  none;
	border-bottom:none;
}
a:hover{
	color:#D85100;
	text-decoration: none;
	border-bottom:2px solid #D85100;
}
a:visited{
	color: #333333;
	text-decoration: none;
	border-bottom:none;
}

brand a{
	text-decoration:none;
	
}
brand a:hover{
	text-decoration:none;
}
brand a:visited{
	text-decoration:none;
}
.project-text a{
	color:#D85100;
	text-decoration:  none;
	border-bottom:2px solid #D85100;
}
.project-text a:hover{
	color:#D85100;
	text-decoration:  none;
	border-bottom:2px solid #D85100;
}
.project-text a:visited{
	color:#25839F;
	text-decoration:  none;
	border-bottom:none;
}
h2 a{
	color:#333333;
	text-decoration: none;
}
h2 a:hover{
	color:#25839F;
	text-decoration: underline;
}
h2 a:visited{
	color:#333333;
	text-decoration: none;
}

a h3 {
	color:#333;
}
a:hover h3{
	color:#25839F;
	text-decoration:underline;
}
a:visited h3{
	color:#333;
	text-decoration:none;
	
}

.card-section > a{
	border-bottom:none;
	color:#25839F;
}
.card-section > a:hover{
	border-bottom:2px solid #D85100;
	color:#D85100;
}
.card-section > a:visited{
	border-bottom:none;
	color:#333333;
}


.row-wrapper{
	padding:1.5rem;
}
.special-row-wrapper{
	min-height:28rem;
	background-color:#D85100; 
	padding:3rem;
}
a.button{
	background-color: #247E99;
  	color: #ffffff;
	text-decoration:none;
}
a.button:hover{
	background-color:#1A5C70;
	color:#ffffff;
	text-decoration: none;
}
a.button.large{
	background-color: #ffffff;
  	color: #247E99;
	font-weight: bold;
}
a.button.large:hover{
	background-color: #D3D3D3;
	text-decoration: none;
}
.button-wrapper{
	margin-top:10rem;
}
.button-wrapper.plus{
	margin-top:11rem;
}
.zoom {
  transition: transform .2s;
  height: 200px;
  margin: 0 auto;
}

.zoom:hover {
  -ms-transform: scale(1.1, 1.1); /* IE 9 */
  -webkit-transform: scale(1.1, 1.1); /* Safari 3-8 */
  transform: scale(1.1, 1.1); 
}
/*----------------------------------------------------------Footer-----*/
.brand-logos{
	background-color:#D3D3D3;
	padding:1rem;
	text-align: center;
	margin-top:5rem;
	margin-bottom:2rem;
}

.footer-button a{
	width:100%;
	line-height:1.4;
}
.footer-nav{
	padding-top:1rem;
	padding-bottom:2rem;
}
.footer{
	padding:3rem;
}
.menu a{
	line-height: 1;
	text-decoration:none;
	display:block;
	padding:0.7rem 1rem;
	color:#333333;
	font-size: 1rem;
}
.menu a:hover{
	color:#25839F;
	text-decoration: none;
}
.menu a:visited{
	color:#D3D3D3;
	text-decoration: none;
}

/*------------------------------------------------------Listing styles*/
h2.organization{
	width:100%;
	text-align: center;
	background-color:#247E99;
	font-weight: bold;
	color:#fff;
	padding:0.25rem;
	margin-bottom:2rem;
}
.row-wrapper.listing{
	min-height:31rem;
}
.row-wrapper.listing.plus{
	margin-top:4rem;
	min-height:23rem;
}
.row-wrapper.listing.less{
	min-height:23rem;
}

/*------------------------------------------------------Project styles-----*/
.project-gallery{
	margin-left:0;
}
.project-header{
	Margin:1rem 0;
}
.orbit-wrapper{
	height:34.875rem;
}
.orbit-caption{
	background-color:rgba(10, 10, 10, 0.75);
}
.orbit-previous, .orbit-next{
	background-color:rgba(37, 131, 159, 0.5);
}
.orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus{
	background-color: rgba(37, 131, 159, 0.95);
}
/*small gallery*/
.orbit-wrapper.small{
	height:26.875rem;
}
.orbit-wrapper.small.nine{
	height:36.25rem;
}
/*----------------------------------------------------------Media Queries-----*/
/*TV*/
@media screen and (min-width: 86em){
	.special-row-wrapper{
		min-height:32rem;
	}
}
/*Desktop*/

/*Laptop and iPad Pro horizontal*/
@media screen and (min-width:64em) and (max-width:85.375em){
	h2{
		font-size:2rem;
	}
	h3{
		font-size:1.65rem;
		line-height:1.3;
	}
	p{
		line-height: 1.4;
	}
	.button-wrapper{
		margin-top:8rem;
	}
	.special-row-wrapper{
		min-height:23.5rem;
	}
	.footer{
		padding:2rem;
	}
	.brand-logos{
		margin-top:2rem;
		margin-bottom:2rem;
	}
}
/*iPad and iPad Pro vertical*/
@media screen and (min-width:40em) and (max-width:63.9375em){
	
	h2{
		font-size:1.85rem;
	}
	h3{
		font-size:1.5rem;
		line-height:1.1;
	}
	p{
		line-height: 1.4;
	}
	.button-wrapper{
		margin-top:0;
	}
	.row-wrapper{
		padding:0.5rem;
	}
	.zoom {
	  transition:none;
	  height: 340px;
	  margin: 0 auto;
	}

	.zoom:hover {
	  -ms-transform: scale(1, 1); /* IE 9 */
	  -webkit-transform: scale(1, 1); /* Safari 3-8 */
	  transform: scale(1, 1); 
}
	.special-row-wrapper{
		min-height:23.5rem;
		margin-bottom:1rem;
	}
	.brand-logos{
		margin-top:2rem;
		margin-bottom:2rem;
	}
	.footer{
		padding:1rem;
	}
	.footer-button a.button{
		line-height:1.25;
	}
	
}
/*iPhone*/
@media screen and (min-width:20em) and (max-width:39.9375em){
	
	.zoom {
	  transition:none;
	  height: 340px;
	  margin: 0 auto;
	}

	.zoom:hover {
	  -ms-transform: scale(1, 1); /* IE 9 */
	  -webkit-transform: scale(1, 1); /* Safari 3-8 */
	  transform: scale(1, 1); 
	}
	.button-wrapper{
		margin-top:0;
	}
	.row-wrapper{
		padding:1rem;
	}
	.special-row-wrapper{
		padding:2rem 0 0 0;
		margin-bottom:0.5rem;
	}
	.brand-logos{
		margin-top:1rem;
		margin-bottom:1rem;
	}
	.menu a{
		padding:0.5rem;
	}
}
