/*
 ----------------------------- 
 These are the Custom styles created by Savio Designs
 https://saviodesigns.com
 Project Manager: Chris Knabenshue

Website Fonts: Google Fonts: Poly   Signature Font: Halo Handletter

Book Colors:
Green: rgb(0,115,86);
Biege: rgb(255,247,224);
Red: rgb(192,0,37);

Old Site Colors:
Orange rgb(225,127,0);
Red: rgb(153,0,0);
New Site Red: rgba(141,0,0,1.00);
Grey Text: #a9a9a9 (Darkgray) rgb(169,169,169)
 -----------------------------
*/


/*
******************************
     Title/Font Rules
******************************
*/

.font110 {
	font-size: 110%;
}

.font120 {
	font-size: 120%;
}

.font130 {
	font-size: 130%;
}

.font140 {
	font-size: 140%;
}

.font150 {
	font-size: 150%;
}


/*
******************************
 Borders and Column Properties
******************************
*/

.headercolumn {
	border-bottom: medium;
	border-bottom-style: solid;
	border-bottom-color: rgba(141,0,0,1.00);
	background-image: url("../images/blackbg.jpg");
	background-size: cover;
}

.contentcolumn {
	background-image: url("../images/whitebg.jpg");
	background-repeat: repeat;
}



.footercolumn {
	border-top: medium;
	border-top-style: solid;
	border-top-color: rgba(141,0,0,1.00);
	color: #B9B2B2;
	background-image: url("../images/blackbg.jpg");
	background-size: cover;
}

.footercolumn a {
	color: white;
}

.box {
	border-style: solid;
	border-width: 3px;
	border-color: darkgrey;
	border-spacing: 10%;
	margin-top: 5%;
	margin-left: 10%;
	margin-right: 10%;
	padding: 1em;
}

/*
******************************
     Responsive YouTube
******************************
*/

.outer-div {
      width: 100%;
      text-align: center;
      }

.video-host {
	max-width: 800px; 
	margin: auto;
}

.video-actorstudio {
	max-width: 800px; 
	margin: auto;
}

.video-bookinterview {
	max-width: 1000px; 
	margin: auto;
}

/*
--------------------------------------------------------
 Sticky elements. Sticky elements act like elements
 that are "position: fixed" when they are full-width.
 When an element is not full-width, and has an adjacent
 element that is not set to "sticky", the sticky
 element will stick in view until a taller sibling
 element has been scrolled its full height. 

This is used for the side menus.
--------------------------------------------------------
*/
.stickyheader {
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
	z-index: 10;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.75);
}
.sticky .hmy-content {
	position: -webkit-sticky;
	position: sticky;
	top: 80px;
}


/*
******************************
 Allows for AMM to be Fixed
on Scroll when VBM is Applied
[Fixed position element inside 
an element with filter attributes 
assigned loses it's position 
context. The filter attribute 
is assigned by the VBM.]
******************************
*/

.hmy-section {
	filter: none !important;
}


/*
******************************
     Logo/Tagline Styles
******************************
*/
.logo {
	font-size:50px;
	font-family: 'Princess Sofia', cursive;
	color: white;
	text-shadow: 3px 3px 5px #000000;
}


/*
*************************************************************
                      FLOATS
*************************************************************
*/

.floatright {
	float: right;
	margin: 0px 0px 16px 20px;
}

.floatleft {
	float: left;
	margin: 16px 20px 0px 0px;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.clear {
	clear: both;
}


/*
******************************
      Horizontal Rule
******************************
*/

hr {
    border: 1px;
	border-style: solid;
	border-color: rgba(192, 0, 37);
	margin-top: 2%;
	margin-bottom: 2%;
}

