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

@ BOSS
@ Version: 1.0
@ Author: BootExpress

-------------------------------------

Table of contents

	01. Main Styles
		-Typography
		-Preloder
		-Right nav
	
	02. Main Area
	03. Intro 
		-Intro content
		-Countdown
		-Subscribe
	04. About Area
		-Portfolio
		-Contact info
		-Contact Form
	05. Social
*/


/* ===================================
   Main Styles
====================================== */

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700,900|Raleway:400,700');



body,
html {
	height: 100%;
	font-family: "Raleway", sans-serif;
}

body {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	margin: 0;
}

p {
	font-family: "Raleway", sans-serif;
	font-size: 17px;
	line-height: 26px;
	letter-spacing: 0.03em;
	margin-bottom: 20px;
	color: #666;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

/* Preloader */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(245, 245, 245, 0.96);
	z-index: 1000;
}

.pre-container {
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	text-align: center;
}

.spinner {
	margin: 0 auto;
	width: 70px;
	text-align: center;
}

.spinner>div {
	width: 18px;
	height: 18px;
	background-image: linear-gradient(left top, #591ec1, #B68689);
	background-image: -webkit-linear-gradient(left top, #591ec1, #B68689);
	background-color: #333;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0)
	}
	40% {
		-webkit-transform: scale(1.0)
	}
}

@keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}

.nav-switch {
	position: absolute;
	width: 90px;
	height: 90px;
	right: -10px;
	top: -10px;
	display: block;
	padding-top: 30px;
	padding-left: 23px;
	cursor: pointer;
	z-index: 20;
	-ms-transform: rotate(135deg);
	    transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}

.nav-switch:after {
	position: absolute;
	content: "";
	width: 95px;
	height: 173px;
	background: #fff;
	left: -26px;
	top: -42px;
}

@media only screen and (max-width: 767px) {
	.nav-switch {
		-ms-transform: rotate(135deg) scale(0.7);
		    transform: rotate(135deg) scale(0.7);
		-webkit-transform: rotate(135deg) scale(0.7);
		padding-left: 0px;
		top: -5px;
		right: -5px;
	}
	.nav-switch:after {
		left: -45px;
	}
}

.nav-switch div {
	height: 3px;
	background: #333;
	margin-bottom: 7px;
	border-radius: 10px;
	position: relative;
	z-index: 5;
}

.nav-switch .bar-one {
	width: 30px;
	top: 0;
	left: 0;
	-ms-transform: rotate(0deg);
	    transform: rotate(0deg);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.nav-switch .bar-two {
	width: 25px;
	opacity: 1;
	transition: all 0.7s;
	-webkit-transition: all 0.7s;
}

.nav-switch .bar-three {
	width: 30px;
	bottom: 0;
	left: 0;
	-ms-transform: rotate(0deg);
	    transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.nav-switch.active .bar-one {
	-ms-transform: rotate(360deg);
	    transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	top: 9px;
	left: 5px;
}

.nav-switch.active .bar-two {
	width: 10px;
	opacity: 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.nav-switch.active .bar-three {
	-ms-transform: rotate(-85deg);
	    transform: rotate(-85deg);
	-webkit-transform: rotate(-85deg);
	bottom: 12px;
	left: 5px;
}

.more-nav {
	position: absolute;
	width: 25px;
	height: 100%;
	right: 0;
	display: table;
	padding-top: 30px;
	z-index: 9;
}

.more-nav .nav-center {
	display: table-cell;
	vertical-align: middle;
}

.Firefox .more-nav a,
.Netscape .more-nav a{
	right: -20px;
}

.more-nav a {
	-ms-transform: rotate(90deg);
	    transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	display: block;
	position: relative;
	right: 19px;
	margin-top: -20px;
	margin-bottom: -20px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	color: #333;
	letter-spacing: 0.05em;
	font-family: "Montserrat", sans-serif;
	opacity: 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.more-nav.active a {
	opacity: 1;
	margin-top: 50px;
	margin-bottom: 50px;
}


/* ===================================
   Main Area
====================================== */
.main-area {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	overflow: hidden;
}

.main-area:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 3;
	background: #000;
	opacity: 0.5;
}

.main-area .main-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url(../img/bg.jpg);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 2;
}

.main-area.map-bg:after{
	opacity: 0.4;
}

.main-area.solid-color .main-bg,
.main-area.slideshow .main-bg,
.main-area.video-bg .main-bg,
.main-area.map-bg .main-bg{
	background-image: none;
}

.main-area.solid-color .main-bg{
	background-color: #009688;
}

.main-area.gradient-color .main-bg{
	background-image: linear-gradient(left top, #119ec7, #ab2ca5);
	background-image: -webkit-linear-gradient(left top, #119ec7, #ab2ca5);
}


.main-area.solid-color:after,
.main-area.gradient-color:after{
	opacity: 0;
}


/* ===================================
   Intro Area
====================================== */
.intro-section {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: table;
	overflow-y: auto;
	z-index: 4;
}
#particles{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.intro-section .container {
	padding: 0;
}

/* Intro content */
.intro-content {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	position: relative;
	left: 0;
	opacity: 1;
	padding: 0 15px;
	-webkit-filter: blur(0px);
	        filter: blur(0px);
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.intro-content.dark {
	opacity: 0.5;
	left: -250px;
	filter: blur(3px);
	-webkit-filter: blur(3px);
}

.intro-content h2 {
	font-size: 35px;
	font-family: "Montserrat", sans-serif;
	font-weight: 900;
	margin: 0;
	margin-bottom: 20px;
	margin-top: 10px;
	letter-spacing: 0.09em;
	color: #fff;
}

@media only screen and (max-width: 479px) {
	.intro-content h2 {
		font-size: 25px;
	}
}

.intro-content p {
	color: #fff;
}

.logo img {
	max-width: 100%;
}

/* Countdown */
.counter {
	margin-bottom: 15px;
}

.counter .cd-item {
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 22px;
	margin: 0 10px;
	letter-spacing: 0.06em;
}

.counter .cd-item span {
	font-family: "Raleway", sans-serif;
	font-weight: 700;
	color: #fff;
	font-size: 9px;
	text-transform: uppercase;
	margin-left: 2px;
	letter-spacing: 0.03em;
}

/* Subscribe */ 
.subcribe {
	background: #fff;
	padding: 13px 30px;
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	border-radius: 30px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.subcribe:hover {
	color: #fff !important;
}

.mfp-ready .subscribe-area {
	-ms-transform: scale(1);
	    transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
}

.mfp-removing .subscribe-area {
	-ms-transform: scale(0.8);
	    transform: scale(0.8);
	-webkit-transform: scale(0.8);
	opacity: 0;
}

.subscribe-area {
	width: 400px;
	background: url(../img/dotted-bg.png);
	background-position: bottom left;
	background-repeat: repeat-x;
	background-color: #FFF;
	margin: 0 auto;
	text-align: center;
	position: relative;
	padding: 0 33px 20px;
	opacity: 0;
	border-radius: 5px;
	-ms-transform: scale(0.8);
	    transform: scale(0.8);
	-webkit-transform: scale(0.8);
	transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 479px) {
	.subscribe-area {
		width: 100%;
	}
}

.subscribe-area h2 {
	color: #333;
	padding: 40px 10px;
	letter-spacing: normal;
	font-weight: 700;
	font-size: 23px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.subscribe-area p {
	padding: 0 10px;
}

.subscribe-area .mfp-close {
	position: absolute;
	background: #fff;
	top: -15px;
	right: -15px;
	border-radius: 50%;
	opacity: 1;
	box-shadow: -5px 6px 20px rgba(93, 93, 93, 0.17);
	transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
}

.subscribe-area .mfp-close:hover {
	color: #fff;
}

@media only screen and (max-width: 479px) {
	.subscribe-area .mfp-close {
		top: 10px;
		right: 10px;
		box-shadow: 0px 0px 20px rgba(93, 93, 93, 0.2);
	}
}

.subform {
	padding: 20px;
	position: relative;
}

.subform input {
	width: 100%;
	clear: both;
	height: 50px;
	padding: 10px 15px;
	margin-bottom: 25px;
	border: none;
	box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.3);
	background: #ffffff;
	border-radius: 4px;
}

.subform input:focus {
	outline: none;
}

.subform .subform-btn {
	margin-bottom: 40px;
	border: none;
	padding: 15px 32px;
	border-radius: 25px;
	color: #fff;
	letter-spacing: 0.06em;
	font-size: 13px;
	font-family: "Raleway", sans-serif;
	font-weight: 700;
	box-shadow: 0px 0 15px rgba(99, 99, 99, 0.42);
	transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
}

.subform .subform-btn:hover {
	outline: none;
	background-color: #fff;
}

.subform .subform-btn:focus {
	outline: none;
	color: #fff !important;
}

.subform label {
	position: absolute;
	bottom: 0;
	font-weight: 400;
	width: 100%;
	left: 0;
}


/* ===================================
   About Area
====================================== */
.more-section {
	position: absolute;
	width: 700px;
	height: 100%;
	right: -100%;
	top: 0;
	background: rgba(255, 255, 255, 0.97);
	overflow-y: auto;
	z-index: 8;
	transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 767px) {
	.more-section {
		width: 100%;
	}
}

.more-section.active {
	right: -20px;
}

.warp {
	padding: 70px 60px;
}

@media only screen and (max-width: 320px) {
	.warp {
		padding: 70px 25px;
	}
}

@media only screen and (max-width: 767px) {
	.warp {
		padding: 70px 15px;
	}
}

.no-pad {
	padding-left: 0;
	padding-right: 0;
}

.about-content {
	text-align: center;
}

.about-content h2 {
	font-size: 25px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

/* Portfolio */
.portfolios {
	overflow: hidden;
}

.portfolios a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.portfolios a img {
	max-width: 100%;
	min-width: 100%;
}

.portfolios a .work-info {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.8);
	text-align: center;
	transition: all 0.3s cubic-bezier(0.55, 0.09, 0.68, 0.53) 0s;
	-webkit-transition: all 0.3s cubic-bezier(0.55, 0.09, 0.68, 0.53) 0s;
	opacity: 0;
}

.portfolios a .work-info span {
	display: block;
	font-size: 22px;
	padding-top: 50%;
	margin-top: -70px;
	color: #fff;
	transition: all 0.2s cubic-bezier(0.55, 0.09, 0.68, 0.53) 0s;
	-webkit-transition: all 0.2s cubic-bezier(0.55, 0.09, 0.68, 0.53) 0s;
}

@media only screen and (max-width: 320px) {
	.portfolios a .work-info span {
		font-size: 16px;
		margin-top: -10px;
	}
}

@media only screen and (max-width: 767px) {
	.portfolios a .work-info span {
		font-size: 18px;
		margin-top: -10px;
	}
}

.portfolios a:hover .work-info {
	opacity: 1;
}

.portfolios a:hover .work-info span {
	margin-top: -20px;
}

/* Contact info*/
.con-item {
	text-align: center;
	margin-bottom: 70px;
}

.con-item p {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
	.con-item {
		margin-bottom: 30px;
	}
}

.con-icon {
	display: inline-table;
	text-align: center;
	width: 80px;
	height: 80px;
	background: #fff;
	margin-bottom: 15px;
	border-radius: 50%;
	border: 1px dashed #ededed;
	box-shadow: 0px 2px 20px 1px rgba(156, 156, 156, 0.1);
	font-size: 18px;
}

.con-icon i {
	vertical-align: middle;
	display: table-cell;
}
/* Contact Form*/
#contact-form input {
	min-width: 100%;
	height: 50px;
	padding: 10px;
	margin-bottom: 30px;
	border: none;
	box-shadow: 0px 2px 16px 1px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}

#contact-form textarea {
	min-width: 100%;
	min-height: 150px;
	padding: 10px;
	margin-bottom: 30px;
	border: none;
	box-shadow: 0px 2px 16px 1px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}

#contact-form input:hover,
#contact-form input:focus,
#contact-form textarea:hover,
#contact-form textarea:focus,
#contact-form button:hover,
#contact-form button:focus {
	outline: none;
}

#contact-form #send-form {
	background: transparent;
	border: 2px solid;
	padding: 16px 40px;
	border-radius: 35px;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

#contact-form #send-form:hover {
	color: #fff;
}

#contact-form button#send-form.done {
	background: #0fa049 !important;
	border-color: #0fa049 !important;
	color: #fff !important;
}

#contact-form button#send-form.error {
	background: #e20808 !important;
	border-color: #e20808 !important;
	color: #fff !important;
}


/* ===================================
   Social
====================================== */
.social {
	position: absolute;
	bottom: 0;
	width: 25px;
	height: 100%;
	text-align: center;
	display: table;
	z-index: 5;
}

.social .social-center {
	display: table-cell;
	vertical-align: middle;
}

.social a {
	display: block;
	padding-top: 5px;
	margin-bottom: 5px;
	color: #fff;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}