html, body {
    height: 100%;
    margin: 0;
    background-color: #000000;
    scroll-behavior: smooth;
}
@font-face {
  font-family: Copperplate Gothic Light;
  src: url('../fonts/copperplate-gothic-light.ttf');
}

#videowrapper {
    position: relative;
    overflow: hidden;
}

#EoR {
    min-height: 100%;
    height: 100vh;
    width: 100vw;
    padding: 0;
    margin: 0;
    background-color: gray;
    position: relative;

}

#EoR_V {
    width: 100vw;
    height: auto;
    margin: auto;
    display: block;
    
}

#videowrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 75%, black 100%);
}


@media (min-aspect-ratio: 16/9) {
    #EoR_V {
        width: 100vw;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9) {
    #EoR_V {
        height: 100vh;
        width: auto;
        margin-left: 50vw;
        transform: translate(-50%);
    }
}

#EoR_Txt {
    width: 100%;
    height: 100%;
    position: absolute;
    top: -5rem;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 15em;
 }
.logo_main{
    max-width:100%;
}

@media (min-aspect-ratio: 16/9) {

     #EoR_Txt, #Main_Text{
         font-size: 0.8em;
         line-height: 5em;
         top: 0;
     }
     .logo_main{
         height: auto;
         width: 50%;
     }
 }

 .section_eor{
    background-image: url("../img/Fenirion.png");
    background-color: #000000;
    height: 100%;
    min-height: auto;
    width: 100%;
    overflow: hidden;  
 }
 
 @media screen and (max-width: 1920px){
     .section_eor{
         background-image: url("../img/Fenirion_1920.png");
     }
 }

 

 .section_eor p {
    font-family: 'Copperplate Gothic Light';
    font-size: 1.2rem;
    font-weight: lighter;
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding-left: 10vw;
    padding-right: 10vw;
    line-height: 3vh;
 }

 .section_eor h3{
    font-family: 'Copperplate Gothic Light';
    font-size: 1.5rem;
    font-weight: light;
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    line-height: 3vh;
    padding-top: 15em;
 }

 @media (max-width: 800px){
    .section_eor p {
        font-size: 0.9rem;
    }
    .section_eor h3{
        font-size: 1.2rem;
    }
    .section_eor {
        height: auto;
        min-height: 100%;
    }
 }
 #separator{
    background-color: #000000;
    height: auto;
    width: 100%;
    margin-top: 8em;
    margin-bottom: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 15em;
 }

 #separator2, #separator3{
  height: auto;
  width: 100%;
  margin-bottom: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media only screen and (max-width: 800px) {
  #separator2 {
    margin-bottom: -40%;
  }
}

 h2 {
    font-family: 'Copperplate Gothic Light';
    font-weight: lighter;
    color: white;

 }

 h1 {
    font-family: 'Copperplate Gothic Light';
    font-weight: lighter;
    color: white;
 }

 #Main_Text {
    top: -5rem;
    font-size: 5vw;
    margin-bottom: -12rem;
 }



 .header {
    background-color: #000000;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    position: fixed;
    width: 100%;
    z-index: 3;
  }

  .header-new {
    background-color: #000000;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    position: fixed;
    width: 100%;
    z-index: 3;
  }
  
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #000000;
  }
  
  .header li a {
    display: block;
    padding: 10px 5px;
    border-right: 1px solid #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: lighter;

  }
  
  .header li a:hover,
  .header .menu-btn:hover {
    background-color: #000000;
  }
  
  .header .logo {
    display: block;
    float: left;
    font-size: 1.5rem;
    padding: 10px 20px;
    text-decoration: none;
  }
  
  /* menu */
  
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
  }
  
  /* menu icon */
  
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  .header a {
    color: #ffffff;
    font-family: 'Copperplate Gothic Light';
    font-size: 1rem;
    font-weight: lighter;
    -o-transition:color .2s ease-out, background 1s ease-in;
    -ms-transition:color .2s ease-out, background 1s ease-in;
    -moz-transition:color .2s ease-out, background 1s ease-in;
    -webkit-transition:color .2s ease-out, background 1s ease-in;
    transition:color .2s ease-out, background 1s ease-in;
  }

  .header a:hover {
    color: rgb(228, 171, 66);
  }

  .header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 240px;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  
  /* 48em = 768px */
  
  @media (min-width: 48em) {
    .header li {
      float: left;
    }
    .header li a {
      padding: 20px 30px;
      font-size: 1rem;
      font-weight: normal;
    }
    .header .menu {
      clear: none;
      float: right;
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }
  }

  #footer {
    height:auto;
    line-height:50px;
    background:black;
    color:white;
    text-align:center;
    position:relative;
    bottom:0;
    left:0;
    width:100%;
    border-top: solid white;
    font-family: 'Copperplate Gothic Light';
    font-weight: light;
    color: white;
    font-size: 1.5em;
  }
  

  #footer a {
    color: #ffffff;
  }
  #footer a:hover {
    color: rgb(228, 171, 66);
  }

  #footer_text {
    font-size: 0.5em;
  }
  #footer_logo {
    font-size: 1.5em
  }
  @media only screen and (max-width: 900px) {
    #footer {
      font-size: 1em;
      line-height: 1em;
    }
    #footer_logo {
      font-size: 1em;
    }

  }

 .myButton{
    background:url("../img/Book_EoR.png") no-repeat;
    cursor:pointer;
    border:none;
    width: 100%; 
    height: 508px;
    display: flex;

}

.myButton:hover
{   
    background:url("../img/Book_EoR_open.png") no-repeat;
}
.right {
    float: left;
    width: 50%;
    text-align: center;
  }

  @media only screen and (max-width: 800px) {
    /* For mobile phones: */
    .right {
      width: 100%;
    }
  }

  .eor_wrapper {
    background-image: url("../img/Fenirion.png");
    background-color: #000000;
    height: auto;
    width: auto;
    overflow: hidden;  
    padding-top: 10em;
    align-items: center;
    
    @media screen and (max-width: 1920px){
        .eor_wrapper{
            background-image: url("../img/Fenirion_1920.png");
        }
    }
    
 }
 .eor_wrapper a {
  color: rgb(219, 62, 62);
}
.eor_wrapper a:hover{
  color: rgb(228, 206, 83);
}
 .eor_col1 {
    padding-top: 1em;
    font-family: 'Copperplate Gothic Light';
    font-size: 2vh;
    font-weight: lighter;
    color: white;
    text-align: center;
    line-height: 3vh;
    margin-left: 10%;
    margin-right: 10%;

 }
 
 @media screen and (max-width: 800px){
       .eor_col1{
           font-size: 1.2em;
            line-height: 4vh;
       }
 }

 .eor_col2 {
  margin-left: 0%;
  align-items: center;
 }


 @media screen and (min-width: 1000px) {
  .eor_wrapper {
    display: flex;
  }
  .eor_col1 {
    flex: 2;
    margin-left: 10%;
    margin-right: 0%;
    padding-right: 5%;
  }
  .eor_col2 {
    flex: 1;
    margin-left: 0%;
  }
 }
.prologue {
  padding-left: 15%;
  padding-right: 15%;
  padding-top: 10%;
  padding-bottom: 5%;
  color: #ffffff;
  font-size: 1.2em;
  line-height: 1.7rem;
  text-align: justify;
  font-family: Arial, Helvetica, sans-serif;
}
.prologue_body{
  background-color: #0e0e0e;
  width: auto;
  height: auto;
}
.shop{
    background-color: #000000b7;
}
.about, .about2, .about3, .social_div, .shop {
  padding-left: 15%;
  padding-right: 15%;
  padding-bottom: 5%;
  padding-top: 10%;
  color: #ffffff;
  font-size: 1.2em;
  line-height: 1.7rem;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;

}


.about2, .about3 {
  padding-top: 0;
}

.shop a {
  text-shadow: black 5px 5px 5px;
}
.about a, .about2 a, .about3 a, .social_div a, .shop a {
  color: rgb(219, 62, 62);
}
.about a:hover, .about2 a:hover, .about3 a:hover, .shop a:hover{
  color: rgb(228, 206, 83);
}
.social_div a:hover {
  color: rgb(20, 156, 156);
}

.about h3, .about2 h3 {
  color: #ffffff;
  font-size: 2em;
}
.about_body {
  background-image: url("../img/Empire_of_Ravens_big.png");
  width: 100%;
  height: auto;
}

 .about_div {
  background-color: #000000b7;
 }
.social {
  background-image: url("../img/Dryandales_25_06_23.png");
  width: auto;
  height: auto;
}
.social div{
  color: black;
}
.social_div h3 {
  color: black;
  font-size: 2em;
}

@media screen and (max-width: 800px) {
  .about2 {
    padding: 5%;
    padding-top: 50%;
    font-size: 1em;
  }
  .about, .prologue{
     padding: 5%;
    padding-top: 15%;
    font-size: 1em;
  }
  .prologue_body{
    height: 110%;
    min-height: 100%;
    line-height: 3vh;
  }
  .about3{
     padding: 5%;
    padding-top: 0;
    font-size: 1em;
  }
}


.contact_form {
  margin-left: 20%;
  margin-right: 20%;
  padding-top: 2%;
  margin-bottom: 5%;
  padding-bottom: 2%;
  background-color: #5c5c5c65;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  align-items: center;
  text-align: center;
  border-radius: 10px;
}
.contact_form h3{
  font-size: 3vh;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 1px 1px 6px black, -1px -1px 6px black;
}
.shop_grid {
  display: grid;
  grid-template-columns: auto auto auto;
  margin-left: 20%;
  margin-right: 20%;
  padding-top: 2%;
  margin-bottom: 5%;
  padding-bottom: 2%;
  background-color: #5c5c5c65;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  text-shadow: 1px 1px 6px black, -1px -1px 6px black;
}
.shop_grid h3{
  font-size: 3vh;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 1px 1px 6px black, -1px -1px 6px black;
}
.shop_grid h2{
  font-size: 2.5vh;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 1px 1px 6px black, -1px -1px 6px black;
}
.shop_it1 {
  grid-column: 1 / span 2;
}
.shopt_it2 {
  grid-column: 3;
  grid-row: 1 / span 2;
}
.shop_it3 {
  grid-column: 1 / span 3;
}
@media screen and (max-width: 1000px){
  .shop_it2, .shop_it1{
    grid-column: 1 / span 3;

  }
  .shop_grid h3{
    font-size: 2vh;
  }
}
label {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 1px 1px 6px black, -1px -1px 6px black;

}

input {
  background: linear-gradient(0deg, rgba(0,0,0,1) 17%, rgba(65,28,28,1) 100%);
  margin-bottom: 10px;
  flex-direction: column;
  width: 80%;
  height: 35px;
  padding: 5px;
  font-family:Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: rgb(177, 177, 177);
  border: 1px solid;
  border-radius: 10px;
}
input[disabled]{
  color: black;
}

textarea {
  background: linear-gradient(0deg, rgba(0,0,0,1) 17%, rgb(19, 6, 6) 100%);
  text-align: justify;
  margin-bottom: 10px;
  flex-direction: column;
  width: 80%;
  padding: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  resize: none;
  line-height: 150%;
  color: rgb(177, 177, 177);
  border: 1px solid;
  border-radius: 10px;
}
textarea[disabled] {
  color: black;
}

/* Estilos botones */
.button, .button_amz{
  background-color: black;
  border: 1px solid rgb(255, 255, 255);
  border-radius: .5rem;
  color: rgb(255, 255, 255);
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: light;
  margin-top: 1rem;
  outline: none;
  padding: .5rem 1rem;
  text-shadow: 1px 1px 2px black;
  box-shadow: 1px 1px 2px rgb(121, 121, 121), 0 0 25px rgb(0, 0, 0), 0 0 5px rgb(0, 0, 0);

}
.button:hover, .button_amz:hover {
  color: #dddad6;
  text-shadow: 1px 1px 2px rgb(255, 255, 255);
  box-shadow: 1px 1px 2px rgb(121, 121, 121), 0 0 25px rgb(255, 255, 255), 0 0 5px rgb(255, 255, 255);
}

.button_amz {
  width: auto;
}

.shop_amz{
  flex-direction: column;
  width: auto;
}

.collapsible {
  border: 20px solid transparent;
  border-image: url("../img/border.png") 50 repeat;
  background: rgb(20,20,20);
  background: linear-gradient(270deg, rgba(20,20,20,1) 0%, rgba(195,51,48,1) 50%, rgba(20,20,20,1) 100%);
  font-family: 'Copperplate Gothic Light';
  font-size: 1rem;
  color: white;
  cursor: pointer;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 15px;

}

.active, .collapsible:hover {
  background-color: #555;
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.content {
  border: 0px solid transparent;
  border-image: url("../img/border.png") 50 repeat;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background: rgb(20,20,20);
  background: linear-gradient(270deg, rgba(20,20,20,1) 0%, rgba(195,51,48,1) 50%, rgba(20,20,20,1) 100%);
  font-family: 'Copperplate Gothic Light';
  font-size: 1rem;
  color: white;
  text-shadow: black 2px 2px 5px;
}


.art_site {
  background-color: #000000;
  padding: 10%;
  padding-top: 5%;
}
.art_site h3 {
  font-family: 'Copperplate Gothic Light';
  font-size: 2vh;
  font-weight: lighter;
  color: white;
  text-align: center;

}

@media screen and (max-width: 800px){
    .art_site{
        padding-top: 15%;
    }
    .art_site h3{
        font-size: 1.5em;
    }
}

.art_site h2 {
  font-size: 3vh;
  text-align: center;
}

@media screen and (max-width: 800px){
    .art_site h3{
        font-size: 1.5em;
    }
    .art_site h2{
        font-size: 2em;
    }
}


.art_section {
  padding-bottom: 5%;
}

.art_images {
  border-radius: 10px;
}

.art_site a {
  color: #ffffff;
  font-family: 'Copperplate Gothic Light';
  font-size: 1rem;
  font-weight: lighter;
  -o-transition:color .2s ease-out, background 1s ease-in;
  -ms-transition:color .2s ease-out, background 1s ease-in;
  -moz-transition:color .2s ease-out, background 1s ease-in;
  -webkit-transition:color .2s ease-out, background 1s ease-in;
  transition:color .2s ease-out, background 1s ease-in;
}

.art_site a:hover {
  color: rgb(228, 171, 66);
}

.art_caption {
  font-style: italic;
  text-align: justify;
}

.map_p {
  text-align: center;
}


.navbar {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: black;
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.menu-new{
  display: flex;
  flex-direction: row;
}

.menu-new li{
  list-style: none;
}

.logo-new{
  display: block;
  float: left;
  font-size: 1.5rem;
  padding: 0.5em 1.5em;
  text-decoration: none;
  color: white;
  -o-transition:color .2s ease-out, background 1s ease-in;
  -ms-transition:color .2s ease-out, background 1s ease-in;
  -moz-transition:color .2s ease-out, background 1s ease-in;
  -webkit-transition:color .2s ease-out, background 1s ease-in;
  transition:color .2s ease-out, background 1s ease-in;
}


.menu-new li a{
  display: block;
  border-right: 1px solid #ffffff;
  color: #ffffff;
  font-family: 'Copperplate Gothic Light';
  font-size: 1rem;
  font-weight: lighter;
  text-decoration: none;
  padding: 0.5em 1.5em;
  -o-transition:color .2s ease-out, background 0.2s ease-in;
  -ms-transition:color .2s ease-out, background 0.2s ease-in;
  -moz-transition:color .2s ease-out, background 0.2s ease-in;
  -webkit-transition:color .2s ease-out, background 0.2s ease-in;
  transition:color .2s ease-out, background 0.2s ease-in;

}
.logo-new:hover, .menu-new li a:hover{
  color: rgb(228, 171, 66);
}


.has-dropdown{
  position: relative;


}
.submenu{
  left: 0;
  display: block;
  padding: 1em 0;
  line-height: 1.5em;
  position: absolute;
  background-color: rgb(22, 22, 22);
  border-right: white solid 1px;
  border-left: white solid 1px;
  color: white;
  width: auto;
  min-width: 18em;
  white-space: nowrap;

  /* hide submenu */
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
}

.submenu li a{
  border-right: 0px;
}

.submenu .submenu {
  left: -101%;
  top: 0;
}

.submenu .submenu {
  left: -101%;
  top: 0;
}

.menu-new > li:hover>a, .submenu > li:hover > a{
  background-color: hsla(0, 0%, 100%, 0.05);
}

/* Open submenus*/
.menu-new > li:hover > a + .submenu, 
.submenu > li:hover > a + .submenu {
  opacity: 1;
  transform: scaleY(1);
}

@media only screen and (max-width: 78.75em){
  .submenu .submenu .submenu{
    left: 100%;
    top: 0.5em;
  }
  .submenu{
    min-width: 16em;
  }
}

@media only screen and (max-width: 58.75em){
  .menu-new li a{
    font-size: .9rem;
  }
}

@media only screen and (max-width: 50em){
  .logo-new {
    font-size: .8em;
    padding: 1.5em, 2em;
  }
  .header{
    position: relative;
    padding: 1.5em 2em;
  }
  .menu-new {
    flex-flow: column;
    position: absolute;
    top: 2.5em;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: #000000;

    opacity: 0;
    transform: scaleY(0);
    transform-origin: top center;
    transition: 200ms transform cubic-bezier(0.36, 0.4, 0.42, 1.48) 100ms, 100ms opacity ease-in-out;

  }
  .menu-new > li > a{

    font-size: 1.2rem;
    color: white;
  }
  .submenu > li > a{
    font-size: 1.2rem;
    border-left: 1 white solid;
  }
  .submenu {
    top: 0;
    padding-left: 1.5em;
  }
  .submenu .submenu{
    left: 0;
    top: 0;
  }
  .submenu .submenu .submenu{
    left: 0;
    top: 0;
  }
  .menu-new > li:hover > a + .submenu,
  .submenu > li:hover > a + .submenu{
    position: relative;
  }

  .hamburger{
    margin-right: 2em;
    width: 2em;
    height: 0.3em;
    display: block;
    background-color: white;
    cursor: pointer;
  }
  .hamburger::after, .hamburger::before{
    content: "";
    position: absolute;
    background-color: inherit;
    width: inherit;
    height: inherit;

    transition: 0.2s transform ease-in-out;
  }
  .hamburger::after{
    top: 2.5em;
  }
  .hamburger::before{
    bottom: 2.5em;
  }

  .close::after, .close::before{
    top: 0;
    transition: 0.2s transform ease-in-out;
  }
  .close::before{
    display: none;
  }
  .close{
    transform: rotate(45deg);
    transition: 0.2s transform ease-in-out;
  }
  .close::after{
    transform: rotate(-90deg);
    transition: 0.2s transform ease-in-out;
  }

  input[type="checkbox"]:checked + .menu-new{
    position: absolute;
    opacity: 1;
    transform: scaleY(1);
  }
}
















--------- DELETE ----------

 .page_eor{
  background-image: url("../img/Fenirion.png");
  background-color: #000000;
  height: auto;
  width: auto;
  overflow: hidden;  
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding-top: 10em;
  display: flex;
  
}


.page_eor p {
  padding-top: 1em;
  font-family: 'Copperplate Gothic Light';
  font-size: 2vh;
  font-weight: lighter;
  color: white;
  text-align: center;
  line-height: 3vh;
}

@media (max-width: 800px){
  .page_eor p {
      font-size: 0.9rem;
  }
}

.section_eor_d{
  align-items: center;
  display: flex;
  width: 75%;
  padding-left: 10%;


}
.section_eor_d2{
  align-items: center;
  display: flex;
  width: 25%; 
  
}
@media only screen and (max-width: 900px) {
/* For mobile phones: */
.page_eor {
  flex-direction: column;
  align-items: center;
}
}
@media only screen and (max-width: 900px) {
  /* For mobile phones: */
  .section_eor_d, .section_eor_d2 {
    width: 100%;
    padding-left: 0%;
  }
}