:root {
  --negro: #000;
}

/*html,
body 
{
  position: relative;
  height: 100%;
}

body 
{
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}*/

.swiper 
{
  width: 100%;
  padding-top: 50px;/*50px*/
  padding-bottom: 50px;
  margin-bottom: 100px;
}

.swiper-slide 
{
  background-position: center;
  background-size: cover;
  width: 320px;
  height: 430px;
  background: #fff;
}

.swiper-slide .imgBx
{
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.swiper-slide .imgBx img 
{
  display: block;
  width: 100%;
}

.swiper-slide .details
{
  box-sizing: border-box;
  font-size: 20px;
  padding: 20px;
}

.swiper-slide .details h3
{
  margin: 0;
  padding: 0;
  font-size: 20px;
  text-align: center;
  line-height: 20px;
  font-family: 'Open Sans', sans-serif;
  color: var(--negro);
}

.swiper-slide .details h3 span
{
  font-family: 'Open Sans', sans-serif;
  line-height: 1.85em;
  color: #888;
  font-weight: 300;
  font-size: 13pt;
}

.swiper-pagination 
{
  margin: 0;

}

.arribado
{
  margin-top: -50px;
}

/* animación de letra circular */
.caja1
{

}

.text 
{
  position: absolute;   
  width: 440px;
  height: 440px;
  border-radius: 50%;
  top: 188px;
  left: 305px;
  box-sizing: border-box;
  font-family: consolas;
/*  overflow: hidden;*/
  animation: animateText 25s linear infinite;
 /* background: yellow;*/
  /*background: #ccc;*/
}

@keyframes animateText
{
  0%
  {
    transform: rotate(360deg);
  }
  100%
  {
    transform: rotate(0deg);
  } 
}


.text b
{
  position: absolute;
  left: 50%;
  display: block;
  transform-origin: 0 220px; 
  font-weight: normal;
  font-size: 1.4em;
/*  background: red;*/
  color: #888;
  z-index: 100001;

}




/*loader */

/*

 .loader
{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader span 
{
  position: relative;
  width: 250px;
  height: 250px;
  background: #eaeef0;
  border:  6px solid #eaeef0;
  box-shadow: -8px -8px 15px rgba(255, 255, 255, 1), 8px 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  overflow: hidden;
}

.loader span::before 
{
  content: '';
  position: absolute;
  inset:  40px;
  background: #eaeef0;
  box-shadow: -8px -8px 25px rgba(255, 255, 255, 1), 
  8px 8px 25px rgba(0, 0, 0, 0.25),
  inset 3px 3px 10px rgba(0,0,0,0.1),
  inset -1px -1px 15px rgba(255, 255, 255, 1);
  border: 2px solid #eaeef0;
  border-radius: 50%;
  z-index: 1;
}

.loader span i
{
  position: absolute;
  inset: 0;
  background: linear-gradient(#42abff, #ff4f8b, #ffeb3b);
  border-radius: 50%;
  filter: blur(5px);
  animation: animate 1s linear infinite;
}
@keyframes animate
{
  0%
  {
    transform: rotate(0deg);
  }
  100%
  {
    transform: rotate(360deg);
  }
}

*/