@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

*{
	box-sizing: border-box;
	font-family: Helvetica;
	font-size: 24px;
}

body{
	margin: 0;
	padding: 0;
	min-width: 1280px;
/*	background-color: #5c305a; */
/*
Colores Fantasy Cookies
Aguamarina: 80F5E6
DEBFFD: Rosa
*/
	background-image: url("../imagenes/fondo_fc.png");
	background-color: rgb(255, 247, 253);
	color: #777777;
}

blockquote{
	text-align: justify;
	width: 70%;
}

.main{
	position: absolute;
	top: 170px;
	left: 0;
	width: 100%;
}

hr.divisor{
	width: 99%;
	height: 10px;
	border: 0;
	background-color: #aaaaaa;
	border-radius: 20px;
}

.menus{
	position: absolute;
	top: 10px;
	left: 5%;
	width: 90%;
}

.menus .logo{
	position: absolute;
	left: 0;
}

.menus .menu{
	position: absolute;
	right: 0;
	top: 110px;
}

.menus .menu ul{
	display: flex;
	width: 360px; /* (li * 100) */
}

.menus .menu ul li{
	position: relative;
	list-style: none;
	width: 120px;
	border-radius: 5px;
	text-align: center;
}

.menus .menu ul li a{
	color: #777777;
	text-decoration: none;
	cursor: pointer;
}

.menus .menu ul li:hover a{
	background-color: #F0C9E1;
	text-decoration: none;
	cursor: pointer;
	border-radius: 5px;
	padding: 7px;
}

ul.social{
	width: 200px;
	height: 15px;
	display: flex;
}

ul.social li{
	position: relative;
	display: flex;
	list-style: none;
	width: 65px;
	height: 65px;
}

ul.social li a{
	text-decoration: none;
	cursor: pointer;
}

ul.social li a .icon{
	position: relative;
	display: flex;
	font-size: 1.5em;
	color: #777777;
}

ul.social li a .icon:hover{
	color: var(--clr);
}

ul.galerias{
/*	background-color: #111111; */
}

ul.galerias li{
	position: relative;
	display: block;
	list-style: none;
}

ul.galerias li a{
	color: #777777;
	text-decoration: none;
	cursor: pointer;
}

ul.galerias li a:hover{
	background-color: #F0C9E1;
}

#main_i{
	width: 0px;
	transition: 0.5s;
	display: none;
}

#main_d{
	width: 100%;
/*	background-color: #cccccc; */
}

.footer{
	position: fixed;
/*	top: 88vh; */
	bottom: 0px;
	width: 100%;

	text-align: center;
	background-color: rgba(255, 247, 253,0.7);
	height: 120px;
}

.f_c{
	font-family: Kaushan Script;
	font-size: 32px;
}

.f_galeria{
	cursor: pointer;
}

div#foto{
	display: none;
	position: absolute;
	top: 2vh;
	width: 100%;
	height: 96vh;
	text-align: center;
	z-index: 9999;
}


/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */

/* Slideshow container */
.slideshow-container {
  max-width: 790px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  background-color: rgba(119,119,119,0.5);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #555555;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background-color: rgba(204,204,204,0.7);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #777777;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}