@charset "utf-8";
/* CSS Document */

/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');


/* *********************************************************
  General Styles
********************************************************* */

* {padding:0; margin:0;box-sizing: border-box;}

html, body { 
	margin: 0; 
	padding: 0;
    box-sizing: border-box;
} 

/* webkit, opera, IE9 */
::selection { background:#B8FF00; color:#fff; }
/* mozilla firefox */
::-moz-selection { background:#B8FF00; color:#fff; }

a {
	text-decoration: none;
	cursor: pointer;
	}

img {
	max-width:100%;
	height:auto;
}

hr {
	width: 30%;
	height: 1.5px;
	background: #FF9600;
	text-align: center;
}

.bigtxt h2 {
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	font-size: 50px;
	color:#FFFFFF;
	text-align:center;
	position:absolute;
	left:50%;
	top:50%;
	transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
	text-shadow: 2px 2px 4px #2A2C2D;
}

/* *********************************************************
  BOTONES
********************************************************* */

.btn1 {
	width:200px;
	padding:10px 20px;
	margin:15px;
	display:inline-block;
	color:#A2A5AD;
	text-align:center;
	text-decoration:none;
	border:solid 2px #859BA3;
	transition:all 500ms ease;
}

.btn1:hover {
	border:solid 2px #81EF1D;
}

.btn2 {
	width:150px;
	padding:5px 10px;
	display:inline-block;
	text-decoration:none;
	text-align:center;
	color:#FFFFFF;
	background:#008CFF;
	margin:10px 0px;
	position:relative;
	transition:all 500ms ease;
}

.btn2:hover {
 background: rgba(0,0,0,0);
 color:#008CFF;
 box-shadow: inset 0 0 0 2px #008CFF;
}

.btn-3 {
	width: auto;
	min-width: 150px;
	padding: 10px 10px;
	display: inline-block;
	text-decoration: none;
	border-radius: 20px;
	text-align: center;
	color: #FFFFFF;
	font-weight: 700;
	background: #0d54cb;
	transition: all 500ms ease;

}

.btn-3:hover {
	text-decoration: none;
	background: #2b76f2;
}

/* *********************************************************
  SCROLL TOP
********************************************************* */

.scrollToTop{
	width:50px; 
	height:70px;
	text-align:center; 
	font-weight: bold;
	color: #444;
	text-decoration: none;
	position:fixed;
	top:87%;
	right:30px;
	display:none;
	background:url(../img/top2.png) no-repeat 0px 20px;
}
.scrollToTop:hover{
	text-decoration:none;
}


/* -- LINEAS A LOS LADOS -- */

.smt {
	display: table;
	position: relative;
	margin: 0 auto;
	font-size:40px;
	text-align: center;
	padding: 0 60px;
}

.smt:before, .smt:after {
	display: inline-block;
	content: "";
	border-bottom: 1px solid #485D6A;
	position: absolute;
	left: 0;
	top: 50%;
	width: 50px;
	margin-top: -1px;
}

.smt::after{
	left: auto;
	right: 0;
}

.flexbox {
	display: table;
	text-align: left;
	margin: auto;
}


/* *********************************************************
  PULSE
********************************************************* */

.pulse img {
	display: block;
	position: relative;
	border-radius: 50%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.pulse {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #0084FF;
	color: #FFFFFF;
	position: relative;
	display: grid;
	place-items: center;
	align-content: center;
}

.pulse::before,
.pulse::after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #00F3FF;
	position: absolute;
	z-index: -1;
	opacity: 0.7;
}

.pulse:hover::before {
	background: #1BD6DF;
	animation: pulse 2s ease-out infinite;
}

.pulse:hover::after {
	background: #1BD6DF;
	animation: pulse 2s 1s ease-out infinite;
}

@keyframes pulse {
	100% {transform: scale(2.5); opacity: 0;}
}

/* *********************************************************
  CAROUSEL
********************************************************* */

.features-carousel .item {
	text-align: center;
	min-height: 300px;
	background-color: #fff;
	padding: 30px 15px;
	border-radius: 10px;
	margin: 5px;
}
.features-carousel .item i {
	font-size: 40px;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: #4CAE4C;
	color: #fff;
	border-radius: 50%;
	text-align: center;
}
.features-carousel .util-page span {
	height: 6px;
	width: 6px;
	border-radius: 3px;
	margin: 5px 2px;
}
.features-carousel .util-page.active-page span {
	background-color: #555555;
	width: 25px;
}



/* *********************************************************
  JARALLAX - Parallax
********************************************************* */
#parallax-section {
	width: 100%;
	height: auto;
	min-height: 200px;
}

.jarallax {
	height: auto;
	min-height: 200px;
    position: relative;
    z-index: 0;
}
.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    /* support for plugin https://github.com/bfred-it/object-fit-images */
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.demo-table {
    display: table;
    width: 100%;
	height: 100%;
    background-color: rgba(4, 43, 132, 0.7);
    color: #fff;
}

.demo-table2 {
    display: table;
    width: 100%;
	height: 100%;
    background-color: rgba(19, 89, 250, 0.8);
    color: #fff;
}

/* *********************************************************
  CAJAS
********************************************************* */

.caja1 {
	width: 300px;
	height: 250px;
	background-color: #FFF;
	padding: 10px 10px;
	margin: auto;
	margin-top: 20px;
	box-shadow: 0px 5px 20px 0 #d7e2eb;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: all 400ms ease;
	cursor: context-menu;
}

.caja1:hover {
	box-shadow: 0px 5px 20px 0 #abb9c5;
	transform: translateY(-10px);
	background: #FF5F00;
	color: #FFF;
}

.caja1 i {
	font-size: 60px;
}

.caja1 h2 {
	font-weight: 700;
}

/* *********************************************************
  COUNTER
********************************************************* */

.some-facts {
    background: url("../img/bg/some-facts.png") center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 120px 0;
}
.some-facts .items h3 {
    font-size: 40px;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
    margin-top: 20px;
}
.some-facts .items h4 {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 5px 0 0;
}


/* lined tabs */

.lined .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
}

.lined .nav-link:hover {
  border: none;
  border-bottom: 3px solid transparent;
}

.lined .nav-link.active {
  background: none;
  color: #555;
  border-color: #2b90d9;
}

/* *********************************************************
  IMAGE HOVER
********************************************************* */

.caption-style-4{
		list-style-type: none;
		margin: 0px;
		padding: 0px;
		
	}

	.caption-style-4 li{
		float: left;
		padding: 0px;
		position: relative;
		overflow: hidden;
	}

	.caption-style-4 li:hover .caption{
		opacity: 1;
	}

	.caption-style-4 li:hover img{
		opacity: 1;
		transform: scale(1.15,1.15);
		-webkit-transform:scale(1.15,1.15);
		-moz-transform:scale(1.15,1.15);
		-ms-transform:scale(1.15,1.15);
		-o-transform:scale(1.15,1.15);
	}


	.caption-style-4 img{
		margin: 0px;
		padding: 0px;
		float: left;
		z-index: 0;
	}


	.caption-style-4 .caption{
		cursor: pointer;
		position: absolute;
		opacity: 0;
		-webkit-transition:all 0.45s ease-in-out;
		-moz-transition:all 0.45s ease-in-out;
		-o-transition:all 0.45s ease-in-out;
		-ms-transition:all 0.45s ease-in-out;
		transition:all 0.45s ease-in-out;
	}

	.caption-style-4 img{
		-webkit-transition:all 0.25s ease-in-out;
		-moz-transition:all 0.25s ease-in-out;
		-o-transition:all 0.25s ease-in-out;
		-ms-transition:all 0.25s ease-in-out;
		transition:all 0.25s ease-in-out;
	}
	.caption-style-4 .blur{
		background-color: rgba(0,0,0,0.70);
		height: 500px;
		width: 350px;
		z-index: 5;
		position: relative;
	}

	.caption-style-4 .caption-text h1{
		text-transform: uppercase;
		font-size: 24px;
		text-align: center;
	}
	.caption-style-4 .caption-text{
		z-index: 10;
		color: #fff;
		position: absolute;
		padding: 10px;
		width: 350px;
		height: 400px;
		text-align: center;
		top:50%;
		transform: translateY(-50%)
	}

/* *********************************************************
  SECCIONES
********************************************************* */
.title-section {
    width: auto;
    min-width: 400px;
    height: 80px;
    padding: 15px;
    background: #FFFFFF;
    top: -30px;
    text-align: center;
    position: absolute;
    border-top: solid 5px #00BBFF;
    box-shadow: 0px 6px 5px 0 #d7e2eb;
}

.title-section h2 {
    font-weight: 700;
}


#inicio {
	width:100%;
	height:auto;
	min-height:300px;
	padding: 50px 0px;
	background: #f3f3f3;
	position: relative;
}

#seccion1 {
	width:100%;
	height:auto;
	min-height:400px;
	padding: 50px 0px;
	background: #fff;
	position: relative;
	align-items: center;
	justify-content: center;
}

#seccion2 {
	width: 100%;
	height: auto;
	min-height: 400px;
	padding: 50px 0;
	position: relative;
	background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}


#seccion-historia {
	width:100%;
	height:auto;
	min-height:300px;
	position: relative;
	padding: 50px 0px;
	background: #1CB4FF;
}

#seccion-historia p {color: #FFFFFF;}
#seccion-historia h1 {color: #FFFFFF;}

#seccion3 {
	width: 100%;
	height: auto;
	padding: 50px 0px;
	min-height: 460px;
	background: #f3f3f3;
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
}

#seccion4 {
	width:100%;
	height:auto;
	min-height:300px;
	padding: 50px 0px;
	background:#f3f3f3;
	position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
}

#seccion4 h2 {
	font-weight: 700;
}

.alpen-box {
	width: 350px;
	height: 520px;
	padding: 15px;
	margin: 15px;
	background: #FFFFFF;
	border-radius: 10px;
	box-shadow: 0px 6px 5px 0 #d7e2eb;
}

#tips {
	width: 100%;
	height: auto;
	min-height: 500px;
	padding: 50px 0;
	background: linear-gradient(to right, rgba(255,255,255,0.3), rgba(255,255,255,0.3)),
		url("../img/bg-tips.jpg") center center no-repeat;
	background-size: cover;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tip-card {
	width: 350px;
	height: 500px;
	margin: 15px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 2px 6px 0 #606161;
	display: flex;
	justify-content: center;
}

.tip-name {
	width: 350px;
	height: 50px;
	background: #0D9C02;
	color: #FFF;
	border-radius: 10px;
	padding: 5px;
	position: relative;
	text-align: center;
	justify-content: center;
}

#seccion5 {
	width: 100%;
	height: auto;
	min-height: 400px;
	padding: 0px 0px;
	background: #97E9E8;
	position: relative;
	display: flex;
	align-items: center;
}

.leftside {
	width: 100%;
	height: auto;
	min-height: 400px;
	background: url("../img/div-3.jpg") center center no-repeat;
	background-size: cover;
}

.rightside {
	width: 100%;
	height: auto;
	min-height: 400px;
	background-color: #00DBDE;
background-image: linear-gradient(45deg, #00DBDE 0%, #FC00FF 100%);
	padding: 50px 50px;
	align-items: center;
	color: #FFF;
}

.bold-1 {
	font-weight: 900;
}

#seccion6 {
	width: 100%;
	height: auto;
	min-height: 400px;
	padding: 50px 0;
	background: #f5f7f9;
	position: relative;
}

#contacto {
	width:100%;
	height:auto;
	min-height:500px;
	padding: 50px 0px;
	position: relative;
    background: linear-gradient(to right, rgba(255,0,204,0.7), rgba(51,51,153,0.7)), 
        url("../img/Parallax-kitchen.jpg") center center no-repeat;
	background-size: cover;
	background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
}

.color-cover-white{
	background-color: rgba(255,255,255,.85);
	display: table;
	width: 100%;
	height: 100%;
}

#mapa {
	width:100%;
	height:auto;
}

.lockmapa {
	width:100%;
	height:450px;
	background:rgba(0,0,0,0.01);
	position:absolute;
	cursor:pointer;
	text-align:center;
	color:#FFFFFF;
	font-size:20px;
	text-shadow: 2px 2px 4px #2A2C2D;
}

#footer {
	width: 100%;
	height: auto;
	min-height: 250px;
	position: relative;
	line-height: 3px;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.9)), 
        url("../img/Parallax-footer.jpg") center center no-repeat;
	background-size: cover;
	background-attachment: fixed;
	color:#FFF;
	border-bottom: solid 5px #6A8190;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-cover-black {
	background-color: rgba(0,0,0,.90);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	min-height: 100%;
	padding: 50px 0;
	position: relative;
}

#footer h3{
	color: #00E3FF;
}

.greyscale img {
	padding: 0 10px 0 0;
	filter: grayscale(100%);
	transition: all 500ms ease;
}

.greyscale:hover img {
	filter: grayscale(0%);
}

.center {
	padding: 20px 0;
	text-align: center;
}

#productos {
	width: 100%;
	height: auto;
	min-height: 300px;
	padding: 40px 0;
	position: relative;
	display: flex;
	align-items: center;
    justify-content: center;
}

#productos h2 {
    font-weight: 900;
}

#productos h4 {
    font-style: italic;
    color: #5705CB;
}

#productos2 {
	width: 100%;
	height: auto;
	min-height: 300px;
	padding: 40px 0;
    background: #F3F3F3;
	position: relative;
	display: flex;
	align-items: center;
    justify-content: center;
}

#productos2 h2 {
    font-weight: 900;
}

#productos2 h4 {
    font-style: italic;
    color: #5705CB;
}

.tarjeta {
	width: 250px;
	height: 500px;
	border-radius: 10px;
	margin: 10px 5px;
	overflow: hidden;
	background: #FFF;
	box-shadow: 0px 5px 20px 0 #d7e2eb;
	text-align: center;
	transition: all 400ms ease;
	cursor: default;
}

.tarjeta:hover {
	box-shadow: 0px 5px 20px 0 #abb9c5;
	transform: translateY(-10px);
}

.tarjeta .card-cont h5 {
	font-weight: 900;
}

.tarjeta .card-cont p {
	font-size: 14px;
}

.tarjeta .card-cont {
	padding: 15px 10px;
}

/* *********************************************************
  Responsive Items
********************************************************* */


/* MAX 720px */
@media only screen and (max-width: 720px){
.logo {
		width:170px;
		height:auto;
		margin-left:10px;
	}

.bigtxt {
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
}
	
	.color-cover-black {
		text-align: center;
	}
}


/* MAX 480px */

@media only screen and (max-width: 480px){
	


}