header {
	position: relative;
	/*background-color: rgba(150, 150, 150, 0.5);*/
	/*min-width: 320px;*/
	z-index: 100;
}
@media only screen and (min-width : 1200px) {
	header {
		/*position: absolute;
		top: 0;
		bottom: 0;
		right: 0;*/
		
		/*background-size: cover;*/
		
		/*padding: 10px 40px;*/
		/*padding-left: 120px;*/
		/*width: 360px;*/
		/* overflow-y: auto; */
	}
	header::-webkit-scrollbar{
		display: none;
	}
	header::before {
		content: ' ';
		
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		
		box-shadow: 1px 2px 5px rgba(0, 0, 0, .5);
		z-index: -1;
		width: 360px;
	}
	header::after {
		content: ' ';
		
		position: fixed;
		top: 90px;
		right: 0;
		bottom: 0;
		
		background-color: rgb(255, 255, 255);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: 0 150px;
		opacity: .9;
		z-index: -1;
		width: 360px;
	}
	.not-home-page header::after {
		background-image: url('../images/aside_bg.jpg');
	}
	.page_home header::after {
		content: ' ';
		
		top: 1090px;
	}
}

header ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
header ul>li {
	margin: 0;
	padding: 0;
}
header ul>li>a {
	display: block;
	margin: 0;
	padding: 0;
}

/* header/nav items */
.header-section-nav {
	/*background-color: rgba(0, 0, 0, .35);*/
	background-color: rgba(22, 43, 64, .65);
	transition: background-color .2s, color .2s;
}
.header-section-nav.open {
	background-color: rgba(32, 91, 145, .9);
}

@media only screen and (min-width : 1200px) {
	.header-section-nav {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		
		background-clip: content-box;
		background-color: transparent;
		/*background-image: url('../images/nav_bg_gradient.png');*/
		background-repeat: no-repeat;
		background-position: 0 0;
		overflow-y: auto;
		overflow-x: hidden;
		width: 80px;
		transition: width, opacity, .3s;
		z-index: 8;
	}
	/*.header-section-nav-shadow {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		
		background-image: url('../images/nav_bg_gradient.png');
		background-repeat: no-repeat;
		background-position: 0 0;
		width: 200px;
		z-index: -2;
	}*/
	.header-section-nav::-webkit-scrollbar{
		display: none;
	}
	/*.header-section-nav .main-nav-section {
		width: 80px;
	}*/
	.header-section-nav.open {
		width: 400px;
	}
}

header .main-toggle-wrap {
	border-bottom: 1px solid transparent;
}
.header-section-nav.open .main-toggle-wrap {
	border-color: rgba(255, 255, 255, .25);
}

header a.items-toggle {
	display: flex;
	align-items: center;
	
	/*background-color: transparent;*/
	/*background-color: rgba(255, 204, 153, 0.5);*/
	
	background: transparent url('../images/nav_icon_menu.png') no-repeat 0px center;
	
	border-width: 0;
	cursor: pointer;
	height: 60px;
	margin: 0;
	padding: 0;
	padding-left: 70px;
	
	color: #fff;
	font-size: 22px;
	font-style: italic;
	font-weight 300;
	text-transform: uppercase;
}
header a.items-toggle, header a.items-toggle:link, header a.items-toggle:visited {
	/*opacity: .65;*/
}
header a.items-toggle:hover, header a.items-toggle:active, header a.items-toggle:focus {
	outline: 0;
	text-decoration: none;
}
.header-section-nav.open a.items-toggle {
	/*background-image: url('../images/nav_icon_menu_close.png');*/
	/*opacity: 1;*/
}
@media only screen and (min-width : 1200px) {
	.header-section-nav a.items-toggle {
		height: 80px;
		text-indent: -999px;
	}
	.header-section-nav.open a.items-toggle {
		text-indent: 0px;
	}
}
header .main-items-toggle .icon-label {
	display: none;
}
@media only screen and (min-width : 400px) {
	header .main-items-toggle .icon-label {
		display: block;
		padding-left: 10px;
	}
}

header .items-toggle .icon-bar-wrap {
	margin-bottom: -1px;
	/*margin-right: 5px;*/
}
header .items-toggle .icon-bar {
	background-color: #fff;
	display: block;
	width: 18px;
	height: 3px;
	/*border-bottom: 1px solid rgba(0, 0, 0, 0.75);*/
	/*border-right: 1px solid rgba(0, 0, 0, 0.75);*/
	border-radius: 4px;
}
header .items-toggle .icon-bar+.icon-bar {
	margin-top: 2px;
}
header .items-toggle .icon-bar-wrap, header .items-toggle .icon-bar-label { display: inline-block; }

header .items-wrap {
	display: none;
	z-index: 99;
}
header .nav-section.open>.items-wrap {
	display: block;
}
@media only screen and (min-width : 1200px) {
	header .items-wrap {
		display: block;
	}
}


.header-section-nav ul.main-items>li {
	position: relative;
	
	border-bottom: 1px solid transparent;
	transition: background-color .2s, color .2s;
}
.header-section-nav.open ul.main-items>li {
	border-color: rgba(255, 255, 255, .25);
}
.header-section-nav ul.main-items>li>a {
	/*background-image: url('../images/nav_icon_home.png');*/
	background-repeat: no-repeat;
	background-position: 0px center;
	
	color: #fff;
	display: block;
	font-size: 22px;
	font-weight: normal;
	height: 80px;
	line-height: 80px;
	padding-left: 80px;
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.25);
}
.header-section-nav ul.main-items>li>a, .header-section-nav ul.main-items>li>a:link, .header-section-nav ul.main-items>li>a:visited {
	color: #fff;
	/*opacity: .65;*/
}
.header-section-nav ul.main-items>li:hover, .header-section-nav ul.main-items>li:active, .header-section-nav ul.main-items>li:focus {
	background-color: #6db9ff;
}
.header-section-nav ul.main-items>li>a:hover, .header-section-nav ul.main-items>li>a:active, .header-section-nav ul.main-items>li>a:focus {
	color: #fff;
	text-decoration: none;
}
.header-section-nav ul.main-items>li>a:hover {
	/*opacity: 1;*/
}
.header-section-nav.open ul.main-items>li.has-children .expand {
	position: absolute;
	top: 0;
	right: 0;
	
	background-image: url('../images/carat_nav_open.png');
	background-repeat: no-repeat;
	background-position: center;
	height: 80px;
	opacity: .6;
	width: 58px;
}
.header-section-nav.open ul.main-items>li.has-children .expand:hover {
	opacity: 1;
}
.header-section-nav.open ul.main-items>li.has-children.open .expand {
	background-image: url('../images/carat_nav_close.png');
	opacity: 1;
}
.header-section-nav ul.main-items>li.open>a {
	border-bottom: 1px solid rgba(255, 255, 255, .25);
}

@media only screen and (min-width : 1200px) {
	.header-section-nav ul.main-items>li>a {
		text-indent: -999px;
	}
	.header-section-nav.open ul.main-items>li>a {
		text-indent: 0px;
	}
}
.header-section-nav .nav_home>a {
	background-image: url('../images/nav_icon_home.png');
}
.header-section-nav .nav_about-dianne>a {
	background-image: url('../images/nav_icon_about.png');
}
.header-section-nav .nav_issues>a {
	background-image: url('../images/nav_icon_issues.png');
}
.header-section-nav .nav_for-students>a {
	background-image: url('../images/nav_icon_students.png');
}
.header-section-nav .nav_services>a {
	background-image: url('../images/nav_icon_services.png');
}
.header-section-nav .nav_news-room>a {
	background-image: url('../images/nav_icon_news.png');
}
.header-section-nav .nav_fighting-for-florida>a {
	background-image: url('../images/nav_icon_florida.png');
}
.header-section-nav .nav_contact>a {
	background-image: url('../images/nav_icon_contact.png');
}

.header-section-nav .nav_search form {
	position: relative;
	
	display: flex;
	align-items: center;
	
	background-image: url('../images/nav_icon_search.png');
	background-repeat: no-repeat;
	background-position: 0px center;
	
	/*color: #fff;*/
	font-size: 22px;
	font-weight: normal;
	height: 80px;
	/*line-height: 80px;*/
	padding: 0 18px 0 80px;
	/*opacity: .65;*/
}
/*.header-section-nav .nav_search form:hover {
	opacity: 1;
}*/
.header-section-nav .nav_search label {
	color: #fff;
	display: none;
}
.header-section-nav .nav_search input {
	border: 0;
	border-radius: 5px;
	height: 50px;
	line-height: 50px;
	padding: 0 10px;
	width: 100%;
}
.header-section-nav .nav_search button {
	position: absolute;
	top: 0;
	right: 18px;
	bottom: 0;
	
	background: transparent url('../images/carat_newsletter.png') no-repeat center center;
	border: 0;
	border-radius: 0 3px 3px 0;
	display: none;
	text-indent: -9999px;
	width: 38px;
}
.header-section-nav .nav_search button:active, .header-section-nav .nav_search button:focus { outline: 0; }

.header-section-nav .nav_search input, .header-section-nav .nav_search button { display: none; }
.header-section-nav.open .nav_search input, .header-section-nav.open .nav_search button { display: block; }

.header-section-nav .main-items>li>ul.child-items {
	display: none;
	padding: 20px 20px 20px 60px;
}
.header-section-nav.open .main-items>li.has-children.open>ul.child-items {
	display: block;
}
.header-section-nav ul.child-items>li>a {
	background: transparent url('../images/carat_nav_right.png') no-repeat left center;
	color: #fff;
	display: block;
	font-size: 20px;
	font-weight: normal;
	height: 40px;
	line-height: 40px;
	padding-left: 22px;
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
	transition: background-color .2s, color .2s;
}
.header-section-nav ul.child-items>li>a, .header-section-nav ul.child-items>li>a:link, .header-section-nav ul.child-items>li>a:visited {
	color: #fff;
	opacity: .65;
}
.header-section-nav ul.child-items>li>a:hover, .header-section-nav ul.child-items>li>a:active, .header-section-nav ul.child-items>li>a:focus {
	color: #fff;
	opacity: 1;
	text-decoration: none;
}

/* header/site title */
.site-title a {
	background: transparent url('../images/logo_dianne_feinstein_color.png') no-repeat scroll center center;
	background-size: 90%;
	
	display: block;
	height: 140px;
	text-indent: -9999px;
}
@media (min-width: 562px) {
	.site-title a {
		background-size: auto;
	}
}
@media only screen and (min-width : 1200px) {
	.site-title a {
		height: 169px;
	}
}


/* SOCIAL */
.header-section-social {
	display: none;
	display: flex;
	align-items: center;
}
/*@media only screen and (min-width : 391px) {
	.header-section-social {
		display: flex;
	}
}*/
@media only screen and (max-width : 1199px) {
	.header-section-social {
		position: absolute;
		top: 0;
		right: 0;
	}
}
.header-section-social .social-link {
	display: inline-block;
	
	background-position: center center;
	background-repeat: no-repeat;
	border-color: rgba(255, 255, 255, .25);
	border-style: solid;
	border-width: 0 0 0 1px;
	height: 60px;
	text-indent: -9999px;
	width: 60px;
}
.header-section-social .social-link, .header-section-social .social-link:link, .header-section-social .social-link:visited {
	background-color: transparent;
}
.header-section-social .social-link:hover, .header-section-social .social-link:active, .header-section-social .social-link:focus {
	background-color: rgba(255, 255, 255, .15);
}
@media only screen and (min-width : 1200px) {
	.header-section-social {
		position: fixed;
		top: 0;
		right: 0;
		
		height: 90px;
		width: 360px;
		
		background-color: rgba(22, 43, 64, .65);
		/*justify-content: space-between;*/
	}
	.header-section-social .social-link {
		border-color: rgba(255, 255, 255, .25);
		border-width: 0;
		border-right-width: 1px;
		height: 90px;
		width: 90px;
	}
}
/*.header-section-social .social-link, .header-section-social .social-link:link, .header-section-social .social-link:visited {
	background-position: top center;
}*/
/*.header-section-social .social-link:hover, .header-section-social .social-link:active, .header-section-social .social-link:focus {
	background-position: bottom center;
}*/
.header-section-social .social-link-spanish {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1em;
    text-align: center;
    text-shadow: 1px 1px 0px rgba(0, 55, 125, 0.5);
    text-transform: uppercase;
    text-indent: 0px;
}
.header-section-social .social-link-facebook {
	background-image: url('../images/social_icon_facebook.png');
}
.header-section-social .social-link-flickr {
	background-image: url('../images/social_icon_flickr.png');
}
.header-section-social .social-link-flipboard {
	background-image: url('../images/social_icon_flipboard.png');
}
.header-section-social .social-link-instagram {
	background-image: url('../images/social_icon_instagram.png');
}
.header-section-social .social-link-newsletter {
	background-image: url('../images/social_icon_email.png');
}
.header-section-social .social-link-twitter {
	background-image: url('../images/social_icon_twitter.png');
}
.header-section-social .social-link-youtube {
	background-image: url('../images/social_icon_youtube.png');
}
.header-section-social .social-link-rss {
	background-image: url('../images/social_icon_rss.png');
}


/* SERVCES */
.header-section-services {
	display: none;
	max-width: 970px;
	margin: 0 auto;
	padding: 0 20px;
}
.page_home .header-section-services {
	display: block;
}
@media (min-width: 1200px) {
	.header-section-services {
		position: fixed;
		top: 90px;
		right: 0;
		
		height: 290px;
		margin: 0;
		padding: 0;
		width: 360px;
	}
}
.header-section-services .service-title {
	display: none;
}

.header-section-services .service-title h2 {
	color: #262626;
	font-family: 'Paytone One';
	font-size: 22px;
	/*letter-spacing: 1.5px;*/
	line-height: 24px;
	margin: 0;
	/*text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);*/
	text-transform: uppercase;
}
@media (min-width: 1200px) {
	.header-section-services .service-title {
		display: block;
	}
	.header-section-services .service-title h2 {
		background-color: rgba(255, 255, 255, .9);
		font-weight: 500;
		height: 50px;
		line-height: 50px;
		text-align: center;
		width: 360px;
	}
	/*.header-section-services .service-title::before, .header-section-services .service-title::after {
		content: none;
	}*/
}

.header-section-services .service-items {
	display: flex;
	flex-flow: row wrap;
	/*justify-content: space-between;*/
	/*align-items: stretch;*/
	/*align-content: center;*/
}
.header-section-services .service-items .service-item {
	position: relative;
	flex-grow: 1;
	/*max-width: 150px;*/
	width: 33%;
}
@media only screen and (min-width : 640px) {
	.header-section-services .service-items .service-item {
		width: auto;
	}
}
@media only screen and (min-width : 1200px) {
	.header-section-services .service-items .service-item {
		height: 120px;
		margin: 0;
		width: 120px;
	}
}
.header-section-services .service-items .service-item::before{
	content: " ";
	
	display:block;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	box-shadow: -1px -1px rgba(255, 255, 255, .35) inset;
	opacity: .9;
	padding-top:100%;
}
.californians-service-item::before { background-image: url('../images/service_californians.jpg'); }
.contact-service-item::before { background-image: url('../images/service_contact.jpg'); }
.casework-service-item::before { background-image: url('../images/service_casework.png'); }
.flag-requests-service-item::before { background-image: url('../images/service_flag-requests.jpg'); }
.visit-service-item::before { background-image: url('../images/service_visit.jpg'); }
.grants-service-item::before { background-image: url('../images/service_grants.jpg'); }
.breakfast-service-item::before { background-image: url('../images/service_breakfast.jpg'); }

.header-section-services .service-items .service-item a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 900;
	line-height: 1em;
	overflow: hidden;
	text-align: center;
	text-shadow: 1px 1px 0px rgba(0, 55, 125, 0.5);
	text-transform: uppercase;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.header-section-services .service-items .service-item a, .header-section-services .service-items .service-item a:link, .header-section-services .service-items .service-item a:visited {
	color: #fff;
}
.header-section-services .service-items .service-item a:hover, .header-section-services .service-items .service-item a:active, .header-section-services .service-items .service-item a:focus {
	background-color: rgba(255, 255, 255, .15);
	color: #fff;
	text-decoration: none;
}
.header-section-services .service-items .service-item a span {
	padding: 0 0;
}
.header-section-services .service-items .service-item a span em {
	font-style: italic;
	font-weight: 400;
}

.header-section-services > div.service-items > div.service-item.casework-service-item > a > span {
	font-size: 15px;
}

@media only screen and (max-width : 991px) {
	.header-section-services .service-items .service-item a .abbrev { display: none; }
}

@media (min-width: 1200px) {
	.header-section-services .service-items .service-item a {
		border-width: 0;
	}
}



/* SUBSCRIBE */

.header-section-subscribe {
	display: none;
	max-width: 970px;
	margin: 0 auto;
	padding: 0 20px;
}
.page_home .header-section-subscribe {
	display: block;
}
@media (max-width: 1199px) {
	.header-section-subscribe {
		margin-top: 20px;
	}
}
@media (min-width: 1200px) {
	.header-section-subscribe {
		position: fixed;
		top: 380px;
		right: 0;
		
		height: 120px;
		margin: 0;
		padding: 0;
		width: 360px;
	}
}

.header-section-subscribe .subscribe-inner {
	position: relative;
	/*background-color: #1c88f2;*/
	padding: 15px;
}

.header-section-subscribe .subscribe-inner::before{
	content: " ";
	
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	
	display:block;
	background-color: #1c88f2;
	opacity: .9;
}

.header-section-subscribe .subscribe-title {
	display: block;
}
.header-section-subscribe .subscribe-title h2 {
	color: #fff;
	font-family: 'Paytone One';
	font-size: 22px;
	height: 40px;
	line-height: 24px;
	margin: 0;
	text-transform: uppercase;
}
@media (min-width: 1200px) {
	.header-section-subscribe .subscribe-title h2 {
		text-align: center;
	}
}
.header-section-subscribe .subscribe-items {
	display: flex;
	flex-flow: row wrap;
	/*justify-content: space-between;*/
	/*align-items: stretch;*/
	/*align-content: center;*/
}

.header-section-subscribe form {
	position: relative;
	
	display: block;
	height: 50px;
	margin: 0;
	padding: 0;
}
.header-section-subscribe label {
	display: none;
}
.header-section-subscribe input {
	border: 0;
	height: 50px;
	line-height: 50px;
}
.header-section-subscribe .subscribe-btn {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	
	background: transparent url('../images/carat_newsletter.png') no-repeat center center;
	border: 0;
	border-radius: 0 3px 3px 0;
	text-indent: -9999px;
	width: 38px;
}
/*@media only screen and (min-width : 860px) {
	.header-section-subscribe .home-card-block {
		display: flex;
		flex-direction: row;
		align-items: center;
		padding-left: 60px;
	}
	.header-section-subscribe .home-card-block h3, .header-section-subscribe .home-card-block form {
		flex-grow: 1;
		flex-basis: 0%;
	}
	.header-section-subscribe .home-card-block h3 {
		padding: 0;
	}
}*/





/* OFFICES */
.header-section-offices {
	position: fixed;
	top: 500px;
	right: 0;
	z-index: 99;
	
	display: none;
	height: 710px;
	opacity: .9;
	width: 360px;
}
@media only screen and (min-width : 1200px) {
	.header-section-offices {
		display: block;
	}
}
.header-section-offices::before {
	content: " ";
	
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	
	background: transparent url('../images/offices_bg.png') no-repeat scroll top center;
}
.header-section-offices h2.offices-title {
	color: #262626;
	height: 70px;
	font-family: 'Paytone One';
	font-size: 22px;
	font-weight: 500;
	line-height: 70px;
	margin: 0;
	text-align: center;
	text-transform: uppercase;
	width: 360px;
}

.header-section-offices .offices-map {
	position: relative;
	
	margin: 0;
	padding: 0 30px;
}
.header-section-offices .office-pins {}
.header-section-offices .office-pin {
	position: absolute;
	top: 0px;
	left: 0px;
	
	background-color: transparent;
	background-position: top center;
	background-repeat: no-repeat;
	cursor: pointer;
	display: block;
	height: 40px;
	width: 40px;
}
.header-section-offices .office-pin-san-francisco {
	top: 104px;
	left: 66px;
}
.header-section-offices .office-pin-los-angeles {
	top: 219px;
	left: 163px;
}
.header-section-offices .office-pin-san-diego {
	top: 250px;
	left: 194px;
}
.header-section-offices .office-pin-fresno {
	top: 133px;
	left: 130px;
}

.header-section-offices .offices-map[data-office='san-francisco'] .office-pin-san-francisco
, .header-section-offices .offices-map[data-office='los-angeles'] .office-pin-los-angeles
, .header-section-offices .offices-map[data-office='san-diego'] .office-pin-san-diego
, .header-section-offices .offices-map[data-office='fresno'] .office-pin-fresno {
	background-image: url('../images/icon_star_red.png');
}

.header-section-offices .office-items {
	display: block;
	text-align: right;
}
.header-section-offices .office-item {
	position: relative;
	display: inline-block;
	z-index: 0;
	
	font-size: 20px;
	font-style: italic;
	line-height: 36px;
	margin: 0 -10px;
	padding: 0 10px;
}
.offices-map a.office-item, .offices-map a.office-item:link, .offices-map a.office-item:visited, .offices-map a.office-item:active, .offices-map a.office-item:focus {
	color: #262626;
	text-decoration: none;
	transition: background-color 0s, color 0s;
}
.offices-map a.office-item:hover {
	color: #da0000;
	text-decoration: none;
}
.offices-map[data-office='san-francisco'] a.office-item-san-francisco
, .offices-map[data-office='san-francisco'] a.office-item-san-francisco:hover
, .offices-map[data-office='los-angeles'] a.office-item-los-angeles
, .offices-map[data-office='los-angeles'] a.office-item-los-angeles:hover
, .offices-map[data-office='san-diego'] a.office-item-san-diego
, .offices-map[data-office='san-diego'] a.office-item-san-diego:hover
, .offices-map[data-office='fresno'] a.office-item-fresno
, .offices-map[data-office='fresno'] a.office-item-fresno:hover
, .offices-map[data-office='washington'] a.office-item-washington
, .offices-map[data-office='washington'] a.office-item-washington:hover {
	color: #fff;
}
.offices-map[data-office='san-francisco'] a.office-item-san-francisco span::before
, .offices-map[data-office='los-angeles'] a.office-item-los-angeles span::before
, .offices-map[data-office='san-diego'] a.office-item-san-diego span::before
, .offices-map[data-office='fresno'] a.office-item-fresno span::before
, .offices-map[data-office='washington'] a.office-item-washington span::before {
	content: '';
	
	position: absolute;
	top: 0;
	left: -36px;
	
	border-color: transparent;
	border-right-color: #da0000;
	border-style: solid;
	border-width: 18px;
	height: 0;
}
.offices-map[data-office='san-francisco'] a.office-item-san-francisco span::after
, .offices-map[data-office='los-angeles'] a.office-item-los-angeles span::after
, .offices-map[data-office='san-diego'] a.office-item-san-diego span::after
, .offices-map[data-office='fresno'] a.office-item-fresno span::after
, .offices-map[data-office='washington'] a.office-item-washington span::after {
	content: '';
	
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	
	border-color: #da0000;
	border-width: 18px;
	border-style: solid;
	z-index: -1;
}

.header-section-offices .office-info {
	position: absolute;
	/*top: -150px;*/
	right: 340px;
	bottom: -50px;
	
	display: none;
	
	background-color: #fff;
	background-position: top center;
	background-repeat: no-repeat;
	/*background-size: cover;*/
	border-left: 10px solid #da0000;
	font-size: 18px;
	line-height: 24px;
	min-height: 330px;
	padding: 30px;
	width: 440px;
	
	box-shadow: 5px 5px 10px rgba(0, 0, 0, .5);
}
.header-section-offices .offices-map.show-info[data-office='san-francisco'] .office-info-san-francisco
, .header-section-offices .offices-map.show-info[data-office='los-angeles'] .office-info-los-angeles
, .header-section-offices .offices-map.show-info[data-office='san-diego'] .office-info-san-diego
, .header-section-offices .offices-map.show-info[data-office='fresno'] .office-info-fresno
, .header-section-offices .offices-map.show-info[data-office='washington'] .office-info-washington {
	display: block;
}
.header-section-offices .office-info-san-francisco {
	background-image: url('../images/office_bg_san-francisco.jpg');
}
.header-section-offices .office-info-los-angeles {
	background-image: url('../images/office_bg_los-angeles.jpg');
}
.header-section-offices .office-info-san-diego {
	background-image: url('../images/office_bg_san-diego.jpg');
}
.header-section-offices .office-info-fresno {
	background-image: url('../images/office_bg_fresno.jpg');
}
.header-section-offices .office-info-washington {
	background-image: url('../images/office_bg_washington.jpg');
}

.header-section-offices .office-info h3 {
	font-size: 30px;
	font-weight: 900;
	margin-top: 220px;
	text-transform: uppercase;
}
.header-section-offices .office-info h3 span {
	font-style: italic;
	font-weight: 300;
	text-transform: initial;
}
.header-section-offices .office-info h4 {
	border: 0;
	font-size: 18px;
	line-height: 24px;
	margin: 0;
	margin-top: .66em;
	padding: 0;
	text-transform: initial;
}

.office-info-btn {
	border-radius: 2px;
	display: block;
	font-size: 20px;
	font-style: italic;
	font-weight: 300;
	height: 50px;
	line-height: 50px;
	margin: 0;
	margin-top: 1em;
	padding: 0 26px;
	text-transform: lowercase;
	width: 100%;
}
.office-info-btn span {
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}
a.office-info-btn, a.office-info-btn:link, a.office-info-btn:visited {
	background-color: #0084ff;
	color: #fff;
}
a.office-info-btn:hover, a.office-info-btn:active, a.office-info-btn:focus {
	background-color: #da0000;
	color: #fff;
	text-decoration: none;
}
.office-info .close-btn {
	font-size: 40px;
	font-weight: 300;
	float: right;
	height: 30px;
	line-height: 30px;
	margin: -15px -15px 0 0;
	outline: 0;
	width: 30px;
}
.office-info .close-btn:hover, .office-info .close-btn:active, .office-info .close-btn:focus {
	background-color: transparent;
	outline: 0;
}

/* RELATED LINKS */
@media only screen and (min-width : 1200px) {
	.header-section-related-links {
		position: fixed;
		top: 90px;
		right: 0;
		
		display: block;
		padding: 10px 30px;
		width: 360px;
	}
	.header-section-related-links h3 {
		border-color: #262626;
		color: #262626;
		text-align: center;
	}
	.header-section-related-links ul li a {
		border-bottom: 1px dashed #a0a0a0;
		color: #262626;
	}
	.header-section-related-links ul li a:link, .header-section-related-links ul li a:visited {
		color: #262626;
	}
	.header-section-related-links ul li a:hover, .header-section-related-links ul li a:active, .header-section-related-links ul li a:focus {
		color: #666;
	}
	.header-section-related-links ul li:last-child a {}
}

.header-section-social .social-link{
	width: 45px;
	background-size: contain;
}
.espanol-button{
	display: flex;
	align-items: center;
	color: white;
	width: 55px;
	height: 60px;
	text-align: center;
	font-size: x-small;
	line-height: 1em;
	text-transform: uppercase;
}
	.espanol-button:active, .espanol-button:hover, .espanol-button:focus{
		text-decoration: none;
		color: white;
		background-color: rgba(255, 255, 255, .15);
	}
	@media only screen and (min-width: 1200px){
		.espanol-button{
			position: static;
			font-size: initial;
			width: 100px;
			height: 90px;
			padding-left: 10px;
		}
		.header-section-social .social-link{
			width: 65px;
		}
	}