html {
  position: fixed;
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  color: #fff;
}

/* Style for our header texts
    * --------------------------------------- */
h1 {
  font-size: 5em;
  font-family: arial, helvetica;
}

#main-logo {
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

#main-logo img {
  width: 600px;
  /* margin-left: 20px;
  margin-right: 20px; */
}

h2 {
  font-weight: normal;
  margin-bottom: 50px;
}

h3 {
  font-size: 2em;
  color: #ff2d55;
}

h4 {
  font-size: 2em;
  margin-bottom: 10px;
}

.section p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.main-action-button {

}

.intro {
  height: 100%;
  width: 100%;
}

.intro p {
  color: #fff;
}

.intro-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

#fullpage {
  height: 100%;
}

/* Centered texts in each section
    * --------------------------------------- */
.section {
  text-align: center;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Bottom menu
    * --------------------------------------- */
#infoMenu li a {
  color: #fff;
}

#menu {
  position: absolute;
  top: 20px;
  left: 20px;
}


#section1 {
  background-image: url(../img/bg-featuredpage.png);
}

/* #section1 .overlay {
  background-image: linear-gradient(128deg, #ff9a3f, #ff4b40) ;
} */

#section2 {
  background-image: url(../img/bg-explorepage.png);
}

/* #section2 .overlay  {
  background-image: linear-gradient(128deg, #fc40ff, #543fff);
} */

#section3 {
  background-image: url(../img/bg-eventspage.png);
}

/* #section3 .overlay  {
  background-image: linear-gradient(128deg, #40fff2, #3fbcff);
} */

#section4 {
  background-image: url(../img/bg-homepage.png);
}

/* #section4 .overlay  {
  background-image: linear-gradient(128deg, #ff9a3f, #ff4b40);
} */

#footer {
  height: 100px;
  background-color: #000000;
}

.section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.section .container {
  position: relative;
  z-index: 2;
}

.section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}




.btn-primary {
  background-color: #ff2d55;
  border-color: #fa123c;
  padding: 10px 40px;
}

.btn-primary:hover {
  background-color: #9b263b;
  border-color: #9d0924;
}