/*  

Theme Name:
Theme URI: 
Description:
Version: 1.0
Author: BeeSoft - Web & Mobile Solutions
Author URI: http://www.beesoft.it

============================================================================

1.0 - General Styles & Inclusions
	1.1 - Preload
	1.2 - Titles & Section's
	1.3 - Buttons, Call-to's
	1.4 - Forms
2.0 - Home Page
	2.1 - Header
	2.2 - Slider
	2.9 - Footer
5.0 - Responsive
	5.1 - Desktop
	5.2 - Tablet Portrait
	5.3 - Mobile
	5.4 - Mobile Landscape

/* ============================================================================ */
/* 1.0 - General Styles & Inclusions											*/
/* ============================================================================ */

@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css');
@import url('http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700');

/* ============================================================================ */

* {
	font-family: 'Open Sans';
	font-weight: 400;
	font-size: 12px;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}

a { 
	color: #a9494c;
	text-decoration: none;
}

a,
i {
	transition:0.2s ease-in-out;
	-webkit-transition:0.2s ease-in-out;
	-moz-transition:0.2s ease-in-out;
	-o-transition:0.s ease-in-out;
}
a:hover { text-decoration: none; }

h1,
h2,
h3,
h4,
h5 { 
	font-family: 'Open Sans Condensed', sans-serif;
	color: #585858; 
}

h1 { font-size: 2.5em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.4em; }
h4 { font-size: 1em; }
h5 { font-size: 0.8em; }

/* ============================================================================ */
/* 1.1 - Main Info																*/
/* ============================================================================ */

body,
html {
	width: 100%;
	height: 100%;
}

body {
	overflow: hidden;
	position: relative;
	display: flex;
	background: linear-gradient(195deg, #56bd4e, #49a142, #426ea1);
	background-size: 600% 600%;
	-webkit-animation: AnimationName 25s ease infinite;
		-moz-animation: AnimationName 25s ease infinite;
			animation: AnimationName 25s ease infinite;
}
 
#main-info { 
	margin: auto; 
	text-align: center;
	position: relative;
}

#main-info:before {
	content: '';
	width: 400px;
	height: 200%;
	background: #fff;
	position: absolute;
	right: -5%;
	bottom: -14%;
	opacity: 0.1;
	z-index: 1;
	-webkit-transform: skewX(-30deg);
		-moz-transform: skewX(-30deg);
			-ms-transform: skewX(-30deg);
				transform: skewX(-30deg);
}

.logo { 
	width: 50%; 
	margin: 0 auto; 
}

#main-info a.btn {
	border: 2px solid #fff;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	padding: 10px 30px; 
	border-radius: 3px;
	position: relative;
	z-index: 9;
}

#main-info a.btn:hover { 
	background: #fff; 
	color: #56bd4e;
}

#main-info h1 {
	font-size: 60px;
	color: #fff;
	letter-spacing: 10px; 
}

#main-info p {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin: 20px 0; 
}

#foot {
	display: block;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

#foot address {
	color: #fff;
	opacity: 0.7;
	font-size: 11px;
	font-weight: 700;
}

#foot address a {
	opacity: 1;
	text-decoration: underline;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
}
#foot address a:hover {
	color: #212121;
	text-decoration: none;
}


/**************************************************************************************/
/**************************************************************************************/


/*** WIDE 1280px ***/

@media only screen and (min-width: 1280px) {
	
	
	
}


/*** TABLET (vertical) + MOBILE common rules ***/

@media only screen and (max-width: 991px) {


}

/*** TABLET 768px (vertical) ***/

@media only screen and (min-width: 768px) and (max-width: 991px) {
	
	#main-info h1 { font-size: 40px; }

	
}

/*** MOBILE 320px ***/

@media only screen and (max-width: 767px) {
	
	#main-info h1 { font-size: 20px; }
	#main-info p { font-size: 11px; }
	
	#foot address { 
		font-size: 9px;
		padding: 0 10%; 
	}
	#foot address a { font-size: 9px; }
	
	#main-info a.btn {
		font-size: 11px;
		padding: 6px 16px; 
	}
}

/*** MOBILE (WIDE) 480px ***/


@media only screen and (min-width: 480px) and (max-width: 767px) {
	
	.logo { width: 20%; }
	#main-info h1 { font-size: 16px; }
	address { margin-bottom: 6px; }

}

/* ============================================================================ */
/* 6.0 - CSS Animations															*/
/* ============================================================================ */

@-webkit-keyframes AnimationName {
    0%{background-position:82% 0%}
    50%{background-position:19% 100%}
    100%{background-position:82% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:82% 0%}
    50%{background-position:19% 100%}
    100%{background-position:82% 0%}
}
@keyframes AnimationName { 
    0%{background-position:82% 0%}
    50%{background-position:19% 100%}
    100%{background-position:82% 0%}
}

