/*
Theme Name: AIM
Theme URI: http://www.agenziainternetmarketing.it
Author: Alessio Braccia for AIM
Author URI: http://perfectpixels.io/
Description: Description
Version: 1.0.0
Text Domain: aim
Domain Path: /languages/
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

aim is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
	12.1 - Captions
	12.2 - Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html,
body{
	width: 100%;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
	background: #fff;
	font-family: "Lato", Arial, sans-serif;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:hover,
a:active {
	outline: 0;
}
a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-size: 16px;
	font-size: 1.6em;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
}
p {
	margin-bottom: 1.5em;
}
b, strong {
	font-weight: bold;
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
	margin: 0 1.5em;
}
address {
	margin: 0 0 1.5em;
}
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5em;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
ul, ol {
	margin: 0 0 1.5em 3em;
}
ul {
	list-style: disc;
}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.5em 1.5em;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid #ccc;
	border-color: #ccc #ccc #bbb #ccc;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 12px;
	font-size: 1.2em;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
/* button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa #bbb;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
} 
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}
textarea {
	overflow: auto; /* emoves default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 98%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
	display: block;
}
.main-navigation li {
	float: left;
	position: relative;
}
.main-navigation a {
	display: block;
	text-decoration: none;
}
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	display: none;
	float: left;
	left: 0;
	position: absolute;
	top: 1.5em;
	z-index: 99999;
	background: #cd1719;
}
.main-navigation ul ul ul {
	left: 100%;
	top: 0;
}
.main-navigation ul ul a {
	width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation ul li ul a {
	color: #ffffff!important;
}
.main-navigation li:hover > a {
}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
	display: block;
}
.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
}
/* Small menu */
.menu-toggle {
	display: none;
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
.byline,
.updated {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.entry-content p{
	font-family: "Lato", Arial, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
.entry-content p strong{
	font-weight: 400;
}
/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
	max-width: 25%;
}
.gallery-columns-5 .gallery-item {
	max-width: 20%;
}
.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}
.gallery-caption {}

/*--------------------------------------------------------------
13.0 General
--------------------------------------------------------------*/
#page{
	width: 100%;
	background: #ffffff;
	position: absolute;
	z-index: 9;
}
.wrapper{
	width: 960px;
	margin: 0 auto;
	overflow: hidden;
}
.red_bg{
	background-color: #cd1719;
}
/* Buttons */
.btn{
	padding: 13px 16px;
	border: 1px solid #cd1719;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #cd1719;
	font-weight: 300;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	
	background: none;
}
.btn a{
	color: #cd1719;
}
/* Section */
#content,
.site-footer{
	min-width: 960px;
}
.section_title,
.entry-title{
	font-family: "Open Sans", Arial, sans-serif;
	color: #cd1719;
	font-size: 36px;
	display: block;
}
/*--------------------------------------------------------------
13.0 Header
--------------------------------------------------------------*/
#header{
	width: 100%;
	background: #cd1719;
	position: absolute;
	z-index: 9999;
}
#header .logo{
	display: inline-block;
	margin: 42px 0 0 0;
}
/* Navigation */
#header #site-navigation{
	float: right;
	margin: 48px 0;
}
#header #site-navigation .menu-mini-nav-container{
	margin-right: 15px;
	padding-top: 2px;
	float: left;
	display: inline-block;
}
#header #site-navigation .area-clienti{
	float: left;	
}
#header #site-navigation ul li a{
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 16px;
	float: left;
}
#header #site-navigation ul li:after{
	content: "|";
	margin: 0 15px 0 10px;
	float: left;
	color: #ffffff;
}
#header #site-navigation ul li:last-child:after{
	content: none;
}
#header .area-clienti{
	background: #ffffff;
	padding: 2px 5px;
	display: inline-block;
	color: #cd1719;
	font-size: 16px;
	font-weight: 300;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
/*--------------------------------------------------------------
13.0 Home Page
--------------------------------------------------------------*/
/* Intro */
#teaser{
	height: 70%;
	background: #cd1719;
	position: relative;
}
#teaser #shuttle{
	margin: 0 auto;
	position: absolute;
	left: -4px;
	right: 0;
	bottom: 23%;
	z-index: 99;
}
#teaser #shuttle.animation-start{
	-webkit-animation-name: shuttle-start;
	-webkit-animation-duration: 1s;
	animation-name: shuttle-start;
	animation-duration: 1s;
	-webkit-animation-iteration-count: 1; /* Chrome, Safari, Opera */
    animation-iteration-count: 1;
    bottom: 37%;
}
@keyframes shuttle-start{
    0%   {bottom:23%;}
    20%   {bottom:23%;}
    100% {bottom: 37%;}
}
@-webkit-keyframes shuttle-start{
    0%   {bottom:23%;}
    20%   {bottom:23%;}
    100% {bottom: 37%;}
}
#teaser #clouds{
	margin: 0 auto;
	position: absolute;
	left: 0;
  	right: 0;
	bottom: -110px;
	display: block;
}
#teaser .description{
	position: relative;
	top: 85px;
	left: 0;
	right: 0;
	display: table;
	margin: 0 auto;
	font-size: 40px;
	color: #ffffff;
}
/* Services */
#services{
	padding-top: 40px;
	padding-bottom: 40px;
	overflow: hidden;
	position: relative;
}
#services .single{
	width: 260px;
	margin: 40px 30px 0;
	float: left;
}
#services .single .title{
	font-weight: 400;
	font-size: 32px;
	color: #921112;
	text-align: center;
	display: block;
}
#services .single .description{
	font-weight: 300;
	font-size: 14px;
	color: #555555;
	text-align: justify;
}
#services .single .icons{
	display: block;
	margin: 0 auto 20px;
	background-repeat: no-repeat;
}
#services .icons.promozione{
	width: 57px;
	height: 60px;
	background-image: url('images/icons/promozione.png');
}
#services .icons.webdesign{
	width: 60px;
	height: 60px;
	background-image: url('images/icons/webdesign.png');
}
#services .icons.posizionamento{
	width: 60px;
	height: 60px;
	background-image: url('images/icons/posizionamento.png');
}

/* Questions */
#questions{
	width: 100%;
	margin-top: 80px;
	position: relative;
	min-width: 960px;
	height: auto;
	overflow: hidden;
}
#questions .box{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0 40px 40px;
}
#questions .two{
	display: block;
	overflow: hidden;
}
#questions .single{
	width: 48%;
	min-width: 256px;
	float: left;
	margin: 0 1%;
}
#questions .single .title{
	font-weight: 400;
	font-size: 24px;
	color: #cd1719;
}
#questions .single .description{
	font-weight: 300;
	font-size: 14px;
	color: #555555;
}

/* Link Contact */
#link_contact{
	width: 100%;
	padding: 45px 0;
}
.need{
	font-weight: 400;
	font-size: 24px;
	color: #ffffff;
}
#link_contact a.btn{
	border: 1px solid #ffffff;
	color: #ffffff;
	float: right;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#link_contact a.btn:hover{
	background-color: #ffffff;
	color: #cd1719;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
/* Home Blog */
#blog_home{
	padding: 40px 0;
}
#blog_home .section_title{
	margin: 0 0 20px 0;
}
#blog_home .post{
	width: 740px;
}
#blog_home .readmore{
	text-align: center;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#blog_home a.readmore:hover{
	background-color: #cd1719;
	color: #ffffff;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#blog_home .entry-title{
	margin: 0 0 10px 0;
}
.entry-title,
.entry-title a{
	font-weight: 400;
	font-size: 24px;
	color: #1d1d1b;
	
	text-decoration: none;
}
.entry-title a:hover{
	color: #cd1719;
}
#blog_home .entry-summary{
	font-weight: 300;
	font-size: 14px;
	color: #555555;
	margin: 0;
}

/* Newsletter */
#newsletter{
	padding: 40px 0;
	width: 100%;
}
#newsletter form{
	display: inline-block;
	float: right;
}
#newsletter input[type="text"]{
	-webkit-appearance: none;
	font-family: "Lato", Arial, sans-serif;
	padding: 5px 6px 7px;
	font-size: 18px;
	width: 220px;
	border: none;
	color:#4C6672;
	font-weight: 300;
	-webkit-box-shadow: none;
	-moz-box-shadow:none;
	box-shadow: none;
	outline: 0px;
	float: left;
}
#newsletter input[type="submit"]{
	margin: 0 0 0 5px;
	font-weight: 300;
	font-family: "Lato", Arial, sans-serif;
	font-size: 14px;
	box-shadow: none;
	padding: 13px 16px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: none;
	color: #cd1719;
	font-weight: 300;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	background: #ffffff;
	text-shadow: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#newsletter input[type="submit"]:hover {
  background-color: #cd1719;
  color: #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* Contact */
#contacts{
	margin: 40px 0;
}
#contacts .section_title{
	margin-bottom: 20px;
}
#contacts form{
	overflow: hidden;
}
#contacts .form_part{
	width: 460px;
	margin: 0 10px;
	float: left;
}
#contacts input[name=nome],
#contacts input[name=email]{
	margin-right: 20px;
}
#contacts input[name=nome],
#contacts input[name=cognome]{
	margin-bottom: 56px;
}
#contacts form input[type=text],
#contacts form input[type=email]{
	-webkit-appearance: none;
	font-family: "Lato", Arial, sans-serif;
	padding: 5px 6px 7px;
	font-size: 18px;
	width: 220px;
	border: none;
	border: 1px solid #DBE0E3;
	color:#4C6672;
	font-weight: 300;
	margin-bottom: 36px;
	-webkit-box-shadow: none;
   	-moz-box-shadow:none;
   	box-shadow: none;
   	outline: 0px;
	float: left;
}
#contacts form textarea{
	-webkit-appearance: none;
	font-family: "Lato", Arial, sans-serif;
	padding: 5px 6px 20px;
	font-size: 18px;
	width: 100%;
	border: none;
	border: 1px solid #DBE0E3;
	color: #4C6672;
	font-weight: 300;
	margin-bottom: 15px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0px;
	line-height: 28px;
	
	max-width: 460px;
}
#contacts form input[type=submit]{
	width: 100%;
	margin: 20px 0 0 0;
	font-weight: 300;
	font-family: "Lato", Arial, sans-serif;
	font-size: 14px;
	box-shadow: none;
	
	padding: 13px 16px;
	border: 1px solid #cd1719;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #cd1719;
	font-weight: 300;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	
	background: #ffffff;
	text-shadow: none;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#contacts form input[type=submit]:hover{
	background-color: #cd1719;
	color: #ffffff;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#contacts form br{
	display: none;
}
#contacts span.wpcf7-list-item{
	margin-left: 0px;
}
#contacts .privacy{
	font-weight: 300;
}
#contacts .privacy a{
	font-weight: 300;
	text-decoration: none;
	color: #404040;
}
#contacts .screen-reader-response{
	width: 100%;
	height: auto;
	position: static;
}
/* Footer */
#colophon{
	padding: 40px 0;
}
#colophon .box_title{
	font-weight: 400;
	font-size: 18px;
	color: #ffffff;
	display: block;
}
#colophon .description{
	font-weight: 300;
	font-size: 12px;
	color: #ffffff;
	display: block;
}
#colophon section{
	width: 240px;
	margin: 0 100px 0 0;
	float: left;
}
#colophon .btn{
	margin: 10px 0 0 0;
	display: inline-block;
	border-color: #ffffff;
}
#colophon a.btn{
	color: #ffffff;
}

/* 404 */
.error-404{
	width: 100%;
	background-color: #cd1719;
	color: #ffffff;
	text-align: center;
	display: table;
}
.error-404 .container{
	display: table-cell;
	vertical-align: middle;
}
.error-404 .page-title{
	font-size: 120px;
}
.error-404 .page-content{
	margin: 0;
	font-size: 24px;
	font-weight: 300;
}
/* Archives */
.archive .page-title,
.single-post .page-title,
.page .page-title{
	background: #cd1719;
	padding: 20px 0;
	color: #ffffff;
	font-size: 44px;
	font-weight: 300;
}
a.btn.readmore{
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
a:hover.btn.readmore{
	border: 1px solid #cd1719;
	background: #cd1719;
	color: #ffffff;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#primary,
#secondary{
	margin-top: 40px;
}
#primary{
	width: 560px;
	margin-right: 40px;
	float: left;
}
#secondary{
	width: 360px;
	float: left;
}
.page #primary{
	width: 100%
}
.archive .post{
	margin-bottom: 40px;
}
.archive .entry-summary{
	font-weight: 300;
}
.posted-on,
.byline{
	font-weight: 300;
}
.posted-on a,
.byline a{
	font-weight: 400;
	color: #cd1719;
	text-decoration: none;
}
.posted-on a:hover,
.byline a:hover{
	text-decoration: underline;
}
.post-edit-link{
	float: right;
}
/* Single */
article{
	margin: 0;
}
.single #primary,
.single #secondary{
	margin-top: 20px;
}
.separator{
	width: 100%;
	display: block;
	border-bottom:1px dotted #CCC;
}
/* Page */
.page #primary{
	margin-top: 20px;
}
/* Nav Left */
#menu-appr{
	width: 480px;
	position: fixed;
	top: 0;
	z-index: 1;
	display: block;
	height: 100%;
	background-color: #22282f;
	color: #ffffff;
	overflow: scroll;
}
#menu-appr a{
	text-decoration: none;
}
#menu-appr ul{
	list-style: none;
	margin-top: 30px;
}
#menu-appr ul li{
	padding: 10px 0;
}
#menu-appr ul li a{
	color: #ffffff;
	font-weight: 400;
	font-size: 24px;
}
#menu-appr ul li ul{
	margin-top: 0;
	display: block!important;
	visibility: visible!important;
}
#menu-appr ul li ul a{
	font-weight: 300;
	font-size: 18px;
}
#menu-appr ul li ul li{
	padding: 0;
}
#page.nav-left{
	overflow-y: hidden;
	width: 100%!important;
}
/*--------------------------------------------------------------
13.0 Responsive
--------------------------------------------------------------*/
@media 
(-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) {

}
@media (max-width:1254px) {
	#clouds {
		width: 98%;
	}
}

@media (max-width:961px) { /* tablet, landscape iPad, lo-res laptops ands desktops */
	.wrapper{
		width: 100%;
		padding: 0 20px;
	}
	#content,
	#questions,
	.site-footer{
		min-width: initial;
	}
	#services .single{
		margin-right: 2%;
		margin-left: 2%;
		width: 29%;
	}
	#services .single .title{
		font-size: 30px;
	}
	#questions{
		margin-top: 40px;
	}
	#questions .box{
		padding: 15px 0;
	}
	#questions .single{
		width: auto;
		margin: 0 5%;
	}
	#blog_home .post{
		width: 100%;
	}
	#contacts .form_part{
		width: 100%;
	}
	#contacts form input[type=text],
	#contacts form input[type=email]{
		width: 47%;
	}
	#contacts form input[name=cognome],
	#contacts form input[name=sito]{
		margin-right: 20px;
	}
	#contacts form textarea,
	#contacts form input[type=submit]{
		min-width: 97%;
		max-width: 97%;
	}
	#header #site-navigation ul li a{
		font-size: 14px;
	}
}
@media (max-width:733px) {
	#header{
		height: auto;
	}
	#header #site-navigation{
		width: 100%;
		margin: 0;
		display: none;
	}
	.menu-appr-btn{
		display: block!important;
	}
	.menu-toggle{
		float: right;
		font-size: 30px;
		margin-top: 50px;
		display: block;
		margin-right: 20px;
	}
	#header .main-navigation ul{
		position: static;
		width: 100%;
		top: auto;
		right: auto;
		margin-bottom: 20px;
	}
	#header .main-navigation ul li{
		float: none!important;
		display: block;
	}
	ul.children{
		display: none!important;
	}


	#clouds{
		width: 98%;
	}
}
@media (max-width:481px) { /* smartphones, iPhone, portrait 480x320 phones */	
	.blur_nav{
		display: none;
	}
	.blur_nav ul li{
		display: block!important;
		margin: 0!important;
	}
	#intro .wrapper{
		display: table-cell;
	}
	#services .section_title{
		text-align: center;
	}
	#services .single{
		width: 100%;
		margin-left: 1%;
		margin-top: 20px;
	}
	#services .single .description{
		margin: 0;
	}
	#questions .box{
		width: 100%;
	}
	#questions .single{
		min-width: inherit;
	}
	#link_contact{
		padding: 20px 0;
	}
	#link_contact .need{
		margin-bottom: 10px;
	}
	#link_contact .need{
		text-align: center;
		display: block;
	}
	#link_contact .btn{
		text-align: center;
		font-size: 16px;
	}
	#blog_home .readmore{
		text-align: center;
		display: block;
	}
	#contacts form p{
		margin: 0;
	}
	#contacts .privacy{
		float: left;
		margin-bottom: 10px;
	}
	#contacts form input[type=text],
	#contacts form input[type=email]{
		width: 96%;
		margin-bottom: 20px;
	}
	#contacts form textarea,
	#contacts form input[type=submit]{
		min-width: 96%;
		max-width: 96%;
	}
	.error-404 .page-content{
		margin: 0 2%;
	}
}
@media (max-width:320px){
	#teaser .description{
		font-size: 28px;
	}
	#teaser #shuttle{
		width: 36px;
		bottom: 10%;
	}
	@keyframes shuttle-start{
	    0%   {bottom: 3%;}
	    20%   {bottom: 3%;}
	    100% {bottom: 10%;}
	}
	@-webkit-keyframes shuttle-start{
	    0%   {bottom: 3%;}
	    20%   {bottom: 3%;}
	    100% {bottom: 10%;}
	}
}
/* Sociable FIX */
.sociable{
	display: none;
}








.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-main-content {
  /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
  min-height: 100%;
  position: relative;
  background-color: #f5f4e9;
  z-index: 2;
  padding-top: 50px;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-main-content.lateral-menu-is-open {
  /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
  -webkit-transform: translateX(-200px);
  -moz-transform: translateX(-200px);
  -ms-transform: translateX(-200px);
  -o-transform: translateX(-200px);
  transform: translateX(-200px);
}
@media only screen and (min-width: 768px) {
  .cd-main-content {
    padding-top: 70px;
  }
}
.menu-appr-btn{
	display: none;
	margin-top: 53px;
	float: right;
}
.menu-appr-btn a{
	color: #ffffff;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	float: left;
}
.menu-appr-btn a::after{
	margin-left: 8px;
	content: "\f0c9";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: translate(0, 0);
}
header {
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
header.lateral-menu-is-open {
  /* translate to show the lateral menu */
  -webkit-transform: translateX(-200px);
  -moz-transform: translateX(-200px);
  -ms-transform: translateX(-200px);
  -o-transform: translateX(-200px);
  transform: translateX(-200px);
}
header.is-fixed {
  position: fixed;
}
#cd-top-nav {
  position: absolute;
  top: 0;
  right: 120px;
  height: 100%;
  display: none;
}
#cd-top-nav ul {
  height: 100%;
  padding-top: 18px;
}
#cd-top-nav li {
  display: inline-block;
  margin-right: 1em;
}
#cd-top-nav a {
  display: inline-block;
  padding: .5em;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 600;
}
#cd-top-nav a.current {
  background-color: #242e30;
}
.no-touch #cd-top-nav a:hover {
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (min-width: 768px) {
  #cd-top-nav {
    display: block;
  }
}
#cd-lateral-nav a{
	text-decoration: none;
}
#cd-lateral-nav ul{
	list-style: none;
	margin-top: 30px;
	margin-left: 30px;
	text-transform: uppercase;
}
#cd-lateral-nav ul li{
	margin-bottom: 10px;
}
#cd-lateral-nav ul li a{
	color: #ffffff;
	font-weight: 400;
	font-size: 20px;
}
#cd-lateral-nav ul li ul{
	margin-top: 0;
	display: block!important;
}
#cd-lateral-nav ul li ul a{
	font-weight: 300;
	font-size: 18px;
}
#cd-lateral-nav ul li ul li{
	padding: 0;
}

#cd-lateral-nav {
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  visibility: hidden;
  /* the secondary navigation is covered by the main element */
  z-index: 1;
  width: 200px;
  background-color: #242e30;
  overflow-y: auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
  transition: transform .4s 0s, visibility 0s .4s;
  /* this creates the subtle slide in animation of the navigation */
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  -ms-transform: translateX(80px);
  -o-transform: translateX(80px);
  transform: translateX(80px);
}
#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
  transition: transform .4s 0s, visibility 0s 0s;
  /* smooth the scrolling on touch devices - webkit browsers */
  -webkit-overflow-scrolling: touch;
}








/* Page Loader */
.page_loader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 999999;
	width: 100%;
	height: 100%;

	background-image: url(images/loader/stars.png);
	background-size: 800px;
	background-position: top;
	background-repeat: repeat; 
	background-color: #cd1719;

}
.page_loader .day{
	background-color: #15A19F;
}
.page_loader .earth{
	position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background-image: url(images/loader/earth.png);
  background-size: cover;
  background-position: top left;
  background-repeat: repeat-x;
  -webkit-animation: earth 5s linear infinite;
  -moz-animation: earth 5s linear infinite;
  -ms-animation: earth 5s linear infinite;
  animation: earth 5s linear infinite;
}
.page_loader .satelite{
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background-image: url(images/loader/satelite.png);
	background-size: contain;
	background-repeat: no-repeat;



	-webkit-animation: sat 2s linear infinite;
	-moz-animation: sat 2s linear infinite;
	-ms-animation: sat 2s linear infinite;
	animation: sat 2s linear infinite;

}

@keyframes earth {
  0% {background-position: 0px 0px;}
  100% {background-position: -193% 0px;}
}
@-moz-keyframes earth {
  0% {background-position: 0px 0px;}
  100% {background-position: -193% 0px;}
}
@-webkit-keyframes earth {
  0% {background-position: 0px 0px;}
  100% {background-position: -193% 0px;}
}
@-ms-keyframes earth {
 0% {background-position: 0px 0px;}
  100% {background-position: -193% 0px;}
}	



@keyframes sat {
   0% {

	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);

  }
  100% {
	
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);

  }
}
@-moz-keyframes sat {
   0% {

	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);

  }
  100% {
	
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);

  }
}
@-webkit-keyframes sat {
  0% {

	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);

  }
  100% {
	
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);

  }
}
@-ms-keyframes sat {
  0% {

	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);

  }
  100% {
	
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);

  }
}	



#cookie-notice{
	color: #cd1719!important;
	background-color: #ffffff!important;
	border-bottom: 1px solid #cd1719!important;
}
.cookie-notice-container .button{
	padding: 5px 10px;
	color: #ffffff;
	background-color: #cd1719;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	text-decoration: none;
}

/* Privacy Btn */
.privacy_footer{
	color: #ffffff;
	font-size: 12px;
	font-weight: 300;
	text-decoration: none;
}
.privacy_footer:hover{
	text-decoration: underline;
}