@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700);
@font-face {
	font-family: 'typicons';
	src:url('../fonts/typicons/typicons.eot');
	src:url('../fonts/typicons/typicons.eot?#iefix') format('embedded-opentype'),
		url('../fonts/typicons/typicons.ttf') format('truetype'),
		url('../fonts/typicons/typicons.woff') format('woff'),
		url('../fonts/typicons/typicons.svg#typicons') format('svg');
	font-weight: normal;
	font-style: normal;
}
@media screen and (max-width:57em){
	html{overflow: visible !important;} 

.carousel-caption h3 {
    font-size: 20px !important;
    text-transform: uppercase;
}
.carousel-caption p {
    font-size: 16px !important;
    line-height: 20px !important;
}
	.hndgimg img {
    width: 100%;
    margin: 0 auto;
}
	section.reaction #carouselExampleCaptions1 {
    max-height: 300px;
    height: 400px !important;
}

}
@media screen and (min-width:57em){
html, body, .perspective {
	width: 100%;
	height: 100%;
	overflow-x: initial !important;
}


p {
    line-height: 28px;
    font-size: 16px;
    margin-bottom: 10px !important;
}
.perspective {
	background: #aaa;
	position: relative;
}

.fullcont {
	background: #fff;
	min-height: 100%;
	position: relative;
	outline: 1px solid rgba(0,0,0,0);
	z-index: 10;
}
.fullcont.transform {
	-webkit-transform: translateZ(0) translateX(0) rotateY(0deg); /* reset transforms (Chrome bug) */
	transform: translateZ(0) translateX(0) rotateY(0deg);
}
.fullcont::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0px;
	opacity: 0;
	background: rgba(0,0,0,0.2);
	/* the transition delay of the height needs to be synced with the container-fluid transition time */
	-webkit-transition: opacity 0.4s, height 0s 0.4s;
	transition: opacity 0.4s, height 0s 0.4s;
}

.wrapper {
	position: relative;
}

.component {
	margin: 0 auto;
	width: 60%;
	text-align: justify;
	font-size: 1.5em;
}

/* Modal view */
.perspective.modalview {
	position: fixed;
	-webkit-perspective: 1500px;
	perspective: 1500px;
}

.modalview .fullcont {
	position: absolute;
	/*overflow: hidden;*/
	width: 100% !important;
	height: 100%;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	max-width: 100% !important;
}

.modalview .wrapper {
	-webkit-transform: translateZ(-1px); /* solves a rendering bug in Chrome on Windows */
	transform: translateZ(-1px);
}

.animate .fullcont::after {
	opacity: 1;
	height: 101%;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

/* Outer Nav */
.outer-nav {
	position: absolute;
	height: auto;
	font-size: 2em;
}

.outer-nav.vertical {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.outer-nav.horizontal {
	left: 50%;
	width: 75%;
	max-width: 1000px;
	text-align: center;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.outer-nav.left {
	left: 25%;
}

.outer-nav.right {
	right: 5%;
}

.outer-nav.top {
	top: 25%;
}

.outer-nav.bottom {
	bottom: 25%;
}

.outer-nav a {
	display: inline-block;
	white-space: nowrap;
	font-weight: 300;
	margin: 0 0 30px 0;
	color: #fff;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.outer-nav a:hover {
	color: #ffdccd;
}

.outer-nav.vertical a {
	display: block;
}

.outer-nav.horizontal a {
	margin: 15px 20px;
}

.outer-nav a::before {
	display: inline-block;
	font-family: 'typicons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	margin-right: 10px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.icon-news::before { content: "\e600" }
.icon-home::before { content: "\e601" }
.icon-image::before { content: "\e602" }
.icon-upload::before { content: "\e603" }
.icon-star::before { content: "\e604" }
.icon-mail::before { content: "\e605" }
.icon-lock::before { content: "\e606" }
.icon-chart-pie::before { content: "\e607" }

/* Individual Effects */

/* Effect airbnb */
.effect-airbnb {
	background: #b8b6b4;
}

.effect-airbnb .fullcont {
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

.effect-airbnb.animate .fullcont {
	-webkit-transform: translateZ(-1500px) translateX(100%) rotateY(-45deg);
	transform: translateZ(-1500px) translateX(100%) rotateY(-45deg);
}

.no-csstransforms3d .effect-airbnb.animate .fullcont {
	left: 75%;
}

.effect-airbnb .outer-nav a {
	opacity: 0;
	-webkit-transform: translateX(-150px);
	transform: translateX(-150px);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
}

.effect-airbnb.animate .outer-nav a {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.effect-airbnb.animate .outer-nav a:nth-child(2) {
	-webkit-transition-delay: 0.04s;
	transition-delay: 0.04s;
}

.effect-airbnb.animate .outer-nav a:nth-child(3) {
	-webkit-transition-delay: 0.08s;
	transition-delay: 0.08s;
}

.effect-airbnb.animate .outer-nav a:nth-child(4) {
	-webkit-transition-delay: 0.12s;
	transition-delay: 0.12s;
}

.effect-airbnb.animate .outer-nav a:nth-child(5) {
	-webkit-transition-delay: 0.16s;
	transition-delay: 0.16s;
}

.effect-airbnb.animate .outer-nav a:nth-child(6) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.effect-airbnb.animate .outer-nav a:nth-child(7) {
	-webkit-transition-delay: 0.24s;
	transition-delay: 0.24s;
}

/* Effect Move Left */
.effect-moveleft {
	background: #f4f3f1;
}

.effect-moveleft .fullcont {
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
	max-width: 100%;
	padding: 0;
	overflow-x: hidden;
}
	

.effect-moveleft .fullcont::after {
	background: rgba(255,255,255,0.6);
}
.hmbrg-menu {
    text-align: right;
}
.logo {
    text-align: left;
}
.effect-moveleft.animate .fullcont {
	-webkit-transform: translateX(0%) rotateY(20deg) translateZ(-50px);
	transform: translateX(0%) rotateY(20deg) translateZ(-50px);
	overflow: hidden;
}

.no-csstransforms3d .effect-moveleft.animate .fullcont {
	left: -75%;
}

.effect-moveleft .outer-nav a {
	color: #e86a32;
	opacity: 0;
	-webkit-transform: translateX(100px) translateZ(-1000px);
	transform: translateX(100px) translateZ(-1000px);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
}

.effect-moveleft .outer-nav a:hover {
	color: #333;
}

.effect-moveleft.animate .outer-nav a {
	opacity: 1;
	-webkit-transform: translateX(0) translateZ(0);
	transform: translateX(0) translateZ(0);
}

.effect-moveleft.animate .outer-nav a:nth-child(2) {
	-webkit-transition-delay: 0.04s;
	transition-delay: 0.04s;
}

.effect-moveleft.animate .outer-nav a:nth-child(3) {
	-webkit-transition-delay: 0.08s;
	transition-delay: 0.08s;
}

.effect-moveleft.animate .outer-nav a:nth-child(4) {
	-webkit-transition-delay: 0.12s;
	transition-delay: 0.12s;
}

.effect-moveleft.animate .outer-nav a:nth-child(5) {
	-webkit-transition-delay: 0.16s;
	transition-delay: 0.16s;
}

.effect-moveleft.animate .outer-nav a:nth-child(6) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.effect-moveleft.animate .outer-nav a:nth-child(7) {
	-webkit-transition-delay: 0.24s;
	transition-delay: 0.24s;
}
}	

/* Media Queries */

@media screen and (max-width:46.25em) {
	
	.codrops-header .dropdown-toggle::after { display: none;}
	
	.outer-nav.right {
    right: 0 !important;
    left: 0 !important;
    z-index: 9999 !important;
    background: #fff !important;
    width: 90% !important;
    padding: 10px 20px !important;
    margin: 0 auto !important;
}
	.logo img {
    width: 50px !important;
    margin-top: 10px !important;
}
	div.about {
    padding: 10px !important;
}
	
	.hmbrg-menu {
    text-align: right;
    z-index: 99999;
    margin-top: 0px !important;
}
}

@media screen and (min-width:57em){
	
	.carousel-inner { height: 600px;}
	
	.codrops-header::after {
    background: url(../images/cross_top.png);
    content: "";
    position: absolute;
    width: 100%;
    height: 228px;
    z-index: -1;
    top: -40px;
    left: 0;
    background-repeat: no-repeat;
}

	.hmbrg-menu {
    text-align: right;
    z-index: 99999;
    margin-top: 60px;
}
}
@media screen and (max-width: 77em) {
	
	.outer-nav.top {
		top: 15%;
	}

	.outer-nav.bottom {
		bottom: 15%;
	}
}

@media screen and (max-width: 36.625em), screen and (max-height: 41.75em) {

	.outer-nav.top {
		top: 5%;
	}

	.outer-nav.bottom {
		bottom: 5%;
	}
	
	.outer-nav.horizontal {
		font-size: 1.7em;
		width: 6.2em;
	}

	.outer-nav.horizontal a {
		display: block;
		text-align: left;
	}

	/* Special Case */
	.effect-rotatetop .outer-nav.horizontal {
		width: 95%;
		bottom: auto;
		top: 50%;
	}

	.effect-rotatetop .outer-nav.horizontal a {
		display: inline-block;
	}

}

@media screen and (max-width: 31em), screen and (max-height: 36.2em) {
	.outer-nav.horizontal,
	.outer-nav.vertical {
		font-size: 1.2em;
		width: 6.8em;
	}

	.outer-nav.right {
		right: 5%;
		left: auto;
	}
}

@media screen and (max-height: 31.6em) {
	.outer-nav a {
		margin-bottom: 20px;
	}
}


@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'codropsicons';
	src:url('../fonts/codropsicons/codropsicons.eot');
	src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
		url('../fonts/codropsicons/codropsicons.woff') format('woff'),
		url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),
		url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
}

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

body {
	background: #ddd;
	color: #5a5350;
	font-weight: 300;
	font-family: 'Lato', Calibri, Arial, sans-serif;
	overflow-y: scroll;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: #ed8151;
	outline: none;
}

a:hover, a:focus {
	color: #e86a32;
	outline: none;
}

/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before,
.clearfix:after {
	display: table;
	content: " ";
}

.clearfix:after {
	clear: both;
}

.codrops-header,
.codrops-top {
	font-family: 'Lato', Arial, sans-serif;
}

.codrops-header {
	top:0;
	right: 0;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    position: fixed;
    left: 0;
	z-index: 9999;
}

.codrops-header h1 {
	margin: 0;
	font-weight: 300;
	font-size: 2.625em;
	line-height: 1.3;
}

.codrops-header span {
	display: block;
	padding: 0 0 0.6em 0.1em;
	font-size: 60%;
	color: #aca89a;
}

/* To Navigation Style */
.codrops-top {
	width: 100%;
	text-transform: uppercase;
	font-size: 0.69em;
	line-height: 2.2;
	font-weight: 700;
	background: rgba(255,255,255,0.3);
}

.codrops-top a {
	display: inline-block;
	padding: 0 1em;
	text-decoration: none;
	letter-spacing: 0.1em;
}

.codrops-top a:hover {
	background: rgba(255,255,255,0.4);
	color: #333;
}

.codrops-top span.right {
	float: right;
}

.codrops-top span.right a {
	display: block;
	float: left;
}

.codrops-icon:before {
	margin: 0 4px;
	text-transform: none;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	font-family: 'codropsicons';
	line-height: 1;
	speak: none;
	-webkit-font-smoothing: antialiased;
}

.codrops-icon-drop:before {
	content: "\e001";
}

.codrops-icon-prev:before {
	content: "\e004";
}

.main {
	max-width: 69em;
	margin: 0 auto;
}

.column {
	float: left;
	width: 50%;
	padding: 0 2em;
	min-height: 300px;
	position: relative;
	text-align: right;
}

.column:nth-child(2) {
	box-shadow: -1px 0 0 rgba(0,0,0,0.1);
	text-align: left;
}

.column p {
	font-weight: 300;
	font-size: 2em;
	padding: 0 0 0.5em;
	margin: 0;
	line-height: 1.5;
}

.codrops-demos a,
button {
	border: none;
	padding: 0.6em 1.2em;
	background: #a9a9a9;
	color: #fff;
	font-family: 'Lato', Calibri, Arial, sans-serif;
	font-size: 1em;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	display: inline-block;
	margin: 10px;
	border-radius: 2px;
	font-weight: 400;
	outline: none;
}

.codrops-demos a:hover,
.codrops-demos a:active,
.codrops-demos a.current-demo {
	background: #777;
}

button {
	font-size: 75%;
	background: #ed8151;
}

button:hover,
button:active {
	background: #e86a32;
}

.related {
	text-align: center;
	font-size: 1.5em;
	margin-top: 3em;
	clear: both;
	padding: 3em 0;
}

.related a {
	font-weight: 700;
	font-size: 0.9em;
}

@media screen and (max-width: 46.0625em) {
	
	section#reaction .carousel-caption {
    padding: 10px;
    position: relative;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
} 

	.codrops-header {
		margin-bottom: 0;
		padding-bottom: 1em;
	}

	.carousel-caption {
    left: 0 !important;
    right: 0 !important;
}

.capsn-txt.col-12 h4 {
    float: none;
    font-size: 16px !important;
}
	.column {
		width: 100%;
		min-width: auto;
		min-height: 0;
		padding: 2em; 
		text-align: center;
	}

	.column p {
		font-size: 1.5em;
	}

	.column:nth-child(2) {
		text-align: center;
		box-shadow: 0 -1px 0 rgba(0,0,0,0.1);
	}
}

@media screen and (max-width: 25em) {

	.codrops-header {
		font-size: 80%;
	}

	.codrops-top {
		font-size: 120%;
	}

	.codrops-icon span {
		display: none;
	}

}
div.top-area {
    border-top: solid 6px #7cc89d;
}


.top-area-socials .socials-item {
    padding: 0 7px;
    margin: 0;
}
a.socials-item {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    -o-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
    margin: 0 5px;
    line-height: 16px;
}
.top-social {
    padding: 15px 0;
}
.socials.inline-inside {
    text-align: right;
}

.hmbrg-menu button i {
    font-size: 40px;
}

.hmbrg-menu button {
    background: transparent;
}
.carousel-caption { top:20%;}
.carousel-control-next, .carousel-control-prev {
    top: 50% !important;
    height: 40px !important;
	width: 40px !important;
	margin: 0 20px;
}

.logo img {
    width: 100px;
	    margin-top: 20px;
}
.hmbrg-menu {
    text-align: right;
    z-index: 99999;
    margin-top: 60px;
}
.leftimg img {
    width: 100%;
}
.mul-colr-heading {
    padding: 10px 0;
}
.blu {
    color: rgb(14, 173, 239);

}
.gre {
    color: rgb(105, 224, 165);

}

section.theneed .row {
    padding: 0 !important;
    margin: 0 !important;
    -bs-gutter-x: 0 !important;
}
.modal-header { display: block !important;}

.modal-header {
    text-align: center;
}

.modal-body .form-control {
    margin-right: 20px;
}
.modal-body .form-control:focus {
   
    border-color: #e9ecef !important;
    box-shadow: none !important;
}

button.btn-close {
    position: absolute;
    top: 7px;
    right: 8px;
    padding: 4px;
    color: #585980;
}
div.about {
    padding: 50px;
}
section.ourprod {
    background: #f4f4f4;
    padding: 40px;
}
.product img {
    width: 100%;
}

.product {
    padding: 10px;
    background: #fff;
}
.product .pro-ttle {
    background: #69e0a5;
    padding: 10px;
    font-size: 24px;
    text-align: center;
}
.section-header {
    margin-bottom: 40px;
}
.cookie-banner {
    position: fixed;
    bottom: 40px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    border-radius: 0;
    box-shadow: 0 0 2px 1px rgb(0 0 0 / 20%);
    z-index: 9999;
    color: #fff;
}
.close {
  height: 20px;
  background-color: #777;
  border: none;
  color: white;
  border-radius: 2px;
  cursor: pointer;
}
#target {
 /*   height: 100px;
    background-color: red;*/
}
.cookie-banner a {
    border: 2px solid #fff;
    padding: 2px 10px;
    background: #fff;
    color: #333;
    text-decoration: none;
    margin: 10px;
}

footer.site-footer a {
    color: #69e0a5;
    text-decoration: none;
}

footer.site-footer {
    background: #0b529b;
    padding: 20px 20px 10px;
    color: #fff;
}
section#contact {
    padding: 40px 0;
	background: #e5e5e5;
}

.contform .form-control {
    margin-right: 20px;
}
.contform .form-control:focus {
   
    border-color: #e9ecef !important;
    box-shadow: none !important;
}
form.contform button {
    text-align: right;
    margin: 10px 0;
}
.teamcntnt img {
    background: #f5f5f5;
    width: 40%;
    float: left;
    margin: 10px 20px 0 0;
    padding: 10px;
}

header.codrops-header ul.dropdown-menu {
    width: 300px !important;
    margin: 0 auto !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
    padding: 0px !important;
    transform: none !important;
}

.dropdown.pull-right.d-block.d-md-none a i {
    font-size: 30px;
    color: #fff;
}
.dropdown.pull-right.d-block.d-md-none a.show i {
    font-size: 30px;
    color: #fff;
    text-align: right;
    float: right;
    position: absolute;
    right: 0;
    top: -40px;
}

.dropdown.pull-right.d-block.d-md-none a {
    margin-top: 12px;
}
.modal { z-index: 99999 !important;}

.carousel-caption .capsn-txt {
    float: right;
}

.carousel-caption .img-slid {
    float: left;
}
.carousel-caption p {
    font-size: 30px;
    line-height: 40px;
}

.carousel-caption h3 {
    font-size: 60px;
    text-transform: uppercase;
}
nav.outer-nav.right.vertical.d-none.d-md-block a {
    color: #3774bb !important;
}
section.reaction {
    clear: both !important;
    float: none !important;
    display: block;
}
.bg-reactn {
	background:url("../images/3.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
}
section.reaction #carouselExampleCaptions1 {
    max-height: 300px;
}
section.reaction .carousel-inner.row {
    clear: both;
    float: none;
}
section.reaction .carousel-caption {top: 10% !important;}