/*
    Theme Name: Pixify
    Theme URI: pixify.johnmuncaster.com
    Author: JohnMuncaster.com
    Author URI: https://pixify.themuncasters.com
    Description: Pixify API
    Version: 1.0
*/

/* ==========================================================================
   #CssReset
   ========================================================================== */

	html, body, div, span, applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	b, u, i, center,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td,
	article, aside, canvas, details, embed, 
	figure, figcaption, footer, header, hgroup, 
	menu, nav, output, ruby, section, summary,
	time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}
	
	/* HTML5 display-role reset for older browsers */
	
	article, 
	aside, 
	details, 
	figcaption, 
	figure, 
	footer, 
	header, 
	hgroup, 
	menu, 
	nav, 
	section {
		display: block;
	}
	
	body {
		line-height: 1;
	}
	
	ol, 
	ul {
		list-style: none;
	}
	
	blockquote, 
	q {
		quotes: none;
	}
	
	blockquote:before, 
	blockquote:after,
	q:before, 
	q:after {
		content: "";
		content: none;
	}
	
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}
	
	html { 
		font-size: 100%; 
		overflow-y: scroll; /* 1  */ 
		-ms-text-size-adjust: 100%; /* 2 */
    	-webkit-text-size-adjust: 100%; /* 2 */
		-webkit-font-smoothing: antialiased; 
		overflow-x: hidden; /* 3 */
	}

/* ==========================================================================
   #GLOBAL STYLES
   ========================================================================== */

    body {
        overflow-x: hidden; /* 1 */
	    overflow: hidden;
	    background-color: #fff;    
        margin: 0 auto;
        font-family: 14px 'Roboto', 'Open Sans', sans-serif;
        line-height: 24px;
    }

    .clearfix {
      *zoom: 1;
    }

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

    ::selection{ color: rgba(0,0,0,1.0); background-color: rgba(238,238,238,.90); }
    ::-moz-selection{ color: rgba(0,0,0,1.0); background-color: rgba(238,238,238,.90); }

    .visible{display: block;}
    .hidden{display: none;}


/* ==========================================================================
   #Typography
   ========================================================================== */

	h1, 
	h2, 
	h3, 
	h4, 
	h5, 
	h6,
    p,
    li,
    ol,
    a {
        font-family: 'Roboto', 'Open Sans', sans-serif;
	    margin: 0;
	    padding: 0;
        font-weight: normal;
        color: #1a1a1a;  
	}
		
	h1 a, 
	h2 a, 
	h3 a, 
	h4 a, 
	h5 a, 
	h6 a { 
		font-weight: inherit; 
        text-decoration: none !important;
	}

	h1 {
		margin-bottom: 14px; 	 
		font-size: 36px; 
		line-height: 55px; 
	}		   

	h2 { 
		margin-bottom: 10px;	
		font-size: 30px; 
		line-height: 48px;  
	}
	
	h3 { 
		margin-bottom: 8px;
		font-size: 18px; 
		line-height: 34px;   
	}
	
	h4 {
		margin-bottom: 4px; 
		font-size: 16px; 
		line-height: 30px;   
	}
	
	h5 { 
		font-size: 14px; 
		line-height: 24px; 
	}
	
	h6 { 
		font-size: 12px; 
		line-height: 21px; 
	}
	
	p { font-size: 18px; line-height: 24px;}
	em { font-style: italic; }
    strong { font-weight: bold; } 
    small { font-size: 50%; }

    sub { 
		vertical-align: sub; 
		font-size: 75%; 
	}
	
	sup { 
		vertical-align: super; 
		font-size: 75%; 
	}

	hr { 
		height: 0; 
		border: solid #efefef; 
		border-width: 1px 0 0 0;
		margin: 30px 0;
	}

    .hr{
        border-top: 1px solid #efefef;  
		margin: 30px 0;        
    }


/* ==========================================================================
   #Typography HELPER CLASSES
   ========================================================================== */

	.text-left { text-align: left; }
	.text-right { text-align: right; }
	.text-center { text-align: center; }
    
    .font-size-24{font-size: 24px;}
    .font-size-16{font-size: 16px;}	
    .font-size-14{font-size: 14px;}

    .font-weight-100{font-weight: 100;}
    .font-style-italic{font-style: italic;}

    .font-color-black{color: #222;}
    .font-color-white{color: #fff;}

    .line-height-24{line-height: 24px;}

	.text-highlight { 
		padding: 1px 5px; 
		background-color: #d5edf8; 
		color: #111111; 
	}

	.text-uppercase { text-transform: uppercase; }
	
	.mute { color: #aaa; }
	
	p.last,
	h1.last,
	h2.last,
	h3.last,
	h4.last,
	h5.last,
	address.last { margin-bottom: 0; }

/* ==========================================================================
   #Lists
   ========================================================================== */
	
	ul, 
	ol { 
		/*margin-bottom: 20px;*/
		list-style-position: inside; 
	}
	
	ul ul, 
	ul ol, 
	ol ol, 
	ol ul { 
		margin-bottom: 0; 
		margin-left: 30px; 
	}
	
	li {margin-bottom: 10px;}
	
	ul { list-style-type: disc; font-size: 18px;}
	ol { list-style-type: decimal; }
	
	/* List Helper Classes */

	ul.last,
	ol.last { margin-bottom: 0; }

/* ==========================================================================
   #Images
   ========================================================================== */

    img {   
        border: none;
        max-width: 100%;
        height: auto;        
    }

/* ==========================================================================
   #Links
   ========================================================================== */

	a, 
	a:visited { 
        font-size: 18px; 
        margin-bottom: 25px; 
        line-height: 36px;
        color: rgba(255,255,255,0.60);
        text-decoration: none;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;          
	}
		
	a:active {
 		background: transparent; /* 1 */
	}
	
	a:hover, 
	a:focus { 
		outline: none; 
		text-decoration: none;  
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s; 
    color: rgba(255,255,255,1.0);            
	}	

/* ==========================================================================
   #Buttons
   ========================================================================== */

    .call-to-actions-buttons{float: left; margin-top: 15px; margin-right: 25px;}

    a.button {
        font-size: 16px;
        line-height: 20px;
        font-weight: 300;                  
        outline: none;        
        padding: 15px 15px 15px 15px;     
    }    

    .white_trans{
        color: #fff;
        text-align: center;        
        background: transparent;
        border: 0;
        border: 1px solid #fff !important;
        cursor: pointer;
    }

    .white_trans:hover{
        color: #fff;
        background: rgba(255, 255, 255, 0.20);
        text-decoration: none;
    }

    .dark_trans{
        color: rgba(26,26,26,0.75);
        text-align: center;        
        background: transparent;
        border: 0;
        border: 1px solid rgba(26,26,26,0.50) !important;
        cursor: pointer;
    }

    .dark_trans:hover{
        color: rgba(26,26,26,1.00);
        border: 1px solid rgba(26,26,26,1.00) !important;
        text-decoration: none;
    }

/* #Forms
   ========================================================================== */

	form {}
	
	fieldset {}
	
	form p {}
	
	label {
		display: block;
		margin-bottom: 5px;
	}

	label span { color: #ff0000; }
	
	select,
	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"],
	input[type="radio"],
	input[type="checkbox"] {
	  cursor: pointer;
	}
	
	input,
	textarea,
	select {
		display: block;
		max-width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 6px 10px;
		border: 1px solid #ddd;
		 -webkit-border-radius: 3px;
				 border-radius: 3px;
		margin-bottom: 25px;
		background: transparent;
		color: #666;
		font: 14px 'Open Sans', Arial, sans-serif;
	}
	
	input[type="text"]:focus,
	input[type="email"]:focus,
	input[type="url"]:focus,
	textarea:focus {
		border-color: #ffb400;
  		outline: none;	
	}
	
	select { height: 32px; }
	
	select:focus {
	  outline: thin dotted #333;
	  outline: 5px auto -webkit-focus-ring-color;
	  outline-offset: -2px;
	}
	
	textarea { 
		overflow: auto; 
		min-height: 100px; 
	}

	.radio,
	.checkbox {
		min-height: 18px;
		padding-left: 18px;
	}
	
	.radio input[type="radio"],
	.checkbox input[type="checkbox"] {
		float: left;
		margin-left: -18px;
	}
	
	input:-moz-placeholder,
	textarea:-moz-placeholder {
		color: #ccc;
	}
	
	input:-ms-input-placeholder,
	textarea:-ms-input-placeholder {
		color: #ccc;
	}
	
	input::-webkit-input-placeholder,
	textarea::-webkit-input-placeholder {
		color: #ccc;
	}


	.scene-character img,
.scene-foreground img,
.scene-daytime-backdrop img,
.scene-evening-backdrop img {
    width: 150px !important;
    height: 150px !important;
    object-fit: cover; /* This ensures the image is resized to fit without distortion */
}