body {
  width:100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  font-family: "Ubuntu", sans-serif;
  flex-wrap: wrap;
  background-color: #000;
}
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
    display: none;
  }


.container {
  margin-top: 1rem;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 360px) {
  .container{
    width: 358px;
  }
}

@media (min-width: 768px) {
  .container {
    width: 760px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 990px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1190px;
  }
}
@media (min-width: 1800px) {
  .container {
    width: 1790px;
  }
}




.logotipo {
    z-index: 1000;
    align-self: flex-start;
    background-color:brown;
    float:center;
}



.container-share
{
  z-index: 1000;
  margin-top: 70px;
  margin-right: 80%;
  position: absolute;
}




/*Boton redes*/

.share-button{
  width: 170px;
  height: 40px;
  padding: 0.5rem 0.5rem;
  margin-left: 1rem;
  border-radius: 31.25rem;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: .2s linear;
}



@media (min-width: 360px) {
  .share-button{
    width: 120px;

  }
}
@media (min-width: 768px) {
  .share-button{
    width: 170px;
  }
}



.share-button:hover{
  transform: scale(1.1);
}

.share-button span{
  position: absolute;
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), #000);
  color: #f1f1f1;
  text-align: center;
  line-height: 40px;
  z-index: 999;
  transition: .6s linear;
  border-radius: 31.25rem;
}

.share-button:hover span{
  transform: translateX(-100%);
  transition-delay: .3s;
}

.share-button a{
  flex: 1;
  font-size: 30px;
  color: #fff;
  text-align: center;
  transform: translateX(-100%);
  opacity: 0;
  transition: 0.3s linear;
}


.share-button:hover a{
  opacity: 1;
  transform: translateX(0);
}

.share-button a:nth-of-type(1){
  transition-delay: 1s;
}

.share-button a:nth-of-type(2){
  transition-delay: 0.8s;
}

.share-button a:nth-of-type(3){
  transition-delay: 0.6s;
}

.share-button a:nth-of-type(4){
  transition-delay: 0.4s;
}
/*Fin Boton redes*/




.swiper-container {
  width: 100%;
  height: 75vh;
  transition: opacity .6s ease;
}
.swiper-container.swiper-container-coverflow {
  padding-top: 2%;
}
.swiper-slide {
  background-position: bottom;
  background-size: cover;
  height: 60vh !important;
  box-shadow: 1px 3px 3px rgba(0,0,0,0.3);
}
.swiper-slide .content {
  position: absolute;
  top: 40%;
  left: 0;
  width: 40%;
  padding-left: 5%;
  color: #fff;
}
.swiper-slide .content .title {
  font-size: 2.6em;
  font-weight: bold;
  margin-bottom: 30px;
}

@media (min-width: 360px) {
  .swiper-slide .content .title{
    font-size: 27px;
  }
}
@media (min-width: 768px) {
  .swiper-slide .content .title{
    font-size: 40px;
  }
}

*******



.swiper-slide .content .caption {
  display: block;
  font-size: 13px;
  line-height: 1.4;
}

.slide1 {
  background-image: url("img1.jpg");
}
.slide2 {
  background-image: url("img2.jpg");
}
.slide3 {
  background-image: url("img3.jpg");
}
.slide4 {
  background-image: url("img4.jpg");
}
.slide5 {
  background-image: url("img5.jpg");
}
.slide6 {
  background-image: url("img6.jpg");
}
.swiper-slide::after {
  content:"";
  background-image: inherit;
  background-position: bottom;
  background-size: cover;
  transform:  scaleY(-1);
  width: inherit;
  height:40%;
  position: absolute;
  bottom: -41%;
  opacity: 0.4;
}
.swiper-slide::before {
  z-index: 1;
  content:"";
  width: inherit;
  height:42%;
  position: absolute;
  bottom: -42%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), #000);

}




/*Footer star*/

footer{
  align-self: flex-end;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), #2E2E2E);
  line-height: 2;
  text-align: center;
  width: 100%;
  max-height: 100vh;

}

footer h1 {
  z-index: 2;
  color: white;
  font-family: "Ubuntu", sans-serif;
  font-weight: lighter;
  font-size: calc(2vmin + 5px);
}
footer h1 span {
  font-weight: bold;
  color: #FFA036  
  text-shadow: 0 0 15px rgba(255, 160, 54, 0.4);

}

footer h1 span :hover {
  color: #FF4000;
}

/*Footer end*/