@font-face { 
font-family: "Open Sans"; 
	src: url("../fonts/open_sans/static/OpenSans-Regular.ttf"); 
}

@font-face { 
font-family: "Open Sans Bold"; 
	src: url("../fonts/open_sans/static/OpenSans_Condensed-Bold.ttf"); 
}

p, h1, h2, h3, h4, h5, h6 {
	font-family: "Open Sans";
	letter-spacing: 0.1em;
	word-spacing: .4rem;
}

h1, h2 {
	font-family: "Open Sans Bold";
	font-style: bold;
	color: #800100;
}

h1 {
	font-size: 3rem;
	margin-top: 0px;
	margin-bottom: -10px;
}

p {
	padding: 10px 3%;
}

a {
	color: #800100;
}

img {
	border: 3px solid #800100;
}

.video-wrapper {
	/*width: 100%;*/
	position: relative;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	height: 0;
	overflow: hidden;
}

.responsive-iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.pic-right {
	margin-left: 20%;
}

.link{
	/*padding: 15px 30px;*/
	/*margin: 10px;*/
	display: inline-block;
	color: #000;
	background: #fff;
  text-decoration: none;
}

.link:hover{
	text-decoration: none;
	color: #000;
}

/*===================*/
/* SHRINK EFFECT
/*===================*/

.shrink-on-hover {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.shrink-on-hover:hover, .shrink-on-hover:focus, .shrink-on-hover:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
