/* 1. Classic Slider and Carousel */	

	/* 1. Classic Slider and Carousel */	

	.slider .owl-nav {
		position:absolute;
		top:0;
		left:0;
		margin:0;
		width:100%;
		height:100%;
		pointer-events: none;
		margin:0!important;
		
	}
	
	.slider .owl-prev {
		text-indent: -9999px;
		position: absolute;
		top: 0;
		pointer-events: auto;
		opacity: 1;
		left: 0;
		cursor: pointer;
		height: 100%;
		width: 50%;
		margin-top: 0;
	}
	
	.owl-prev {
		text-decoration:none;
		position:relative;
	}
	.owl-prev span {	
		text-indent: 0;
		margin-left:-90px;
		display:none;
		font-family: 'Poppins', sans-serif;
		font-size: 14px;
		font-weight: 600;
		color:#000;
	}
	
	.white-tooltip .owl-prev span {
		color:#fff;
	}
	
	.owl-prev:hover span {
		display:block;
		position:fixed;
		overflow:hidden;
	}
	
	.slider .owl-next {
		text-indent: -9999px;
		position: absolute;
		top: 0;
		pointer-events: auto;
		opacity: 1;
		right: 0;
		cursor: pointer;
		height: 100%;
		width: 50%;
		margin-top: 0;
	}
	
	.owl-next {
		text-decoration:none;
		position:relative;
	}
	.owl-next span {	
		text-indent: 0;
		display:none;
		font-family: 'Poppins', sans-serif;
		font-size: 14px;
		font-weight: 600;
		color:#000;
	}
	
	.white-tooltip .owl-next span {
		color:#fff;
	}
	
	.owl-next:hover span {
		display:block;
		position:fixed;
		overflow:hidden;
	}
	
	.slider .owl-dots {
		position:relative;
		width:100%;
		top:20px;
		text-align: center;
  		-webkit-tap-highlight-color: transparent;
	}
	
	.owl-theme .owl-dots .owl-dot {
		display: inline-block;
		zoom: 1;
		*display: inline; 
	}
	
	.slider .owl-dots .owl-dot span {
		background: rgba(0,0,0,0.5)!important;
		width:6px;
		height:6px;
		border-radius:6px;
		width: 8px;
		height: 8px;
		margin: 4px 5px;
		background: #D6D6D6;
		display: block;
		-webkit-backface-visibility: visible;
		transition: opacity 200ms ease;
		border-radius: 30px;
	}
	
	.slider .owl-dots .owl-dot.active span, .slider .owl-dots .owl-dot:hover span {
		background: #000!important;
	}
	
	.white-dots .slider .owl-dots .owl-dot span {
		background: rgba(255,255,255,0.5)!important;
	}
	
	.white-dots .slider .owl-dots .owl-dot.active span, .white-dots .slider .owl-dots .owl-dot:hover span {
		background: #fff!important;
	}
	
	.carousel .owl-dots {
		position:relative;
		width:100%;
		margin: 15px 0;
		text-align: center;
  		-webkit-tap-highlight-color: transparent;
	}
	
	.carousel .owl-dots .owl-dot span {
		background: rgba(0,0,0,0.5)!important;
		width:6px;
		height:6px;
		border-radius:6px;
		width: 8px;
		height: 8px;
		margin: 5px;
		background: #D6D6D6;
		display: block;
		-webkit-backface-visibility: visible;
		transition: opacity 200ms ease;
		border-radius: 30px;
	}
	
	.carousel .owl-dots .owl-dot.active span, .carousel .owl-dots .owl-dot:hover span {
		background: #000!important;
	}
	
	.light-content .carousel .owl-dots .owl-dot span {
		background: rgba(255,255,255,0.5)!important;
	}
	
	.light-content .carousel .owl-dots .owl-dot.active span, .light-content .carousel .owl-dots .owl-dot:hover span {
		background: #fff!important;
	}
	
	.text-carousel .owl-nav {
		margin-top:30px;
	}
	
	.text-carousel .owl-prev, .text-carousel .owl-next {
		display:inline-block;
		width:80px;
		height:80px;
		margin:0 10px;
	}
	
	.prev-testimonial, .next-testimonial {		
		width:34px;
		height:34px;
		border-radius:34px;
		box-sizing:border-box;
		border:2px solid rgba(0,0,0,0.2);
		position:absolute;
		left:50%;
		top:50%;
		margin-top:-17px;
		margin-left:-17px;
		cursor: pointer;		
	}
	
	.light-content .prev-testimonial, .light-content .next-testimonial {
		border:2px solid rgba(255,255,255,0.2);
	}
	
	.text-carousel .owl-nav i {
		line-height:80px;
		text-align:center;
		font-size:26px;
		color:#000;
	}
	
	.light-content .text-carousel .owl-nav i {
		color:#fff;
	}
	
	
/* 2. LightBox */		

	.image-link {
		display: inline-block;
		width: auto;
		position:relative;
	}
	
	.image-link::after {
		background-image: url('../images/zoom-white.png');
		background-size: 20px 20px;
		display: inline-block;
		width: 20px;
		height: 20px;
		content: "";
		position: absolute;
		right: 30px;
		top: 30px;
		opacity:0;
		-ms-transform: scale(0.6);
		-moz-transform: scale(0.6);
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		-moz-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	
	.image-link:hover::after {
		opacity:0.5;
		-ms-transform: scale(1);
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	.mfp-with-zoom .mfp-container, .mfp-with-zoom.mfp-bg {
		opacity: 0;
		-webkit-backface-visibility: hidden;
		-webkit-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

	.mfp-with-zoom.mfp-ready .mfp-container {
		opacity: 1;
	}
	
	.mfp-with-zoom.mfp-ready.mfp-bg {
		opacity: 0.93;
	}

	.mfp-with-zoom.mfp-removing .mfp-container, .mfp-with-zoom.mfp-removing.mfp-bg {
	  opacity: 0;
	}



/* 3. Video Player */
	
	.video-wrapper {
		position: relative;
    	box-sizing: border-box;
		min-width: 100%;
		min-height: 100%;
		width: 100%;
		height: auto;
		background-size: cover;
		padding:0;
		overflow:hidden!important;
		opacity:1;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-o-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
	
	.video-cover {
		position:absolute;
		width:100%;
		height:100%;
		top:0;
		left:0;
		z-index:100;
		cursor:pointer;
		background-size:cover;
		background-repeat:no-repeat;
		-webkit-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}
	
	.video-cover.hidden {
		opacity:0;
		visibility:hidden;
	}
	
	.video-cover::before {
		content:'';	
		display: inline-block;
		width: 80px;
		height: 80px;
		position: absolute;
		left: 50%;
		top: 50%;
		opacity: 1;
		box-sizing:border-box;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		line-height: 80px;
		text-align: center;
		margin-left: -40px;
		margin-top: -40px;
		border: 2px solid #fff;
		border-radius: 80px;
		background: rgba(255,255,255,0.1);
	}
	
	.video-cover:hover::before {
		background: rgba(255,255,255,0.2);
		-ms-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
	
	.video-cover::after {		
		font-family: FontAwesome;
		content: "\f04b ";
		color: #fff;
		font-size: 20px;
		display: inline-block;
		width: 80px;
		height: 80px;
		position: absolute;
		left: 50%;
		top: 50%;
		line-height: 80px;
		text-align: center;
		margin-left: -40px;
		margin-top: -40px;
		padding-left:2px;
	}
	
	video.bgvid { 
		background-size: cover;
		height: auto;
		min-height: 100%;
		min-width: 100%;
		position: absolute;
		width: 100%;
		z-index: -100;
		-ms-transform: scale(1.11);
		-moz-transform: scale(1.11);
		-webkit-transform: scale(1.11);
		transform: scale(1.11);
	}
	
	.video-wrapper video.bgvid {
		position:relative;
		-ms-transform: scale(1);
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	.control {
		bottom: 4px;
		color: #ccc;
		display: none;
		left: 0;
		position: absolute;
		width: 100%;
		z-index: 5;
		background-color:#eee;
		padding: 0;
		box-sizing:border-box;
	}

	.btmControl{
		clear:both;
	}
	
	.control .sound{
		width: 30px;
		height: 50px;
		float:left;
		cursor:pointer;
		text-align:center;
		line-height:50px;
		color:#fff;
		opacity:0.4;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	
	.control .sound:hover {
		opacity:1;
	}
	
	.control .sound i {
		line-height:50px;
	}
	
	.control .sound.muted i:first-child {
		display:none;
	}
	
	.control .sound.muted i:last-child {
		display:block;
	}
	
	.control .sound i:last-child {
		display:none;
	}
	
	.control .btnFS{
		width: 50px;
		height: 50px;
		float:left;
		cursor:pointer;
		text-align:center;
		line-height:50px;
		color:#fff;
		opacity:0.4;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	
	.control .btnFS:hover{
		opacity:1;
	}

	.progress-bar {
		background: rgba(255,255,255,0.5);
		box-sizing: border-box;
		float: left;
		height: auto;
		width: calc(100% - 123px);
		cursor: pointer;
		bottom: 23px;
		position: absolute;
		left: 23px;
		opacity:0;
		-webkit-transition: opacity 0.2s ease-in-out;
		-moz-transition: opacity 0.2s ease-in-out;
		-o-transition: opacity 0.2s ease-in-out;
		-ms-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}
	
	.video-wrapper:hover .progress-bar {
		opacity:1;
	}
	
	.progress {
		height: 2px;
		max-width: 100%;
		position: relative;
		width: 100%;
	}
	
	.progress span {
		height:100%;
		position:absolute;
		top:0;
		left:0;
		display:block;
	}
	
	.timeBar{
		z-index:10;
		width:0;
		background: #fff;
	}
	
	.bufferBar{
		z-index:5;
		width:0;
		background: rgba(255,255,255,0.2);
	}
	
	.video-btns {
		position: absolute;
		right: 3px;
		bottom: 0px;
		opacity:0;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	
	.video-wrapper:hover .video-btns {
		opacity:1;
	}
	
	.volume{
		position:relative;
		cursor:pointer;
		width:70px;
		height:10px;
		float:right;
		margin-top:10px;
		margin-right:10px;
	}
	
	.volumeBar{
		display:block;
		height:100%;
		position:absolute;
		top:0;
		left:0;
	}
	

/* 4. Button */

	.clapat-button {
		color:#fff;
		font-weight: 600;
		font-family: 'Poppins', sans-serif;
		font-size: 14px;
		padding:16px 30px;
		line-height:16px;
		cursor:pointer;
		border:none;
		box-sizing:border-box;
		text-align:center;
		background-color:#000;
		display:inline-block;
		border-radius:3px;
		position:relative;
		overflow:hidden;
		margin-right:20px;
	}
	
	.text-align-center .clapat-button {
		margin-right:0;
	}
	
	.clapat-button.rounded {
		border-radius:30px;
	}
	
	.clapat-button.outline {
		background-color:transparent;
		color:#000;
		overflow:visible;
		border-radius:0px;
		border-bottom:2px solid rgba(0,0,0,0.1);
		padding: 14px 30px;
	}
	
	.light-content .clapat-button {
		color:#fff;
		border-bottom:2px solid rgba(255,255,255,0.2);
	}
	
	.clapat-button.outline:hover {
		color:#000;
	}
	
	.light-content .clapat-button.outline:hover {
		color:#fff;
	}
	
	.clapat-button::before {
		content: '';
		position: absolute;
		bottom: 0px;
		left: 0;
		width: 100%;
		height: 100%;
		background: #333;
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .2s ease-out;
	}
	
	.light-content .clapat-button::before {
		background: #fff;
	}
  
    .clapat-button:hover::before {
		transform: scaleX(1);
		transform-origin: left;
	}
	
	.clapat-button span {
		z-index:10;
		position:relative;
		display:inline-block;
	}
	
	.clapat-button.outline::before {
		content: '';
		position: absolute;
		bottom: -2px;
		left: 0;
		width: 100%;
		height: 2px;
		background: rgba(0,0,0,1);
		transform: scaleX(1);
		transform-origin: left;
		transition: transform .2s ease-out;
	}
	
	.light-content .clapat-button.outline::before {
		background:rgba(255,255,255,1);
	}
  
    .clapat-button.outline:hover::before {
		transform: scaleX(0);
		transform-origin: right;
	}
	
	

/* 6. Appear Items */	
	
	.has-animation {
		opacity: 0!important;
		-webkit-transition:  transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s, opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s;
		transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s, opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s; 
		-webkit-transition:translateY(80px);
		transform: translateY(80px);
	}
	
	.has-animation.animate-in {
		opacity: 1!important;
		-webkit-transition:translateY(0px);
		transform: translateY(0px);
	}


/* 7. Underline Link */		
	
	a.link {
		display:inline-block;
		position:relative;
	}
	
	.light-content a.link {
		color:#fff;
	}
	
	a.link::before {
		content: '';
		position: absolute;
		bottom: -5px;
		left: 0;
		width: 100%;
		height: 2px;
		background: rgba(0,0,0,1);
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .2s ease-out;
	}
	
	h1 a.link::before {
		bottom: 0px;
		height: 3px;
	}
	
	.light-content a.link::before {
		background: rgba(255,255,255,1);
	}
  
    a.link:hover::before {
		transform: scaleX(1);
		transform-origin: left;
	}
	
	
	
	.clapat-icon {
		color: #000;
		position: relative;
		margin-top: 15px;
		margin-bottom: 15px;
	}
	
	.text-align-center .clapat-icon i {
		position:relative;
		margin-bottom:20px;
		font-size:24px;
	}
	
	.light-content .clapat-icon {
		color:#fff;
	}
	
	.clapat-icon:after {
	  content: "";
	  clear: both;
	  display: table;
	}
	
	
/* Clients Table */
	
	.clients-table {
		margin:0;
		margin-left:2px;
		display:block;
		-webkit-box-shadow: 0px 100px 70px -80px rgba(0,0,0,0.55);
		box-shadow: 0px 100px 70px -80px rgba(0,0,0,0.55);
	}
	
	.light-content  .clients-table {
		-webkit-box-shadow: 0px 100px 70px -80px rgba(0,0,0,0.85);
		box-shadow: 0px 100px 70px -80px rgba(0,0,0,0.85);
	}
	
	.clients-table:after {
	  content: "";
	  clear: both;
	  display: table;
	}
	
	.clients-table li {
		display: block;
		float: left;
		width: 25%;
		min-height: 30px;
		border: 1px solid #ddd;
		box-sizing: border-box;
		text-align: center;
		opacity: 1;		
		margin: 0px;
		margin-left: 0px;
		margin-left: -1px;
		margin-bottom:-1px;
		background-color:#eee;
	}
	
	.light-content .clients-table li {
		border: 1px solid #222;
		background-color:#111;
	}
	
	.clients-table li img {
		margin:0 auto;
		opacity:0.3;
		transition: all 0.2s ease 0s;
		-webkit-transition: all 0.2s ease 0s;
	}
	
	.clients-table li:hover img {
		opacity:1;
	}	
	


/* 7. Collage */		
	
	.collage{
		padding:20px;
	}
	
	.collage-thumb {
		position:relative;
		overflow:hidden;
		cursor:pointer;
	}
	
	.collage-thumb:hover .thumb-info {
		opacity:1;
		bottom:-5px;
	}
	
	.thumb-info {
		position:absolute;
		bottom:-10px;
		left:0;
		width:100%;
		opacity:0;
		transition:all 0.2s ease-in-out 0s;
    	-webkit-transition:all 0.2s ease-in-out 0s;
		background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.35))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.35) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.35) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.35) 100%); /* IE10+ */
		background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.35) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
	}
	
	.thumb-info h6 {
		color: #fff!important;
		margin: 50px 30px 30px;
	}


/* ============================================
   Gravity Forms — Covisionmedia theme overrides
   ============================================ */

/* Wrapper — matches #contact-formular spacing */
.gform_wrapper {
	margin: 60px 0 auto;
	position: relative;
}



.gform-theme.gform-theme--framework.gform_wrapper .gform_footer {
	position: relative;
	display: inline-block;
	margin: 40px 0 0;
	padding: 0 0 4px;
}

.gform-theme.gform-theme--framework.gform_wrapper .gform_footer::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #000;
	transform: scaleX(1);
	transform-origin: left center;
	transition: transform 0.35s cubic-bezier(0.68, 0, 0.265, 1);
}

.gform-theme.gform-theme--framework.gform_wrapper .gform_footer:hover::before {
	transform: scaleX(0);
	transform-origin: right center;
}
.gform_wrapper::after {
	clear: both;
	content: " ";
	display: table;
}

/* Hide title (your existing rule, scoped tighter) */
.gform_wrapper .gform_title {
	display: none;
}

.gform_wrapper .gform_description {
	margin-bottom: 30px;
	font-family: 'Roboto', sans-serif;
}

/* ---------- Field grid (Name | Email | Textarea) ---------- */

.gform_wrapper .gform_fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 6%;
	row-gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gform_wrapper .gfield {
	position: relative;
	margin: 0;
	padding: 0;
	grid-column: 1 / -1;        /* default: full width */
}

.gform_wrapper .gfield--width-half {
	grid-column: span 1;        /* Name + Email opt-in to half */
}

/* ---------- Labels ---------- */

.gform_wrapper .gfield_label {
	display: block;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.6);
	margin: 0 0 6px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.gform_wrapper .gfield_required {
	color: #e93735;
	margin-left: 4px;
}

/* ---------- Input container (the "box") ---------- */

.gform_wrapper .ginput_container {
	position: relative;
	border-radius: 1px;
	box-sizing: border-box;
	border: 1px solid rgba(0, 0, 0, 0.1);
	overflow: hidden;
	background: #ddd;
}

/* Sliding dark overlay on focus — replaces .input_label */
.gform_wrapper .ginput_container::after {
	content: '';
	position: absolute;
	inset: 0;
	background: #333;
	z-index: 0;
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.2s ease-out;
	pointer-events: none;
}

.gform_wrapper .ginput_container:focus-within::after {
	transform: scaleY(1);
	transform-origin: top;
}
.gform_wrapper .gfield_consent_description {
	padding: 16px;
}
/* ---------- Inputs & textareas ---------- */

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="password"],
.gform_wrapper textarea,
.gform_wrapper select {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	height: 50px;
	padding: 18px 16px 18px 16px;
	width: 100%;
	margin: 0;
	border: none;
	border-radius: 0;
	background-color: #EEE;
	box-sizing: border-box;
	outline: none;
	position: relative;
	z-index: 2;                      /* stays above the dark overlay */
	transition: color 0.15s linear 0.1s, background 0.15s linear 0.1s;
}

.gform_wrapper select {
	padding: 8px 16px 18px 16px;
}

.gform_wrapper textarea {
	resize: none;
	height: 140px;
	padding: 14px 20px 6px 20px;
	background-color: #fff;
}

/* Focus state — text turns white, background goes transparent so overlay shows */
.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
	color: #fff;
	background-color: transparent;
}

/* Autofill kill the yellow Chrome highlight */
.gform_wrapper input:-webkit-autofill,
.gform_wrapper textarea:-webkit-autofill {
	-webkit-text-fill-color: #000;
	-webkit-box-shadow: 0 0 0 1000px #EEE inset;
	transition: background-color 5000s ease-in-out 0s;
}

/* ---------- Submit button + animated underline ---------- */

.gform_wrapper .gform_footer {
	display: inline-block;
	position: relative;
	margin: 40px 0 0;
	padding: 0;
}

.gform_wrapper .gform_footer::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: rgba(0, 0, 0, 1);
	transform: scaleX(1);
	transform-origin: left;
	transition: transform 0.2s ease-out;
	z-index: 2;
}

.gform_wrapper .gform_footer:hover::before {
	transform: scaleX(0);
	transform-origin: right;
}

.gform_wrapper .gform_button {
	margin: 0;
	background: transparent;
	border: 1px solid #000;
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	height: 50px;
	padding: 0 36px;
	border-radius: 0;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.gform_wrapper .gform_button:hover,
.gform_wrapper .gform_button:focus {
	background: #000;
	color: #fff;
}

/* ---------- Validation ---------- */

.gform_wrapper .gform_validation_errors {
	background: transparent;
	border: 1px solid #e93735;
	padding: 14px 18px;
	margin-bottom: 30px;
	color: #e93735;
	font-size: 13px;
	font-weight: 700;
	border-radius: 1px;
}

.gform_wrapper .gform_validation_errors > h2 {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	color: #e93735;
}

.gform_wrapper .gfield_error .ginput_container {
	border-color: #e93735;
}

.gform_wrapper .gfield_validation_message,
.gform_wrapper .gfield_description.validation_message {
	color: #e93735;
	font-size: 13px;
	font-weight: 700;
	margin-top: 6px;
	padding: 0;
	background: none;
	border: none;
}

/* ---------- Confirmation message ---------- */

.gform_confirmation_wrapper {
	text-align: center;
	padding: 40px 20px;
}

.gform_confirmation_message {
	color: #999;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

/* ---------- Honeypot / hidden ---------- */

.gform_wrapper .gform_validation_container,
.gform_wrapper .gfield_visibility_hidden {
	display: none !important;
}

/* ---------- Responsive ---------- */

@media only screen and (max-width: 767px) {
	.gform_wrapper {
		margin: 30px 0 auto;
	}

	.gform_wrapper .gform_fields {
		grid-template-columns: 1fr;
		row-gap: 16px;
	}

	.gform_wrapper .gfield--width-half {
		grid-column: 1 / -1;
	}

	.gform_wrapper .gform_button {
		width: 100%;
		padding: 0 20px;
	}

	.gform_wrapper .gform_footer {
		display: block;
	}
}

@media only screen and (max-width: 479px) {
	.gform_wrapper input,
	.gform_wrapper textarea,
	.gform_wrapper select {
		font-size: 15px;
	}
}

/* ---------- Light content (forms on dark backgrounds) ---------- */

.light-content .gform_wrapper .gfield_label {
	color: rgba(255, 255, 255, 0.6);
}

.light-content .gform_wrapper .ginput_container {
	border-color: rgba(255, 255, 255, 0.3);
	background: transparent;
}

.light-content .gform_wrapper .ginput_container::after {
	background: #fff;
}

.light-content .gform_wrapper input,
.light-content .gform_wrapper textarea,
.light-content .gform_wrapper select {
	background-color: rgba(255, 255, 255, 0.05);
	color: #fff;
}

.light-content .gform_wrapper input:focus,
.light-content .gform_wrapper textarea:focus {
	color: #000;
}

.light-content .gform_wrapper .gform_button {
	border-color: #fff;
	color: #fff;
}

.light-content .gform_wrapper .gform_button:hover {
	background: #fff;
	color: #000;
}

.light-content .gform_wrapper .gform_footer::before {
	background: #fff;
}
	
/* 9. Map */
	
	#map_canvas {
		display: block;
		height: 60vh;
		position:relative;
		width: 100%;
		-webkit-box-shadow: 0px 100px 70px -80px rgba(0,0,0,0.85);
		-moz-box-shadow: 0px 100px 70px -80px rgba(0,0,0,0.85);
		box-shadow: 0px 100px 70px -80px rgba(0,0,0,0.85);
	}
	
	#hero-image.bgrelative #map_canvas {
		position:relative!important;
	}
	
	.gmnoprint a, .gmnoprint span, .gm-style-cc {
		display:none;
	}
	
	.gmnoprint div {
		background:none !important;
	}

.gform_wrapper .ginput_container_consent {
		padding: 18px 16px 18px 16px;

	}
.gform_wrapper .ginput_container_consent label {
	color: #333!important;
}
.gform_wrapper	.ginput_container_consent::after {
		background-color: transparent!important;
		content: "";

	}
	
/*--------------------------------------------------
	16. Responsive
---------------------------------------------------*/			
			


@media only screen and (max-width: 1466px) {
	
	
}


@media only screen and (max-width: 1024px) {
	
	.slider .owl-prev, .slider .owl-next {
		display:none!important;
	}
	
	.text-align-center .clapat-icon {
		padding-left: 0;
	}
	
	.text-carousel {
		max-width:500px;
		margin: 0 auto;
	}
	
	#mc_embed_signup .submit-box {
		margin-top: 30px;
	}
	
	textarea {
		margin-bottom: 30px;
	}
	
}


@media only screen and (max-width: 767px) {
	
	.name-box, .email-box {
		width: 100%;
		margin-right: 0;
	}
	
	.empty-space, .empty-space.tx { 
		height:60px;
	}
	
	.has-animation {
		opacity: 1!important;
		-webkit-transition:translateY(0px);
		transform: translateY(0px);
	}
	
}


@media only screen and (max-width: 479px) {
	
	
		
	.clapat-button {
    	margin-bottom: 20px;
	}
	
	.text-carousel {
    	max-width: 280px;
	}
	
	.text-carousel .owl-prev, .text-carousel .owl-next {
		margin: 0;
	}
		
}			
	