@charset "utf-8";
/* CSS Document */

/* Fuentes tipograficas */

.playball-regular {
  font-family: "Playball", cursive;
  font-weight: 400;
  font-style: normal;
}

h1, h2 {
  font-family: "Playball", cursive;
  font-weight: 400;
  font-style: normal;
  color: #FFF;
  text-shadow: 0 0.25rem 0.6rem rgba(0,0,0,1);
}
h1 {
  font-size: 4.5rem;
}
h2 {
  font-size: 3rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.3rem;
  }
  h4 {
    margin: 0.7rem 0;
  }
}
h3, h4, h5, h6 {
  font-family: "Mada", sans-serif;
  line-height: 1.1;
}
h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #BB44BB;
  margin: 0;
}
h4 {
  font-weight: 800;
  font-size: 1.6rem;
  margin: 0 0 0.5rem 0;
  color: #999;
}
h5 {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.1;
  margin: 1rem 0 0.5rem 0;
  color: #666;
}
h6 {
  margin: 0.7rem 0 0.3rem 0;
  font-weight: 400;
  font-size: 1.3rem;
  color: #444;
}

/* Estilos generales */

html, body {
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}
body {
  background-image: url(../Images/Background1.png), url(../Images/Background2.png);
  background-position: bottom right, top center;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% auto;
  background-color: #F5F5F5;
  overflow-x: hidden;
  margin-bottom: -300px;
}
a, button {
  font-family: "Mada", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01rem;
  font-size: 1.1rem;
}
a {
  color: #666;
  text-decoration: none;
}
a:hover {
  color: #BB44BB;
}
span, p, ul, ol, li {
  font-family: "Mada", sans-serif;
}
span, p {
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.015rem;
  margin: 0.3rem 0;
  color: #444;
}
p {
  text-align: justify;
  margin-bottom: 0.5rem;
}
i.cursive {
  margin-right: 0;
}
i, h6 svg {
  fill: #444;
  margin-right: 1rem;
}
span i {
  color: #999;
}
h6 svg {
  display: inline-block;       /* igual que <i> */
  vertical-align: middle;      /* alineación con el texto */
  width: 1.1em;                  /* escala con font-size */
  height: 1.1em;                 /* escala con font-size */
}

/* Estilos para header */

header {
  position: fixed;
  width: 100%;
  height: 5.8rem;
  z-index: 100;
}
@media (max-width: 768px) {
  header {
    position: relative;
  }
}
.headergrid {
  display: grid;
  margin: 0 auto;
  padding: 5px 10px;
  grid-template-columns: auto 1fr;
  width: 100%;
  max-width: 1180px;
}
.row1 {
  position: relative;
	width: 100%;
  align-items: center;
	background-color: #BB44BB;
}
.weather {
  grid-column: span 1;
	font-family: "Mada", sans-serif;
	font-size: .8rem;
	color: #FFF;
}
.language {
  grid-column: span 1;
  justify-self: end;
}
.language li {
  display: inline-flex;
  font-size: small;
}
.language li::before {
  color: #FFF;
}
.language select {
  display: inline-flex;
  font-family: "Mada", sans-serif;
  font-size: 0.8rem;
  color: #FFF;
	background: none;
  border: none;
}
.language select::after {
  background-color: #999;
}
.row2 {
  position: relative;
  left: 0;
  top: 0;
	height: 4.2rem;
	width: 100%;
  align-content: center !important;
	background-color: #FFF;
	box-shadow: 0 0.25rem 1rem #444;
}
.mainlogo {
	position: relative;
  grid-column: span 1;
	width: 13rem;
  height: auto;
	margin: 0.2rem 0;
}
@media (max-width: 768px) {
  .row2 {
    height: 4rem;
  }
  .mainlogo {
    width: 10rem;
    height: auto;
    margin: 0.3rem 0;
  }
}
.menu {
  grid-column: span 1;
  justify-self: end;
  margin: 0.25rem 0;
}
.menu ul {
  display: flex;
	gap: 1rem;
}
.menu li {
  display: inline-flex;
  text-decoration: none;
}
.menu a {
  text-decoration: none;
  color: #666;
}
.menu a:hover {
  color: #999;
  text-decoration: underline 0.2rem solid #BB44BB;
}
.menu-toggle {
  display: none;
}
/* Overlay oculto por defecto */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none; /* no bloquea clics cuando está oculto */
  transition: opacity 0.3s ease;
  z-index: 9998; /* justo debajo del menú */
}
/* Overlay visible */
.overlay.active {
  opacity: 1;
  pointer-events: auto; /* ahora sí bloquea clics y permite cerrar */
}
@media (max-width: 768px) {
  .menu-toggle {
    display: initial;
    all: unset; 
    justify-self: end;
    margin-right: 1rem;
    cursor: pointer;
    font-size: 2rem;
    padding: 0.3rem;
    background: none;
    border: none;
    color: #444;
    z-index: 10000;
    transition: color 0.3s ease, transform 0.2s ease;
  }
  .menu-toggle:hover {
    color: #BB44BB;
    transform: scale(1.1);
  }
  .menu-toggle:focus {
    outline: none;
  }
  .menu-toggle:active {
    transform: scale(0.95);
  }
  .menu {
    position: fixed;
    top: 5.8rem;
    left: 0;
    width: 100%;
    height: 40%;
    background: #333;
    color: #ffffff;
    transform: translateY(-100%); /* oculto */
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centra verticalmente */
    align-items: center;  
  }
  .menu.open {
    transform: translateY(0); /* entra */
    opacity: 1;
  }
  .menu ul {
    display: flex;
    flex-direction: column; /* lista vertical */
    gap: 1.5rem;            /* espacio entre enlaces */
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .menu li {
    display: block;
  }
  .menu a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .menu a:hover {
    color: #BB44BB;
    text-decoration: underline 0.2rem solid #BB44BB;
  }
}

/* Estilos comunes */

.sectionimage, .sectionblank, .highliht {
  position: relative;
  top: 5.8rem;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .sectionimage, .sectionblank, .highliht {
    top: -18px;
    background-size: cover !important;
  }
}
.sectionimage {
	height: 35vh;
  max-height: 300px;
  padding: 0;
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
}

.sectionblank {
  height: 18vh;
  background-color: #DDD;
  /*background-image: url(../images/Img_Cenefa.png);
  background-size: 100% auto;
	background-position: center bottom;
	background-repeat: no-repeat;*/
}
@media (max-width: 768px) {
  .sectionblank {
    height: fit-content;
    padding: 1rem 0;
  }
}

.highliht {
  height: 75vh;
  max-height: 750px;
  background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
}
.sectiontext {
	position: relative;
	top: 40%;
  margin: 0;
	text-align: center;
}
@media (max-width: 768px) {
  .sectiontext {
    margin: 1rem 0;
  }
}
.supportimage {
  grid-column: span 1;
}
.supportimage img {
  width: 100%;
  height: auto;
  margin-top: -4rem;
}
@media (max-width: 768px) {
  .supportimage img {
    margin-top: 0.5rem;
  }
}
main.container {
	position: relative;
  top: 5.8rem;
	width: 100%;
	height: auto;
  z-index: 10;
}
@media (max-width: 768px) {
  main.container {
    top: -18px;
    background-size: cover;
  }
}
.layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 25px;
  width: 100%;
	max-width: 1160px;
  top: 5.8rem;
	height: auto;
	padding: 25px 20px;
  margin: 0 auto;
  background-image: linear-gradient(to top, rgba(245,245,245,1) 80px, rgba(245,245,245,0) 100%),  url(../Images/CountyShiluotte.png);
  background-size: 100% auto, 100% auto;
  background-repeat: no-repeat, no-repeat;
}
@media (max-width: 768px) {
  .layout {
    display: block;
    margin: 0;
    max-width: calc(100% - 40px);
  }
}
.pagesubtitle {
  grid-column: span 3;
  text-align: center;
}
@media (max-width: 768px) {
  .pagesubtitle {
    grid-column: span 1;
  }
}
.sideimage {
  grid-column: span 1;
  width: 100%;
  height: auto;
}
.content {
  grid-column: span 2;
  padding: 0 0.2rem;
}
@media (max-width: 768px) {
  .content {
    grid-column: span 1;
  }
}
.content ul, .content ol {
  font-size: 1.1rem;
  color: #444;
}
.content li {
  font-weight: 300;
  padding-left: 0.5rem;
}
.content li::marker {
  margin-left: 1rem;
  color: #444;
  justify-self: flex-start;
}
.items {
  grid-column: span 1;
  text-align: center;
  padding: 1rem;
  border: 0.1rem solid #DDD;
  border-radius: 0.8rem;
  background-color: rgb(249, 249, 249, 0.4);
}
@media (max-width: 768px) {
  .items {
    margin: 0.75rem 0;
  }
  .items:last-child {
    margin-bottom: 0;
  }
}
.items img {
  width: 100%;
  height: auto;
}
.items a {
  text-decoration: none;
}
.items:hover {
  box-shadow: 0 0 10px #999;
  background-color: rgb(249, 249, 249, 1);
}
.thumbnail {
  width: 100%;
  height: auto;
  margin: 0;
}
.keyinfo {
  grid-column: span 1;
  align-items: center;
}
.keyinfo img {
  width: calc(100% -2rem);
  height: auto;
}
.keyinfo fieldset {
  margin-bottom: 1rem;
  padding: 1rem;
}
.keyinfo ul {
  width: calc(100% - 2rem);
  padding: 0 1rem;
}
.hl_gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}
.hl_gallery img {
  width: calc(100% - 7px);
  height: auto;
  border-radius: 0.8rem;
  border: 3.5px solid #BB44BB;
}
@media (max-width: 768px) {
  .hl_gallery {
    grid-template-columns: 1fr 1fr;
  }
}

/* Estilos página inicio */ 


/* Swiper banner */

.hero-banner {
  position: relative;
  top: 5.8rem;
  width: 100%;
  height: 88vh;
  max-height: 860px;
}
@media (max-width: 768px) {
  .hero-banner {
    top: 0;
    height: 50vh;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
/* @media (max-width: 768px) {
  .swiper-slide {
    background-size: 170% auto;
    background-position: center;
  }
}*/

.banner-text {
  position: absolute;
  top: 50%;          /* mitad vertical */
  left: 50%;         /* mitad horizontal */
  transform: translate(-50%, -50%); /* centra exacto */
  text-align: center;
  z-index: 100;
}
@media (max-width: 768px) {
  .banner-text h1 {
    font-size: 2.8rem;
  }
  .banner-text a {
    font-size: 1.2rem !important;
  }
}
.banner-text a {
  font-size: 1.8rem !important;
  font-weight: 500 !important;
  color: #fff;
  text-shadow: 0 0.2rem 1.8rem black;
}
.banner-text a:hover {
  color: #BB44BB;
}

/* Animaciones */
.animate-slide {
  opacity: 0;
  transform: translateY(-30px);
  animation: slideIn 1s forwards;
}

.animate-fade {
  opacity: 0;
  animation: fadeIn 2.5s forwards;
  animation-delay: 2s;
}

.animate-scale {
  opacity: 0;
  transform: scale(0.7);
  animation: scaleUp 1.2s forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pagination */

.swiper-button-next, .swiper-button-prev {
  color: #FFF !important;
}
.swiper-button-next, .swiper-button-prev {
  display: block;
  top: 0 !important;
  height: 100% !important;
  width: 5% !important;
  margin: 0 !important;
}
.swiper-button-prev {
  left: 0 !important;
  padding-right: 1rem !important;
}
.swiper-button-prev:hover {
  background-image: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0));
}
.swiper-button-next {
  right: 0 !important;
  padding-left: 1rem !important;
}
.swiper-button-next:hover {
  background-image: linear-gradient(to left, rgba(0,0,0,0.6), rgba(0,0,0,0));
}
.swiper-pagination {
  bottom: 2rem !important;
  align-items: center;
  transition: .3s opacity !important;
}
.swiper-pagination-bullets:hover, .swiper-pagination-bullets:focus {
  cursor: pointer;
}
.swiper-pagination-bullets-active {
  opacity: 1 !important;
  color: #FFF !important;
}

/* Fin hero banner */

quote {
  display: block;
  margin: 0.5rem 0.8rem;
  padding: 0.5rem 1.2rem;
  font-family: "mada", sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  font-style: italic;
  line-height: 2.5rem;
  text-indent: 1.5rem;
  color: #BB44BB;
}
quote i {
  margin: 0;
  text-indent: 0;
}
.sidesection {
  grid-column: span 1;
	position: relative;
}
.usefulinfo {
	background-color:  rgba(240, 240, 240, 0.6);
	border: 2px dashed #CCC;
	border-radius: 0.8rem;
	padding: 1.5rem 0.8rem;
  margin: 0.5rem 0;
}
.usefulinfo img {
  width: calc(100% - 0.8rem);
  height: auto;
}
.label {
  font-family: "Mada", sans-serif;
  font-size: 1.5rem;
}
.usefulinfo li {
  margin: 0.5rem 0 0.5rem 0;
  font-weight: 400;
  list-style: none;
}
.areaseparator {
  grid-column: span 3;
  text-align: center;
}
#dst {
  scroll-margin-top: 6rem; /* ajusta según la altura de tu menú */
}

.dst_a, .dst_b {
  grid-column: span 1;
  height: 9.5rem;
  border: 1px solid #999;
  border-radius: 0.8rem;
  padding: 1.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .dst_a, .dst_b {
    margin: 0.75rem 0;
  }
  .dst_a:last-child, .dst_b:last-child {
    margin-bottom: 0;
  }
}
.dst_a h5, .dst_b h5 {
  margin: 0.3rem 0;
}
.dst_a {
  background-color: rgba(229, 229, 229, 0.5);
}
.dst_b {
  background-color: rgba(240, 240, 240, 0.5);
}
.dst_a:hover {
  background-color: rgba(229, 229, 229, 1);
  box-shadow: 0 0 0.5rem #999;
}
.dst_b:hover {
  background-color: rgba(240, 240, 240, 1);
  box-shadow: 0 0 0.5rem #999;
}
.dst_a:hover svg, .dst_b:hover svg {
  width: 65px;
  fill: #666;
}
.dst_a a, .dst_b a {
  text-decoration: none;
  color: inherit;
}
.dst_a svg, .dst_b svg {
  width: 60px;
  margin: 0.7rem;
  fill: #999;
}

/* Estilos para DST */

.dst-p_items, .dst-g_items {
  text-align: center;
  padding: 1.2rem;
  border-radius: 0.8rem;
  background-color: rgba(250, 250, 250, 0.5);
}
@media (max-width: 768px) {
  .dst-g_items {
    margin-top: 1rem;
  }
  .dst-p_items {
    margin-top: 3.2rem;
  }
}
.dst-p_items {
  border: 2px dashed #CCC;
  margin-top: 2.5rem;
}
.dst-p_items i, .dst-g_items i {
  margin-right: 0.2rem;
}
.dst-g_items {
  border: 2px dotted #d5d5d5;
}
.dst-p_items:hover, .dst-g_items:hover {
  background-color: rgba(250, 250, 250, 1);
}
.logos {
  margin-top: -4rem;
  width: 20vh;
  height: auto;
  border-radius: 0.8rem;
  border: 1px solid #999;
} 

/* Estilos para guias */

.profile {
  margin-top: 5rem;
}
.picture {
  width: 8.5rem;
  height: auto;
  margin: -7rem 0 0.5rem 0;
  border: 15px solid #F5F5F5;
  border-radius: 5rem;
}

/* Estilos para allyear */

.monthcells {
  display: flex;
  gap: 1rem;
}
.monthgroup {
  flex: 1;
  width: 50%;
}
@media (max-width: 768px) {
  .monthcells {
    display: block;
  }
  .monthgroup {
    width: 100%;
  }
}
fieldset {
  border: 2px dashed #CCC;
  margin: 0 0 0.5rem 0;
}
legend {
  font-family: "Mada", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0 1rem;
  color: #444;
}
fieldset ul {
  width: auto;
}
fieldset li {
  padding: 0;
}

/* Estilos para tocome */

details summary {
  font-family: "Mada", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  color: #444;
}
details summary:hover {
  color: #BB44BB;
}
details {
  margin: 1rem 0 2rem;
  width: 100%;
}
details[open] summary {
  color: #999; /* cambia color cuando está abierto */
}
details div {
  padding: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
details[open] div {
  max-height: 580px; /* ajusta según el contenido */
}
.hideshow ul {
  width: calc(100% -2rem);
  box-sizing: border-box;
  overflow-wrap: break-word;
}
.hideshow li {
  width: calc(100% -2rem);
}
.hideshow ul ol {
  margin-bottom: 1rem;
}

/* Estilos para assistance */

.halfcol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0.7rem 0 1.2rem 0;
}

@media (max-width: 768px) {
  .halfcol {
    grid-template-columns:1fr;
  }
}

.halfcol:last-child {
  margin: 0.7rem 0 0 0;
}
.halfsecc {
  grid-column: span 1;
}

/* Estilos para emergency */
.content span i {
  font-size: .8rem;
  margin-right: .2rem;
}

/* Estilos para hihgliht */
.descriptiontext {
  grid-column: span 2;
}
.descriptiontext li {
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.015rem;
  margin: 0.3rem 0;
  color: #444;
}

/* Estilos para mapa */
.maparea {
  grid-column: span 2;
  height: 70vh;
}

/* Estilos para contacto */
.contactarea {
  grid-column: span 2;
  margin: 2rem;
}
.contactform {
  display: grid;
  grid-template-columns: 1fr 1fr; /* dos columnas fijas */
  gap: 1rem;
  padding-top: 1.5rem;
}
.input {
  display: flex;
  flex-direction: column;
}
.textarea {
  grid-column: 1 / span 2;
}
label, input, textarea {
  font-family: "Mada", sans-serif;
  letter-spacing: 0.01rem;
}
label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #444;
}
input, textarea {
  font-size: 0.9rem;
  font-weight: 200;
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 5px;
  border: 1px solid #999;
  width: calc(100% - 2rem);
}
input:focus, textarea:focus {
  border: 2px solid #666;
  outline: none;    /* quita el borde azul por defecto */
}
input:not(:placeholder-shown),
textarea:not(:placeholder-shown) {
  background-color: #FFF;
}
textarea {
  height: 30vh;
}
button {
  padding: 0.5rem 0.8rem;
  width: fit-content;
  margin-top: 1rem;
  border: 2px solid #FFF;
  border-radius: 5px;
  color: #FFF;
  background-color: #BB44BB;
}

button:hover {
  box-shadow: 0 0 7px #999;
}
.contactoptions {
  grid-column: span 3;
  text-align: center;
}
.contactways {
  display: grid;
  grid-column: span 1;
  width: auto;
  height: 6vh;
  padding: 20px;
  justify-items: center;
  text-align: center;
  border: 1px solid #999;
  border-radius: 0.8rem;
  background-color: rgb(249, 249, 249, 0.5);
}
.contactways span {
  font-family: "Mada", sans-serif;
  font-size: 1.2rem;
  color: #666;
}
.way li {
  text-decoration: none;
}
.way li::marker {
  text-decoration: none;
}
.way li::before {
  text-decoration: none;
  color: #BB44BB;
}

/* Estilos para créditos */

.secc1 ul, .secc2 ul {
  width: 50%;
}

/* Estilos para galeria fancybox */

.galeria {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.galeria img {
  width: 150px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}

.galeria img:hover {
  transform: scale(1.05);
}

.fancybox__nav,
.fancybox__button {
  position: fixed;       /* asegura que se ubiquen respecto al viewport */
  z-index: 99999;        /* por encima del contenido */
}

.fancybox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.fancybox__button--close {
  top: 1rem;
  right: 1rem;
}

/* Estilos para footer */

.gridcredits {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.secc1, .secc2 {
  grid-column: span 1;
}
@media (max-width: 768px) {
  .gridcredits {
    grid-template-columns: 1fr;
  }
}

/* Estilos para footer */

footer {
  position: relative;
	margin-top: -60px;
	padding-top: 70px;
  top: 5.8rem;
	background-color: #BB44BB;
	z-index: 1;
}
.footergrid {
  display: grid;
  margin: 0 auto;
  padding: 5px 10px;
  width: 100%;
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

@media (max-width: 768px) {
  footer {
    top: 0;
    margin-top: 0;
    padding-top: 1rem;
    height: auto;
    width: 100%;
  }
  .footergrid {
    display: block;
    max-width: calc(100% - 20px);
  }
  .col1, .col2, .col3 {
    height: auto !important;
    text-align: center;
  }
}

.col1, .col2, .col3 {
	grid-column: span 1;
	height: 15.5rem;
}
.col2 span, .col3 span {
  display: block;
  margin: 1rem 0;
}
.coltitle {
	font-family: "Mada", sans-serif;
  font-weight: 500;
	color: #FFF;
}
.logofooter {
	width: 14.5rem;
  height: auto;
}
.sitedescription {
  font-weight: 300;
	font-size: 0.92em;
  line-height: 1.5;
	color: #FFF;
}
.cells {
  display: flex;
}
.listgroup {
  flex: 1;
  width: 50%;
  margin: 0 0.5rem;
}
.links {
	color: #FFF;
  padding-left: 1rem;
  margin: 0.5rem 0;
  list-style-position: inside;
}
.links li {
  list-style: disc;
  margin-top: 0.3rem ;
}
.links a {
  font-size: 0.9rem;
  font-weight: 300;
  color: #FFF;
  text-decoration: none;
  opacity: 0.7;
}
.links a:hover {
  opacity: 1;
}
.gallery {
  width: 100%;
  height: auto;
}
.rowcredits {
  grid-column: span 3;
	padding: 10px 0;
  border-top: 1px dashed #FFF;
  text-align: center;
}
.credits {
  font-family: "Mada", sans-serif;
	font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.7;
	color: #FFF;
	text-align: center;
}
.credits a {
  font-size: 0.8rem;
  font-weight: 300;
  color: #FFF;
  text-decoration: none;
}
.credits a:hover {
  color: #DDD;
}