@import url("https://fonts.googleapis.com/css2?family=Rancho&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
#main-scrolling {
  /*background: linear-gradient(#8b016a, #6f1159);*/

  min-height: 70vh;
  /*overflow-x: hidden;*/
  overflow: hidden;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.8);
}
#header .logoMenu {
  color: #fff !important;
  font-weight: 700;
  font-size: 2em;
  text-decoration: none;
}
#header .navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .navigation li {
  list-style: none;
  margin-left: 20px;
}
#header .navigation li a {
  text-decoration: none;
  padding: 6px 15px;
  color: #fff;
  border-radius: 20px;
}
#header .navigation li a:hover,
#header .navigation li a:active {
  background: #fff;
  color: #111;
}
section {
  position: relative;
  width: 100%;
  height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
section img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
section img#bottom-feria {
  bottom: -1px;
}
section img#logo-feria {
  /*mix-blend-mode: screen;*/
  font-size: medium;
}
section img#area-feria {
  transform: translateY(-35px);
}
section img#stars2 {
  display: none;
}
#text {
  position: absolute;
  top: 10%;
  /*right: -100%;*/
  transform: translateY(-10%);
  color: #fff;
  font-size: 5vw;
  white-space: nowrap;
  text-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
  font-family: "Rancho", cursive;
}
.sec {
  position: relative;
  /*padding: 100px;*/
  padding: 50px 0 0;
}
.sec h2 {
  font-size: 3em;
  color: #bea162;
  margin-bottom: 10px;
}
.sec p {
  font-size: 1em;
  color: #4d4d4d;
  font-weight: 300;
  text-align: justify;
}
.fondoArea1 {
  background: #ffffff !important;
}
.fondoArea2 {
  background: #96283a !important;
}

.degradadoArea1 {
  background-image: linear-gradient(to top, #070001 0%, #000000 100%);
}

.degradadoArea2 {
  background-image: linear-gradient(to top, #5ee7df 0%, #b490ca 100%);
}

@media (max-width: 992px) {
  #header {
    padding: 20px;
  }
  #header .logoMenu {
    font-size: 1.5em;
  }
  #header .navigation {
    display: none;
  }
  #header .navigation.active {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background: #000;
  }
  #header .navigation li {
    margin-left: 0;
  }
  #header .navigation li a {
    font-size: 1.5em;
    border-radius: 30px;
    margin: 5px 0;
    display: inline-block;
  }
  .toggle {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url(../images/menu.png);
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10000;
  }
  .toggle.active {
    position: fixed;
    top: 20px;
    right: 20px;
    background: url(../images/close.png);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
  }
  .sec {
    /* padding: 20px;*/
  }
  .sec h2 {
    font-size: 1.5em;
  }
  section {
    height: 50vh;
  }
  section img#stars2 {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  section img#area-feria {
    transform: translateY(-5px);
  }
  #text {
    font-size: 5vw;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
  section {
    height: 60vh;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  section {
    height: 55vh;
  }
}
@media only screen and (min-width: 429px) and (max-width: 768px) {
  section {
    height: 50vh;
  }
}
/*@media (max-width: 300px)*/
@media only screen and (min-width: 100px) and (max-width: 428px) {
  section {
    height: 30vh;
  }
}
