@import 'https://fonts.googleapis.com/css?family=Montserrat:400,700';
@import 'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700';
@import 'https://fonts.googleapis.com/css?family=Kaushan+Script';
html, body {
	line-height: 1.7;
	margin: 0;
	padding: 0;
}
body {
	color: #999;
	font-size: 13px;
	font-weight: 400;
	overflow-x: hidden;
	position: relative;
	font-family: 'Roboto', sans-serif;
}


/* Prelaoder */
#preloader {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	overflow: visible;
	background: #fff url("../images/preloader.svg") no-repeat center center;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main { 
	display: block;
}

hr {
	height: 2px;
	width: 800px;
	background: #5C5C5C;
	position: relative;
	border: -10px solid #fff;
	margin: 5px 50px 10px 0px;
}

/* =============== DEFAULT HTML - LINK STYLES =============== */
a {
	text-decoration: none;
	outline: none;
	color: #2ec06c;
	-webkit-transition: all .3s ease-in-out;
	   -moz-transition: all .3s ease-in-out;
		 -o-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
}
a:hover {
	color: #666;
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
a:focus {
	outline: none;
}
a img {
	border: none;
}
a[class*="glyphicon-"] {
	text-decoration: none;
}
/* =============== DEFAULT HTML - HEADING STYLES =============== */
h1, h2, h3, h4, h5, h6 {
	margin: 5px 0 10px;
	color: #333;
	font-family: 'Montserrat', sans-serif;
}
h1, h2 {
	font-weight: 300;
}
h1 {
	font-size: 2.2em;
}
h2 {
	font-size: 3.5em;
}
h3 {
	font-size: 20px;
}
h4 {
	font-size: 18px;
}
h5, h6 {
	font-size: 1em;
}
/* =============== DEFAULT HTML - LIST STYLES =============== */
ul, ul li,
ol, ol li,
p, form, input {
	margin: 0;
	padding: 0;
}
p {
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 10px;
}
ul, ul li {
	list-style: none;
}

/* =============== DEFAULT HTML - IMAGES STYLES =============== */
img {
	border: none;
	max-width: 100%;
}
img.image-left {
	float: left;
	margin-right: 5px;
}
img.img-full-width {
	width: 100%;
}

/* =============== PREDEFINED CONTENT ALIGN =============== */
.margin-left {
	margin-left: 1em !important;
	margin-right: 0;
}
.margin-right {
	margin-left: 0;
	margin-right: 1em !important;
}

/* ============================== LAYOUT ============================== */
/* =============== LAYOUT - GENERAL LAYOUT =============== */
.container {
	position: relative;
}
[layout="row"] {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
}
.fsr {
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}
.fg {
	-webkit-flex-grow: 1;
	flex-grow: 1;
}
.fw {
	flex-wrap: wrap;
}
.verticalStretch {
	-ms-flex-align: stretch;
	-webkit-align-items: stretch;
	-webkit-box-align: stretch;
	align-items: stretch;
}
.verticalCenter {
	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	align-items: center;
}
.nino-btn {
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	padding: 10px 20px;
	text-align: center;
	border: 1px solid #fff;
	font-size: 12px;
	line-height: 100%;
	margin-top: 10px;
}

.nino-btn1 {
	display: inline-block;
	color: #40beb5;
	text-transform: uppercase;
	padding: 10px 20px;
	text-align: center;
	border: 1px solid #40beb5;
	font-size: 12px;
	line-height: 100%;
	margin-top: 10px;
}

.nino-btn1:hover {
	color: #40beb5;
}

.nino-btn:hover {
	color: #40beb5;
}
.bg-white {
	background-color: #fff !important;
}
/* =============== HOVER EFFECT =============== */
.nino-hoverEffect {
	text-align: center;
}
.nino-hoverEffect .item {
	background: #95e1d3;
	display: inline-block;
}
.nino-hoverEffect .item .overlay {
	display: block;
	position: relative;
	left: 0;
	top: 0;
	-webkit-transition: all .3s ease-in-out;
	   -moz-transition: all .3s ease-in-out;
		 -o-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
}
.nino-hoverEffect .item .overlay:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;	
	-webkit-transition: all .3s ease-in-out;
	   -moz-transition: all .3s ease-in-out;
		 -o-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
	background: rgba(243,129,129,0.9); /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */
	background: -webkit-linear-gradient(top, rgba(243,129,129,0.9), rgba(252, 227, 138, 0.9));
	background: -o-linear-gradient(top, rgba(243,129,129,0.9), rgba(252, 227, 138, 0.9));
	background: linear-gradient(to bottom, rgba(243,129,129,0.9), rgba(252, 227, 138, 0.9)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.nino-hoverEffect .item:hover .overlay {
	left: -10px;
	top: -10px;
}
.nino-hoverEffect .item:hover .overlay:before {
	opacity: 1;	
}
.nino-hoverEffect .content {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	z-index: 1;
	opacity: 0;
	text-align: center;
	color: #fff;
	text-transform: uppercase;	
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
		 -o-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
			transform: translateY(-50%);
}
.nino-hoverEffect .item:hover .content {
	opacity: 1;
}
/* =============== LAYOUT - HEADER AREA =============== */
#nino-header {
	position: relative;
	font-family: 'Montserrat', sans-serif;
	background: url(../images/bg-header.jpg) no-repeat center center / cover;
}
#nino-header:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(243,129,129,0.9); /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */
	background: -webkit-linear-gradient(top, rgba(50,100,100,0.9), rgba(50, 227, 138, 0.9));
	background: -o-linear-gradient(top, rgba(50,129,129,0.9), rgba(50, 227, 138, 0.9));
	background: linear-gradient(to bottom, rgba(79, 79, 79, 0.9), rgba(98, 229, 189, 0.9)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
#nino-headerInner {
	position: relative;
	z-index: 5;
	background: url("../images/shape-1.svg") no-repeat center center;
}
/* =============== MAIN SLIDER =============== */

#nino-slider {
	padding: 90px 0 0;
}
#nino-slider .carousel-inner {
	height: 360px;
}
#nino-slider .carousel-inner > .item {
	text-align: center;
	color: #fff;
}
#nino-slider .carousel-indicators {
	width: 100%;
	left: 0;
	margin: 0;
	position: static;
	margin-top: 80px;
}
#nino-slider .carousel-indicators li,
#nino-slider .carousel-indicators li.active {
	float: left;
	width: 25%;
	height: auto;
	margin: 0;	
	text-indent: initial;
	border-radius: 0;
	background: none;
	text-align: left;
	border: none;
}
#nino-slider .carousel-indicators li .inner {
	border-top: 2px solid #fff;
	position: relative;
	color: #fff;
	text-transform: uppercase;
	margin: 0 12px;
	padding: 10px 0;
}

#nino-slider .carousel-indicators li:hover .inner,
#nino-slider .carousel-indicators li.active .inner {
	border-color: #fff;
	color: #fff;
}

#nino-slider .carousel-indicators li:hover .inner:after,
#nino-slider .carousel-indicators li.active .inner:after {
	content: "";
	position: absolute;
	left: 0;
	top: -2px;
	width: 60px;
	height: 2px;
	background: #6A6A6A;
}

#nino-slider .carousel-indicators li .number {
	font-weight: 700;
	font-size: 18px;
	margin-right: 3px;
}

/* =============== LAYOUT - MENU AREA =============== */
#nino-navbar {
	background: none;
	border: none;
	border-radius: 0;
}

#nino-navbar .navbar-brand {
	font-family:"Madeleine";
	font-size: 60px;
	color: #fff;
	margin-top: -10px;
}

#nino-navbar .navbar-nav > li > a {
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	border-bottom: 3px solid transparent;
	padding: 15px 5px 5px;
	margin: 0 12px;
	margin-top: 15px;
}

#nino-navbar .navbar-nav > li > a:hover,
#nino-navbar .navbar-nav > .active > a, 
#nino-navbar .navbar-nav > .active > a:hover {
	color: #fff;
	border-color: #fff;
	background: none;
}
#nino-navbar .nino-menuItem {
	float: right;
}

#nino-navbar .navbar-toggle {
	margin-right: 0;
	border: none;
}
#nino-navbar .navbar-toggle:hover,
#nino-navbar .navbar-toggle:focus {
	background: none;
}
#nino-navbar .navbar-toggle .icon-bar {
	background: #fff;
}

/* ----------- FIXED NAVBAR WITH ANIMATE ----------- */
.nino-fixed-nav #nino-navbar {
	position: fixed;
	padding-bottom: 25px;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(100, 114, 114, 0.96);
	z-index: 2;
	-webkit-animation-duration: .3s;
				animation-duration: .3s;
	-webkit-animation-fill-mode: both;
				animation-fill-mode: both;
	-webkit-animation-name: fadeInDown;
			animation-name: fadeInDown;
}

.nino-fixed-nav #nino-navbar .navbar-nav > li > a {
	border: none;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
/* =============== LAYOUT - CONTENT AREA =============== */
section {
	padding: 80px 0;
}
#nino-slider .nino-sectionHeading {
	font-size: 50px;
	color: #fff;
	margin-top: 100px;
}

#nino-slider .nino-sectionHeading2 {
	font-size: 40px;
	color: #fff;
	margin-top: -20px;
}

#nino-slider .nino-sectionHeading3 {
	font-size: 30px;
	color: #fff;
	margin-top: -20px;
}

#nino-slider .nino-sectionHeading .nino-subHeading {
	font-size: 55px;
}

#nino-slider .nino-sectionHeading:after {
	background: #fff;
}

.nino-sectionHeading {
	font-weight: 700;
	font-size: 25px;
	line-height: 1;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 30px;
	text-align: center;
	color: #333;
}
.nino-sectionHeading:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 50px;
	height: 2px;
	background: #40beb5;
	transform: translateX(-50%);
}
.nino-sectionHeading .nino-subHeading {
	display: block;
	text-transform: none;
	font-weight: 400;
	font-family: 'Kaushan Script', cursive;
	font-size: 20px;
	margin-bottom: 20px;
}
.nino-sectionDesc {
	text-align: center;
	max-width: 750px;
	margin: 0 auto 40px;
}

/* =============== Front Steps =============== */
.front-steps-wrapper h2,
.ecommerce .front-steps-wrapper h2 {
	color: #f0f0f0;
	font-size: 18px;
	line-height: 1.2;
	padding-top: 5px;
	margin-bottom: 5px;
}
.front-steps-wrapper .front-step1 h2,
.ecommerce .front-steps-wrapper .front-step1 h2 {
	color: #fefefe;
}
.front-steps-wrapper p {
	color: #fff;
	font-size: 15px;
	line-height: 18px;
	margin-bottom: 0;
}

.front-steps-wrapper .front-step-col {
	padding-left: 0px;
	padding-right: 0px;
}

.front-steps-wrapper .front-step {
	padding: 15px 20px 20px;
}

.front-steps-wrapper .front-step1 {
	background: #40beb5;
}

.front-steps-wrapper .front-step2 {
	background: #7c858e;
}
.front-steps-wrapper .front-step3 {
	background: #68727c;
}

.front-steps-wrapper .front-step:before {	
	color: #fff;
	font: 300 125px 'Open Sans', sans-serif;
	font-weight: bold;
	display: block;
	position: absolute;
	bottom: -40px;
	opacity: 0.1;
}

.ie8 .front-steps-wrapper .front-step:before {
	display: none !important;
}
.front-steps-wrapper .front-step1:before {
	content: "1";
	right: -1px;
}
.front-steps-wrapper .front-step2:before {
	content: "2";
	right: -1px;
}
.front-steps-wrapper .front-step3:before {
	content: "3";
	right: -1px;
}

/* =============== SECTION STORY ABOUT US =============== */
#nino-story .content {
	font-weight: 700;
	font-size: 14px;
	display: block;
}

#nino-story .sec_heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
	font-weight: bold;
	Color: #40beb5;
	margin-top: -10px;
}

#nino-story .sec_heading span.light {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	text-shadow: 60px -20px 0 rgba(50,10,10,.100);
	Color: #40beb5;
}

#nino-story .sub-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	color: #333;
	text-align: justify;
	margin-bottom: -20px;
}

.knowmore {
	font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #40beb5;
    padding: 0 0 0 80px;
    position: relative;
    line-height: 14px;
    margin: 20px 0 0 0;
    text-transform: capitalize;
    display: block;
}

.knowmore:before {
    position: absolute;
    content: "";
    width: 70px;
    height: 1px;
    background: #40beb5;
    left: 0;
    top: 8px;
}

.intro_content_outer .align_left {
	padding-top: 10px;
	width: 60%;
	float: left;
	text-align: justify;
}

.intro_content_outer .align_right {
	width: 40%;
	float: left;
	position: relative
}

.intro_content_outer .align_right img {
	margin-top: 0;
	width: 100%
	display: block;
}

.intro_content_wrap {
	/*max-width:760px;*/
	float: right;
	width: 100%;
	z-index: 9;
	padding-left: 50px;
	padding-right: 50px;
}

.intro_content:after {
	clear: both;
	display: block;
	content: ""
}

.intro_title {
	margin-bottom: 30px
}

.intro_content {
	clear: both;
	position: relative
}

.intro_content_outer {
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	background: #fcfcfc
}

.intro_content {
	background: #fcfcfc;
	padding: 34px 0px 45px
}


/* =============== SECTION SERVICES =============== */
#nino-services {
	background: url(../images/Services.png);
	background-position: center center;
	background-size: cover;
	background-attachment: fixed !important;
}

#nino-services .icon {
width: 12%;
height: 100%;
padding-top: 20px;
}

#nino-services .sec_heading1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	text-shadow: 60px -20px 0 rgba(50,10,10,.100);
	Color: #40beb5;
	padding-bottom: 40px;
}

#nino-services .item:not(:nth-last-child(-n+3)) {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 40px;
	padding-bottom: 20px;
	box-shadow: 0px 0px 0px 0px rgba(0,260,210,.3);
	border-radius: 5%;
	border-bottom-color: #29DDCF;
}

#nino-services .nino-serviceTitle {
	font-weight: 500;
	font-size: 16px;
	padding-left: 10px;
}

#nino-services p {
	font-size: 13px;
	text-align: left;
	padding-left: 10px;
}

/* =============== SECTION TESTIMONIAL =============== */
.nino-testimonial {
	background: url("../images/Client.png") no-repeat left;
	border-top:1px solid #f5f5f5;
	border-bottom:1px solid #d2d2d2;
	height:auto;
	width:100%;
	padding: 60px 0;
}

.nino-testimonial .sec_heading {
	font-size: 30px;
	padding: 15px 0;
}

.nino-testimonial .unslider-arrow {
	font-size: 25px;
	color: #ccc;
	top: 60%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
		 -o-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
			transform: translateY(-50%);
}
.nino-testimonialSlider {
	margin: 0 80px;
}

.nino-testimonialSlider .quote {
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 10px;
}

.nino-testimonialSlider .name {
	font-family: 'Kaushan Script', cursive;
	font-size: 18px;
	position: relative;
	padding-left: 50px;
}

.nino-testimonialSlider .name:after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 40px;
	height: 2px;
	background: #40beb5;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
		 -o-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
			transform: translateY(-50%);
}

/* =============== SECTION PORTFOLIO =============== */
#nino-portfolio {
	padding-top: 90px;
}
#nino-portfolio .sec_heading1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	text-shadow: 60px -20px 0 rgba(50,10,10,.100);
	Color: #40beb5;
	padding-bottom: -30px;
}

#nino-portfolio p {
	font-size: 13px;
	text-align: left;
	padding-bottom: 10px;
}


#nino-portfolio .nino-portfolioItems {
	position: relative;
	margin: 0;
	padding: 0px;
}
#nino-portfolio .nino-portfolioItems li {
	float: left;
	width: 25%;
	background: #fff;
	position: relative;
}
#nino-portfolio .nino-portfolioItems li a,
#nino-portfolio .nino-portfolioItems li a img {
	display: block;
	position: relative;
}
#nino-portfolio .nino-portfolioItems li a {
	overflow: hidden;
	color: #fff;
}
#nino-portfolio .nino-portfolioItems li .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(243,129,129,0.9); /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */
	background: -webkit-linear-gradient(top, rgba(50,150,129,0.9), rgba(50, 227, 138, 0.9));
	background: -o-linear-gradient(top, rgba(50,150,129,0.9), rgba(50, 227, 138, 0.9));
	background: linear-gradient(to bottom, rgba(50,150,129,0.9), rgba(50, 227, 138, 0.9)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
#nino-portfolio .nino-portfolioItems li .content {
	position: absolute;
	left: 0 !important;
	top: 50% !important;
	width: 100%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
		 -o-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
			transform: translateY(-50%);
}
#nino-portfolio .nino-portfolioItems li .nino-icon {
	font-size: 30px;
}
#nino-portfolio .nino-portfolioItems li .title {
	font-weight: bold;
	color: #fff;
	font-size: 14px;
	margin: 5px 0 5px;
}
#nino-portfolio .nino-portfolioItems li .desc {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	text-align: left;
}

/* =============== LAYOUT - FOOTER AREA =============== */
footer {
	padding-top: 40px;
	background: #f8f8f8;
}
footer .nino-colHeading {
	margin: 0 0 25px;
	font-size: 18px;
}
footer .colInfo {
	margin-bottom: 30px;
}

footer .p {
	text-align: justify;
}

footer .footerLogo a {
	color: #ccc;
	font-size: 40px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 20px;
	line-height: 100%;
	padding-top: 50px;
}

footer .nino-followUs .socialNetwork .text {
	font-size: 15px;
	font-style: italic;
	font-weight: 300;
	display: inline-block;
	margin-right: 10px;
}
footer .nino-followUs .socialNetwork .nino-icon {
	font-size: 18px;
	display: inline-block;
	margin: 0 3px;
	color: #40beb5;
}

/* Contact Style */
#enquiryss{
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
}
.contact_div{
    width: 200%;
    padding: 10%;
    margin: auto;
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.17);
    -moz-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.17);
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.17);
    background-color: #fff;
}
.contact_div .heading{
    color: #9d9d9d;
    font-size: 14px;
}
.contact_div h1{
    font-size: 2em;
    font-weight: bold;
}
.contact_form{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact_form div{
    margin-top: 50px;
    width: 22%;
}
.contact_form label{
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 15px;
}
.contact_form label sup{
    color: #ff000c;
    font-size: 20px;
}
.contact_form input{
    width: 100%;
    height: 30px;
    display: block;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,.5);
    outline: none;
    color: #2f2f2f;
}
.contact_form select {
    -webkit-appearance: none;
    background-color: transparent;
    width: 100%;
    height: 35px;
    display: block;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,.5);
    outline: none;
    color: #2f2f2f;
    border-radius: 0;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: right 10px center;
}
.text_area{
    width: 100% !important;
}
.contact_form textarea{
    width: 100%;
    height: 30px;
    display: block;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,.5);
    outline: none;
    color: #2f2f2f;
}
#recaptcha{
    width: 50% !important;
    margin-bottom: 30px;
}
#check_box{
    margin-bottom: 30px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #2f2f2f;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #2f2f2f;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #2f2f2f;
}
:-moz-placeholder { /* Firefox 18- */
  color: #2f2f2f;
}
.button_div{
    width: 100% !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.button_div div{
    width: 70%;
    display: flex;
    align-items: center;
    margin-top: 0;
}
.button_div div input{
    width: 25px;
}
.contact_form button{
    border: none;
    padding: 10px 0;
    width: 150px;
    border-radius: 50px;
    background-color: #40beb5;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    outline: none;
}

/*----------- CITY ----------- */
img.city{
	background-attachment: fixed !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: auto;
	margin-bottom: -70px;
	margin-left: -80px;
	max-width:500%;
}

/* ----------- COPYRIGHT ----------- */
footer .nino-copyright {
	text-align: left;
	border-top: 1px solid #e5e5e5;
	padding: 20px 0;

}

/* =============== GO TO TOP =============== */
#nino-scrollToTop {
	width: 30px;
	height: 30px;
	text-align: center;
	text-decoration: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	text-indent: -99999em;
	display: none;
	cursor: pointer;
	z-index: 2;
	background: #29DDCF url(../images/go-to-top.png) center center no-repeat;
	border-radius: 5px 10px ;
}
#nino-scrollToTop:hover {
	text-decoration: none;
	background-color: #40beb5;
}

/* =============== PRETTY PHOTO OVERRIDE =============== */
div.pp_pic_holder a {
	-webkit-transition: all 0s ease 0s;
	   -moz-transition: all 0s ease 0s;
		 -o-transition: all 0s ease 0s;
		-ms-transition: all 0s ease 0s;
			transition: all 0s ease 0s;
}
div.pp_default .pp_description {
	margin: 12px 50px 0 0;
}
div.pp_default .pp_social {
	width: 100%;
}

/* =============== Quick Facts =============== */
.cutom-shadow{
	font-family: 'Roboto', sans-serif;
	position:relative;
	color: #40beb5;
}

.cutom-shadow span{
	font-family: Conv_ProximaNova-Black;
	font-weight: bold;
	font-size: 74px;
	text-shadow: 0 -30px 0 rgba(50,150,150,.09);
	text-align: center;
}

.cutom-shadow sup{
	font-family: 'Roboto', sans-serif;
	font-size:28px;
	top:-28px;
	color:#7c7c7c;
}

.lightgray-text{
	font-family: 'Montserrat', sans-serif;
	font-size:20px;
	color:#555;
	margin-top: 30px;
}

.lightgray-text1{
	font-family: 'Montserrat', sans-serif;
	font-size:15px;
	color:#555;
	margin-top: -40px;
}

.snapshot{
	background:#fff url(../images/snapshot-bg.jpg);
	background-position:bottom center;
	background-repeat:no-repeat;
	background-size:cover;
	padding-top: 25px;
}


/* Projects Style */
/* =============== What we do =============== */
.projects_div{
    width: 100%;
    margin: auto;
    padding: 10px 10%;
    margin-bottom: 2%;
    position: relative;
    z-index: 1;}

.sec_heading1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
	font-weight: bold;
	text-shadow: 40px -20px 0 rgba(50,10,10,.100);
	Color: #40beb5;
	padding-bottom: 10px;
}

.fe_proj .m-para {
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	color: #333;
	text-align: justify;
	margin-top: -20px;
}

.mslideshow {
	--color-text: #4A4A4A;
	--color-title: #4A4A4A;
	--color-link: #4A4A4A;
	--color-nav: #4A4A4A;
	--color-link-hover: #4A4A4A;
	--color-bg: ;
	--color-reveal: var(--color-bg);
	font-family: Futura, "Trebuchet MS", Arial, sans-serif;
	color: #57585c;
	color: var(--color-text);
	background-color: #fff;
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.mslideshow a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

.mslideshow a:hover,
a:focus {
	color: var(--color-link-hover);
}

.mslideshow button:focus,
a:focus {
	outline: none;
}

/* Icons */
.mslideshow .icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

.mslideshow .slideshow {
	position: relative;
	width: 100%;
	margin: 3.5rem 0 0 0;
	padding: 0 0 3.5rem 0;
	pointer-events: none;
	overflow: hidden;
}

.mslideshow .slide {
	width: 100%;
	top: 0;
	position: absolute;
	display: grid;
	align-items: center;
	justify-items: center;
}

.mslideshow .slide--current {
	position: relative;
}

.mslideshow .slide__img-wrap {
	grid-area: 1 / 1 / 1 / 1;
	width: 100%;
	height: calc(100vh - 30em);
	max-height: 80%;
	overflow: hidden;
	position: relative;
	opacity: 0;
	outline: 3px solid transparent;
}

.mslideshow .slide__img {
	width: 60%;
	height: 100%;
	left: 0%;
	top: 0;
	background-size: cover;
	background-position: 50% 50%;
	position: absolute;
	backface-visibility: hidden;
	pointer-events: none;
}

.mslideshow .slide__number {
	font-size: 2rem;
	position: absolute;
	top: 5.25rem;
	opacity: 0;
}

.mslideshow .slide__title {
	margin: 0;
	grid-area: 1 / 1 / 1 / 1;
	font-size: 7vw;
	color: var(--color-title);
	position: relative;
	margin-bottom: -15rem;
	opacity: 0;
}

.mslideshow .slide--current .slide__img-wrap,
.slide--current .slide__number,
.slide--current .slide__title {
	opacity: 1;
}

.mslideshow .slidenav {
	position: absolute;
	top: 5em;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: lowercase;
}

.mslideshow .slidenav__item {
	pointer-events: auto;
	border: 0;
	background: none;
	padding: 1rem;
	margin: 0.85rem;
	text-transform: inherit;
	position: relative;
	line-height: 1;
	color: var(--color-nav);
}

.mslideshow .slidenav__item::before,
.slidenav__item::after {
	content: '';
	position: absolute;
	width: 3rem;
	height: 1px;
	background: currentColor;
	top: 50%;
}

.mslideshow .slidenav__item::before {
	right: 100%;
}

.mslideshow .slidenav__item::after {
	left: 100%;
}

.mslideshow .slidenav__item:hover {
	color: var(--color-link-hover);
}

.mslideshow .slidenav__item--prev {
	transform: rotate(-90deg) translateY(-50%);
}

.mslideshow .slidenav__item--next {
	transform: rotate(90deg) translateY(-25%);
}

.mslideshow .slidenav__preview {
	pointer-events: auto;
	color: var(--color-nav);
	position: absolute;
	bottom: 0;
	transform: translateX(-50%);
	left: 50%;
	border: 0;
	background: none;
	padding: 7rem;
	transition: 0.3s transform;
}

.mslideshow .slidenav__preview:hover {
	color: var(--color-link-hover);
}

.mslideshow .slidenav__preview .icon {
	pointer-events: none;
}

.mslideshow .slidenav__preview--open {
	transform: translateX(-50%) rotate(180deg);
}

.mslideshow .preview,
.preview__img-wrap,
.preview__img,
.preview__img-reveal {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	width: 100%;
	height: 85%;
}

.mslideshow .preview {
	align-items: center;
	justify-content: center;
}

.mslideshow .preview__img-wrap {
	overflow: hidden;
	opacity: 0;
}

.mslideshow .preview__title {
	position: relative;
	font-size: 2.5em;
	opacity: 0;
	text-align: left;
}

.mslideshow .preview__content {
	position: relative;
	text-align: justify;
	opacity: 0;
}

.mslideshow .preview__content p {
	position: relative;
	margin: 0;
	text-align: justify;
}


/* =================================== RESPONSIVE =================================== */
@media (max-width: 1200px) {
	/* =============== FOOTER =============== */
	footer .nino-followUs {
		margin: 15px 0;
	}
	footer .instagramImages a {
		width: 70px;
	}

    .navigation,.projects li{
        display: block;
    }
    .projects li img{
        width: 75% !important;
}
    .work_des{
        width: 94.9% !important;
    }

    .work_des{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .work_des p:nth-child(1){
        margin-top: 0;
    }
}

@media (max-width: 992px) {
	section {
		padding: 45px 0;
	}	
	/* =============== SECTION TESTIMONIAL =============== */
	.nino-testimonial {
		padding: 30px 0;
	}
	.nino-testimonialSlider .quote {
		font-size: 18px;
	}
	.nino-testimonialSlider .nino-avatar {
		width: 130px;
	}

	/* =============== SECTION SERVICES =============== */
#nino-services .item:not(:nth-last-child(-n+2)) {
		border-bottom: 1px solid #e5e5e5;
		margin-bottom: 30px;
	padding-bottom: 20px;}

#nino-services .icon {
width: 12%;
height: 100%;
padding-top: 20px;
}

#nino-services .sec_heading1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	text-shadow: 60px -20px 0 rgba(50,10,10,.100);
	Color: #40beb5;
	padding-bottom: 40px;
}

#nino-services .nino-serviceTitle {
	font-weight: 500;
	font-size: 16px;
	padding-left: 20px;
}

#nino-services p {
	font-size: 13px;
	text-align: justify;
	padding-left: 20px;
}

/* =============== SECTION PORTFOLIO =============== */
#nino-portfolio {
	padding: 0px;
}
#nino-portfolio .sec_heading1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	text-shadow: 60px -20px 0 rgba(50,10,10,.100);
	Color: #40beb5;
	padding-bottom: -30px;
}

#nino-portfolio p {
	font-size: 13px;
	text-align: justify;
	padding-bottom: 10px;
}


	/* =============== SECTION OUR TEAM =============== */
	#nino-ourTeam .content .nino-icon {
		font-size: 18px;
		padding: 8px;
	}
	#nino-ourTeam .info {
		margin-top: 25px;
	}



/*----------- city image ----------- */
img.city{
	background-attachment: fixed !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: auto;
	max-width:120%;
}
}

@media (max-width: 768px) {
	/* =============== HOVER EFFECT =============== */
	.nino-hoverEffect .item {
		margin-bottom: 15px;
	}

/* =============== Contact =============== */
    .contact_div{
        width: 105%;
    }
    .contact_form div{
        width: 48%;
    }
    .text_area{
        width: 48% !important;
    }
    .button_div{
        width: 100% !important;
        display: block;
    }
    .button_div div{
        width: 100%;
        margin-bottom: 30px;
    }
    .button_div div input {
        width: 16px;
    }


	/* =============== MAIN SLIDER =============== */
	#nino-slider {
		padding-top: 30px;
		height: 550px;

	#nino-slider .carousel-inner {
		height: 270px;
	}
	#nino-slider .carousel-indicators {
		margin-top: 150px;
	}

	#nino-slider .nino-sectionHeading {
		font-size: 60px;
}

	#nino-slider .nino-sectionHeading .nino-subHeading {
	    font-size: 35px;
	}

	/* =============== SECTION OUR TEAM =============== */
	#nino-ourTeam .info {
		margin: 0 0 20px;
	}
	/* =============== SECTION OUR WORK =============== */
	#nino-portfolio .nino-portfolioItems li {
		width: 50%;
	}

}

@media (max-width: 767px) {

/* =============== SECTION STORY ABOUT US =============== */
#nino-story .content {
	font-weight: 700;
	font-size: 14px;
	display: block;
}

#nino-story .sec_heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 35px;
	font-weight: bold;
	Color: #40beb5;
	margin-top: -10px;
}

#nino-story .sub-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	color: #333;
	text-align: justify;
	margin-top: -5px;
}

.knowmore {
	font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #40beb5;
    padding: 0 0 0 80px;
    position: relative;
    line-height: 14px;
    margin: 20px 0 0 0;
    text-transform: capitalize;
    display: block;
}

.knowmore:before {
    position: absolute;
    content: "";
    width: 70px;
    height: 1px;
    background: #40beb5;
    left: 0;
    top: 8px;
}

.intro_content_outer .align_left {
	padding-top: 10px;
	width: 60%;
	float: left;
	text-align: justify;
}

.intro_content_outer .align_right {
	width: 40%;
	float: left;
	position: relative
}

.intro_content_outer .align_right img {
	margin-top: 0;
	width: 100%
	display: block;
}

.intro_content_wrap {
	/*max-width:760px;*/
	float: right;
	width: 100%;
	z-index: 9;
	padding-left: 50px;
	padding-right: 50px;
}

.intro_content:after {
	clear: both;
	display: block;
	content: ""
}

.intro_title {
	margin-bottom: 30px
}

.intro_content {
	clear: both;
	position: relative
}

.intro_content_outer {
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	background: #fcfcfc
}

.intro_content {
	background: #fcfcfc;
	padding: 34px 0px 45px
}


	/* =============== SECTION SERVICES =============== */
	#nino-services .item:not(:nth-last-child(-n+1)) {
		border-bottom: 1px solid #e5e5e5;
		margin-bottom: 20px;
		padding-bottom: 10px;
}

#nino-services .icon {
width: 12%;
height: 100%;
padding-top: 2px;
}

#nino-services .sec_heading1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	text-shadow: 60px -20px 0 rgba(50,10,10,.100);
	Color: #40beb5;
	padding-bottom: 40px;
}

#nino-services .nino-serviceTitle {
	font-weight: 500;
	font-size: 16px;
	padding-left: 20px;
}

#nino-services p {
	font-size: 13px;
	text-align: justify;
	padding-left: 20px;
}


/* =============== Quick Facts =============== */
.cutom-shadow{
	font-family: 'Roboto', sans-serif;
	position:relative;
	color: #40beb5;
	top: -10px;
}

.cutom-shadow span{
	font-family: Conv_ProximaNova-Black;
	font-size: 60px;
	text-shadow: 0 -30px 0 rgba(50,150,150,.09);
	text-align: center;
}

.cutom-shadow sup{
	font-family: 'Roboto', sans-serif;
	font-size:20px;
	top:-28px;
	color:#7c7c7c;
}

.lightgray-text{
	font-family: 'Montserrat', sans-serif;
	font-size:16px;
	color:#555;
}

.lightgray-text1{
	font-family: 'Montserrat', sans-serif;
	font-size:14px;
	color:#555;
	margin-top: -35px;
}

.snap-shot-text-block .col-4{
	display:table-cell;
	flex:inherit;
	max-width:inherit;
	-webkit-box-flex:inherit;
	width:auto;
}

.row.align-items-center.snap-shot-text-block{
	display:table;
	flex-wrap:initial;
	width:100%
}
}

@media (max-width: 640px) {
	section {
		padding: 30px 0;
	}
	.nino-sectionHeading {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.nino-sectionHeading .nino-subHeading {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.nino-sectionDesc {
		margin-bottom: 20px;
		
		}
	/* =============== MAIN SLIDER =============== */
	#nino-slider .nino-sectionHeading {
		font-size: 55px;
		margin-top: 50px;
	}
	#nino-slider .nino-sectionHeading .nino-subHeading {
		font-size: 20px;
	}

#nino-slider .nino-sectionHeading2 {
	font-size: 40px;
	color: #fff;
	margin-top: -20px;
}

	#nino-slider .carousel-inner {
		height: 330px;
	}
	#nino-slider .carousel-indicators li .number {
		display: none;
	}


	/* =============== SECTION TESTIMONIAL =============== */
	.nino-testimonialSlider {
		margin: 0 40px;
	}
	.nino-testimonialSlider .nino-symbol {
		font-size: 45px;
		margin: 0 15px 0 5px;
	}
	.nino-testimonialSlider .quote {
		font-size: 18px;
	}
	.nino-testimonialSlider .name {
		font-size: 16px;
	}
	.nino-testimonialSlider .nino-avatar {
		width: 100px;
		margin-right: 15px;
	}

	/* =============== FOOTER =============== */
	footer {
		padding-top: 30px;
	}
}

@media (max-width: 480px) {
	/* =============== MAIN SLIDER =============== */
	#nino-slider .carousel-indicators li .inner {
		text-indent: -99999em;
		line-height: 0;
		border-width: 3px;
}

	#nino-slider .carousel-indicators .inner:after {
		display: none;
	}
	#nino-slider .carousel-indicators li.active .inner {
		border-color: #fff;
}

	/* =============== SECTION TESTIMONIAL =============== */
	.nino-testimonialSlider .nino-symbol,
	.nino-testimonialSlider .nino-avatar {
		display: none;
	}
	/* =============== SECTION OUR WORK =============== */
	#nino-portfolio .nino-portfolioItems li {
		width: 100%;
	}
}

@font-face
{
        font-family:"GardenParty";
        src: url(../fonts/GardenParty.ttf)
}

@font-face
{
        font-family:"Madeleine";
        src: url(../fonts/Madeleine.otf)
}

@media (max-width:1299.98px) {
.sec_heading {
    font-size: 40px
}
    .intro_content_outer .align_left {
        width: 100%
    }
    .intro_content_wrap {
        max-width: 100%
    }

    .intro_content {
        overflow: hidden
    }

	.intro_content_wrap{
	padding-left: 20px;
	padding-right: 20px;
}

img.city {
	background-attachment: fixed !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: -70px;
	margin-left: -80px;
	display: none;
	max-width:100%;
	height: auto;
}
}

@media (max-width:991.98px) {
    .intro_content_outer .align_right {
        display: none;
    }
    .intro_content_outer {
        display: block
    }
}
}

/* Tablet Styles */
@media only screen and (min-width: 401px) and (max-width: 960px) {

.intro_content_outer .align_right {
display: none;
}

.intro_content_outer {
	display: block
}

.intro_content_wrap {
	width: 170%;
	float: left;
	text-align: justify;
}

/* =============== Quick Facts =============== */
.cutom-shadow{
	font-family: 'Roboto', sans-serif;
	position:relative;
	color: #40beb5;
	top: -10px;
}

.cutom-shadow span{
	font-family: Conv_ProximaNova-Black;
	font-size: 75px;
	text-shadow: 0 -30px 0 rgba(50,150,150,.09);
	text-align: center;
}

.cutom-shadow sup{
	font-family: 'Roboto', sans-serif;
	font-size:20px;
	top:-28px;
	color:#7c7c7c;
}

.lightgray-text{
	font-family: 'Montserrat', sans-serif;
	font-size:18px;
	color:#555;
}

.lightgray-text1{
	font-family: 'Montserrat', sans-serif;
	font-size:15px;
	color:#555;
	margin-top: -45px;
}

.snap-shot-text-block .col-4{
	display:table-cell;
	flex:inherit;
	max-width:inherit;
	-webkit-box-flex:inherit;
	width:auto;
	text-align: center;
}

.row.align-items-center.snap-shot-text-block{
	display:table;
	flex-wrap:initial;
	width:100%;
}
}

/* section background dark
 ------------------------------ */
.section-dark {
	background-color: #F4F4F4;
}

.nopadding {
	padding: 0 !important;
	margin: 0 !important;
}

.section-white {
	background-color: #fff;
}

.less10 {
	width: 83% !important;
	margin: 0 auto;
}

/* alignments */
.float-left {
	float: left;
}
.float-right {
	float: right;
}


.border-top-orange {
	border-top: 10px solid #40beb5;
}

.padding-percent-3 {
	padding: 9% 12% 12% 12%;
}

.margin-top-minus-3 {
    margin-top: -140px;
}

.zindex3 {
	position: relative;
	z-index: 3;
}

.font-weight-8 {
	font-weight: 800;
}

.font-weight-4 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 18px;
	color: #333;
}

.padding-percent-3 {
	padding: 0% 12% 0% 6%;
}


.text-light-orange {
	color: #40beb5 !important;
}

.font-weight-6 {
	font-weight: 600;
}

.lspace-vsm{
	letter-spacing:1.4px;
	}
	
	.uppercase {
	text-transform: uppercase;
}

.text-white {
	color: #fff;
}

.font-weight-8 {
	font-weight: 800;
}

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

.font-weight-4 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 18px;
	color: #333;
}

.margin-top-minus-3 {
	margin-top: -180px !important;
}



/* section background light
 ------------------------------ */
.section-light {
	background-color: #f3f3f3;
}

@media screen and (max-width: 750px) {
.float-right.respo {
	float: left;
}


.margin-top-minus-3 {
	margin-top: -150px !important;
}
}

