@charset "utf-8";
/* CSS Document */
/* HTML tag styling */
/*--------------------------------------------------------------
 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 {
	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/ */
	box-sizing: border-box; /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

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, a:link, a:focus {
	outline: 0;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}


/*--------------------------------------------------------------
 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #000;
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 2.3rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 0;
}

b,
strong {
	font-weight: bold;
}

dfn,
cite,
em,
i {
	font-style: italic;
}
/*--------------------------------------------------------------
 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0;
	padding:0;
}

ul {
	list-style: none;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin: 0;
	padding: 0;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

/*--------------------------------------------------------------
 Links
--------------------------------------------------------------*/
a {
	color: #000;
}

a:visited {
	color: #000;
}

a:hover,
a:focus,
a:active {
	color: #000;
}
.nav>li>a:focus, .nav>li>a:hover {
    background-color: transparent;
}
.nav>li>a {
    position: relative;
    display: block;
    padding: 0;
}

/*--------------------------------------------------------------
 Content 
--------------------------------------------------------------*/
body {
	height:100%;
	width:100%;
}

.intrologo {
	position: relative;
	width:100%;
    background-color: #1d1832;
    padding: 50px;
    border: solid 20px #fff;
    text-align: center;
    z-index:999;
}

.intrologo img.logo-intro {
	width:100%;
	height:auto;
	margin:0 auto;
}

.intrologo img.bambolo { 
	width:70px;
	height:auto;
	position:absolute;
	bottom:5px;
	right: 20px;
	cursor:pointer;
}
header {
	position: relative;
	width: 100%;
	background-color: #fff;
	z-index:990;
	padding-bottom:10px;
	-webkit-box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.2);
}

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

@media screen and (max-width: 500px) {
	.intrologo img.bambolo { 
		width:40px;
	}
}
/*--------------------------------------------------------------
 Menus
--------------------------------------------------------------*/


.language-menu-toggle {
	text-align: right;
}

.language-menu-toggle div.mod-languages ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.language-menu-toggle div.mod-languages li{
	display:inline;
	margin: 0 10px 2px 0;
}

ul.lang-inline li a {
	font-size:1rem;
	color:#000;
}

ul.lang-inline li.lang-active a {
	color: #999;
}

.language-menu-mini-toggle {
	display:none;
}
/*-----------------------------------------------------------*/

div#site-branding {
	width:100%;
	display:block;
	text-align: center;
	padding:20px 0 0;
	/*-webkit-box-shadow: 0px -3px 4px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px -3px 4px 0px rgba(0,0,0,0.2);
	box-shadow: 0px -3px 4px 0px rgba(0,0,0,0.2);*/

}

div#site-branding img.milaura-logo {
	width:200px;
	height:auto;
}
div#site-branding .mdc-logo {
	display: block;
}
div#site-branding .mdc-logo img {
	width:100px;
	height:auto;
	padding-bottom:20px;
}

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

.main-menu-toggle {
	display: none;
}

nav.main-navigation {
	clear: both;
}

nav.main-navigation ul {
	margin: 0 auto;
	padding: 10px 15px 0;
	text-align: center;
}

nav.main-navigation li {
	display:inline-block;
	margin: 0 4px 2px ;
	font-size: 1.3rem;
	line-height: 2rem;
}
nav.main-navigation .main-menu li:after { 
	content: " \00b7 ";
	color:#a03122;
	font-size: 2rem;
	position: absolute;
    left: -7px;
    top:0;
}
nav.main-navigation li:first-child:after { 
	content: none; 
	 }

nav.main-navigation .main-menu li a,
nav.main-navigation .main-menu li a:visited, 
nav.main-navigation .main-menu li a:hover,
nav.main-navigation .main-menu li a:focus,
nav.main-navigation .main-menu li a:active {
	/*color:#a03122;*/
	color:#000;
}

nav.main-navigation .main-menu li.active a {
	font-weight: 700;
	color:#a03122;
}

nav.main-navigation .nav>li>a {
position: relative;
display: block;
padding: 0 5px;
}

nav.main-navigation  .nav>li>a:hover {
background-color: transparent;
}

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

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

	div#site-branding {
		padding:10px 0 0;
	}

	div#site-branding img.milaura-logo {
		width:130px;
		height:auto;
	}
	
	div#site-branding .mdc-logo img {
		width:70px;
		height:auto;
		padding-bottom:0;
	}

	.main-menu-toggle {
		display: inline;
		position:absolute;
		top:23px;
		right:10px;
	}

	nav.main-navigation {
		display:none;
	}

	nav.main-navigation ul {
		margin: 0 auto;
		padding-bottom: 10px;
	}
	nav.main-navigation li {
		font-size: 1.5rem;
		line-height: 2.4rem;
		display:block;
		margin: 2px auto 10px;
		line-height: 1.4rem;
		padding: 15px 0;
	}
	nav.main-navigation nav.nav>li>a {
		padding: 20px;
	}

	nav.main-navigation .main-menu li:after { 
	    left: 50%;
	    top: -13px;
	    margin-left: -2px;
	}
	.language-menu-toggle {
		opacity:0;
		height:5px;
	}

	.language-menu-mini-toggle {
		display:block;
	}
	.language-menu-mini-toggle ul li {
		padding:10px 10px;
	}
}

/*--------------------------------------------------------------
 Main
--------------------------------------------------------------*/

main {
	max-width: 1400px;
	margin:0 auto;
}

.cerchio {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}
.fondo-r {
	background-color: #a03122;
}

.fondo-b {
	background-color: #1d1832;
}

.container-fluid {
    padding-right: 5px;
    padding-left: 5px;
    margin-right: auto;
    margin-left: auto;
}

/*--------------------------------------------------------------
 Homepage
--------------------------------------------------------------*/

h3.hero-section-title {
	font-size: 3.6rem;
	line-height: 3rem;
	color:#a03122;
	text-align: center;
	text-transform: lowercase;
	font-weight: 700;
}

h4.hero-article-title {
	font-size: 1.4rem;
	line-height: 2.2rem;
	text-align: center;
	text-transform: lowercase;
	font-weight: 400;
}

section.hp-box {
	clear: both;
	position:relative;
	margin: 20px auto 50px;
}

section.hp-box h3.hero-section-title {
	margin: 2.8rem auto 0;
    width: 100%;
}

section.hp-box h4.hero-article-title {
	position:absolute;
	left:0;
	top:6rem;
}

section.left .hp-intro-img .intro-img{
	width:55%;
	height:auto;
	position:absolute;
	top:25%;
	left:30%;
}

section.left .hp-intro-img .cerchio-r {
    width: 5%;
    height: auto;
    position: absolute;
    top: 60%;
    left: 18%;
}

section.left .hp-intro-img .cerchio-b {
    width: 18%;
    height: auto;
    position: absolute;
    top: 18%;
    left: 10%;
}

section.right .hp-intro-img .intro-img{
	width:55%;
	height:auto;
	position:absolute;
	top:20%;
	left:35%;
}

section.right .hp-intro-img .cerchio-r {
	width:35%;
	height:auto;
	position:absolute;
	top:55%;
	left:10%;
}

section.right .hp-intro-img .cerchio-b {
	width:8%;
	height:auto;
	position:absolute;
	top:35%;
	left:5%;
}

section.love {
	background-color: #1d1832;
	margin: 0 15px 30px;
}
section.love h3.hero-section-title {

}

section.love .love-img {
	margin:10%;
	border:solid 0.8rem #fff;
}

section.love .bambolino-cerchio {
	width: 25%;
	height:auto;
	text-align: center;
	margin: 10% auto;
}

section.love .love-description {
	margin-top:25px;
	font-size: 1.4rem;
	font-weight: 300;
	letter-spacing: 0.1rem;
	color:#fff;
	text-align: center;
}
/*-----------------------------------------------------------*/

@media screen and (max-width: 980px) {
	section.hp-box h3.hero-section-title {
		margin-top:0;
	}

	section.hp-box h4.hero-article-title {
		margin-top:1rem;
	}
	h3.hero-section-title {
		font-size: 3.2rem;
	}
}

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

	h3.hero-section-title {
		font-size: 2.6rem;
	}
	section.hp-box {
		margin: 20px auto 20px;
	}
}

@media screen and (max-width: 550px) {
	h3.hero-section-title {
		font-size: 1.3rem;
		line-height: 1.6rem;
	}

	h4.hero-article-title {
		font-size: 1.1rem;
		line-height: 1.4rem;
	}
	section.hp-box h4.hero-article-title {
		margin-top:0;
	}

	section.right .hp-intro-img .intro-img{
		width:50%;
	}
	section.left .hp-intro-img .intro-img{
		width:50%;

	}
	section.love .bambolino-cerchio {
		width: 50%;
		height:auto;
	}
	section.love .love-description {
		display:none;
	}
}

/*-----------------------------------------------------------
 Main content pages
-----------------------------------------------------------*/
#maincontent {
	position:relative;
}

.page-header {
	border:none;
	margin: 40px 0 10px;
    padding-bottom: 0;
}

.page-header h2 {
	font-size: 2.2rem;
	line-height: 2.4rem;
	color:#a03122;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
}

.page-header h2:after,
.page-header h2:before { 
	content: " \00b7 ";
}

#maincontent p {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif; 
	font-weight: 300;
	font-size: 1.4rem;
	line-height:2.3rem;
}

#maincontent h4 {
	font-size: 1.8rem;
	line-height:2.3rem;
}

#maincontent p b,
#maincontent p strong {
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 700;
}

#maincontent .item-image {
	position:relative;
	margin-bottom: 80px;
}

#maincontent .bambolino-cerchio {
	width: 80px;
	height:auto;
	position:absolute;
}

.corporateBody {
	margin-top:40px;
}
/*---*/

.story .bambolino-cerchio {
	bottom:-40px;
	left: 50%;
	margin-left: -40px;
}

.story .cerchio-b {
	width: 10%; 
	height: 10%;
	margin-left: 15%;
	margin-top: 60px;
}
.story .cerchio-r {
	width: 30%; 
	height: 30%;
	margin-left: 20%;
	margin-bottom: 30px;
}
/*---*/
.concept .row {
	margin-bottom:30px ;
}

.concept .row .first-col,
.concept .row .second-col {
	margin-bottom:30px ;
}

.concept .bambolino-cerchio {
	bottom:-40px;
	left: 50%;
	margin-left: -40px;
}

.concept .cerchio-b {
	width: 3%; 
	height: 3%;
	margin-left: 35%;
	margin-top: 60px;
}
.concept .cerchio-r {
	width: 10%; 
	height: 10%;
	margin-left: 50%;
	margin-bottom: 30px;
}

.cap  {
	width:35px;
	height: 35px;
	margin:15px 0 5px;
	background-color: #a03122;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	color:#fff;
	font-size: 2rem;
	line-height: 3.6rem;
	font-weight: 700;
	text-align: center;
}

/*---*/

.newnow-blog .page-header {
	margin: 20px 0 5px;
}
.newnow-blog .page-header h1{
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1.4rem;
	letter-spacing: 0.05rem;
}
.newnow-blog .meta-divider {
    border-top: 1px solid;
    width: 10%;
    display: block;
    max-width: 27px;
    margin: 0 auto 15px;
    color: inherit;
}
.newnow-article {
	text-align:center;
}

.newnow-article .article-info {
	margin: 10px auto 40px;
	display: block;
	width: 100%;
	text-align: center;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif; 
	font-size: 1.2rem;
	font-weight: 300;
	letter-spacing: 0.1rem;
}

.article-info-term {
	display:none;

}

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

@media (max-width: 768px) { 
	.corporateBody .row img.col-sm-6 {
		margin-bottom:30px;
	}

	.corporateBody .row img:last-child {
		margin-bottom:0;
	}

 }

/*-----------------------------------------------------------
 Footer
-----------------------------------------------------------*/

footer {
	position: relative;
	min-height: 300px;
	margin-top: 40px;
	padding-bottom: 50px;
	background-color: #1d1832;
	color:#fff;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
footer img.logo-footer {
	width:140px;
	height:140px;
	margin:30px auto 50px;
}

footer a,
footer a:link,
footer a:hover,
footer a:focus,
footer a:active,
footer a:visited {
	color:#fff;
}

footer #footer-menu {
	margin-bottom:40px;
}

footer #footer-menu h3 {
	margin-bottom:5px;
	text-transform: uppercase;
}
footer #footer-menu a:hover {
	text-decoration: underline;
}

footer #socialmedia {
	margin-bottom:40px;
	text-align: center;
}

footer #socialmedia a {
	color:#fff;
	margin: 0 10px;
}

footer #contacts {
}

footer #bambolo {
	position:relative;
}

footer img.bambolo { 
	width:50px;
	height:auto;
	position: absolute;
	bottom:0;
	right:15px;
}

@media (max-width: 768px) { 
	footer #footer-menu,
	footer #contacts  {
		text-align: center;
	}

 }

@media (max-width: 500px) { 
	footer img.logo-footer {
		width:100px;
		height:100px;
		margin:30px auto 50px;
	}

 }
/*-----------------------------------------------------------
 Utils
-----------------------------------------------------------*/
#cookieChoiceInfo {
	font-size: 0.9rem;
	line-height: 1rem;
}
/*-----------------------------------------------------------*/
