/*--------------------------------------------------------------
0.0 Sección: General -->
1.0 Header navegador menú -->
2.0 Sección: Mirian con N -->
3.0 Sección: Del tingo al tango (fotogalería) -->
4.0 Sección: Contenido del blog -->
5.0 Sección ¿Quién lo dijo? -->
6.0 Footer -->
--------------------------------------------------------------*/

/* 0:0 Sección: GENERAL */

html{
	margin: 0;
	padding: 0;
	font-family: 'Raleway', sans-serif;
	box-sizing: border-box;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	text-decoration: none;
}

.site-border{
  border-bottom: 12px solid;
  border-right: 12px solid;
  border-left: 12px solid;;
  border-color: #111111;
}
  
a{
	text-decoration: none;
	color: #D9D9D9;
}

a:hover{
	color: #111111;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6
{
	font-family: 'Raleway', sans-serif;
	color: #111111;
}

#sobre-me, #tingoaltango {
  padding: 130px 0px 0px 0px; /* arriba | derecha | abajo | izquierda */
}

#quien-dijo{
  padding: 30px 0px 20px 0px; /* arriba | derecha | abajo | izquierda */
}

section {
  padding: 60px 0px 0px 0px; /* arriba | derecha | abajo | izquierda */
  overflow: hidden;
}

/* Títulos General */
.section-title {
	text-align: left;
	padding-bottom: 30px;
  padding-top: 30px;
}
  
.section-title h2 {
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: #111111;
}
  
.section-title h2::before { /* Línea inferior larga */
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	background: #D9D9D9;
	bottom: 1px;
	left: calc(0% - 0px);
}
  
.section-title h2::after { /* Línea superior media */
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: #8F8F8F;
	bottom: 0;
	left: calc(0% - 0px);
}
  
.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# 01 : Header
--------------------------------------------------------------*/
.header {
  height: 70px;
  transition: all 0.5s;
  background: rgba(250, 250, 250);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  border-top: 12px solid;
  border-right: 12px solid;
  border-left: 12px solid;;
  border-color: #111111;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  font-weight: 700;
  color: #111111;
	font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    font-size: 16px;
    font-weight: 500;
    color: #111111;
    font-family: 'Raleway', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 20px;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #111111;
    font-weight: bold;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
  }

  .navbar .dropdown ul a i { /* icono menu dropdown */
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #111111;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  display: none;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    display: none;
    position: absolute;
    inset: 55px 15px 15px 15px;
    padding: 10px 0;
    margin: 0;
    border-radius: 10px;
    background-color: rgba(225, 225, 225, 1);
    overflow-y: auto;
    transition: 0.3s;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: 'Reenie Beanie', cursive;
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #111111;
  }

  /* dropdown */
  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background: #f2f2f2;
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.5);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: inline-block;
    color: #111111;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }

  .mobile-nav-toggle.bi-x {
    color: #ffffff;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    /*z-index: 9999;*/
    color: #ffffff;
  }

  .mobile-nav-active .navbar {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(17, 17, 17, 0.95);/* Color BG BTN Collapse */
    transition: 0.3s;
    color: #8F8F8F;
  }

  .mobile-nav-active .navbar>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
2.0 Sección: Mirian con N (Video)
--------------------------------------------------------------*/
.sobre-me .contenido-narradora {
	font-size: 15px;
}
  
.sobre-me .contenido-narradora h1 {
	font-weight: 500;
	font-size: 72px;
	color: #111111;
	font-family: 'Reenie Beanie', cursive;
  margin-bottom: 15px;
}

.sobre-me h6{
	font-weight: 500;
	font-size: 22px;
	color: #111111;
	font-family: 'Raleway', sans-serif;
}

.sobre-me h4{
	font-weight: 700;
	font-size: 42px;
	color: #111111;
	font-family: 'Raleway', sans-serif;
}
  
.sobre-me .contenido-narradora p {
	margin-bottom: 0;
  text-align: justify
}

/* BTN narradora */
.btn-outline-light {
  color: #111111;  
  border: 2px solid #D9D9D9;
  border-radius: 25px;
  background-color: #ffffff;
  padding: 10px;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
/* Iniico BTN play video */
.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  margin-left: 50px;
  border: 1.5px solid #f2f2f2;
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #F5F5F5;
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #f2f2f2;
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid #111111;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}
/* Fin BTN */

@media screen and (max-width:480px){
  .sobre-me .contenido-narradora h1 {
  font-weight: 500;
  font-size: 34px;
  color: #111111;
  font-family: 'Reenie Beanie', cursive;
  margin-bottom: 18px;
  margin-top: 20px;
  }
}

/*--------------------------------------------------------------
3.0 Sección: Del tingo al tango (fotogalería)
--------------------------------------------------------------*/
.section-title-tingotango {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title-tingotango h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #111111;
  position: relative;
  z-index: 2;
}

.section-title-tingotango span {
  position: absolute;
  top: 30px;
  color: #f4f4f4;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title-tingotango p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title-tingotango h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title-tingotango span {
    font-size: 38px;
  }
}

/*-- --*/
#three-slide {
  position:relative;
  height:600px;
  margin:0px auto;
  background-color:#f2f2f2;
  overflow:hidden
}
@media (max-width: 768px) {
  #three-slide {
      margin:15px auto
  }
}
#three-slide .wrapper {
	position: relative;
  display:-webkit-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  width:1180px;
  max-width:95%;
  height:100%;
  margin:0 auto;
  -webkit-box-align:center;
  -webkit-align-items:center;
  -ms-flex-align:center;
  align-items:center;
  overflow:hidden
}
#three-slide .wrapper .slider {
  position:relative;
  width:calc(100% - 60px);
  height:100%;
  margin:0 auto;
  padding:0;
  list-style:none;
  opacity:1;
  -webkit-transition:opacity .3s ease-in-out;
  transition:opacity .3s ease-in-out
}
#three-slide .wrapper .slider.swap {
  opacity:0;
  -webkit-transition:opacity .3s ease-in-out;
  transition:opacity .3s ease-in-out
}
#three-slide .wrapper .slider li {
  position:absolute;
  top:50%;
  -webkit-transform:translateY(-50%);
  transform:translateY(-50%);
  width:40%;
  opacity:0
}
@media (max-width: 900px) {
  #three-slide .wrapper .slider li {
  width:50%
  }
}
#three-slide .wrapper .slider li img {
  width:100%
}
#three-slide .wrapper .slider .back {
  left:0;
  opacity:1
}
#three-slide .wrapper .slider .current {
  left:50%;
  -webkit-transform:translate(-50%, -50%) scale(1.3);
  transform:translate(-50%, -50%) scale(1.3);
  opacity:1;
  z-index:100
}
#three-slide .wrapper .slider .front {
  right:0;
  opacity:1
}
@media (max-width: 767px) {
  #three-slide .wrapper .slider {
      width:calc(100% - 30px)
  }
  #three-slide .wrapper .slider li {
      width:75%
  }
  #three-slide .wrapper .slider .back,#three-slide .wrapper .slider .front {
      display:none
  }
}
#three-slide i {
  position:absolute;
  top:50%;
  -webkit-transform:translateY(-50%);
  transform:translateY(-50%);
  width:60px;
  height:60px;
  font-size:28px;
  text-align:center;
  line-height:60px;
  background-color:#fff;
  cursor:pointer;
  z-index:10;
  -webkit-transition:all .2s ease-in-out;
  transition:all .2s ease-in-out
}
#three-slide i:hover {
  -webkit-transform:translateY(-50%) scale(1.1);
  transform:translateY(-50%) scale(1.1)
}
#three-slide .prev {
  left:30px
}
#three-slide .next {
  right:30px
}
@media (max-width: 767px) {
  #three-slide i {
      -webkit-transform:translateY(-50%) scale(.7);
      transform:translateY(-50%) scale(.7)
  }
  #three-slide i:hover {
      -webkit-transform:translateY(-50%) scale(.8);
      transform:translateY(-50%) scale(.8)
  }
  #three-slide .prev {
      left:0
  }
  #three-slide .next {
      right:0
  }
}

.btn-galery{
  align-items: center;
}

/*--------------------------------------------------------------
# Portfolio fotogalería
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  color: #4c4c4c;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  font-family: "Raleway", serif;
  font-style: normal;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #111111;
  font-weight: 500;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #4c4c4c;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #4c4c4c;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #111111;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #111111;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/* /////////// EFECTO BLANCO Y NEGRO ////////// */
.portfolio-item img {
	transition: filter 0.5s ease-in-out;
	-webkit-filter: grayscale(0%);
	/* Ch 23+, Saf 6.0+, BB 10.0+ */
	filter: grayscale(100%);
	/* FF 35+ */
  pointer-events: none;
}

.portfolio-item:hover img {
	-webkit-filter: grayscale(100%);
	/* Ch 23+, Saf 6.0+, BB 10.0+ */
	filter: grayscale(0%);
	/* FF 35+ */
}
/* ////////// //////////  ////////// ////////// */
/* BTN galería */
.seccion-btn-fotogaleria {
  background-color: transparent;
  padding-top: 30px;
}

.btn-galeria {
  background-color: #111111 !important;
  border-color: #111111 !important
}

.iconocamera{
  margin-left: 5px;
  color: #ffffff;
}

.texto-btn-galeria {
  font-size: 20px;
  color: #ffffff;
}


/*--------------------------------------------------------------
4.0 Sección: Contenido del blog
--------------------------------------------------------------*/
#seccion-contenido{
	background-color: #F5F5F5;
  display: inline;
}

.blog-entry{
	width: 100%;
	background: white;
}
    
.img-blog {
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
  object-fit: cover;
  width:100%;
  height:100%;
	position: relative;
	display: block;
}

.heading-contenido {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.btn-ver button{
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 10px;
	border-radius: 5px;
	color: #ffffff;
	background: #111111;
  }
  
.btn-ver:hover {
	font-weight: 400;
	font-size: 10px;
	border-radius: 5px;
	color: #111111;
	background: #8F8F8F;
}

.meta-chat{
    color: lighten(black, 70%);
}

/* CARRUSEL */
.owl-carousel {
	position: relative;
  margin-bottom: 20px;
	.owl-item {
		opacity: 1;
		&.active {
			opacity: 1;
		}
	}
	
	.owl-nav {
		position: absolute;
		top: 50%;
		width: 100%;
		.owl-prev,
		.owl-next {
			position: absolute;
			transform: translateY(-50%);
			margin-top: -10px;
			color: rgba(255, 204, 0, 0.1) !important;
			@include transition(0.7s);
			span {
				&:before {
					font-size: 30px;
				}
			}
			opacity: 0;
		}
		.owl-prev {
			left: 0;
		}
		.owl-next {
			right: 0;

		}
	}
	.owl-dots {
		text-align: center;
		margin-top: 20px;
		
		.owl-dot {
			width: 10px;
			height: 10px;
			margin: 5px;
			border-radius: 50%;
			background: rgba(0,0,0,.1);
			position: relative;
			&:hover, &:focus{
				outline: none !important;
			}
		}

	}
	&:hover{
		.owl-nav{
			.owl-prev,
			.owl-next{
				opacity: 1;
			}
			.owl-prev {
				left: -25px;
			}
			.owl-next {
				right: -25px;
			}
		}
	}
}

.owl-dot{
	width: 10px;
	height: 10px;
	margin: 5px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .2);
	position: relative;
}

.owl-dots .owl-dot.active{
	background: #111111;
}

/*--------------------------------------------------------------
5.0 Sección: ¿Quién lo dijo?
--------------------------------------------------------------*/
/* Carousel 4*/
@media (max-width: 991.98px) {
	.imagen-perfil {
	height: 100px; }
  }
  
  .slide-frase{
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	flex-shrink: 0;
	width: 100%;
	padding: 7rem 4rem;
	background-color: #ffffff;
	transition: 0.3s linear;
	box-shadow: none;
	color: #111111;
	margin: 0;
	padding: 30px;
	position: relative;
  }
  
  .imagen-perfil{
	width: 100px;
	height: 100px;
	max-width: 130px;
	object-fit: cover;
	border-radius: 100%;
  }
  
  .text-frase{
	width: 100%;
	text-align: center;
	font-size: 18px;
	font-style: italic;
	font-weight: bold;
	position: relative;
	padding-bottom: 10px;
  }
  
  .autor{
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	bottom: 0;
  }
  
  .profesion{
	font-size: 12px;
	color: #8F8F8F;
	padding-bottom: 10px;
  }
  
  /* Slide */
  @media (max-width: 991.98px) {
	.slide-one-item .owl-nav {
	  display: none; } }
  
  .slide-one-item .owl-nav .owl-prev,
  .slide-one-item .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #111111; }
  
	.slide-one-item .owl-nav .owl-prev span,
	.slide-one-item .owl-nav .owl-next span {
	  font-size: 30px; }
  
	.slide-one-item .owl-nav .owl-prev:hover,
	.slide-one-item .owl-nav .owl-next:hover {
	  color: #111111; }
  
	.slide-one-item .owl-nav .owl-prev:active,
  .slide-one-item .owl-nav .owl-prev:focus,
	.slide-one-item .owl-nav .owl-next:active,
	.slide-one-item .owl-nav .owl-next:focus {
	  outline: none; }
  
  .slide-one-item .owl-nav .owl-prev {
	left: 20px; }
  
  .slide-one-item .owl-nav .owl-next {
	right: 20px; }
  
  .slide-one-item .owl-dots {
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
	z-index: 2; }
  
.slide-one-item .owl-dots .owl-dot {
	  display: inline-block;
}

/*--------------------------------------------------------------
6.0 Footer
--------------------------------------------------------------*/
#footer{
    background-color: #111111;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
    width: 100%;
}

footer h3{
    font-size: 52px;
    font-weight: 400;
    font-family: 'Reenie Beanie', cursive;
    color: #ffffff;
    position:relative;
    padding: 0;
    margin: 0 0 1px 0;
}

#footer p{
    font-size: 18px;
    font-style: normal;
    padding: 0;
    margin: 0 0 40px 0;
}

#footer .social-links{
margin: 0 0 10px 0;
}

#footer .social-links a{
    font-size: 32px;
    display: inline-block;
    background-color: #ffffff;
    color: #111111;
    line-height: 1;
    padding: 5px;
    margin-right: 5px;
    border-radius: 100%;
    text-align: center;
    width: 42px;
    height: 42px;
    transition: 0.3s;
}

#footer .social-links a:hover{
    background-color: #8F8F8F;
    color: #ffffff;
    text-decoration: none;
}

#footer .copyright{
    margin: 0 0 10px 0;
    font-size: 13px;
}

#footer .credito{
    font-size: 13px;
}

#footer .copyright a{
    color: #ffffff;
    transition: 0.3s;
}

#footer .copyright a:hover {
    color: #8F8F8F;
}

/* Responsivo */

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

  .sobre-me .contenido-narradora h1 {
  font-weight: 500;
  font-size: 42px;
  color: #111111;
  font-family: 'Reenie Beanie', cursive;
  margin-bottom: 24px;
  margin-top: 20px;
  }

  #footer .copyright{
  font-size: 10px;
}

}

/*--------------------------------------------------------------
# Botón para regresar / subir
--------------------------------------------------------------*/
.back-to-top{
 position: fixed;
 visibility:inherit;
 opacity: 1;
 right: 15px;
 bottom: 15px;
 background: #8F8F8F;
 z-index: 996;
 width: 40px;
 height: 40px;
 border-radius: 50px;
 transition: all 0.4s;
}

.back-to-top i{
  font-size: 28px;
  color: #ffffff;
  line-height: 0;
}

.back-to-top:hover {
  background: #916e9a;
  color: #fff;
}

.back-to-top.active{
  visibility: visible;
  opacity: 1;
}