/*
Title: App Style Sheet
Authors: Ian Borg (Capsicum Corporation) <ianb@capsicumcorp.com>
Description: The default css file for the iOmy website.
Copyright: Capsicum Corporation 2017
*/

/* ================================================================================== */
/* ============================== Table of Contents ================================= */
/* == #1.0# - Base Classes                                                         == */
/* == #2.0# - Common Classes                                                       == */
/* == #3.0# - Header / Nav                                                         == */
/* == #4.0# - Footer                                                               == */
/* == #5.0# - Parallax                                                             == */
/* == #6.0# - Banners		                                                       == */
/* == #7.0# - Icons                                                                == */
/* == #8.0# - Fonts                                                                == */
/* == #9.0# - General Media Queries												   == */
/* == #10.0# - Carousel                                                            == */
/* == #11.0# - Index                                                               == */
/* == #12.0# - Supported Things                                                    == */
/* == #13.0# - Community                                      		               == */
/* == #14.0# - Downloads		                                                   == */
/* == #15.0# - Industrial			                                               == */
/* == #16.0# - Contact Us			                                               == */
/* == #17.0# - Home Security			                                           == */
/* == #18.0# - General Images			                                           == */
/* == #19.0# - General Text			                                               == */
/* == #20.0# - Social Meda Bar                                                     == */
/* == #99.0# - Redundent Code											           == */
/* ================================================================================== */
/* ================================================================================== */
/* ================================================================================== */
/* == #1.0# Base Classes                                                           == */
/* ================================================================================== */
html, body {
	line-height: 1.6;
	font-family: 'OpenSansRegular', Fallback, sans-serif;
	
}

a {
	font-family: 'OpenSansRegular', Fallback, sans-serif;
	color: grey;
    text-decoration: none;
}

a:focus, a:hover {
    color: darkgrey;
    text-decoration: underline;
}

b {
	font-family: 'OpenSansBold', Fallback, sans-serif;
}

h1 {
	font-family: 'PoppinsBold', Fallback, sans-serif;
}

h2 {
	font-family: 'PoppinsBold', Fallback, sans-serif;
}

h3 {
	font-family: 'PoppinsBold', Fallback, sans-serif;
}

h4 {
	font-family: 'PoppinsRegular', Fallback, sans-serif;
}

/* Increased Padding for Buttons */
.large-btn {
	padding: 10px 15px 10px 15px
}

.heading-regular {
	font-family: 'PoppinsRegular', Fallback, sans-serif;
}

/* Text Weights */

.text-light {
	font-weight: lighter;
}

.text-bold {
	font-weight: bold;
}

/* Overrides the default top border color to "iOmy" Green */
.cHeader {
    background-color: #8cc63e;
}

/*Overrides Excessive left padding */
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, 
.col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, 
.col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, 
.col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, 
.col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
	padding-left:5px;
}

/* Overrides Container-fluid padding */
.container-fluid {
	padding: 0px;
}

.iHeader {
	background-image: url("../images/icons/texture.jpg" );
	background-repeat: repeat;
}

.iomy_grey {
	color: #888888;
}

.iomy_green {
	color: #8cc63f;
}

.iomy_bg_green {
	background-color: #8cc63f;
}
.bg_grey {
	background-color: #f2f2f3;
}
.bg_pgreen {
	background-color: #d3e38c;
}


/* Creating a new button type as there are none premade to suit */
.btn-iomy-green {
	color: white;
    background-color: #93c94f;
    border-color: #93c94f;
}

.btn-iomy-green-invert {
	border: 1px solid #93c94f;
    color: #93c94f;
	background: white;
}

/*makes the index signup button green*/
.btn-signup {
	color: rgba(255, 255, 255, 1);
	background-color: #89c63b;
	border-radius: 0px;
}
/*makes all forms have the transparent name and email field*/
.signup-form-input {
	background-color: rgba(255, 255, 255, 0);
	border-left: none;
	border-top: none;
	border-right: none;
	border-radius: 0px;
	-webkit-box-shadow: none;
	color: white;
}

/*fix placeholder text on forms to be white instead of the default grey*/
.signup-form-input::-webkit-input-placeholder {
	color: white;
}
.signup-form-input::-moz-placeholder {
	color: white;
}
.signup-form-input::-ms-input-placeholder {
	color: white;
}
.signup-form-input::-moz-placeholder {
	color: white; 
}

.signup-form-input::-webkit-input-placeholder {
	color: white;
}

/*makes the forms on industrial and index have a transperant form button to send email*/
.transparent_btn {
	background-color: rgba(255, 255, 255, 0);
	border-color: white;
	border-radius: 0px;
	color: white;
}


/* Bootstrap equal-height columns experiment */
.row-eq-height {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:  flex;
}


/* ================================================================================== */
/* == #2.0# - Common Classes                                                == */
/* ================================================================================== */
.FloatLeft {
	float: left;
}

.FloatRight {
	float: right;
}

/* Clears Floating */
/* NOTE: Needs to be applied to a dummy element below the floating elements	*/
.FloatClear {
	clear: both;
}

/* Div auto centers if the Div is smaller than its parent Div */
/* NOTE: The child Div(the one that gets this as its class) should be the only child of the parent Div */
.ElementCenter {
	margin: auto;
}

.ElementChildCenter > * {
	margin: auto;
}

/* Element is not visible and doesn't occupy space on the web browser */
.ElementHidden {
	display: none;
}

/* Element is not visible but still occupies space on the web browser */
.ElementInvisible {
	visibility: hidden;
}

.TextCenter {
	text-align: center;
}

.TextLeft {
	text-align: left;
}

.TextRight {
	text-align: right;
}


/* ================================================================================== */
/* == #3.0# - Header / Nav                                                         == */
/* ================================================================================== */
/* Centers the menu items on mobile view */
.navbar .navbar-collapse {
	text-align: center;
}

/* Allows the navbar to have a logo */
.navbar-brand {
	height: auto;
	padding: 15px 0px 15px 0px;
}

.navbar-brand>img {
	margin:auto;
}	

@media only screen and (min-width: 768px) and (max-width: 979px) {
	.navbar-brand {
		padding: 15px 0px 15px 30px; 
	}
}
@media (max-width: 979px) {
	.navbar .container.iomy-nav {
		width: 724px;
	}
}
@media (max-width: 767px) {
	.navbar .container.iomy-nav {
		width: auto;
	}
	/* Gives the first navmenu option a top border in mobile / collapse mode */
	.navbar-nav>li>a:first-child {
		border-top: 1px dashed rgba(0, 0, 0, 0.1);
	}
	/* Give every navmenu option a bottom border in mobile / collapse mode */
	.navbar-nav>li>a {
		border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
	}
}
@media (min-width: 1200px) {
	.navbar-nav.iomy-nav-sub {
		transform: translateY(50%);
	}
}

/* Sets a color border on the navbar "Toggle Button" only seen on mobile devices */
.navbar-toggle {
    border: 1px solid rgba(0, 0, 0, 0.46);
}

/* Removes the defaut bottom margin from the navbar that leaves a white space */
.navbar {
	margin-bottom: 0px;
}

/* Changes the colours to our scheme */
.navbar a {
	color: #6e6e70;
}

.navbar a:hover {
	color: #93c94f;
}

/* Fixes the collapsable menu to now show*/
.icon-bar {
   background-color: rgba(0, 0, 0, 0.46) !important;
}

/* Scales down the padding allowing more navlinks to be present without responsiveness issues */
ul>li>.custom_navlink {
	padding: 10px;
}

/* ================================================================================== */
/* == #4.0# - Footer                                                               == */
/* ================================================================================== */
/* Container of the capsicum strip */
.border-bar {
    width: 100%;
    height: 10px;
}

/* Removes default margins & padding from the footer's navigation bar */
.footer-navigation {
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

.footer_topbar {
	background-color: #8cc63c; /* iomy green */
	height: 5px;
	width: 100%;
}

/* Footer Part 1*/
.footer_p1 {
	background-color: #343434;
}

/* Footer Part 2 */
.footer_p2 {
	background-color: #1c1c1c;
}

.footer-list {
    text-align: center;
}

.footer-group-item {
	padding: 0px;
	background-color: inherit;
	border: 0px;
}

.footer-list-header {
	color: white;
	padding-top: 10%;
}

.footer-section1 {
	background-color: #E3292F;
}

.footer-section2 {
	background-color: #EF592B;
}

.footer-section3 {
	background-color: #F6B92E;
}

.footer-section4 {
	background-color: #5B8E29;
}

.footer-strip {
	width: 25%;
    height: 10px;
    float: left;
    box-sizing: border-box;
}

/* Disabled - Not sure what it does 
	.green-bar {
		width: 100%;
		height: 30px;
		background-color: #93c94f;
		color: #ffffff;
	}
*/

/* Footer Forms */
.footer-form-input {
	display: block;
	width: 100%;
	height: 30px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: white;
	background-color: #444444;
	background-image: none;
	border: 1px solid #ffffff;
	border-radius: 1px;
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}


.footer-form-button {
	/* background-color: #333333; */
	width: 100%;
	font-weight: bold;
}

.footer-form-button:hover {
	color: white;
	border-color: white;
}

.cap-division-text {
	color: white;
	line-height: 1.4;
	margin: 18px 0 10px 0;
}

/* ================================================================================== */
/* == #5.0# - Parallax                                                             == */
/* ================================================================================== */
.parallax{ 
    /* Set a specific height */

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax_special {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.contact_banner {
	background-image: url("../images/banners/contactus.jpg");
	background-size: cover;
}

/* Community Banner - Image removed - No longer in use - Dan */
.community_bannerimg {
	background-image: url("../images/community.jpg");
	background-size: cover;
}


/* 1st Default Parallax*/
.pImage1 {
    background-image: url("../images/p1_dark.jpeg");
	background-size: cover;
}

/* 2nd Default Parallax*/
.pImage2 {
    background-image: url("../images/p2.jpeg");
	background-size: cover;
}

/* 3rd Default Parallax*/
.pImage3 {
    background-image: url("../images/p3.jpeg");
	background-size: cover;
}

/* 1st Parallax on the Home Page */
.home-p1 {
    background-image: url("../images/p1_dark.jpeg");
	background-size: cover;
}

/* 2nd Parallax on the Home Page - Image removed - not being used - Dan */
.home-p2 {
    background-image: url("../images/p2_110.jpeg");
	background-size: cover;
}

/* 3rd Parallax on the Home Page */
.home-p3 {
    background-image: url("../images/banners/global2.jpg");
	background-size: cover;
}

/* Image removed - not in use - Dan */
.community-s6 {
	background-image: url("../images/man_arms_edited.jpg");
	background-size: cover;
}

/* ================================= */
/* == Resources.php               == */
/* ================================= */
.downloads_icon {
	/*background-image: url("../images/icons/downloadapp.png" );*/
   	background-image: url("../images/icons/downloadapp.png" );
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	height: 5rem;
	margin-top: 4rem;
    margin-bottom: 4rem;
}

.howtoguides_icon {
	background-image: url("../images/icons/guide.png" );
    background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	height: 5rem;
	margin-top: 4rem;
    margin-bottom: 4rem;
}

.howtovideos_icon {
	background-image: url("../images/icons/video.png" );
    background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	height: 5rem;
	margin-top: 4rem;
    margin-bottom: 4rem;
}

.shop_icon {
	background-image: url("../images/icons/cart.png" );
    background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	height: 5rem;
	margin-top: 4rem;
    margin-bottom: 4rem;
}


/* ================================================================================== */
/* == #6.0# - Banners                                                              == */
/* ================================================================================== */
/* Motion Sensors Banner */
.motdet-bannerimg {
    background-image: url("../images/banners/motdetbanner.png");
	background-size: cover;
}
.motdet-text {
	font-size: 60px;
	color: f5f5f5;
	font-family: PoppinsBold;
	text-align: left;
	padding-top: 300px;
}

/* Security Lighting Banner */
.secpack-bannerimg {
    background-image: url("../images/banners/secpackage.jpg");
	background-size: cover;
	background-position: center;
}

/* Security Lighting Banner */
.seclight-bannerimg {
    background-image: url("../images/banners/seclightbanner.jpg");
	background-size: cover;
	background-position: center;
}

.seclight-text{
	font-size: 60px;
	color: white;
	font-weight: bold;
	text-align: left;
	text-shadow: -2px 2px gray;
}

/* Security Cameras Banner */
.seccam-bannerimg {
    background-image: url("../images/banners/seccambanner.png");
	background-size: cover;
	background-position: bottom;
}
.seccam-banner {
	padding-top: 100px;
	padding-bottom: 550px;
}
.seccam-text {
	font-size: 80px;
	color: white;
	font-weight: bold;
	text-align: left;
	text-shadow: -2px 2px gray;
	
}
.seccam-text2 {
	font-size: 50px;
	color: white;
	font-weight: bold;
	text-align: left;
	text-shadow: -1px 2px gray;
}

/* Home Security Banner */
.homesec-bannerimg {
	background-image: url("../images/banners/homesecbannertop.jpeg");
	background-size: cover;
	background-position: center;
}
.homesec-banner {
	padding-top: 168.5px;
	padding-bottom: 168.5px;
}

/* Smart Bulbs Banner */
.lightupyourworld_b1 {
    /* The image used */
    background-image: url("../images/banners/lightupyourworldbanner1.png");
	background-size: cover;

}
.lightupyourworld_b2 {
    /* The image used */
    background-image: url("../images/banners/lightupyourworldbanner2.png");
	background-size: cover;

}
.lightupyourworld_b3 {
    /* The image used */
    background-image: url("../images/banners/lightupyourworldbanner3.png");
	background-size: cover;
}

.smartbulb-banner {
	padding-top: 350px;
	padding-bottom: 50px;
}

.smartbulb-text {
	font-size: 60px;
	font-family: PoppinsRegular;
	text-align: Left;
	position: absolute;
	right: 15%;
	bottom: 10%;
	left: 15%;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
	line-height: 1.1;
}

.smartbulb-h1fix {
	font-size: 60px;
}

/* Smart Plugs Banner */
.smartplug-bannerimg {
    background-image: url("../images/banners/smartplugsbanner.png");
	background-size: cover;
	font-size: 40px;
}

.smartplug_banner {
	padding-top: 200.5px;
	padding-bottom: 200.5px;
}

/* Downloads Banner - Image removed - not in use - Dan */
.downloadsbg {
	background-image: url("../images/p1_reverse.jpeg" );
   -webkit-background-size: cover;
   -moz-background-size: cover;
   -o-background-size: cover;
   background-size: cover;
}


/* ================================================================================== */
/* ==  #7.0# - Icons                                                               == */
/* ================================================================================== */

/* Base class for the social media icons in the footer */
	.footer_icons {
		height: 3rem;
		float: left;
		display: inline-block;
		margin-left: 5%;
		margin-right: 5%;
		width: 10%;
		height: 10%;
	}

/* Base class for the container of the supported platform section */
	.compatible_icons {
		padding: 0 2rem 0rem 2rem;
	}

/* Base class for each image icon on the supported platform section */
	.compatible_icons > div {
		height: 4rem;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		/*margin: 1rem;*/
		padding: 0px;
		margin-top: 40px;
	}

/* Sets the background image for each supported platform section */
	.iLinux {
		background-image: url("../images/icons/linux.png");
	}

	.iAndroid { 
		background-image: url("../images/icons/android.png");
	}

	.iApple {
		background-image: url("../images/icons/apple.png");
	}

	.iWindows {
		background-image: url("../images/icons/windows.png");
	}

	.iApi {
		background-image: url("../images/icons/api.png");
	}

	.iOdata {
		background-image: url("../images/icons/odata.png");
	}

	.iMysql {
		background-image: url("../images/icons/mysql.png");	
	}

	.iPhp {
		background-image: url("../images/icons/php.png");
	}

	.iCpp {
		background-image: url("../images/icons/cpp.png");
	}

	.iLighttpd {
		background-image: url("../images/icons/lighttpd.png");
	}

	.iHttp {
		background-image: url("../images/icons/http.png");
	}

	.iZigbee{
		background-image: url("../images/icons/zigbee.png");
	}

	.iBluetooth{
		background-image: url("../images/icons/bluetooth.png");
	}

	.iZwave{
		background-image: url("../images/icons/zwave.png");
	}

	.iWifi{
		background-image: url("../images/icons/wifi.png");
	}
	
	.csrmesh{
		background-image: url("../images/icons/csrmesh.png");
	}

	.iMobile{
		background-image: url("../images/icons/mobile.png");
	}

	.iIr{
		background-image: url("../images/icons/ir.png");
	}

	.iNfc{
		background-image: url("../images/icons/nfc.png");
	}

	.iTcpip{
		background-image: url("../images/icons/tcpip.png");
	}
	
	
/* Applies Top & Bottom Padding to the Banner of each page to bring it inline with eachother (515px)*/
	.supported_banner {
		padding-top: 35px;
		padding-bottom: 35px;
	}

/* ================================================================================== */
/* ==  #8.0# - Fonts                                                               == */
/* ================================================================================== */
/* Open Sans */
	@font-face {
		font-family: 'OpenSansBold';
		src: url('../fonts/OpenSans-Bold.ttf');
	}

	@font-face {
		font-family: 'OpenSansRegular';
		src: url('../fonts/OpenSans-Regular.ttf');
	}

/* Poppins */
	@font-face {
		font-family: 'PoppinsBold';
		src: url('../fonts/Poppins-Bold.ttf');
	}
	
	@font-face {
		font-family: 'PoppinsRegular';
		src: url('../fonts/Poppins-Regular.ttf');
	}

	
/* ================================================================================== */
/* ==  #9.0# - General Media Queries                                                       == */
/* ================================================================================== */

/* 0 - 343 PX Media Query */
@media only screen and (max-width: 343px) {
	/* Provies the "Large Buttons" with extra padding and less margins on mobile devices */
	.large-btn {
		padding: 5px 10px 5px 10px;
		margin-left: 0px;
	}
	
}

/* 0 - 374 PX Media Query */
@media only screen and (max-width:374px) {
	/* Reduces the h1 font size to 2em when screen size is below 374px for the security guide section */
	.h1_small {
		font-size: 2em;
	}
}


/* 0 - 500 PX Media Query */
@media only screen and (max-width:500px) {
	/* Adds padding to the Security Guide section when screen size is smaller then 500px */
	.home-p2 {
		padding: 3rem;
	}
	/* assigns a top padding to move the diagram away from the text */
	.compatibility_graph {
		padding-left: 1rem;
	}
	
}

/* 0 - 640 PX Media Query */
@media only screen and (max-width: 640px) {
	/* Will need to lok into what they are for & if they are still needed */
	.iiContent-Pad {
		padding: 20px 10px 50px 0px !important;
	}
}


/* 0 - 767px Media Query */
@media only screen and (max-width: 767px){
	/* Adds a margin top to the second div when on mobile view */
	.brochure_grid > div[name=part2] , .brochure_grid > div[name=part3] , .brochure_grid > div[name=part4]  {
		margin-top: 3rem;
	}
	
	/*adds a padding between the fields in tablet view and down */
	.btn-signup {
		margin-bottom: 3px;
	}
	
	.signup-form-input{
		margin-bottom: 3px;
	}
	
	.transparent_btn{
		margin-bottom: 3px;
	}
	
	/* Fixes the white space around the page when going to tablet or mobile view created by /resources/css/bootstrap-responsive.css line:803*/
	body {	
		padding-left: 0px;
		padding-right: 0px;
	}
	
	/* After fixing the white space it moves the nav button too far off the page to the right */
	.navbar-toggle {
		margin-right: 30px;
	}
	
	.blurbimgs > img {
		width: 75%;
	}
	
	.iiContent-Pad {
		padding: 20px 30px 50px 30px;
	}
	
	.compatibility_graph {
		padding-left: 5px;
		padding-top: 2rem;
	}
	
	/* Resets the center vertical css to default to stop breaking responsiveness */
	.center-vertical {
	align-items: normal;
    display: block;
	}

}



/* 0 - 991 PX Media Query */
@media only screen and (max-width: 991px) {
	/* Centers the bottom text for the 'Why iOmy' section */	
	.smarter-homes {
		text-align: center;
		padding-bottom:2rem;
	}
		
	/* Centers the 'iomy Tested' logo */
	.iomytested {
		text-align: center;
	}
}

/* 350 - 767 PX Media Query */
@media only screen and (min-width:350px) and (max-width:767px) {
	.brochure-content {
		height: 37px;
	}
}

/* 401 - 767 PX Media Query */
@media only screen and (min-width:401px) and (max-width:767px) {
	.brochure_grid {
		padding-left: 15%;
		padding-right: 10%;
	}
}

/* 500+ PX Media Query */
@media only screen and (min-width:500px) {
	/* Adds padding to the Security Guide section when screen size is bigger then 500px */
	.home-p2 {
		padding: 6rem;
	}	
}

/* 500 - 768 PX Media Query */
@media only screen and (min-width:500px) and (max-width: 768px){
	/* Allows support for two columns when viewing on landscape via a mobile device */
	.supportedthing {
		width: 50%;
		min-height: 210px;
	}
	/* assigns a top padding to move the diagram away from the text */
	.compatibility_graph {
		padding-left: 3rem;
	}
}

/* 510 - 767 PX Media Query */
@media only screen and (min-width: 510px) and (max-width: 767px){
	/* fixes products item grid on mobile & tablet devices */
	.secproducts > .col-xs-12 {
		width: 50%;
	}
	
	.smartdevices > .col-xs-12 {
		width: 33.33333333%;
	}
	
	.videolinks > .col-xs-12 {
		width: 33.33333333%;
	}
	
}

/* 601 - 700 PX Media Query */
@media only screen and (min-width: 601px) and (max-width:700px) {
	/* Automation Gadget Styling - Adds in more padding between 601px & 700px due to minimal amount of text */
	.autogadget_parent {
		padding-left: 65px;
		padding-right: 70px;
	}
}

/* 701 - 767 PX Media Query */
@media only screen and (min-width: 701px) and (max-width:767px) {
	/* Automation Gadget Styling - Adds in more padding between 701px & 767px due to minimal amount of text */
	.autogadget_parent {
		padding-left: 75px;
		padding-right: 80px;
	}
}


/* 768+ PX Media Query */
@media only screen and (min-width: 768px){
	/* Centrally align images vertically */
	.center-vertical {
	align-items: center;
    display: flex;
	}
	
	/* Vertically align's items might need to go to 768??*/
	.vertical-align{
		position: relative;
		top: 66px;
		transform: translateY(-50%);
	}
	
	.compatibility_graph {
		padding-left: 6rem;
	}
}

/* 768 - 991 PX Media Query */
@media only screen and (min-width:768px) and (max-width: 991px) {
	/* Sets a default height of 37px while on tablet view */
	.brochure-content {
		height: 37px; 
	}
	
	/* Adds a top margin to the third & fourth div when on tablet view */	
	.brochure_grid > div[name=part3] , .brochure_grid > div[name=part4] {
		margin-top:3rem;
	}
	
	.download_iomytested {
		position: absolute; 
		top: 12px; 
		left: -99px;
	}
}

/* 980 - 991 PX Media Query */
@media only screen and (min-width: 980px) and (max-width:991px) {
	/* Scales down the padding allowing more navlinks to be present without responsiveness issues */
	.brochure_grid {
		padding-left: 1rem;
	}
	
	/* Scales down the padding allowing more navlinks to be present without responsiveness issues */
	ul>li>.custom_navlink {
		padding: 8px;
	}
	
}

/* 992+ PX Media Query */
@media only screen and (min-width:992px) {
	/* Vertically centers the bottom text in the 'Why iOmy' section */
	.smarter-homes{
		position: relative;
		top: 80px;
		transform: translateY(-50%);
	}
	
	/* Right Align's the 'iOmy Tested' Logo */
	.iomytested {
		text-align: right;
	}
	
	/* Vertically centers the bottom text in the 'Why iOmy' section */
	.download_iomytested {
		position: absolute; 
		top: 12px; 
	}
}

/* 1024+ PX Media Query */
@media only screen and (min-width: 1024px) {
	/* Centers the compatibility image within its container for laptop / desktop */
	.compatibility_container {
		align-items: center;
		display: flex;
	}
	/* Apply a padding on supported things list */
	.supportedgrid_img {
	  padding: 20px;
	}
}


/* ================================================================================== */
/* ==  #10.0# - Carousel	                                                       == */
/* ================================================================================== */

/*review carousel needed changes while in tablet and mobile view, because of perspective it gave the views a tiny blurry snippet of the image and the text had no positioning moving to the bottom*/
.carousel-caption {
	position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
}

/* ================================================================================== */
/* ==  #11.0# - Index                                                       == */
/* ================================================================================== */
/* used in infoiomy */	

/*IomyInfo.php - sets the padding for text content  container*/
.iiContent-Pad {
	padding: 20px 10px 50px 30px;
}

/*IomyInfo.php - sets the lineheight to be 1.6 */
.iiContent-Pad > p {
	line-height: 1.6;
}

/* IomyInfo.php - sets the margins for the sections's heading */
.iiHeading {
	margin-top: 55px;
	margin-bottom: 20px;
}

/*brochure.php*/
/* Base Class for the Brochure Grid */
	.brochure_grid {
		padding-top: 6rem;
		padding-bottom: 6rem;
		padding-left: 2rem;
	}
	
	.brochure-heading {
		font-size: 150%;
		margin: 0 0 5px;
		text-decoration: none; 
		color:inherit;
		font-family: OpenSansRegular;
		line-height: 1.6;
	}

	.brochure-content {
		margin-bottom: 22px;
		margin-top: 0px;
		height: 65px; /* sets a default height of 57px */
		text-decoration: none; 
		color:inherit;
	}
	
/*sets the text to not change on hover*/
	.brochure_link {
		text-decoration: none;
		color:inherit;
	}
	


/* Psuedo class for applying padding*/	
	.whyiomy > .PadAll2d0Rem {
		padding: 2rem;
	}

/* singup-form.php*/
/* Applies Top & Bottom Padding to the Banner of each page to bring it inline with eachother (515px)*/
	.index_banner {
		padding-top: 95.625px;
		padding-bottom: 95.625px;
	}



/* ================================================================================== */
/* ==  #12.0# - Supported Things                                                   == */
/* ================================================================================== */

.compatibility_graph {
	width: 100%;
}

/* Base css class for images shown in the supported things grid */
	.supportedgrid_img {
	  opacity: 1;
	  display: block;
	  width: 220px;
	  height: auto;
	  transition: .5s ease;
	  backface-visibility: hidden;
	  margin:auto;
	}
/* Base CSS class for the text in the support things grid  */
	.supportedthing_text {
	 font-size: 16px;
	 padding: 16px 32px;
	 text-align: center;
	 color: #8cc63e;
	}
/* Base CSS class for the hover image in the support things grid */
	.supportedthing_hover {
	  transition: .5s ease;
	  opacity: 0;
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  -ms-transform: translate(-50%, -50%)
	}
/* Changes the opacity of the default images when hovered */
	.supportedthing:hover .supportedgrid_img {
	  opacity: 0.3;
	}
	
/* Changes the opacity of the hover image to now display over the default image */
	.supportedthing:hover .supportedthing_hover {
	  opacity: 1;
	}
	
	
/* ================================================================================== */
/* ==  #13.0# - Community                                                          == */
/* ================================================================================== */
/* Applies Top & Bottom Padding to the Banner of each page to bring it inline with eachother (515px)*/
	.community_banner {
		padding-top: 153px;
		padding-bottom: 153px;
	}
	
	
/* ================================================================================== */
/* ==  #14.0# - Downloads                                                          == */
/* ================================================================================== */
	.download_iomytested {
		height: 150px;
	}
	
	
/* ================================================================================== */
/* ==  #15.0# - industrial                                                         == */
/* ================================================================================== */
/* Applies Top & Bottom Padding to the Banner of each page to bring it inline with eachother (515px)*/
	.industrial_banner {
		padding-top: 155.52px;
		padding-bottom: 155.52px;
	}
	
	
/* ================================================================================== */
/* ==  #16.0# - Contact Us                                                         == */
/* ================================================================================== */
/* Applies Top & Bottom Padding to the Banner of each page to bring it inline with eachother (515px)*/
	.contact_banner {
		padding-top: 155.52px;
		padding-bottom: 155.52px;
		}

		
/* ================================================================================== */
/* ==  #17.0# - Home Security                                                       == */
/* ================================================================================== */



/* ================================================================================== */
/* ==  #18.0# - General Images                                                     == */
/* ================================================================================== */



/* ================================================================================== */
/* ==  #19.0# - General Text                                                     == */
/* ================================================================================== */
/* Text for shop pack deals on *-products.php */
.shoppack-text {
	border-top: 2px solid #93c94f;
	border-bottom: 2px solid #93c94f;
}

.shoppack-text1 {
	font-size: 120px;
	color: #93c94f;
	font-weight: bold;
	text-align: left;
}

.shoppack-text2 {
	font-size: 40px;
	color: #93c94f;
	font-weight: bold;
	text-align: left;
}

.shoppack-text3 {
	font-size: 30px;
	color: gray;
	font-weight: bold;
	text-align: left;
}

.shoppack-text4 {
	font-size: 60px;
	color: gray;
	font-weight: bold;
	text-align: left;
}

.justify-center {
    text-align: justify;
    -moz-text-align-last: center;
    text-align-last: center;
}

/* ================================================================================== */
/* ==  #20.0# - Social Meda Bar                                                    == */
/* ================================================================================== */

/* entypo */
[class*="entypo-"]:before {
  font-family: 'entypo', sans-serif;
}

a { 
   text-decoration: none;
}

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


#sticky-social {
   left: 0;
   position: fixed;
   top: 40%;
}

#sticky-social a {
   background: #333;
   color: #fff;
   display: block;
   height: 35px;
   font: 16px "Open Sans", sans-serif;
   line-height: 35px;
   position: relative;
   text-align: center;
   width: 35px;
}

#sticky-social a:hover span {
   left: 100%;
}

#sticky-social a span {
   line-height: 35px;
   left: -120px;
   position: absolute;
   text-align:center;
   width:120px;
}

#sticky-social a[class*="facebook"],
#sticky-social a[class*="facebook"]:hover,
#sticky-social a[class*="facebook"] span { background: #3b5998; }

#sticky-social a[class*="twitter"],
#sticky-social a[class*="twitter"]:hover,
#sticky-social a[class*="twitter"] span { background: #00aced; }

#sticky-social a[class*="gplus"],
#sticky-social a[class*="gplus"]:hover,
#sticky-social a[class*="gplus"] span { background: #dd4b39; }	

#sticky-social a[class*="linkedin"],
#sticky-social a[class*="linkedin"]:hover,
#sticky-social a[class*="linkedin"] span { background: #007bb6; }	

#sticky-social a[class*="instagrem"],
#sticky-social a[class*="instagrem"]:hover,
#sticky-social a[class*="instagrem"] span { background: #517fa4; }	

#sticky-social a[class*="stumbleupon"],
#sticky-social a[class*="stumbleupon"]:hover,
#sticky-social a[class*="stumbleupon"] span { background: #eb4924; }	

#sticky-social a[class*="pinterest"],
#sticky-social a[class*="pinterest"]:hover,
#sticky-social a[class*="pinterest"] span { background: #cc2127; }	

#sticky-social a[class*="flickr"],
#sticky-social a[class*="flickr"]:hover,
#sticky-social a[class*="flickr"] span { background: #ff0084; }	

#sticky-social a[class*="tumblr"],
#sticky-social a[class*="tumblr"]:hover,
#sticky-social a[class*="tumblr"] span { background: #32506d; }	


/* ================================================================================== */
/* ==  #99.0# - Redundent Files (check before deleting)                            == */
/* ================================================================================== */
/* Automation Gadget Styling */
	.autogadget_parent {
		margin-top:10px; 
		padding-right: 5px;
	}
/* Base class for the security guide image */
	.security_guide {
		width: 75%;
	}
/* Base class for the 'iOmy Tested' logo */
	.iomytested > img {
		width: 12rem; 
		margin: 2rem;
	}
	
	.resources_banner {
		padding-top: 161px;
		padding-bottom: 161px;
	}

/* Base class for Left column of DevIdeas */
.devideasL {
	line-height: 1.6;
}
@media only screen and (max-width:639px) {

	.devideasL {
		padding-left: 3rem;
		padding-right: 3rem;
		padding-top: 4rem;
		padding-bottom: 4rem;
		line-height: 1.6;
	}
}
@media only screen and (min-width:640px) and (max-width:767px) {
	.devideasL {
		padding-left: 9rem;
		padding-right: 8rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
}
@media only screen and (min-width:768px) and (max-width:819px) {
	.devideasL {
		padding-left: 6rem;
		padding-right: 6rem;
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
}
@media only screen and (min-width:820px) and (max-width:899px) {
	.devideasL {
		padding-left: 6rem;
		padding-right: 6rem;
		padding-top: 7rem;
		padding-bottom: 4rem;
	}
}
@media only screen and (min-width:900px) and (max-width:1032px) {
	.devideasL {
		padding-left: 6rem;
		padding-right: 6rem;
		padding-top: 9rem;
		padding-bottom: 4rem;
	}
}
@media only screen and (min-width:1033px) and (max-width:1199px) {
	.devideasL {
		padding-left: 6rem;
		padding-right: 6rem;
		padding-top: 13rem;
		padding-bottom: 3rem;
		line-height: 1.6;
	}
}
@media only screen and (min-width:1200px) and (max-width:1299px) {
	.devideasL {
		padding-left: 6rem;
		padding-right: 6rem;
		padding-top: 10rem;
		padding-bottom: 4rem;
	}
}
@media only screen and (min-width:1300px) and (max-width:1416px) {
	.devideasL {
		padding-left: 6rem;
		padding-right: 6rem;
		padding-top: 13rem;
		padding-bottom: 4rem;
	}
}
@media only screen and (min-width:1417px) and (max-width:1599px) {
	.devideasL {
		padding-left: 6rem;
		padding-right: 6rem;
		padding-top: 15rem;
		padding-bottom: 4rem;
	}
}
@media only screen and (min-width:1600px) {
	.devideasL {
		padding-left: 6rem;
		padding-right: 11rem;
		padding-top: 15rem;
		padding-bottom: 4rem;
	}
}
@media only screen and (max-width: 820px) {
	.seccam-banner {
		padding-top: 50px;
		padding-bottom: 250px;
	}
	.seccam-text {
		font-size: 50px;
		text-shadow: -2px 2px gray;
	}
	.seccam-text2 {
		font-size: 30px;
		text-shadow: -1px 2px gray;
	}
}