/* ==========================================================================
   IMPORT GOOGLE FONTS
   ========================================================================== */
/* @import must be at top of file, otherwise CSS will not work */
   
@font-face {
  font-family: "BrandonGrotesqueWeb-Regular";
     src: url('fonts/BrandonGrotesqueWeb-Regular.eot');
    src: url('fonts/BrandonGrotesqueWeb-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/BrandonGrotesqueWeb-Regular.woff2') format('woff2'),
        url('fonts/BrandonGrotesqueWeb-Regular.woff') format('woff'),
        url('fonts/BrandonGrotesqueWeb-Regular.ttf') format('truetype'),
        url('fonts/BrandonGrotesqueWeb-Regular.svg#BrandonGrotesqueWeb-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
 }

@font-face {
  font-family: "BrandonGrotesqueWeb-Bold";
    src: url('fonts/BrandonGrotesqueWeb-Bold.eot');
    src: url('fonts/BrandonGrotesqueWeb-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/BrandonGrotesqueWeb-Bold.woff2') format('woff2'),
        url('fonts/BrandonGrotesqueWeb-Bold.woff') format('woff'),
        url('fonts/BrandonGrotesqueWeb-Bold.ttf') format('truetype'),
        url('fonts/BrandonGrotesqueWeb-Bold.svg#BrandonGrotesqueWeb-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
 

@font-face {
	font-family: 'Conv_Amelia Sophia';
	src: url('fonts/Amelia Sophia.eot');
	src: local('☺'), url('fonts/Amelia Sophia.woff') format('woff'), url('fonts/Amelia Sophia.ttf') format('truetype'), url('fonts/Amelia Sophia.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* ==========================================================================
   GENERAL
   ========================================================================== */
body {
  font-family: 'BrandonGrotesqueWeb-Regular', sans-serif;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  background: #fff;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

p {
  font-size: 18px;
  color: #000;
  line-height:1.5;
  font-family: 'BrandonGrotesqueWeb-Regular', sans-serif;
  margin-bottom: 0;
}

strong, b {
	font-family: 'BrandonGrotesqueWeb-Bold', sans-serif;

}

a:hover, a:focus {
  color: #3c9cfd;
}

a {
  color: #3c9cfd;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1, h2, h3, h4, h5 {
  font-family: 'BrandonGrotesqueWeb-Regular', sans-serif;
}


h1 {
	font-size:48px;
	color:#fff;
	text-transform:uppercase;
text-shadow: 3px 3px 20px rgb(0 0 0 / 54%), -2px 1px 30px rgb(0 0 0 / 60%);	
}
h1 span {
	color:#cccccc;
  font-family: 'BrandonGrotesqueWeb-Bold', sans-serif;		
}

h2 {
	font-size:48px;
	color:#8e8e8d;
	text-transform:uppercase;
}
h2 span {
		color:#006680;
}

h3 {
	font-size:32px;
	color:#8e8e8d;
	text-transform:uppercase;
}
h3 span {
		color:#006680;
}

h4 {
	font-size:26px;
}


ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

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

a:not([href]):not([tabindex]) {
  color: #fff;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: #fff;
}
/* ==========================================================================
   colores y backgrounds
   ========================================================================== */
.text-primary {
		color:#006680;

}

.text-secondary {
	color:#006680!important;
}


.bg-transparent {
  background: transparent !important;
}

.bg-defult {
  background: #3c9cfd !important;
}

 	.filter-bn {
		filter: grayscale(100%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;		
	}
 	.filter-bn:hover {
		filter: grayscale(1%);
	}
/* ==========================================================================
   Section Title
   ========================================================================== */
.section {
  padding: 80px 0 80px;
}

.section-header {
  color: #fff;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

 
/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  font-size: 20px;
  padding: 10px 30px;
  border-radius: 0px;
  font-family: 'BrandonGrotesqueWeb-Regular', sans-serif;
	background:#006680;
  color: #fff;
  border: none;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
}

.btn-common {
 width:220px;
  border:1px solid #006680;
  z-index: 1;
}

.btn-common:hover {
	background: #fff;
  color: #006680;
	  border:1px solid #ccc;

}

.btn-effect {
  overflow: hidden;
	position:relative;
}

.btn-effect:after {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-effect:hover span{
  color:#006680;
	position:relative;
	z-index:2;

}
.btn-effect:hover:after {
  width: 100%;
}

.btn-border {
  border-style: solid;
  border-width: 2px;
  cursor: pointer;
  background-color: transparent;
  border-color: #3c9cfd;
  color: #3c9cfd;
}

.btn-border:hover {
  box-shadow: 0px 8px 9px 0px rgba(96, 94, 94, 0.17);
}
 
 
button:focus {
  outline: none !important;
}
 

.clear {
  clear: both;
}
 


/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999999;
}

.loader {
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
}

#loader-1:before, #loader-1:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 7px solid transparent;
  border-top-color: #006680;
}

#loader-1:before {
  z-index: 100;
  animation: spin 2s infinite;
}

#loader-1:after {
  border: 7px solid #fafafa;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ========================================================================== 
   Scroll To Up 
   ========================================================================== */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 15px;
    width: 40px;
    height: 40px;
    line-height: 45px;
  cursor: pointer;
  text-align: center;
  border-radius: 100%;
  background-color: white;
  box-shadow: 0px 8px 9px 0px rgba(96, 94, 94, 0.17);
}

.back-to-top i {
  background: linear-gradient(to right, #3c96ff 0%, #2dfbff 100%);
  -webkit-background-clip: text;
  font-size: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* ==========================================================================
   Navbar Style
   ========================================================================== */
 .nav-container {
		background: #006680;
		margin-bottom:15px;		
 }
 .header-top-area {
  transition: all 0.3s;
	padding: 20px 10px; 
 	background: #006680;	
	position:fixed;
	top: 0;
	right: 0;
	left: 0;	
	z-index: 9999;}
 
.menu-bg {

	padding: 5px;
}

.menu-bg .menu-button {
  top: 0;
}

.menu-bg .menu-button:hover {
  cursor: pointer;
  color: #3c9cfd;
}

.menu-bg .logo-menu a {
  color: #3c9cfd;
}

.menu-bg .navbar-nav .nav-link {
  color: #ffffff !important;
}

.menu-bg .navbar-nav .nav-link:hover {
  color: #ffffff !important;
}

.menu-bg .navbar-nav .active {
  color: #ffffff !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #fff;
  font-size: 15px;
  padding: 5px 0px;
  margin-left: 20px;
  font-family: 'BrandonGrotesqueWeb-Regular', sans-serif;
  position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.navbar-expand-lg .navbar-nav .active::before,
.navbar-expand-lg .navbar-nav .nav-link:hover::before {
  width: 100%;
}

.navbar-brand {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link:focus,
.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link:hover:before {
  color: #ffffff;
}

.navbar-expand-lg .navbar-nav .active > .nav-link,
.navbar-expand-lg .navbar-nav .nav-link.active,
.navbar-expand-lg .navbar-nav .nav-link.active:before,
.navbar-expand-lg .navbar-nav .nav-link.open,
.navbar-expand-lg .navbar-nav .open > .nav-link {
  color: #ffffff;
}

.navbar-expand-lg .navbar-toggler {
  background: transparent;
  border:0;
  border-radius:0px;
  margin: 5px;
  cursor: pointer;
  float: right;
	font-size: 27px;
	height: 27px;
	padding:0;
}

.navbar-expand-lg .navbar-toggler i {
  color: #fff !important;
}

.navbar-expand-lg .navbar-toggler:focus {
  outline: none;
}
.navbar-toggler[aria-expanded=true] .lni-menu:before {
    content: "\e944";
}

.navbar-toggler[aria-expanded=false] .lni-menu:before {
    content: "\e9b9";
}
/* ==========================================================================
   Hero Area
   ========================================================================== */
.hero-area {
  background: #fff;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  position: relative;
	margin-top:100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;	
}

.hero-area .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-image: -moz-linear-gradient(0deg, #3c96ff 0%, #2dfbff 100%);
  background-image: -webkit-linear-gradient(0deg, #3c96ff 0%, #2dfbff 100%);
  background-image: -ms-linear-gradient(0deg, #3c96ff 0%, #2dfbff 100%);
}

.hero-area .contents {
  padding: 100px 0 140px;
	text-align:center;
	position:relative;
	z-index:10;
}
 

.hero-area .contents p {
  color: #fff;
  font-size: 24px;
  line-height: 26px;
	text-align:center;
	margin-bottom:30px;
text-shadow: 3px 3px 20px rgb(0 0 0 / 54%), -2px 1px 30px rgb(0 0 0 / 60%);}
 
 
/* ==========================================================================
 Heros
 ========================================================================== */
.hero-area.home {
   height: calc(100vh - 100px);
}
.hero-area.home:after {
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	width:100%;
	background: url(../img/headers/home.jpg) no-repeat center transparent;
	background-size: cover;
	background-attachment: fixed;		

	filter: grayscale(100%);
	transition:0.6s all;
}
 
 
 .hero-area.internas {
   height: calc(75vh - 100px);
}
.hero-area.internas.home-staging:after {
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	width:100%;
	background: url(../img/headers/home-staging.jpg) no-repeat center transparent;
	background-size: cover;
	background-attachment: fixed;		
	filter: grayscale(100%);
	transition:0.6s all;
}
 
.hero-area.internas.interior-design:after {
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	width:100%;
	background: url(../img/headers/interior-design.jpg) no-repeat center transparent;
	background-size: cover;
	background-attachment: fixed;		
	filter: grayscale(100%);
	transition:0.6s all;
}
 
.hero-area.internas.filosofia:after {
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	width:100%;
	background: url(../img/headers/nuestra-filosofia.jpg) no-repeat center transparent;
	background-size: cover;
	background-attachment: fixed;		

	filter: grayscale(100%);
	transition:0.6s all;
}
  
.hero-area.internas.nosotros:after {
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	width:100%;
	background: url(../img/headers/nosotros.jpg) no-repeat center transparent;
	background-size: cover;
	background-attachment: fixed;		

	filter: grayscale(100%);
	transition:0.6s all;
}
   
.hero-area.internas.proyectos:after {
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	width:100%;
	background: url(../img/headers/proyectos.jpg) no-repeat center transparent;
	background-size: cover;
	background-attachment: fixed;		
	filter: grayscale(100%);
	transition:0.6s all;
}
   
.hero-area.internas.contacto:after {
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	width:100%;
	background: url(../img/headers/contacto.jpg) no-repeat center transparent;
	background-size: cover;
	background-attachment: fixed;		
	filter: grayscale(100%);
	transition:0.6s all;
}

.hero-area.internas.home-staging:hover:after, 
.hero-area.internas.interior-design:hover:after, 
.hero-area.internas.filosofia:hover:after, 
.hero-area.internas.nosotros:hover:after, 
.hero-area.internas.proyectos:hover:after, 
.hero-area.internas.contacto:hover:after,
.hero-area:hover:after {
	filter: grayscale(1%);
}
/* ==========================================================================
   BANNERS 
   ========================================================================== */

.banner {
   background-size: cover;
   overflow: hidden;
  position: relative;
	margin-top:30px;
	margin-bottom:30px;
	padding:180px 0; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;	
}
.banner:after {
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	width:100%;
 	filter: grayscale(100%);
	transition:0.6s all;
}

.banner.banner-hs:after {
	background: url(../img/banners/banner-hs.jpg) no-repeat center transparent;
	background-attachment: fixed;		
	background-size: cover;
}

.banner.banner-id:after {
	background: url(../img/banners/banner-id.jpg) no-repeat center transparent;
	background-attachment: fixed;		
	background-size: cover;
}

.banner:hover:after {
	filter: grayscale(1%);
}


.text-banner {
	position:relative;
	z-index:1;
}
.text-banner h2 {
	color:#fff;
	text-shadow: 3px 3px 20px rgb(0 0 0 / 54%), -2px 1px 30px rgb(0 0 0 / 60%);}

 
.text-banner h2 span{
	color:#cccccc;
	font-family: 'BrandonGrotesqueWeb-Bold', sans-serif;
}
.text-banner p {
	color:#fff;
	font-size:20px;
	margin-bottom:20px;
	text-shadow: 3px 3px 20px rgb(0 0 0 / 54%), -2px 1px 30px rgb(0 0 0 / 60%);}

 

/* ==========================================================================
   BANNERS 
   ========================================================================== */
	.features {
		padding:100px 0;
	} 
	
	.content-features {
		position:relative;
		background:#006680;
		min-height:370px;
}

.content-features:after {
	content:'';
	position:absolute;
	top:20px;
	left:20px;
	right:20px;
	bottom:20px;
	border:2px solid #8e8e8d;
}
	
.content-features .img {
	min-height:50%;
	overflow:hidden;
}
.content-features .img img{
  filter: grayscale(100%);
	transition:0.6s all;
}
.content-features:hover img{
	filter: grayscale(10%);
}
.content-features .text {
    padding: 20px 30px 40px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}
	.content-features .text h3{
		font-family: 'BrandonGrotesqueWeb-Bold', sans-serif;
		font-size:72px;
		margin:0;
		color:#fff;
	}
	.content-features .text h3 span{
		color:#fff;
	}
	.content-features .text p{
		color:#fff;
	}	
	
/* ==========================================================================
   GRILLA 
   ========================================================================== */

.grilla-img {
	display:flex;
	flex-wrap:wrap;
	margin-bottom:24px;
	position:relative;
 }
.grilla-img > .container {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0%);
	top: 50px;
	z-index:100;
}

.grilla-img .col-images.col-img-1 {
    width: calc(50% - 12px);
    margin-right: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grilla-img .col-images.col-img-2{
	width:calc(50% - 12px);
	margin-left:12px;
    display: flex;
    justify-content: space-between;
	}
  
.grilla-img .col-images .img-thumb,
.grilla-img .col-images .img-thumb img{
	width:100%;
}

.grilla-img .col-images .img-thumb img{
	align-self:center;
	width:100%;
	filter: grayscale(100%);
	transition:0.6s all;
}


.grilla-img .col-images .img-thumb:hover img{
	width:100%;
	filter: grayscale(1%);
	transform:scale(1.03);
	transition:0.6s all;
	
}


.grilla-img .col-images .img-thumb {
	overflow:hidden;
 }

.grilla-img .col-images .col-images-inner{
	display:flex;
	flex-wrap:wrap;
 }
	
.grilla-img .col-images .col-images-inner.inner-2,
.grilla-img .col-images .col-images-inner.inner-3{
	flex-direction:column;
	justify-content: space-between;

}

.grilla-img .col-images .col-images-inner.inner-2 {
	width:calc(50% - 12px);
	margin-right:12px;
}
	
	
.grilla-img .col-images .col-images-inner.inner-3 {
	width:calc(50% - 10px);
	margin-left:10px;
}
	
	
.grilla-img .col-images .col-images-inner.inner-1 .img-thumb {
	width:calc(50% - 12px);
	}
	
.grilla-img .col-images .col-images-inner.inner-1 .img-thumb:first-child {
	margin-right:12px;
}

.grilla-img .col-images .col-images-inner.inner-1 .img-thumb:last-child {
	margin-left:12px;
}


.grilla-img .col-images .img-thumb .hover-txt {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    background: #006680;
    padding: 0px 20px;
    color: #fff;
    z-index: 10;
    bottom: -90px;
    height: 90px;
		display:flex;
		align-items:center;
		transition:0.6s all;

}
.grilla-img .col-images .img-thumb:hover .hover-txt {
	bottom:0;
}
	.empuja {
		margin-bottom:24px;
	}
/* ==========================================================================
   BANNERS 
   ========================================================================== */
.accesos {
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	margin-bottom:24px;
 }
.contiene-acceso {
	width:calc(50% - 12px);
	position:relative;
}
.contiene-acceso a{
	width:100%;
	display:flex;
	justify-content:center;
	align-items:center;
}
.contiene-acceso a img {
	filter: grayscale(100%);
	transition:0.6s all;
}
.contiene-acceso a:hover img {
	filter: grayscale(1%);
 }

.contiene-acceso .txt {
	position:absolute;
	width:100%;
	z-index:10;
	text-align:center;
}

.contiene-acceso .txt h2 {
	color:#fff;
}
.contiene-acceso .txt h2 span{
	color:#cccccc;
	font-family: 'BrandonGrotesqueWeb-Bold', sans-serif;
}
/* ==========================================================================
   CALL TO ACTION 
   ========================================================================== */
	.box-call {
		border:1px solid #8e8e8d;
		padding:50px 30px;
		margin:50px auto;
	}
	

/* ==========================================================================
			BOX ICON
   ========================================================================== */
	.box-icon {
		background:#c5c5c5;
		padding:25px 40px;
		    height: 100%;
		margin-bottom:20px;
	}
	.box-icon p{
		font-size:20px;
	}
	
	.fotografia {
		text-align:center;
		border:1px solid #8e8e8d;
		padding:40px 180px;	
		margin-bottom:50px;		
	}
		
	.content-detail {
		text-align:center;
		border:1px solid #8e8e8d;
		padding:20px 30px 20px;	
		height: 100%;
	}
	
	.content-detail .porcentual {
		margin-top:12px;
	}			
	.content-detail .porcentual-num{
		font-family: 'Conv_Amelia Sophia', sans-serif;
		    line-height: 1;
	}	
				
	.content-detail .porcentual-num .con-hs{
		font-size:48px;
	}	
		.content-detail .porcentual-num .sin-hs{
		font-size:38px;
	}	
			
	.content-detail .porcentual-num .referencia{
font-family: "BrandonGrotesqueWeb-Bold";
    width: 100%;
    position: absolute;
    text-align: center;
    font-size: 14px;
    bottom: 0;
 	}	
	.content-detail .porcentual-num,
	.content-detail .porcentual-refe{
		width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; 
		padding:0 5px;
		position: relative;
	}
		.content-detail .porcentual-refe {
			font-size:12px;
		}
	
	p.fuente,
	p.fuente a{
		color:#8e8e8d;
		text-decoration:none;
	}
	
	.box-call .btn-effect:after {
		border:1px solid #006680
	}
	.box-call .btn-effect:hover:after{
		border:1px solid #ccc;
	}
	
/* ==========================================================================
   INTERIOR DESIGN 
   ========================================================================== */
		.box-interior {
			position:relative;
		}

	.box-interior .txt{
		width:70%;
		min-height:200px;
		margin:auto;
		padding:30px 20px;
		text-align:center;
		border:1px solid #8e8e8d;
		position:relative;
	}
	.box-interior .txt.abajo {
			margin-top:80px;
		}
	.box-interior .txt.arriba {
			margin-bottom:80px;
		}
.box-interior .txt:after {
	content:'';
	height:150px;
	width:2px;
	background:#006680;
	position:absolute;
	left:50%;
	margin-left:-1px;
}
.box-interior .txt.abajo:after {
	top:-150px;
}
.box-interior .txt.arriba:after {
	bottom:-150px;
}
 
/* ==========================================================================
 Features Section Start
 ========================================================================== */
.ba-slider {
    position: relative;
    overflow: hidden;
}
 
.ba-slider img {
    width: 100%;
    display:block;
}
 
.resize {
    position: absolute;
    top:0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}


.handle { /* Thin line seperator */
  position:absolute; 
  left:50%;
  top:0;
  bottom:0;
  width:4px;
  margin-left:-2px;
  background:#fff;
  cursor: ew-resize;
}
 
.handle:after {  /* Big orange knob  */
    position: absolute;
    top: 50%;
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -30px;
    content:'';  
    background:url("../img/drag.png") center no-repeat transparent; /* @orange */
    background-size:contain;
		border:4px solid #fff; /* darken(@orange, 5%) */
    border-radius: 50%;
    transition:all 0.3s ease;
 
}

.draggable:after {
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -22px;
    line-height:48px;
    font-size:30px;
}
 
/* ==========================================================================
 Screens Section Start
 ========================================================================== */
 .owl-item {
	 padding:5px;
 }

  .owl-controls .owl-buttons {
  position: relative;
  top: -208px;
  left: 0;
}

  .owl-controls .owl-buttons div.owl-prev {
  float: left;
  margin-left: -50px;
}

  .owl-controls .owl-buttons div.owl-next {
  float: right !important;
  margin-right: -50px;
}

.owl-theme .owl-controls .owl-buttons div {
  width: 40px;
  height: 40px;
  display: block !important;
  background: #fff;
	padding: 0;
  text-align: center;
  display: inline-block;
  opacity: 1 !important;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.owl-theme .owl-controls .owl-buttons div:hover {
   opacity: 0.8 !important;
}

 
a.ver-gal img{
	display:block;
	position:relative;
 		filter: grayscale(100%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;		
	}
a.ver-gal:hover img{
		filter: grayscale(1%);
	}

 
a.ver-gal{
	display:block;
	position:relative;
}

a.ver-gal:after{
 	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background-image:url("../img/galeria.svg");
	background-position:center;
	background-repeat:no-repeat;
 	opacity:0;
	transition:0.5s all; 
}
a.ver-gal:hover:after{
	opacity:1;
}


.fancybox-caption {
    background: transparent;
     color: #fff;
    font-size: 24px;
 
    margin: auto;
}
.fancybox-bg {
    background: #006680;
}
.fancybox-button {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 50px;
    margin: 5px;
    padding: 0;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: visible;
    width: 50px;
}

/* ==========================================================================
    
  ========================================================================== */
.txt-team {
	position:relative;
	padding-left:30px;
	border-left:1px solid #8e8e8d;
}

/* ==========================================================================
   Contact Us
  ========================================================================== */
.form-control {
  width: 100%;
  margin-bottom: 30px;
  padding: 15px 15px;
  font-size: 14px;
  border-radius: 0px;
  text-align: left;
  border: 1px solid #808080;
  box-shadow:0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.form-control:focus {
  border: 1px solid #808080;
  outline: none;
  box-shadow: none;
}

.btn.disabled, .btn:disabled {
  opacity: 1;
}

textarea {
  border-radius: 0px !important;
  text-align: left !important;
}

.contact-info {
  margin-bottom: 15px;
}

.contact-info i {
  font-size: 20px;
  color: #3c9cfd;
}

.contact-info h5 {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 500;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 0;
}

#contact {
  background: #ffffff;
  padding-bottom: 80px;
  position: relative;
  text-align: center;
}
 
#msgSubmit {
margin-bottom: 0;
    text-align: center!important;
    width: 100%;
    font-size: 24px;
    padding: 10px;
     margin-top: 20px;
 
}
#msgSubmit.text-success {
     border: 2px solid #0c6d86;
     color: #0c6d86!important;
}

#msgSubmit.text-danger {
		border: 2px solid  #dc3545!important;
    color: #dc3545!important;
}

 .form-group {
 
    position: relative;
}
.help-block.with-errors {
    font-size: 14px;
    position: absolute;
    bottom: -24px;
    text-align: left;
    width: 100%;
    color: #000;
}
/* ==========================================================================
   Footer Style
   ========================================================================== */
.block-title {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

footer .footer-Content {
  background:url("../img/footer.svg") no-repeat center  #006680;
	background-size:cover;
  padding: 70px 0 20px;
  color: #546E7A;
}
 

.textwidget {
  line-height: 24px;
  margin-bottom: 10px;
}

.textwidget p {
  font-size: 14px;
  color: #ffffff;
}

footer .menu {
  padding-left: 0;
	text-align:center;
}

footer .menu li {
padding: 12px 6px;
    display: inline-block;
}

footer .menu li a {
  color: #ffffff;
  font-size: 15px;
}

footer .menu li a:hover {
  color: #f1f1f1;
}
 
.copyright {
  padding: 15px 0;
   color: #ffffff;
  margin-top: 30px;
}

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

.copyright p a {
  color: #ffffff;
}

.copyright p a:hover {
  color: #f1f1f1;
}

.copyright .nav-inline .nav-link {
  color: #ffffff;
  padding: 10px 0;
  margin-left: 10px;
}

.copyright .nav-inline .nav-link:hover {
  color: #3c9cfd;
}
 
 
 