

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #000;
  color: #666666;
  font-family: "Open Sans", sans-serif; 
  cursor: url("virtualeden.com.mx/assets/img/nave.svg"), auto;
}

  body {
    
  }

a {
  color: #4971b0;
  transition: 0.5s;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: #76a6f1;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #fff;
}

h3 { 
  font-weight: bold;
  color: #fff;
}
 
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background: rgba(0, 0, 0, 0.9);
  height: 100px;
}
#header.header-transparent {
 background: rgba(0, 0, 0, 0.7);
}
#header.header-scrolled {
  background: rgba(0, 0, 0, 0.9);
  height: 70px;
}
#header .logo {
  font-size: 34px;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  padding-left: 10px; 
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 95px;
}

#header.header-scrolled .logo img {
  max-height: 60px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }

  #header.header-scrolled {
  background: rgba(0, 0, 0, 0.9);
  height: 60px;
}
}

@media (max-width: 770px) {
#header .logo img {
  max-height: 80px;
}
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  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: #685fb6;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  color: #666666;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #544c95;
}
.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #544c95;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #544c95;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background: #000;
  overflow: hidden;
  position: relative;
  margin-top: 110px;
}


#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
} 

#hero .container {
  text-align: center; 
} 

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
} 
#hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
  font-size: 20px;
} 


@media (max-width: 1200px) {
  #hero { 
  height: 85vh; 
  }
}  

@media (max-width: 990px) {
  #hero { 
  height: 55vh; 
  } 

   #hero h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

    #hero p {
  width: 100%;   
}
} 

@media (max-width: 670px) {
  #hero { 
  height: 40vh; 
  }

   #hero h2 {
    font-size: 28px;
    margin-bottom: 5px;
  }

  #hero p {
  width: 100%;  
  font-size: 16px;
}

#hero .carousel-container {  
  top: 5px;
  left: 20px;
  right: 20px;
} 
}

#hero .carousel-fade {
  overflow: hidden;
}
#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}
#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}
#hero .carousel-indicators li {
  cursor: pointer;
} 

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}
.section-header h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-header h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #544c95;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 16px 0;
  background-color: #544d95;
  min-height: 40px;
  margin-top: 120px;
}
.breadcrumbs h2 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 400;
  color: #000;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 7px 0;
  font-size: 14px;
    color: #fff;
}

.breadcrumbs ol a { 
    color: #7eabf7;
    font-weight: bold; 
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
} 

.autores1 {
  background: url("../img/back-andres.png") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
} 


.autores-tx {
font-size: 17px;
color: #f4f1f1;
text-align: justify;
}


.autores2 {
  background: url("../img/back-melissa.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
  color: #000000;
} 

.autores2 h2 {
color: #544d95;
font-weight: bold;
} 

.autores2 h3 {
color: #3e3878 !important; 
} 

.autores2 .portfolio-info  { 
  padding-top: 0px;
}

.autores2 .portfolio-details .portfolio-info h3 { 
  border-bottom: 2px solid #3e3878;
}

.autores2 .autores-tx {
font-size: 17px;
color: #000000;
text-align: justify;
}

.autores2 blockquote {
  overflow: hidden;
  background-color: rgba(0, 81, 155, 0.8);
  padding: 40px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.autores2 blockquote p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px; 
} 

.autores3 {
  background: url("../img/back-andrea.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
} 

.autores3 h2 {
color: #fff;
font-weight: bold;
} 

.autores3 h3 {
color: #fff !important; 
} 

.autores3 .autores-tx {
font-size: 17px;
color: #fff;
text-align: justify;
}

.autores3 blockquote {
  overflow: hidden;
  background-color: rgba(189, 58, 54, 0.8);
  padding: 40px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.autores3 blockquote p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px; 
} 
/* Featured Services Section
--------------------------------*/
#featured-services {
  background: #000;
}
#featured-services .box {
  padding: 30px 20px;
}
#featured-services .box-bg {
  background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}
#featured-services i {
  color: #544c95;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}
#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}
#featured-services h4 a {
  color: #fff;
}
#featured-services h4 a:hover {
  color: #544c95;
}
#featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

/* About Us Section
--------------------------------*/
#about {
  background: url("../img/about-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}
#about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9;
}
 

#about .section-header img  {
  max-height: 50px;
}

#about .container {
  position: relative;
  z-index: 10;
}
#about .about-col {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}
#about .about-col .img {
  position: relative;
}
#about .about-col .img img {
  border-radius: 15px;
}
#about .about-col .icon {
  width: 64px;
  height: 64px;
  text-align: center;
  position: absolute;
  background-color: #000;
  border-radius: 50%;
  border: 4px solid #fff;
  left: calc(85% - 0px);
  bottom: -10px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#about .about-col i {
  font-size: 28px;
  line-height: 0;
  color: #1dd760;
  transition: 0.3s;
}
#about .about-col:hover .icon {
  background-color: #fff;
}
#about .about-col:hover i {
  color: #1dd760;
}
#about h4 {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  padding: 0;
  margin: 30px 0;
} 

/* Services Section
--------------------------------*/
#services {
  background: #fff;
  background-size: cover;
  padding: 60px 0 40px 0;
}
#services .box {
  margin-bottom: 30px;
}
#services .icon {
  float: left;
}
#services .icon i {
  color: #544c95;
  font-size: 36px;
  line-height: 0;
  transition: 0.5s;
}
#services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
#services .title a {
  color: #111;
}
#services .box:hover .title a {
  color: #544c95;
}
#services .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}
#call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
#call-to-action p {
  color: #fff;
}
#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
#call-to-action .cta-btn:hover {
  background: #544c95;
  border: 2px solid #544c95;
}

/* Call To Action Section
--------------------------------*/
#skills {
  padding: 60px 0;
}
#skills .progress {
  height: 35px;
  margin-bottom: 10px;
  border-radius: 0;
}
#skills .progress .skill {
  font-family: "Open Sans", sans-serif;
  line-height: 35px;
  padding: 0;
  margin: 0 0 0 20px;
  text-transform: uppercase;
}
#skills .progress .skill .val {
  float: right;
  font-style: normal;
  margin: 0 20px 0 0;
}
#skills .progress-bar {
  width: 1px;
  text-align: left;
  transition: 0.9s;
}

/* Facts Section
--------------------------------*/
#facts {
  background: url("../img/facts-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}
#facts::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 9;
}
#facts .container {
  position: relative;
  z-index: 10;
}
#facts .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #544c95;
}
#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}
#facts .facts-img {
  text-align: center;
  padding-top: 30px;
}
 

#portfolio { 
background: #000;
  padding: 60px 0; 
}  

.portfolio-item  {
position: relative;
  text-align: center;
} 

.text-overlay {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white; 
  font-size: 22px; /* Ajusta el tamaño del texto según sea necesario */ 
  z-index: 2; /* Asegura que el texto esté por encima de la imagen */
  background: rgba(84, 77, 149, 0.6);
  text-transform: uppercase;
  margin: 0px;
  padding: 5px;
  width: 90%;
} 

.text-overlay:hover {  
  transform: translate(-47%, -50%);
  background: rgba(84, 77, 149, 0.8);
  transition: 0.2s linear;
} 
 

 @media (max-width: 768px) {
.text-overlay {
  font-size: 16px; /* Ajusta el tamaño del texto según sea necesario */ 
  width: 90%; 
  background: rgba(84, 77, 149, 0.7);
} 
} 


 .portfolio-item figure:hover img {
  opacity: 0.6;
  transition: 0.3s;
} 
  
 .portfolio-info  { 
  padding: 20px 0px 25px 0px; 
  text-align: center;
}
  
 .portfolio-item .portfolio-info h4 {
  font-size: 20px; 
  font-weight: 700;
  margin-bottom: 18px; 
  color: #fff; 
}

 .portfolio-item .portfolio-info h4 a {
  color: #fff;
}
 .portfolio-item .portfolio-info h4 a:hover {
  color: #b80404;
} 

.mas {
  font-size: 22px;
  color: #544c95;  
}   
 
 .mas i {
  font-size: 35px;
  color: #544d95;
}

.mas i:hover {  
  color: #c4bfee; 
  transition: 0.2s linear;
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #544c95;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #544c95;
}
.portfolio-details .portfolio-info {
  padding-bottom: 20px; 
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 5px;
}
.portfolio-details .portfolio-description {
  padding-top: 10px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.portfolio-details .portfolio-description h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}


.portfolio-details .portfolio-description p {
  padding: 0;
  text-align: justify;
  font-size: 16px;
}

 
/* Clients Section
--------------------------------*/
#clients {
  padding: 60px 0;
  background: url("../img/polimatas.jpg") center top no-repeat fixed;
  background-size: cover;
} 
 
#clients .section-header {
  margin: 0px;
  padding: 0px;
}

#clients img {
  opacity: 0.8;
  transition: 0.3s;
}
#clients img:hover {
  opacity: 1;
}
#clients .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
#clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #544c95;
}
#clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #544c95;
}

.text-polimatas {
  color: #fff;
  text-align: center;
  font-size: 19px;
}

#audiocuentos {
  padding: 60px 0; 
} 
 
#audiocuentos .section-header {
  margin: 0px;
  padding: 0px;
}

#audiocuentos img {
  opacity: 0.6;
  transition: 0.3s;
}
#audiocuentos img:hover {
  opacity: 1;
}
#audiocuentos .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
#audiocuentos .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #544c95;
}
#audiocuentos .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #544c95;
}

.text-cuentos {
  color: #fff;
  text-align: center;
  font-size: 17px;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 60px 0;
}
#testimonials .section-header {
  margin-bottom: 40px;
}
#testimonials .testimonials-carousel, #testimonials .testimonials-slider {
  overflow: hidden;
}
#testimonials .testimonial-item {
  text-align: center;
}
#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}
#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}
#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}
#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}
#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}
#testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #544c95;
}
#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #544c95;
}

/* Team Section
--------------------------------*/
#team {
  background: #fff;
  padding: 60px 0;
}
#team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #000;
  position: relative;
}
#team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
#team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}
#team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}
#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}
#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}
#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}
#team .member .social {
  margin-top: 15px;
}
#team .member .social a {
  transition: none;
  color: #fff;
}
#team .member .social a:hover {
  color: #544c95;
}
#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Contact Section
--------------------------------*/
#contact {
  padding: 60px 0;
}
#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}
#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #544c95;
}
#contact .contact-info address, #contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}
#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}
#contact .contact-info a {
  color: #000;
}
#contact .contact-info a:hover {
  color: #544c95;
}
#contact .contact-address, #contact .contact-phone, #contact .contact-email {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #contact .contact-address, #contact .contact-phone, #contact .contact-email {
    padding: 20px 0;
  }
}
@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
} 
/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}
.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}
.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
  color: #fff;
}
.blog .entry .entry-title a {
  color: #333333;
  transition: 0.3s;
}
.blog .entry .entry-title a:hover {
  color: #544c95;
}
.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #544c95;
}
.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}
.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}
.blog .entry .entry-meta a {
  color: #666666;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog .entry .entry-content p {
  line-height: 24px;
}
 
.blog h3 {
  font-size: 25px;
  margin-top: 30px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.autores1 blockquote {
  overflow: hidden;
  background-color: rgba(88, 192, 202, 0.7);
  padding: 40px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.autores1 blockquote p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px; 
} 

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}
.blog .entry .entry-footer i {
  color: #544c95;
  display: inline;
}
.blog .entry .entry-footer a {
  color: #666666;
  transition: 0.3s;
}
.blog .entry .entry-footer a:hover {
  color: #544c95;
}
.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}
.blog .entry .entry-footer .cats li {
  display: inline-block;
}
.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}
.blog .entry .entry-footer .tags li {
  display: inline-block;
}
.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}
.blog .entry .entry-footer .share {
  font-size: 16px;
}
.blog .entry .entry-footer .share i {
  padding-left: 5px;
}
.blog .entry-single {
  margin-bottom: 30px;
}
.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}
.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #333333;
}
.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}
.blog .blog-author .social-links a {
  color: rgba(51, 51, 51, 0.4);
  margin-right: 5px;
  transition: 0.3s;
}
.blog .blog-author .social-links a:hover {
  color: #544c95;
}
.blog .blog-author p {
  font-style: italic;
  color: #666666;
}
 
.blog .blog-pagination {
  color: #544c95;
}
.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}
.blog .blog-pagination li a {
  color: #544c95;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: bold;
}
.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #544c95;
  border-radius: 50px;
}
.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}
 .sidebar {
  padding: 20px;
  margin: 0 0 50px 0;
  background-color: rgba(84, 77, 149, 0.7);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
 .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700; 
  margin: 0 0 17px 0;
  color: #fff;
  position: relative;
}
 .sidebar .sidebar-item {
  margin-bottom: 30px;
} 

 .sidebar .categories ul {
  list-style: none;
  padding: 0;
} 
 .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
 .sidebar .recent-posts img {
  width: 80px;
  float: left;
} 

 .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  text-align: left;
}
 .sidebar .recent-posts h4 a {
  color: #fff;
  transition: 0.3s;
}
 .sidebar .recent-posts h4 a:hover {
  color: #bcb6ec;
} 
.side-second i {
font-size: 25px;
color: #fff;
margin-left: 10px;
}

.side-second i:hover { 
color: #bcb6ec; 
}


.social-equipo i {
  font-size: 22px;
  margin-left: 10px;
  color: #fff; 
}

.social-equipo i:hover { 
  color: #0dcaf0; 
}
.card-text {
  text-align: justify;
}

.card {
  padding: 15px;
}

 .card-body {
padding: 10px 0px 8px 0px;
} 

  .card h3 {
  font-size: 27px;
}

  .card h5 {
  font-size: 17px;
  margin-bottom: 0px;
}

.autores2 .card h5 {
 color: #544d95;
 font-weight: bold;
}


@media (max-width: 990px) {
  .card h3 {
  font-size: 25px;
}

  .card h5 {
  font-size: 17px;
}

}  
 
 @media (max-width: 770px) {
  .card {
  padding: 8px;
}

 .card-body {
padding: 7px 0px 5px 0px;
} 

  .card h5 {
  font-size: 13px;
}
 
}  

.gallery .gallery-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}  


  #contacto .redes { 
font-size: 22px;
color: #fff;
  }

      #contacto .redes i {  
color: #8940d0;
font-size: 30px;
margin-right: 8px;
  }

    #contacto .redes a {  
color: #fff;
  }

      #contacto .redes a:hover {  
color: #8940d0;
  }

  @media (max-width: 1220px) {
  #contacto .redes { 
font-size: 18px; 
  }

        #contacto .redes i {   
font-size: 25px; 
  }
} 


@media (max-width: 770px) {
  #contacto .redes { 
font-size: 18px; 
  }

        #contacto .redes i {   
font-size: 27px; 
  }
}  


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("../img/banner-contacto.png") center top no-repeat;
  background-size: cover; 
  position: relative;
  color: #eee;
  font-size: 16px;
}  

.footer-top {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 10px;
}

#footer .footer-top .social-links {
font-size: 20px;
}

#footer .footer-top .social-links a { 
  color: #eee; 
}
#footer .footer-top .social-links a i { 
  font-size: 25px;
}
#footer .footer-top .social-links a:hover { 
  color: #544c95;
}

@media (max-width: 992px) {
#footer .footer-top .social-links {
font-size: 17px;
}
}

@media (max-width: 600px) {
#footer .footer-top .social-links a i { 
  font-size: 27px;
  margin-left: 20px;
}
}

#footer .footer-top .footer-links {
  margin-bottom: 10px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
  font-size: 16px;
}
#footer .footer-top .footer-links ul li { 
  padding: 10px 0;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #eee;
}
#footer .footer-top .footer-links ul a:hover {
  color: #544c95;
}
#footer .footer-top .footer-contact {
  margin-bottom: 10px;
  text-align: center;
} 

#footer .copyright {
  text-align: center;
  padding-top: 10px;
} 

#footer .copyright a {
  color: #466dac;
} 

.btn-primary { 
  background-color: #4972b1;
  border-color: #4972b1;
}

.btn-primary:hover { 
  background-color: #3a5c90;
  border-color: #3a5c90;
}



    .character-card {
      border: 3px solid transparent;
      border-radius: 15px;
      transition: all 0.3s ease;
      cursor: pointer;
      overflow: hidden;
      width: 200px;
      flex-shrink: 0;
      margin: 0 5px;
    }
    .character-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      transition: transform 0.3s ease;
      opacity: 0.6;
    }

        .character-card:hover img {
      transform: scale(1.1);
      opacity: 1; 
    }
    /* Hover morado neón */
    .character-card:hover {
      border-color: #9d00ff;
      box-shadow: 0 0 15px #9d00ff, 0 0 10px #9d00ff;
    }  
       .character-selected {
      border-color: #00bfff !important;
      box-shadow: 0 0 20px #00bfff, 0 0 30px #00bfff !important;

    }
    /* Imagen seleccionada en grande */
    #selected-character {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 0px;    
      
    }

    .character-selected img {
opacity: 1; 
      
    }
    

    .zoom-container {
      position: relative;
      width: 80%;
      height: auto;  
      overflow: hidden;  
      background: url("../img/personajes-adios-a-la-tierra/back.png") center center no-repeat;
      background-size: contain;

    }


       #main-image {
      width: 55%;
      height: auto;
      object-fit: cover;
      transition: transform 0.2s ease-out;
    } 

    #selected-character h2 {
      margin-top: 15px;
      font-size: 1.8rem;
      text-shadow: 0 0 10px #9d00ff, 0 0 20px #9d00ff;
    }

    .mySwiper .swiper {
      padding: 0px;
    }


    .mySwiper .swiper-slide {
      width: 190px;
      margin: 0px 7px;
    }

            @media (max-width: 990px) {
      .zoom-container { 
      width: 80%;
      height: auto;  
    } 

           #main-image {
      width: 78%; 
    } 

 .mySwiper .swiper-slide {
      width: 160px;
    }

     .character-card { 
      width: 180px; 
    }

       .character-card img { 
      height: 270px; 
    }
 
    } 


        @media (max-width: 770px) { 
           .zoom-container { 
      width: 100%;
      height: auto;  
    }

         #main-image {
      width: 80%; 
    } 

     .mySwiper .swiper-slide {
      width: 115px;
    }  

     .character-card { 
      width: 135px; 
    }

       .character-card img { 
      height: 190px; 
    }
       
    }
    /* Carrusel loop */
     #adios {
  background: url("../img/back-andres.png") center top no-repeat fixed;
  background-size: cover;
  padding: 20px 0 40px 0;
  position: relative; 
}  

#adios h1 {
   font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #00bfff;
  text-transform: uppercase;
  margin: 15px 0px;
}

    #adios .swiper { 
   border-color: #9d00ff;
   box-shadow: 0 0 15px #9d00ff, 0 0 10px #9d00ff;
  border: 12px solid transparent;
  margin-top: 15px;
}  

        @media (max-width: 768px) {
      .zoom-container {
        cursor: default !important;
      }

    }

    #adios-galeria { 
      color: #00f3ff;
      font-family: "Orbitron", sans-serif;  
        background: url("../img/arte-adios-a-la-tierra/back.png") center no-repeat;
        background-size: cover;
    }
 

   #adios-galeria  h2 {
      text-align: center; 
      text-shadow: 0 0 12px #00f3ff;
         font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #00bfff;
  text-transform: uppercase;
  margin: 150px 0px 15 0px;
  font-size: 45px;
    }

           #adios-galeria  h3 {
 font-size: 30px;
color: #00f3ff;
  margin-bottom: 15px;
     font-family: "Audiowide", sans-serif;
    }
 

           #adios-galeria  h4 {
 font-size: 35px;
color: #00f3ff;
  margin: 15px; 
  font-weight: bold;
    }
  
#portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
#adios-galeria .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
} 

#adios-galeria .btn { 
  margin: 5px 8px; 
  padding: 8px 18px;
  font-size: 15px; 
  color: #00f3ff;
 border-radius: 8px;
  text-transform: uppercase;
 background: transparent;  
  border: 1px solid #00f3ff88;
   font-weight: bold; 
      box-shadow: 0 0 8px #00f3ff55;
      font-family: "Audiowide", sans-serif;
} 

#adios-galeria .portfolio-item {
border: 3px solid transparent;
      border-radius: 15px;
      transition: all 0.3s ease;
      cursor: pointer;
      overflow: hidden;
      margin: 10px 0px; 
}
#adios-galeria .portfolio-item img { 
      width: 100%;
      height: 300px;
      object-fit: cover;
      transition: transform 0.3s ease;
}  

       #adios-galeria .portfolio-item:hover img {
     transform: scale(1.1);
    }
    /* Hover morado neón */
   #adios-galeria .portfolio-item:hover {
      border-color: #00bfff;
      box-shadow: 0 0 15px #00bfff, 0 0 10px #00bfff;
    }  


#adios-galeria .portfolio-item .portfolio-info {
  background: transparent; 
  padding: 20px 0px 0px 0px; 
}
#adios-galeria .portfolio-item .portfolio-info h4 {
  font-size: 18px;
color: #fff;
  margin-bottom: 15px;
     font-family: "Audiowide", sans-serif;
}  

@media (max-width: 990px) {
   #adios-galeria  h2 { 
  font-size: 35px;
    }
 
}

@media (max-width: 770px) {
   #adios-galeria  h2 { 
  font-size: 25px;
    }

    #adios-galeria .portfolio-item .portfolio-info h4 {
  font-size: 15px; 
} 

#adios-galeria #portfolio-flters li { 
  font-size: 13px; 
} 
} 

#adios-universo {
  background: url("../img/space-back2.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 50px 0 40px 0;
  position: relative;
  color: #000000;
} 

#adios-universo h2 {
text-align: center; 
  text-shadow: 3px 3px 4px #1E3838;
         font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #00bfff;
  text-transform: uppercase;
  margin: 80px 0px 15 0px;
  font-size: 45px;
} 

@media (max-width: 990px) {
   #adios-universo  h2 { 
font-size: 35px;
    }
 
}

@media (max-width: 770px) {
   #adios-universo  h2 { 
font-size: 30px;
    }
 
}

@media (max-width: 770px) {
   #adios-universo  h2 { 
font-size: 26px;
    }
 
}

#adios-universo .planeta img { 
      width: 100%;
      height: auto;
      object-fit: cover;
      transition: transform 0.3s ease;
}  

       #adios-universo .planeta:hover img {
     transform: scale(1.1);
    } 

#top-tierra {
    background-color: #e4e9ef;
  padding: 10px 0px 0px 0px;  
}
 

#top-tierra h2 {
text-align: center; 
  text-shadow: 3px 3px 4px #1E3838;
         font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #00bfff;
  text-transform: uppercase;
  margin: 0px;
  font-size: 44px; 
} 

#galeria-tierra {
    background: url("../img/back-tierra.jpg") center top no-repeat;
  background-size: cover;
  padding: 30px 0 310px 0;
  position: relative; 
}  

#galeria-tierra h2 {
text-align: center; 
  text-shadow: 3px 3px 4px #1E3838;
         font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #00bfff;
  text-transform: uppercase;
  margin: 0px 0px 20px 0px;
  font-size: 44px;
  padding-top: 0px !important;
} 

.ubicacion {
  font-size: 50px;
  color: #ea4335;
}

.ubicacion:hover { 
  color: #b8362b;
} 



.icon-container {
  position: relative;
  display: inline-block;
}

.preview {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 178, 239, 0.4);
  padding: 10px;
  border-radius: 15px;
  border: 3px solid;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 230px;
  text-align: center;
  z-index: 10;
border-color: #00bfff;
box-shadow: 0 0 15px #00bfff, 0 0 10px #00bfff;
}

.icon-container:hover .preview {
  opacity: 1;
  visibility: visible;
}
     
     .icon-container p {
font-size: 20px;
font-weight: bold;
color: #fff;
margin-top: 10px;
margin-bottom: 0px !important;
     }

     .eu {
margin-top: 200px;
margin-left: 65px;
     }

     .quebec {
      margin-top: 70px;
margin-left: 10px;
     }

     .mexico { 
      margin-left: -30px;
      margin-top: -30px;
     }

     .japon {
margin-top: 175px; 
margin-left: -20px;
     }

     .egipto {
 margin-left: 0px; 
 margin-top: -30px;
     }

     .italia {
      margin-top: 140px;
      margin-left: 25px;
     } 

     .elevador {   
  margin-top: 45px;
      margin-left: 85px;
}

@media (max-width: 1500px) {
#galeria-tierra { 
  padding: 30px 0 260px 0; 
}  

       .eu {
margin-top: 170px;
margin-left: 90px;
     }

     .quebec {
      margin-top: 45px;
margin-left: 15px;
     }

     .mexico { 
      margin-left: 0px;
      margin-top: -40px;
     }

     .japon {
margin-top: 140px;  
margin-left: -35px;
     }

     .egipto {
 margin-left: -15px; 
 margin-top: -40px;
     }

     .italia {
      margin-top: 115px;
      margin-left: 20px;
     } 
}

@media (max-width: 1400px) {
#galeria-tierra { 
  padding: 30px 0 240px 0; 
}  

       .eu {
margin-top: 150px;
margin-left: 60px;
     }

     .quebec {
      margin-top: 45px;
margin-left: 15px;
     }

     .mexico { 
      margin-left: -20px;
      margin-top: -40px;
     }

     .japon {
margin-top: 130px;  
margin-left: -35px;
     }

     .egipto {
 margin-left: -15px; 
 margin-top: -40px;
     }

     .italia {
      margin-top: 100px;
      margin-left: 20px;
     } 
}

@media (max-width: 1200px) {
#galeria-tierra {  
  padding: 30px 0 170px 0;  
} 

     .quebec {
      margin-top: 35px;
margin-left: 0px;
     }

            .eu {
margin-top: 130px;
margin-left: 40px;
     }

     .mexico { 
      margin-left: -30px;
     }

     .japon {
margin-top: 105px;
margin-left: -20px;
     }

         .italia {
      margin-top: 80px;
      margin-left: 15px;
     } 

          .elevador {   
  margin-top: 45px;
      margin-left: 30px;
}

.egipto {
 margin-left: -15px; 
 margin-top: -40px;
}
 
}

@media (max-width: 1100px) {
#galeria-tierra {  
  padding: 30px 0 130px 0;  
} 

     .quebec {
      margin-top: 25px;
margin-left: 0px;
     }

     .mexico { 
      margin-top: -40px;
      margin-left: -20px;
     }

         .eu { 
margin-top: 100px;
margin-left: 45px;
     }

     .japon {
margin-top: 75px;
margin-left: -25px;
     }

         .italia {
      margin-top: 60px;
      margin-left: 10px;
     } 

          .elevador {   
  margin-top: 45px;
      margin-left: 40px;
}

.egipto {
 margin-left: -15px; 
 margin-top: -40px;
}
 
}

@media (max-width: 990px) {
#galeria-tierra {  
  padding: 40px 0 110px 0;  
} 

#top-tierra h2 { 
  font-size: 40px; 
} 

          .quebec {
margin-left: 0px;
margin-top: 5px;
     }

     .mexico {
margin-left: 35px;
margin-top: -40px;
     }

     .japon {
margin-top: 65px;
margin-left: -10px;
     }

     .egipto {
 margin-left: -15px; 
 margin-top: -40px;
     }

     .italia {
      margin-top: 40px;
      margin-left: 0px;
     }

 .eu {
margin-top: 80px;
margin-left: 20px;
     }
}

@media (max-width: 880px) {
#galeria-tierra {  
  padding: 40px 0 90px 0;  
} 

#top-tierra h2 { 
  font-size: 40px; 
} 

          .quebec {
margin-left: -5px;
margin-top: -5px;
     }

     .mexico {
margin-left: 35px;
margin-top: -40px;
     }

     .japon {
margin-top: 40px;
margin-left: -15px;
     }

     .egipto {
 margin-left: -15px; 
 margin-top: -40px;
     }

     .italia {
      margin-top: 20px;
      margin-left: 0px;
     }

 .eu {
margin-top: 55px;
margin-left: 15px;
     }
}

@media (max-width: 770px) {
#top-tierra h2 { 
  font-size: 35px; 
} 

#galeria-tierra {  
  padding: 40px 0 100px 0;  
} 

     .eu {
margin-top: 45px;
margin-left: 25px;
     } 

          .quebec {
margin-left: 0px;
margin-top: -10px;
     }


     .mexico {
margin-left: 40px; 
     }

     .japon {
margin-top: 30px;
margin-left: 35px;
     }

     .egipto {
 margin-left: -15px; 
     }

     .italia {
      margin-top: 15px;
      margin-left: 0px;
     }

.ubicacion {
  font-size: 40px;
  color: #ea4335;
}

.preview {
  padding: 1px;
  width: 140px; 
  border-radius: 9px;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
}

     .icon-container p {
font-size: 13px; 
margin-top: 0px; 
     }

               .elevador {   
  margin-top: 35px;
      margin-left: 10px;
}
 
               .elevador img {   
max-height: 100px;
}

}  

@media (max-width: 660px) {
#top-tierra h2 { 
  font-size: 33px; 
} 

#galeria-tierra {  
  padding: 20px 0 70px 0;  
} 

     .eu {
margin-top: 50px;
margin-left: 13px;
     } 

          .quebec {
margin-left: -5px;
margin-top: -5px;
     }


     .mexico {
margin-left: 25px; 
     }

     .japon {
margin-top: 40px;
margin-left: 35px;
     }

     .egipto {
 margin-left: -15px; 
     }

     .italia {
      margin-top: 25px;
      margin-left: 0px;
     }

.ubicacion {
  font-size: 35px; 
} 

    
}  

@media (max-width: 550px) {
#top-tierra  {  
  padding: 0px;  
}

#top-tierra h2 { 
  font-size: 28px;  
   text-shadow: 1px 1px 3px #1E3838;
} 

#galeria-tierra {  
  padding: 5px 0 85px 0;  
} 

     .eu {
margin-top: 50px;
margin-left: 43px;
     } 

          .quebec {
margin-left: 35px;
margin-top: 10px;
     }


     .mexico {
margin-left: 7px; 
     }

     .japon { 
margin-top: 45px;
margin-left: 30px;
     }

     .egipto {
 margin-left: -15px; 
     }

     .italia {
      margin-top: 31px;
      margin-left: -5px;
     }

               .elevador {   
  margin-top: 10px;
      margin-left: 0px;
}

               .elevador img {   
max-height: 80px;
}

.ubicacion {
  font-size: 30px; 
}

.preview {
  padding: 1px;
  width: 130px; 
  border-radius: 9px;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
}

     .icon-container p {
font-size: 13px; 
margin-top: 0px; 
     }
 

}   


@media (max-width: 440px) {  

#galeria-tierra {  
  padding: 0px 0 55px 0;  
} 

     .eu {
margin-top: 50px;
margin-left: 35px;
     } 

          .quebec {
margin-left: 25px;
margin-top: 15px;
     }


     .mexico {
margin-left: 10px; 
     }

     .japon {
margin-top: 45px;
margin-left: 25px;
     }

     .egipto {
 margin-left: -15px; 
     }

     .italia {
      margin-top: 32px;
   margin-left: -8px;
     }

               .elevador {   
  margin-top: 10px;
      margin-left: 0px;
}

               .elevador img {   
max-height: 80px;
}

.ubicacion {
  font-size: 22px; 
} 

}   



@media (max-width: 400px) {   
  #galeria-tierra {  
  padding: 0px 0 45px 0;  
} 

     .eu {
margin-top: 40px;
margin-left: 30px;
     } 

          .quebec {
margin-left: 20px;
margin-top: 12px;
     }


     .mexico {
margin-left: 10px; 
     }

     .japon {
margin-top: 35px;
margin-left: 20px;
     }

     .egipto {
 margin-left: -15px; 
     }

     .italia {
      margin-top: 27px;
   margin-left: -8px;
     }

               .elevador {   
  margin-top: 10px;
      margin-left: 0px;
}

               .elevador img {   
max-height: 70px;
}

.ubicacion {
  font-size: 22px; 
}

}   
 

 #galeria-luna {
    background: url("../img/back-luna.jpg") center top no-repeat;
  background-size: cover;
  padding: 30px 0 200px 0;
  position: relative; 
} 

#galeria-luna h2 {
text-align: center; 
  text-shadow: 3px 3px 4px #1E3838;
         font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #00bfff;
  text-transform: uppercase;
  margin: 0px 0px 20px 0px;
  font-size: 44px;
  padding-top: 0px !important;
} 

     .marius {
 margin-left: 190px; 
 margin-top: 130px;
     }

 #galeria-marte {
    background: url("../img/back-marte.jpg") center top no-repeat;
  background-size: cover;
  padding: 30px 0 90px 0;
  position: relative; 
} 


#galeria-marte h2 {
text-align: center; 
  text-shadow: 3px 3px 4px #1E3838;
         font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-transform: uppercase;
  margin: 30px 0px 20px 0px;
  font-size: 44px;
  padding-top: 0px !important;
}  

     .marineris {
 margin-left: 50px; 
 margin-top: 220px;
     }