body, html {
  background-color: #fff9e7;
  color:#010101 !important;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  height: 100%;
  margin:0;
}

wrapper {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

h1 {
  font-weight: 300;
}

h3 {
font-weight: 300;
font-style: italic;
margin:0;
}

p {max-width:60%;}

.bold {
  font-weight: 700;
}

section {
  padding:10%;
}

.caption {
    position: absolute;
    left: 0;
    top: 40%;
    width: 100%;
    text-align: center;
}

.parallax-light {
  background-image: url("img/bg-light.jpg");
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video {
  background-image: url("img/bg-dark.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff9e7;
}

.parallax-purple {
  background-image: url("img/bg-purple.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff9e7;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;

}
.videoWrapper iframe {
  /*border-radius:30px;*/
  /*border:30px solid #35363A;*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/*Columns*/

* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 25%;
  padding: 20px;
  color: #fff9e7;
  min-height:200px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}


/* Expander */
.accordion {
  background-color: #fff9e7;
  color:#6e73dc;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #BBBDEF;
}

.panel {
  padding: 0 18px;
  display: none;
  overflow: hidden;
}
