/* ----------------------------------
Perfect
Version: 1.0
Author: BootEx

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

Table of contents

  - Main Styles
  - Common Style
      -Preloader
  
  - Navigation
  - Intro 
  - About 
  - Service
  - Portfolio
  - Review
  - Contact
  - Footer
  - Responsive

*/



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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Raleway", sans-serif;
	font-weight: 700;
	padding: 0;
	margin: 0;
	color: #857ab9;
}

h1 {
	font-size: 65px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 14px;
}

h5 {
	font-size: 12px;
}

p {
	font-size: 18px;
	color: #777777;
	line-height: 30px;
	font-family: "Lora", sans-serif;
}

img {
	max-width: 100%;
}
a {
    color: #857ab9;
}
a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

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

.article-title {
	margin-bottom: 30px;
	font-size: 40px;
}

.spad {
	padding-top: 40px;
	padding-bottom: 80px;
}

.stitle {
	text-align: center;
	margin-bottom: 50px;
}

.stitle h2 {
	font-size: 40px;
	font-family: "Montserrat", sans-serif;
}


/*------------------
	Preloder
--------------------*/

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #fff;
}

.loader {
	width: 50px;
	height: 50px;
	border: 12px solid #857ab9;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -25px;
	border-radius: 60px;
	animation: loader 1s linear infinite;
	-webkit-animation: loader 1s linear infinite;
}

.loader:after {
	position: absolute;
	content: "";
	width: 12px;
	height: 50px;
	background: #fff;
	left: 10px;
	top: 15px;
}

@keyframes loader {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
	}
	50% {
		-webkit-transform: rotate(180deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}


/* ====================
	Navigation
=======================*/

.nav-switch {
	position: fixed;
	width: 70px;
	height: 50px;
	right: 0;
	top: 50px;
	background: #fff;
	z-index: 998;
	cursor: pointer;
	padding: 17px 17px 0px;
	border-radius: 30px 0px 0px 30px;
	box-shadow: -2px 4px 40px rgba(66, 66, 66, 0.23);
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.nav-switch span {
	display: block;
	height: 2px;
	background: #857ab9;
	margin-bottom: 5px;
	position: relative;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	transform-origin: left;
	-webkit-transform-origin: left;
}

.nav-switch .bar-one {
	width: 26px;
	margin-left: 5px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.nav-switch .bar-two {
	width: 36px;
}

.nav-switch .bar-three {
	width: 26px;
	margin-left: 5px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.nav-switch.active {
	width: 215px;
}

.nav-switch.active .bar-one {
	-webkit-transform: rotate(48deg);
	transform: rotate(48deg);
	top: -3px;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.nav-switch.active .bar-two {
	opacity: 0;
}

.nav-switch.active .bar-three {
	-webkit-transform: rotate(-48deg);
	transform: rotate(-48deg);
	top: 3px;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.mainmenu {
	position: fixed;
	right: 0;
	top: 50px;
	z-index: 999;
	right: -170px;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.mainmenu .menu-list {
	list-style: none;
	background: #fff;
	padding: 10px;
	box-shadow: -5px 5px 40px rgba(10, 10, 10, 0.15);
	width: 150px;
	position: relative;
}

.mainmenu .menu-list li {
	text-align: center;
}

.mainmenu .menu-list li a {
	display: block;
	color: #857ab9;
	padding: 7px 0px;
	position: relative;
}

.mainmenu .menu-list li a:after {
	position: absolute;
	content: "";
	width: 0px;
	height: 2px;
	bottom: 6px;
	left: 50%;
	margin-left: 0px;
	background: #857ab9;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.mainmenu .menu-list .current a:after {
	width: 10px;
	margin-left: -5px;
}

.mainmenu.active {
	right: 0;
}

.responsive {
	display: none;
}

.header-section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -999;
	background: rgba(255, 255, 255, 0.09);
	padding: 15px 30px;
	visibility: hidden;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.header-section .logo {
	display: inline-block;
	float: left;
}

.header-section .logo img {
	height: 65px;
	width: auto;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.header-section .menu-list {
	list-style: none;
	float: right;
	margin-top: 15px;
}

.header-section .menu-list li {
	display: inline;
}

.header-section .menu-list li a {
	display: inline-block;
	padding: 10px;
	color: #fff;
	position: relative;
}

.header-section .menu-list li a:after {
	position: absolute;
	content: "";
	width: 0px;
	height: 2px;
	bottom: 6px;
	left: 50%;
	margin-left: 0px;
	background: #fff;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.header-section .menu-list li a:hover:after {
	width: 10px;
	margin-left: -5px;
}

.header-section .menu-list .current a:after {
	width: 10px;
	margin-left: -5px;
}

.header-section.sticky {
	z-index: 999;
	visibility: visible;
	position: fixed;
	background: #fff;
	box-shadow: 0px 9px 50px rgba(58, 58, 58, 0.1);
	padding: 10px 30px;
}

.header-section.sticky .logo img {
	height: 55px;
}

.header-section.sticky .menu-list {
	margin-top: 8px;
}

.header-section.sticky .menu-list li {
	display: inline;
}

.header-section.sticky .menu-list li a {
	color: #857ab9;
}

.header-section.sticky .menu-list li a:after {
	background: #857ab9;
}


/* ====================
	Intro Section 
=======================*/

.intro-section {
	height: 85%;
	position: relative;
	overflow: hidden;
}

.intro-section:after {
	position: absolute;
	content: "";
	width: 105%;
	height: 200px;
	left: 0;
	bottom: -150px;
	background: #fff;
	-webkit-transform: rotate(4deg);
	transform: rotate(4deg);
	margin-left: -2%;
	z-index: 8;
}

.intro-section:before {
	position: absolute;
	content: "";
	width: 105%;
	height: 200px;
	right: -40%;
	bottom: -150px;
	background: #fff;
	-webkit-transform: rotate(-13deg);
	transform: rotate(-13deg);
	z-index: 9;
}

.intro-bg {
	position: absolute;
	height: 100%;
	width: 100%;
	background-image: url(../img/bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.intro-bg:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: 0.5;
}

#particles {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
}

.intro-content {
	position: absolute;
	bottom: 130px;
	transform-origin: left center;
	z-index: 11;
	left: 30px;
	-webkit-transform: rotate(4deg);
	transform: rotate(4deg);
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.intro-content h1 {
	font-family: "Montserrat", sans-serif;
	font-weight: 900;
	font-size: 70px;
	color: #fff;
}

.intro-content h2 {
	font-family: "Raleway", sans-serif;
	font-weight: 700;
	font-size: 30px;
	color: #fff;
}

.intro-content.hideup {
	bottom: 250px;
	opacity: 0;
}


/* ====================
	About Section 
=======================*/

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

.about-content p {
	font-size: 18px;
	line-height: 30px;
}

.about-content p ins {
	color: #857ab9;
}

.social {
	margin-top: 30px;
}

.social a {
	font-size: 20px;
	margin: 10px;
	color: #857ab9;
}


/* ====================
	Services Section 
=======================*/

.services-section {
	background: #f6f5fe;
}

.service-item {
	text-align: center;
}

.service-item i {
	font-size: 40px;
	margin-bottom: 20px;
}

.service-item h2 {
	font-size: 25px;
	margin-bottom: 15px;
}


/* ====================
	Portfolio Section 
=======================*/

.portfolio-filter {
	text-align: center;
	list-style: none;
	margin-bottom: 30px;
}

.portfolio-filter li {
	display: inline-block;
	margin: 0 6px;
	font-family: "Lora", sans-serif;
	cursor: pointer;
	font-size: 14px;
}

.portfolio-filter li.active {
	text-decoration: line-through;
}

.isotope_items {
	margin-bottom: -30px;
}

.work-item {
	position: relative;
	display: block;
	margin-bottom: 30px;
}

.work-item .work-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: transparent;
	z-index: 1;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.work-item .work-inner .work-info {
	position: relative;
	text-align: center;
	top: 50%;
	margin-top: -28px;
}

.work-item .work-inner .work-info h2 {
	color: #fff;
	font-size: 20px;
	margin-bottom: 9px;
	opacity: 0;
	position: relative;
	top: -40px;
	-webkit-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}

.work-item .work-inner .work-info h3 {
	color: #857ab9;
	font-size: 12px;
	font-family: "Lora", sans-serif;
	display: inline-block;
	background: #fff;
	padding: 6px 20px;
	border-radius: 20px;
	opacity: 0;
	position: relative;
	top: 40px;
	-webkit-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}

.work-item:hover .work-inner {
	background: rgba(0, 0, 0, 0.8);
}

.work-item:hover .work-inner .work-info h2,
.work-item:hover .work-inner .work-info h3 {
	opacity: 1;
	top: 0;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}


/* ====================
	Review Section 
=======================*/

.review-section {
	background: #f6f5fe;
}

.review-carousel .owl-dots {
	text-align: center;
	margin-top: 10px;
}

.review-carousel .owl-dots .owl-dot {
	width: 10px;
	height: 10px;
	background: #857ab9;
	display: inline-block;
	margin: 5px;
	border-radius: 50%;
	position: relative;
}

.review-carousel .owl-dots .owl-dot:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #857ab9;
	border-radius: 50%;
	opacity: 0.5;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.review-carousel .owl-dots .owl-dot.active:after {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

.single-review {
	text-align: center;
}

.single-review h2 {
	font-size: 25px;
	margin-bottom: 5px;
}

.single-review h3 {
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	margin-bottom: 10px;
}

.single-review .revew-stars {
	margin-bottom: 10px;
}


/* ====================
	Promotion Section 
=======================*/

.promotion-section {
	position: relative;
	overflow: hidden;
}

.promotion-section:after {
	position: absolute;
	content: "";
	width: 105%;
	height: 200px;
	left: 0;
	top: -150px;
	background: #f6f5fe;
	-webkit-transform: rotate(-4deg);
	transform: rotate(-4deg);
	margin-left: -2%;
	z-index: 8;
}

.promotion-section:before {
	position: absolute;
	content: "";
	width: 105%;
	height: 200px;
	right: -40%;
	top: -150px;
	background: #f6f5fe;
	-webkit-transform: rotate(13deg);
	transform: rotate(13deg);
	z-index: 9;
}

.promotion-bg {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-image: url(../img/promo-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.promotion-bg:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: 0.5;
}

.spacial-circle {
	position: relative;
	width: 250px;
	height: 250px;
	z-index: 1;
	margin: 140px auto 100px;
	background: rgba(133, 122, 185, 0.9);
	border-radius: 50%;
	display: table;
	text-align: center;
	padding: 20px;
}

.spacial-circle:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	border-radius: 50%;
	background: rgba(133, 122, 185, 0.6);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	z-index: -1;
}

.spacial-circle .circle-content {
	display: table-cell;
	vertical-align: middle;
}

.spacial-circle .circle-content h2 {
	color: #fff;
}


/* ====================
	Contact Section 
=======================*/

.contact-info {
	list-style: none;
}

.contact-info li {
	margin-bottom: 25px;
	display: block;
	padding: 15px;
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	position: relative;
}

.contact-info li h4 {
	font-size: 18px;
	margin-bottom: 10px;
}

.contact-info li p {
	margin-bottom: 0;
}

.contact-info li i {
	position: absolute;
	font-size: 150px;
	right: 30px;
	bottom: -23px;
	opacity: 0.06;
}

.contact-info li i.fa-paper-plane-o {
	font-size: 120px;
}

.contact-form input {
	display: block;
	width: 100%;
	height: 60px;
	padding: 10px;
	margin-bottom: 28px;
	border: 1px solid #ddd;
	border-radius: 2px;
	background: #f6f5fe;
	outline: none;
}

.contact-form textarea {
	display: block;
	min-width: 100%;
	min-height: 150px;
	padding: 10px;
	margin-bottom: 28px;
	border: 1px solid #ddd;
	border-radius: 2px;
	background: #f6f5fe;
	outline: none;
}

.contact-btn {
	width: 100%;
	display: block;
	background: #857ab9;
	color: #fff;
	border: none;
	padding: 17px 30px;
	border-radius: 70px;
	box-shadow: 0px 11px 30px transparent;
	outline: none;
	font-weight: 700;
	letter-spacing: 0.04em;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.contact-btn:hover {
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5);
}

#con_form #send-form.done {
  background: #0fa049;
  border-color: #0fa049;
  color: #fff;
}

#con_form #send-form.error {
  background: #e20808;
  border-color: #e20808;
  color: #fff;
}

#map {
	height: 450px;
}


/* ====================
	Footer Section 
=======================*/

.footer-section {
	background: #000;
	padding: 80px 0;
}

.copyright {
	text-align: center;
}

.copyright p {
	color: #fff;
	margin-bottom: 0;
}


/* ====================
	Responsive Section
=======================*/


/* Tablet desktop :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.profile-pic {
		margin-bottom: 20px;
	}
	.container {
		width: 710px;
	}
}


/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.cont-info {
		margin-bottom: 30px;
	}
	.cont-info:last-child {
		margin-bottom: 0;
	}
	.intro-content h2 {
		font-size: 45px;
	}
	.intro-content h1 {
		font-size: 23px;
	}
	.responsive {
		display: block;
		float: right;
		font-size: 22px;
		position: relative;
		top: 17px;
	}
	.header-section .menu-list {
		clear: both;
		display: block;
		width: 100%;
		-webkit-transform: rotateX(90deg);
		transform: rotateX(90deg);
		transform-origin: top center;
		-webkit-transform-origin: top center;
		-webkit-transition: all 0.5s ease 0s;
		transition: all 0.5s ease 0s;
	}
	.header-section .menu-list.nav-show {
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
	}
	.header-section .menu-list.nav-show li {
		height: 55px;
		opacity: 1;
	}
	.header-section .menu-list li {
		display: block !important;
		text-align: center;
		border-top: 1px solid #f7f7f7;
		height: 0;
		opacity: 1;
		-webkit-transition: all 0.5s ease 0s;
		transition: all 0.5s ease 0s;
	}
	.header-section .menu-list li a {
		padding: 14px;
	}
	.service-item {
		margin-bottom: 25px;
	}
	.service-item:last-child {
		margin-bottom: 0;
	}
}


/* small mobile :320px. */

@media only screen and (max-width: 479px) {
	.nav-switch {
		top: 20px;
	}
	.mainmenu {
		top: 20px;
	}
}
