/* WRAP */

html, body {
	height: 100%;
}

body {
	background-color: #fff;
	overflow-x: hidden;
	font-size: 14px;
	letter-spacing: 1px;
	font-family: 'Open Sans', sans-serif;
}

#wrap {
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 1;
}

/* COMMONS */

/* INPUT */

input, select, textarea {
	appearance: none;
	-moz-appearance: none;
	-ms-appearence: none;
	-o-appearence: none;
	-webkit-appearance: none;
	outline: none;
}

input:focus, select:focus, textarea: focus {
	outline: none;
	border: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
	width: 100%;
	font-family: 'Prata', sans-serif;
	font-size: 14px;
	background-color: transparent;
	border-top: none;
    border-left: none;
    border-right: none;
	border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
	border-bottom: 1px solid #c69c6d;
}

input[type="submit"],
input[type="reset"] {
	border-radius: none;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
	width: 100%;
}

/* DIVIDER */

.divider-center {
	width: 30px;
	border-top: 1px solid #333;
	margin: 20px auto;
}

.divider-left {
	width: 30px;
	border-top: 2px solid #333;
	margin: 20px 0;
}

/* BUTTONS */

.button {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 50px;
	height: 50px;
	text-transform: uppercase;
	display: inline-block;
	width: 220px;
	text-align: center;
}

/* HEADER */

#header {}

.top-header {
	background-color: #f1f1f1;
	font-family: 'Montserrat', sans-serif;
}

.logo-small {
	float: left;
	padding: 10px 0;
}

.logo-small img {
	height: 50px;
}

.switch-lang {
	float: right;
	line-height: 70px;
}

.switch-lang a:hover,
.switch-lang a.current {
	color: #CF000F;
}

.logo {
	margin: 50px 0;
	font-size: 70px;
	line-height: 100px;	
	font-weight: 800;
	text-align: center;
}

.logo img {
	max-height: 200px;
}

/* CALLOUT */

#callout {
	margin-bottom: 50px;
}

.callout-title {
	text-align: center;
	font-size: 48px;
	line-height: 60px;
	font-family: 'Roboto Slab', sans-serif;
	font-weight: 600;
}

.divider {
	clear: both;
	width: 50px;
	border: 1px solid #dfdfdf;
	margin: 20px auto;
	text-align: center;
}

/* PARALLAX */

.parallax {
	height: auto;
	width: 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center 70%;
	background-size: cover;
    moz-background-size: cover;
    o-background-size: cover;
    ms-background-size: cover;
    webkit-background-size: cover;
}

.overlay {
	height: 100%;
	width: 100%;
	background-color: rgba(255,255,255,0.9);
	padding: 100px 0;
	text-align: center;
}

.post-new-date {
	color: #CF000F;
	font-size: 14px;
	border: 2px solid #CF000F;
	padding: 5px 10px;
	display: inline-block;
}

.post-new-exc,
.post-new-full {
	margin-top: 20px;
	font-size: 20px;
	line-height: 32px;
	font-family: 'Roboto Slab', sans-serif;
}

.post-new-full {
	display: none;
}

.post-new-more .plus,
.post-new-more .minim {
	color: #CF000F;
	text-align: center;
	font-size: 30px;
	display: block;
	cursor: pointer;
	
	transition: 0.1s all ease-in-out;
	-moz-transition: 0.1s all ease-in-out;
	-ms-transition: 0.1s all ease-in-out;
	-webkit-transition: 0.1s all ease-in-out;
}

.post-new-more .minim {
	display: none;
}

.post-new-more .plus:hover,
.post-new-more .minim:hover {	
	transition: 0.1s all ease-in-out;
	-moz-transition: 0.1s all ease-in-out;
	-ms-transition: 0.1s all ease-in-out;
	-webkit-transition: 0.1s all ease-in-out;
}

/* CONTENT */

#content {
	padding-top: 100px;
	padding-bottom: 75px;
	background-color: #fff;
}

/* MENU SIDE */

.title-menu {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	text-transform: uppercase;
	color: #CF000F;
	margin-bottom: 25px;
}

.title-menu:after {
	content: '';
	width: 50px;
	border-top: 2px solid #CF000F;
	display: block;
	margin-top: 10px;
}

.menu-side {
	margin-bottom: 26px;
}

.menu-side ul {}

.menu-side ul li {
	display: list-item;
	border: 2px solid #f1f1f1;
	background-color: #f1f1f1;
	margin-bottom: 4px;
		
	transition: 0.3s all ease-in-out;
	-moz-transition: 0.3s all ease-in-out;
	-ms-transition: 0.3s all ease-in-out;
	-webkit-transition: 0.3s all ease-in-out;
}

.menu-side ul li:hover {
	border: 2px solid #CF000F;
	color: #CF000F;
	background-color: #fff;
	text-align: center;
	
	transition: 0.3s all ease-in-out;
	-moz-transition: 0.3s all ease-in-out;
	-ms-transition: 0.3s all ease-in-out;
	-webkit-transition: 0.3s all ease-in-out;
}

.menu-side ul li a {
	text-transform: uppercase;
	display: block;
	padding: 20px;
}

.menu-side ul .item-current {
	border: 2px solid #CF000F;
	color: #CF000F;
	background-color: #fff;
	text-align: center;
}

.menu-side .list-child {
	display: none;
}

.menu-side .list-child li {
	background-color: #fff;
}

.menu-side .list-child li a {
	font-size: 12px;
}

.menu-side ul .item-parent:hover {}

.menu-side .list-child li:hover {
	text-decoration: underline;
}

.menu-side .list-child li, 
.menu-side .list-child li:hover {
	border: none;
}

.item-empty a { cursor: default; }

/* BLOG */

.last-news {}

.title-news {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	text-transform: uppercase;
	color: #CF000F;
	margin-bottom: 25px;
}

.title-news:after {
	content: '';
	width: 50px;
	border-top: 2px solid #CF000F;
	display: block;
	margin-top: 10px;
}

.last-news ul {}

.last-news ul li {
	margin-bottom: 25px;
}

.post-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 10px;
	padding-left: 20px;
	display: inline-block;
}

.post-title a:hover {
	color: #CF000F;
}

.post-title .post-new {
	color: #CF000F;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	margin-right: 20px;
}

.post {
	position: relative;
	padding: 20px 50px 20px 20px;
	border-top: 2px solid #f1f1f1;
	border-left: 2px solid #f1f1f1;
	border-right: 2px solid #f1f1f1;
	border-bottom: 2px solid #ebebeb;
}

.post-more {
	top: 0;
	right: 0;
	position: absolute;
	text-align: center;
}

.post-more .plus,
.post-more .minim {
	color: #CF000F;
	line-height: 30px;
	text-align: center;
	font-size: 20px;
	display: block;
	height: 30px;
	width: 30px;
	cursor: pointer;
	
	transition: 0.1s all ease-in-out;
	-moz-transition: 0.1s all ease-in-out;
	-ms-transition: 0.1s all ease-in-out;
	-webkit-transition: 0.1s all ease-in-out;
}

.post-more .minim {
	display: none;
}

.post-more .plus:hover,
.post-more .minim:hover {
	font-size: 36px;
	
	transition: 0.1s all ease-in-out;
	-moz-transition: 0.1s all ease-in-out;
	-ms-transition: 0.1s all ease-in-out;
	-webkit-transition: 0.1s all ease-in-out;
}

.meta-post {
	color: #acacac;
	font-size: 12px;
	line-height: 18px;
	margin-bottom: 10px;
}

.meta-post:after {
	content: '';
	width: 25px;
	border-top: 2px solid #cfcfcf;
	display: block;
	margin-top: 5px;
}

.meta-author {}
	
.meta-date {}

.meta-category {
	font-weight: 600;
}

.post-exc,
.post-full {
	line-height: 24px;
	
	transition: 0.3s all ease-in-out;
	-moz-transition: 0.3s all ease-in-out;
	-ms-transition: 0.3s all ease-in-out;
	-webkit-transition: 0.3s all ease-in-out;
}

.post-full {
	display: none;
}

/* FOOTER */

#footer {
	background-color: #f1f1f1;
}

.copy {
	padding: 50px 0;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
}

/* PAGE */

.header-page {
	height: 300px;
	width: 100%;
}

.overlay-page {
	height: 100%;
	width: 100%;
	background-color: rgba(255,255,255,0.7);
	position: relative;
}

.title-page {
	font-family: 'Roboto Slab', sans-serif;
	font-size: 40px;
	bottom: 140px;
	position: absolute;
	left: 129px;
	width: 1006px;
	height: 68px;
}

/* CALENDAR */

.title-calendar {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	text-transform: uppercase;
	margin-bottom: 25px;
	float: left;
}

.title-calendar span {
	color: #CF000F;
}

.calendar-table {
	width: 100%;
}

.row-week,
.row-week-head {
	width: 100%;
	display: table-row;
}

.row-week .cell-day {
	display: table-cell;
	height: 100px;
	background: #fafafa;
	border: 2px solid #fff;
	padding: 10px;
	font-size: 12px;
}

.row-week-head .cell-day {
	display: table-cell;
	height: 50px;
}

.cell-day span {
	background-color: #cfcfcf;
	color: #fff;
	display: block;
	width: 30px;
	height: 30px;
	margin-top: -10px;
	margin-bottom: 10px;
	margin-left: -10px;
	text-align: center;
	line-height: 20px;
}

.cell-day a:hover {
	color: #CF000F;
}

.cell-month {
	height: 170px;
	padding: 15px;
}

.cell-month div {
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    moz-background-size: cover;
    o-background-size: cover;
    ms-background-size: cover;
    webkit-background-size: cover;
	border: 2px solid #fff;
}

.cell-month:hover div {
	border: 2px solid #CF000F;
}

.cell-month:hover span {
	color: #CF000F;
}

.cell-month span {
	line-height: 150px;
	font-family: 'Montserrat', sans-serif;
	display: block;
	text-align: center;
	height: 100%;
	width: 100%;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background-color: rgba(255,255,255,0.8);
}

/* NAV CALENDAR */

.menu-calendar {
	float: right;
	margin-bottom: 25px;
}

.menu-calendar li {
	width: 200px;
	position: relative;
}

.menu-calendar li a {
	text-transform: uppercase;
	display: block;
	height: 45px;
	line-height: 45px;
	border: 2px solid #CF000F;
	color: #CF000F;
	text-align: center;
} 

.menu-calendar .list-child {
	display: none;
	position: absolute;
	top: 45px;
	z-index: 999;
	background-color: #cf000f;
}

.menu-calendar .list-child a {
	color: #fff;
	border: none;
	font-size: 12px;
	height: 35px;
	line-height: 35px;
}

.menu-calendar .list-child a:hover {
	text-decoration: underline;
}

/* POST / EVENT */

.post-meta { 
	display: inline-block;
	text-transform: capitalize;
	background-color: #fafafa;
	padding: 5px 10px;
	font-style: italic;
}
