body { 
	font-family: 'Open Sans'; 
}

.main {
    position: relative;
    width: 100%;
	overflow-x:hidden;
	min-height:100vh;
}
.main.open {
	perspective: 100em;
}
.main .wrapper {
    width:100%;
    position: relative;
	transition:all 300ms ease;
}
.main.open .wrapper {
	position:absolute;
	height: 100%;
	transform-origin: 0 0;
	transform: rotateY(45deg);
}

.sidemenu {
	position:fixed;
	width:100%;
	max-width:100%;
	height:100%;
	padding:15px;
	right:-100%;
	background-color:rgba(0,0,0,.8);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.sidemenu.show {
	z-index:2;
	right:0;
}
.main-menu {
	display:block;
	margin:0;
	padding:0;
	margin-top:70px;
	width:100%;
	list-style-type:none;
}
.main-menu li {
	display:block;
	text-align:right;
}
.main-menu li a {
	display:block;
	color:red;
	padding:5px 15px;
	font-weight:bold;
	font-size:36px;
	text-transform:uppercase;
}


/* Header */

.header {
	width:100%;
	display:block;
	position:fixed;
	top:0;
	z-index:99;
}
.header .logo {
	display:block;
	position:absolute;
	left:15px;
	top:15px;
}
.header .logo img {
	max-width:300px;
}
.btn-show-menu,.btn-close-menu {
	position:absolute;
	right:25px;
	top:25px;
	display:block;
	width:50px;
	height:50px;
	line-height:50px;
	border-radius:50%;
	background-color:#fff;
	color:#ff0000;
	border: none;
	font-weight:bold;
	font-size:24px;
	text-align:center;
}
.btn-show-menu span,.btn-close-menu span {
	position:absolute;
	display:block;
	width:50px;
	height:50px;
	left:0;
	top:0;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.btn-menu:hover span {
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
    transform: rotate(180deg);
}
.btn-menu span i {
	display:block;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}
@media (max-width:380px){
	.header .logo { top:5px; }
	.header .logo img { max-width:calc(100% - 80px); }
	.header .btn-menu { top:5px; right:15px; }
}




/* Footer */
.footer {
	padding:50px 0px 5px;
	background-color:#000;
	color:#fff;
}
.footer-form {
	width:100%;
	min-height:250px;
	margin-top:-100px;
	margin-bottom:30px;
}
.footer-form-container {
	padding:17px 20px;
	margin-bottom:10px;
	display:block;
	background-image:url(../images/footer/footer-form.png);
	background-repeat:no-repeat;
	background-size:100% auto;
}
.footer-form-container .footer-form-title {
	margin:0;
	margin-bottom:5px;
	font-weight:bold;
	font-size:18px;
	color:white;
}
@media (max-width:768px){
	.footer-form-container { padding-top:65px; }
}
@media (max-width:480px){
	.footer-form-container { padding-top:25px; }
}
@media (max-width:320px){
	.footer-form-container { padding-top:20px; }
}

.footer-form-container .form-group {
	margin-bottom:5px;
}
.footer-form-container .form-group .form-control{
	border:0;
	box-shadow:none;
	border-bottom:1px solid #ccc;
	background:transparent;
	font-weight:300;
	font-size:12px;
	color:black;
}
.footer-form-container .form-group.has-error .form-control {
	border-bottom:1px solid #a94442;
}
.footer-form-container .form-group .help-block {
	font-size:10px;
}
.footer-form .btn[type="submit"] {
	float:right;
	background:rgba(255,0,0,1);
	border-color:red;
}
.footer-form .btn[type="submit"]:hover {
	background:rgba(255,0,0,.8);
}

.footer-title-area {
	position:relative;
	width:100%;
	margin-bottom:15px;
}
.footer-title-icon {
	width:50px;
	height:50px;
	line-height:50px;
	background:red;
	border-radius:50%;
	text-align:center;
	color:white;
	position:absolute;
	left:0;
}
.footer-title {
	position:relative;
	padding:0px;
	margin:0;
	margin-left:65px;
	color:white;
	text-transform:uppercase;
	font-weight:300;
	min-height:50px;
}
.footer-title:after {
	content:"";
	position:absolute;
	width:100%;
	height:25px;
	min-height:20px;
	background-image:url(../images/footer/footer-title-line.png);
	background-repeat:no-repeat;
	background-size:100% auto;
	bottom:0px;
	right:0;
}
.footer-content-area {
	font-size:12px;
	margin-bottom:30px;
}

.footer-socmed {
	margin:0;
	padding:0;
	list-style-type:none;
	display:block;
}
.footer-socmed li {
	display:inline-block;
	font-size:18px;
}
.footer-socmed li+li {
	margin-left:10px;
}
.footer-socmed li a {
	color:#fff;
}
.footer-socmed li:hover a {
	color:red;
}

.footer-blog {
	
}
.footer-blog-item {
	display:block;
	position:relative;
}
.footer-blog-title {
	display:block;
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	background-color:rgba(0,0,0,.7);
	padding:10px 15px;
	margin:0;
	font-size:14px;
	color:white;
}
.copyright {
	text-align:center;
	margin:0;
	color:#ccc;
}

@media (min-width:768px){
	.copyright { margin-top:-50px; }
}