/************************************************  
 *	v. 1.0.2 									*
 *	Contingut de l'índex 						*
 *  www.senderslaguar.com 	 					*
 *												*
 *	Per:										*
 *  Marcos Moll Barber 							*
 *  Estudis Geomoll 							*
 *  estudisgeomoll@gmail.com 					*
 ************************************************/


/******************
 * IMPORTACIONS 
*******************/
@import url(capçalera.css);
@import url(menu.css);
@import url(peu.css);

/******************
 * GENÈRIC 
*******************/
* {
	text-decoration: none !important;
	outline: none !important;
	/* box-sizing: border-box; */
	
}


main, footer {
	padding-top: 70px;
	padding-left: 12px;
	padding-right: 12px;
}

/******************
 * FONTS
*******************/
h1.benvinguda,
h2.senders,
p,
div.fitxes {
	padding-left: 12px;
	padding-right: 12px;
	line-height: 1.3em;
}

h1.benvinguda,
h2.fitxes,
h2.senders {
	font-family: 'Oswald', sans-serif;
	letter-spacing: 2px;
	font-size: 20px;
}

p,
a.fitxes,
label.peu {
	font-family: 'Nunito', sans-serif;
}

a.fitxes {
	font-size: 0.9em;
}

/******************
 * ENLLAÇOS
*******************/

a.fitxes {
	background: #909000;
	border-radius: 5px;
	color: #fff;
	/*margin: 3px;*/
	padding: 6px;
	cursor:pointer;
}
a.fitxes:hover {
	background: #606000;
}
a.mes-llocs{
	background: #750000;
}
a.mes-llocs:hover{
	background: #710000;
}

/******************
 * BLOC FITXES
*******************/
div.fitxes,
div.benvinguda {
	margin-top: 20px;
}

div.fitxes{
	/*padding-left: 12px;*/
	padding-right: 12px;
}

div.enllaç {
	padding:5px;
	padding-bottom:15px;
	float:left;
}

/******************
 * FOTOGRAFIES
*******************/
.slider{
	width:95%;
	margin: auto;
	overflow: hidden;
}
.slider ul {
	display: flex;
	padding: 0;
	width: 400%;

	animation: canvi 20s infinite alternate;
	animation-timing-function: ease-out;
}
.slider li {
	width: 100%;
	list-style: none;
}
.slider img {
	width: 100%;
}
@keyframes canvi {
	0% {margin-left: 0;}
	20% {margin-left: 0;}

	25% {margin-left: -100%;}
	45% {margin-left: -100%;}

	50% {margin-left: -200%;}
	70% {margin-left: -200%;}

	75% {margin-left: -300%;}
	100% {margin-left: -300%;}
}