/*
 * ============================================
 * Document: Smith Housing Core CSS v1.0
 * Client: Client Name
 * ============================================
 * 01. Global (resets, page setup, variables)
 * 02. Typography (links, headings, bodytext)
 * 03. Navigation (sitewide, sectional)
 * 04. Forms (inputs, controls, validation)
 * 05. Layout (sitewide, sectional)
 * 06. Components (self-contained widgets)
 * 07. Elements (individual interface elements)
 * 08. Exceptions (unique instance overrides)
 * 09. Miscellaneous (anything else)
 */


/* 01. GLOBAL
 * ============================================
 */

/* Page Setup */
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  background-color: #f2f2f2;
}
:focus {
  outline: 3px solid #e50000;
}

/* Background Colours */
.sh-bg-blue {
  background-color: #00aeef;
}
.sh-bg-blue-l {
  background-color: #0ad6ff;
}
.sh-bg-blue-d {
  background-color: #0088ba;
}
.sh-bg-orange {
  background-color: #ffa400;
}
.sh-bg-orange-l {
  background-color: #ffcb72;
}
.sh-bg-orange-d {
  background-color: #d88900;
}
.sh-bg-black {
  background-color: #000;
}


 /* 02. TYPOGRAPHY
 * ============================================
 */

/* Links */
a {
  color: #00aeef;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: underline;
  background-color: rgba(255,203,114,0.5);
}

/* Headings */
h1 {
  font-family: 'Orbitron', Helvetica, Arial, sans-serif;
  font-weight: 400;
}
h2 {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;  /* changed font */
  font-weight: 600;
}
h3 {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
}
h4 {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 600;
}
h5,
h6 {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
}

/* Bodytext */
p,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
td {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
}
::selection {
  background-color: rgba(255,203,114,1);
}

/* Colour Options */
.sh-text-blue {
  color: #00aeef;
}
.sh-text-blue-l {
  color: #0ad6ff;
}
.sh-text-blue-d {
  color: #0088ba;
}
.sh-text-orange {
  color: #ffa400;
}
.sh-text-orange-l {
  color: #ffcb72;
}
.sh-text-orange-d {
  color: #d88900;
}
.sh-text-black {
  color: #000;
}

/* Size Options */
.sh-text-size-sm {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.1rem;
}
.sh-text-size-md {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
.sh-text-size-lg {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  line-height: 0.8rem;
}
.sh-text-size-xl {
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  line-height: 1.7rem;
}
.sh-text-size-xxl {
  margin-bottom: 1.5rem;
  font-size: 3.6rem;
  line-height: 3.6rem;
}
.sh-text-size-xxxl {
  margin-bottom: 1.25rem;
  font-size: 3.9rem;
  line-height: 3.6rem;
}
.sh-text-size-xxxxl {
  margin-bottom: 1rem;
  font-size: 4.4rem;
  line-height: 4rem;
}

/* Style Options (overrides defaults) */
.sh-text-uppercase {
  text-transform: uppercase;
}
.sh-text-italic {
  font-style: italic;
}
.sh-text-normal {
  font-style: normal;
}
.sh-text-headline {
  font-family: 'Orbitron', Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.sh-text-subhead {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 600;
}
.sh-text-title {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.sh-text-subtitle1 {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 600;
}
.sh-text-subtitle2,
.sh-text-subtitle3 {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
}


 /* 03. NAVIGATION
 * ============================================
 */

/* Sitewide */
a.skip-main {
  position: absolute;
  top: auto;
  left: -999px;
  z-index: -999;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
a.skip-main:focus {
  top: 25px;
  left: auto;
  z-index: 999;
  margin: 0 35%;
  padding: 0.25em 0;
  width: 30%;
  height: auto;
  overflow: visible;
  outline: 3px solid #fff;
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
  background: #e50000;
}
a.skip-main:hover {
  color: #000;
}
.sh-nav-key-features-large .fas {
  color:#00aeef;
}
.sh-nav-key-features-large .nav-link {
  color: #000;
  display: inline-block;
}
.sh-nav-main-large .nav-link {
  color: #000;
}
.navbar-toggler {
  padding: 0;
  font-size: 2.75rem;
  color: #000;
}
.navbar-toggler:hover {
  color: #ffa400;
  background-color: transparent;
 }
.sh-nav-small .nav-link {
  color: #000 !important;
}
.sh-nav-small .nav-link:hover {
  background-color: #ffa400;
}
.sh-footer-links .list-group-item,
.sh-social-media-links .list-group-item {
  border: none;
  background-color: transparent;
  padding: 0;
}
.sh-footer-links ul li a:hover,
.sh-social-media-links ul li a:hover {
  background-color: transparent;
}
.container-wrapper {
  margin: 60px 0 60px 0;
	position: relative;
	z-index: 2;
}


/* 04. FORMS
 * ============================================
 */

/* Inputs */
.search-box {
  border: 3px solid #e5e5e5;
  padding: 10px 20px;
  border-radius: 30px;
}
.search-box:hover {
  box-shadow: 1px 1px 8px 1px #e5e5e5;
}
.search-box:focus-within {
  box-shadow: 1px 1px 8px 1px #e5e5e5;
  outline: none;
}
.search-field {
  border: none;
  outline: none;
  width: auto;
}
@media (min-width: 1200px) {
  .search-field {
    width: 425px;
  }
}

/* Controls */
.btn {
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  font-size: 1rem;
  text-transform: none;
}
.btn-primary {
  color: #000 !important;
  background-color: #ffa400 !important;
}
.btn-primary:hover {
  color: #000;
  background-color: #ffcb72 !important;
}

/* Labels */
.labelcontact{
	color: #f26101;
	font-weight: bold;
}


 /* 05. LAYOUT
 * ============================================
 */
/* Sitewide */
.sh-w1300 {
  max-width: 1300px;
}
.sh-page-content {
  position: fixed;
  top: 143px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
}
@media (min-width: 1200px) {
  .sh-page-content {
    top: 180px;
    bottom: 0px;
  }
}
header {
  background-color: #fff;
  border-bottom: 6px solid #ffa400;
}
@media (min-width: 1200px) {
  header {
    border-bottom: none;
  }
}
main {
  background-color: #fff;
}


 /* 06. COMPONENTS
 * ============================================
 */

/* Homepage Slideshow Carousel */
#homepageCarousel .carousel-control-prev-icon,
#homepageCarousel .carousel-control-next-icon {
  width: 5rem;
  height: 5rem;
}

/* Property Listing Slideshow Carousel */
.carousel {
  margin-top: 30px;
}
.carousel-inner {
  border-radius: 15px;
}

@media (min-width: 320px) {
  .carousel-img {
    box-sizing: border-box;
    resize: horizontal;
    overflow: hidden;
    min-height: 237px;
    }
	}

@media (min-width: 480px) {
  .carousel-img {
    box-sizing: border-box;
    resize: horizontal;
    overflow: hidden;
    min-height: 710px;
    }
	}

@media (min-width: 1200px) {
  .carousel-img {
    box-sizing: border-box;
    resize: horizontal;
    overflow: hidden;
    min-height: 418px;
    }
  }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  color: #f26101;
}
.carousel-indicators li{
  background-color: #f26101;
}

.container.cards {
  margin: 30px 0;
}
.carousel-info {
  margin-bottom: 80px;
}

/* Jumbotron */
.jumbotron {
  background-color: #d9e8f5;
  padding: 20px 0 10px;
}

/* Cards */
@media (min-width: 320px) {
  .card {
		margin-bottom: 15px;
	}
}
@media (min-width: 480px) {
	.card {
		margin-bottom: 15px;
	}
}
@media (min-width: 1200px) {
  header {
    border-bottom: none;
  }
}
.card-body {
  background-color: #d9e8f5;
  border-radius: 10px;
  margin-top: 20px;
}
.card .card-body .card-text {
  color: #000;
}
.sh-card-footer-link {
  color: #000;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}
.sh-card-footer-link:hover,
.sh-card-footer-link span {
  background-color: transparent;
  color: #d88900;
}

/* Property Listings Cards */
.post-type-standard:hover {
  box-shadow: 12px 15px 20px 0px rgb(46 61 73 / 15%);
  border-radius: 4px;
  transition: all 0.3s ease;
}
figure {
	margin: 0;
}
.img-div-cover img {
	width: 100%;
	height: auto;
}
.container.cards {
  padding-bottom: 30px;
}
.container.property-cards {
  margin: 30px 0;
}
.post-img {
	position: relative;
	overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.post-img.img-div-cover img {
	width: 100%;
	height: 14rem;
	position: relative;
}
.post-img .overlay-hover {
	opacity: 0;
	z-index: 1;
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}
.post-img:hover .overlay-hover {
	opacity: 0.4;
}
.post-entry {
	position: relative;
	padding: 40px 30px;
	background-color: #d9e8f5;
}
.post-entry:after {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	-ms-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	-o-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
}
.post-entry h2,
.post-entry h3 {
	position: relative;
	font-size: 1.571428em;
	font-weight: 600;
	color: #4a4a4a;
	line-height: 1.2em;
	margin: 0 0 25px;
	padding: 0 0 11px;
	border-bottom: #e7e7e7 solid 1px;
}
.post-entry h2:after,
.post-entry h3:after {
	position: absolute;
	content: '';
	left: 0;
	bottom: -2px;
	width: 60px;
	height: 3px;
	background-color: #ffa400;
}
.post-entry h2 a,
.post-entry h3 a {
	color: #2F3136;
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}
.post-entry h2 a:hover,
.post-entry h3 a:hover {
	text-decoration: none;
	color: #2F3136;
}
.post-description {
	margin: 0 0 5px;
	overflow: hidden;
}
.post-meta ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.post-meta ul li {
	position: relative;
	display: inline;
	font-family: 'Martel Sans', sans-serif;
	font-size: 0.857142em;
	margin: 0 25px 0 0;
	white-space: nowrap;
}
.post-meta ul li:last-child {
	margin: 0;
}
.post-meta ul li:nth-child(3) span {
	margin: 0 0 0 7px;
}
.post-meta ul li:after {
	position: absolute;
	content: '';
	top: 2px;
	right: -14px;
	width: 1px;
	height: 13px;
	background-color: #e7e7e7;
}
.post-meta ul li:last-child:after {
	display: none;
}
.post-meta ul li a {
	color: #767676;
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}
.post-share {
	min-height: 55px;
	font-size: 13px;
	font-weight: 600;
	padding: 18px 30px 16px 30px;
	background-color: #91bed4;
  border-radius: 0 0 15px 15px;
}
.masonry-article-wrap {
	position: relative;
	height: 700px;
}
.sidebar-img .row {
  margin-bottom: 15px;
}

@media (min-width: 320px) {
	.masonry-article-wrap{
		height: auto;
		padding: 15px 0;
	}
}
@media (min-width: 480px) {
	.masonry-article-wrap{
		height: auto;
		padding: 15px 0;
	}
}
.masonry-article-wrap-index {
	position: relative;
	height: auto;
}
@media (min-width: 320px) {
  .masonry-article-wrap-index {
		height: auto;
		padding: 15px 0;
	}
}
@media (min-width: 480px) {
	.masonry-article-wrap-index{
		padding: 15px 0;
	}
}
.masonry-wrapper {
  padding-top: 10px;
}
.masonry-wrapper .post-entry {
	padding: 40px 30px 38px 30px;
}
.masonry-wrapper .post-type-slide .post-entry {
	padding: 30px 30px 38px 30px;
}
.masonry-wrapper .post-entry h2 {
	font-size: 1.285714em !important;
	padding: 0 0 12px !important;
}
.masonry-wrapper .post-meta ul li {
	font-size: 0.785714em;
}
.masonry-wrapper .post-meta ul li:after {
	height: 12px;
}

/* Pagination */
.pagination {
	margin: 30px 0 30px 0;
	overflow: hidden;
}
.pagination.pagination-masonry {
	margin: 0;
}
.pagination.pagination-masonry-fullwidth {
	display: table;
	margin: 30px auto;
}
.pagination.pagination-fullwidth {
	display: table;
	margin: 0 auto;
	margin-top: 30px;
}
.pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
	float: right;
}
.pagination.pagination-fullwidth ul {
	float: none;
}
.pagination ul li {
	float: left;
	margin: 0 0 0 8px;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 40px;
}
.pagination ul li:first-child {
	margin: 0;
}
.pagination ul li a {
	display: block;
  text-decoration: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #000;
	background-color: #00aeef;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.pagination ul li:hover a,
.pagination ul li.pagination-active a {
	text-decoration: none;
	color: #000;
	background-color: #0088ba;
}
.post-entry h2:after,
.pagination ul li:hover a,
.pagination ul li.pagination-active a {
	background-color: #ffa400;
	font-family: 'Open Sans', sans-serif;
}
.post-meta ul li a:hover,
.post-pagination:hover h4,
.post-pagination.pagination-prev span:before,
.post-pagination.pagination-next span:after {
	color: #d88900;
}
.overlay-hover {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

/* Property Details Property Info */
.property-info {
  margin-top: 30px;
}
.property-info h4 {
  color: #f26101;
}

.share-header {
  color: #f26101;
}

/* Property Details Buttons */
.property-buttons {
  position: absolute;
  margin: 30px 0;
}
@media (min-width: 320px) {
	.property-buttons {
		margin: 30px 0 100px 0;
	}
}
.btn.button-property {
	background-color: #91bed4;
	color: #f26101!important;
	font-weight: 600;
}

/* Property Details Media Embed */
.container.property-media {
  margin: 30px 0;
}

/* Video Container */
.video-container {
  overflow: hidden;
  position: relative;
  width:100%;
}
.video-container::after {
  padding-top: 56.25%;
  display: block;
  content: '';
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:300px;
}

.iframe-container{
  position: relative;
  width: 100%;
  padding-bottom: 20rem;
  height: 0;
}
.iframe-container iframe{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 1rem;
}

/* Contact Page Location Map */
.map-responsive{
  overflow:hidden;
  padding-bottom:56.25%;
  position:relative;
  height:0;
}
.map-responsive iframe {
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
}

/* Recent Acquisitions Cards */

.post-list article {
	border-radius: 10px;
	overflow: hidden;
	margin: 0 0 30px;
}

.post-list article:last-child {
	margin: 0;
}

.post-img .post-list-category {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	padding: 19px 30px;
	background-color: rgba(36,41,44,0.5);
	z-index: 3;

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.post-img:hover .post-list-category {
	bottom: 0 !important;
}



.post-list-category ul,
.post-media-category ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.post-list-category ul li,
.post-media-category ul li {
	position: relative;
	display: inline;
	font-size: 0.928571em;
	font-weight: 600;
	text-transform: uppercase;
	white-space: nowrap;
	margin: 0 30px 0 0;
}

.post-list-category ul li:last-child,
.post-media-category ul li:last-child {
	margin: 0;
}

.post-list-category ul li:after,
.post-media-category ul li:after {
	position: absolute;
	content: '';
	top: 0;
	right: -17px;
	width: 1px;
	height: 13px;
	background-color: #cacaca;
}

.post-list-category ul li:last-child:after,
.post-media-category ul li:last-child:after {
	display: none;
}

.post-list-category ul li a,
.post-media-category ul li a {
	color: #cacaca;

	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.post-list-category ul li a:hover,
.post-media-category ul li a:hover {
	color: #fff;
	text-decoration: none;
}

.post-list-slide {
	background-color: #576269;
}

.post-list-slide .slides li {
	border-radius: 10px 10px 0px 0px;
	overflow: hidden;
}

.post-list-slide .slides li figure {
	position: relative;
}

.post-img .post-list-category {
  padding: 19px 40px;
}

.blog-list-box {
  display: table;
  width: 100%;
}

article.post-blog-list {
	border-radius: 0px;
	overflow: inherit;
}

.blog-list-img {
	margin: 0 0 15px;
}

.blog-list-img figure {
	position: relative;
	height: 242px;
	border-radius: 10px;
	overflow: hidden;
}

.blog-list-img figure .overlay-hover {
	opacity: 0;
}

.blog-list-img figure:hover .overlay-hover {
	opacity: 0.4;
}

.post-blog-list .post-entry {
	border-radius: 10px;
	padding: 0 0 0 0 !important;
	background-color: #f5f5f5 !important;
}

.post-blog-list .post-entry:after {
	display: none;
}

.blog-list-details {
	padding: 40px 30px;
	background-color: #fff;
	border-radius: 10px 10px 10px 10px;

	-webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	-ms-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	-o-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12);
}

.post-blog-list .post-entry h2 {
	font-size: 1.285714em !important;
	padding: 0 0 12px !important;
}

.post-blog-list .post-meta ul li {
	font-size: 0.785714em;
	margin: 0 25px 0 0;
}

.post-blog-list .post-meta ul li:after {
	right: -15px;
	height: 12px;
}

.post-blog-list .post-description {
	margin: 0 0 -5px;
}

.post-blog-list .post-meta ul li:nth-child(3) span {
	margin: 0;
}

.post-blog-list .post-meta ul li:nth-child(4) span {
	margin: 0 0 0 6px;
}

.post-blog-list.post-type-video .blog-list-img figure:before,
.post-blog-list.post-type-audio .blog-list-img figure:before {
	position: absolute;
	font-family: FontAwesome;
	font-size: 30px;
	text-align: center;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	color: #fff;
	border-radius: 50%;
	background-color: rgba(36,41,44,0.6);
	z-index: 1;
}

.post-blog-list.post-type-video .blog-list-img figure:before {
	content: '\f008';
	line-height: 58px;
}

.post-blog-list.post-type-audio .blog-list-img figure:before {
	content: '\f130';
	line-height: 60px;
}

.fit-img img {
	background-repeat: no-repeat;
	background-size: cover;
	position: center center;
}

::before, ::after {
  box-sizing: border-box;
}

.blog-list-details {
  min-height: 160px;
}

.post-description {
	margin: 0 0 5px;
	overflow: hidden;
}

.post-meta ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.post-meta ul li {
	position: relative;
	display: inline;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.857142em;
	text-transform: uppercase;
	margin: 0 25px 0 0;
	white-space: nowrap;
}

.post-meta ul li:last-child {
	margin: 0;
}

.post-meta ul li:nth-child(3) span {
	margin: 0 0 0 7px;
}

.post-meta ul li:after {
	position: absolute;
	content: '';
	top: 2px;
	right: -14px;
	width: 1px;
	height: 13px;
	background-color: #e7e7e7;
}

.post-meta ul li:last-child:after {
	display: none;
}

.post-meta ul li a {
	color: #aaaaaa;

	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.post-meta ul li a:hover {
	text-decoration: none;
	color: #e7cd3b;
}

.sh-text-orange.acquisitions {
  margin-bottom: 40px;
}

@media (min-width: 480px) {
  .blog-img img {
		width: 100%;
		height: auto;
    background-position: center center;
    margin: 5px 0;
	}

  .blog-img,
  .blog-list-box .blog-entry {
    display: table-cell;
    vertical-align: top;
  }

  .post-entry h2 {
		font-size: 2em;
		padding: 0 0 9px;
	}

	.blog-list-details {
		padding: 40px;
	}
}

@media (min-width: 768px) {


  .blog-list-box {
		display: table;
		width: 100%;
	}

	.blog-img,
	.blog-list-box .blog-entry {
		display: table-cell;
		vertical-align: top;
    margin-bottom: 10px;
	}

	.blog-img img {
		width: 100%;
		height: auto;
    background-position: center center;
	}

	.post-blog-list .post-entry {
		padding: 0 0 0 0 !important;
	}

	.blog-list-details {
		min-height: 211px;
		padding: 40px 30px;
		border-radius: 10px 10px 10px 10px;

		-webkit-box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.12);
		-moz-box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.12);
		-ms-box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.12);
		-o-box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.12);
		box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.12);
	}

	.post-blog-list .post-entry h2 {
		margin: -4px 0 25px 0;
	}

	.post-blog-list .post-meta {
		margin: 0 0 -6px;
	}
}

@media (min-width: 992px) {
	.blog-list-details {
		min-height: 160px;
 }

	 .post-list-fullwidth .post-blog-list {
		width: 100%;
	}
}

@media (min-width: 1200px) {

.acquisitions-text {
  margin-top: 30px;
}

.blog-list-details {
	min-height: 211px;
	}
}

 /* 07. ELEMENTS
 * ============================================
 */

/* Logos */
.sh-header-logo a:hover,
.sh-header-emblem a:hover,
.sh-header-company-name a:hover,
.sh-footer-logo a:hover,
.sh-contact-logo a:hover {
  background-color: transparent;
}
.sh-header-logo img {
  width: 100%;
  max-width: 522px;
}
.sh-header-emblem img {
  max-height: 60px;
}
.sh-header-company-name a {
  display: none;
}
@media (min-width: 350px) {
  .sh-header-company-name a {
    display: block;
  }
}
.sh-header-company-name img {
  max-height: 40px;
}

/* Anchor Target (adds padding on click, to accomodate fixed header depth) */
.anchor-target:target {
  padding-top: 1rem;
}

/* Key Contact Info Card Header */
.contact-info{
	background-color: #ffa400;
	color:white;
	font-weight: bold;
}

/*Error page*/
.error-box-container
{
  display: block;
  padding:160px 100px 160px 100px;
  background-image:url("../img/misc/err-img.png");
  min-height:650px;
  width:100%;
  height:auto;
  background-position:top;
  background-repeat: no-repeat;
  background-size: cover;

}


 /* 08. EXCEPTIONS
 * ============================================
 */

 /* 09. MISCELLANEOUS
 * ============================================
 */
