.webmadewell {
  background-color: white;
}
body {
  margin: 0;
}
.sample-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;  
  margin: 0%;
}
.sample-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  opacity: 0.3;
}
.sample-header-section {
  position: relative;
  padding: 15% 0 20%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;  
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  font-family: "Montserrat", sans-serif;
  
}
h1 {
  font-weight: 500;
}
h2 {
  font-weight: 400;
}
.sample-section-wrap {
  position: relative;
  background-color: rgb(255, 255, 255);
  
}

/*se añadio para adaptar slider para movil*/
@media screen and (max-width:1000px){
  .sample-section-wrap{
    margin-top: -20px;
  }

  .sample-header{
    margin-top: 70px;
  }
}

/*****/
.sample-section {
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  
}

/*cajas*/
.container1234 {
    max-width: 800px;
    width: 100% ;
    margin: 0 auto;
}

.ItemContainer1234{
    opacity: 0;
    -moz-transition: all 500ms linear;
    -webkit-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
    transition-delay: .3s;
    -moz-transform: translate3d(-200px, 0px, 0px);
    -webkit-transform: translate3d(-200px, 0px, 0px);
    -o-transform: translate(-200px, 0px);
    -ms-transform: translate(-200px, 0px);
    transform: translate3d(-200px, 0px, 0px);
}
.ItemContainer1234.alt{
    opacity: 0;
    -moz-transition: all 500ms linear;
    -webkit-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
    transition-delay: .3s;
    -moz-transform: translate3d(200px, 0px, 0px);
    -webkit-transform: translate3d(200px, 0px, 0px);
    -o-transform: translate(200px, 0px);
    -ms-transform: translate(200px, 0px);
    transform: translate3d(200px, 0px, 0px);
}
.ItemContainer1234.in-window{
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

/*animacion slider*/
.animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
@-webkit-keyframes fadeInLeft{
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/*estilos index catedral oviedo y naranco*/
.catedral h1, .naranco h1{
  font-style: italic;
  font-family: 'Cormorand SC';
  font-size: 48pt;
  font-weight: bold;
  text-shadow: -7px 5px 3px black;
}

.catedral-parrafo, .naranco-parrafo{
  background-color: rgba(240, 248, 255, 0.671);
  padding: 20px 20px;
  font-weight: bold;
  border-radius: 10px;
  font-size: 15pt;
}

@media screen and (max-width:650px){
  .catedral-parrafo, .naranco-parrafo{
    font-size: 11pt;
  }

  .catedral h1, .naranco h1{
    font-size: 38pt;
  }

}