.bg {
  position: relative;
  padding: 0;
  margin: 0;
  height: 100vh;
  width: 100%;
}

.bg_img {
  display: block;
  max-width: 100%;
  height: inherit;
  width: inherit;
  /**filter: blur(1px);
  -webkit-filter: blur(1px);**/
}

.bg:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-overlay {
  display: flex;
  position: absolute;
  height: inherit;
  width: 100%;
  color: #fff;
  left: 0;
  bottom: 0;
  padding: 1em;
  font-weight: 700;
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}



.survey_logo {
  display: flex;
  width: 100%;
  padding: 16px;
  background: rgba(255,255,255,0.5);
  border-radius: 8px;
  justify-content: center;
}

.logo_image {
  height: 150px;
  display: inline-flex;
}


.home_button {
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
  font-size: 30px;
  display: inline-block;
  position: relative;
  text-align: center;
  color: #ffffff;
  border: 1px solid #0f0f0f;
  border-radius: 5px;
  line-height: 3em;
  padding-left: 5em;
  padding-right: 5em;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.home_button:hover {
  color: white;
  box-shadow: 0 0 30px 0 rgba(129, 129, 129, 0.5);
  background-color: #1F8683;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}rgb(8, 8, 8)
.home_button:hover:before {
  -webkit-animation: shine 0.5s 0s linear;
  -moz-animation: shine 0.5s 0s linear;
  animation: shine 0.5s 0s linear;
}
.home_button:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}
.home_button:before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: rgb(131, 131, 131);
  box-shadow: 0 0 15px 3px white;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

@-webkit-keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
@-moz-keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}

/**Survey Styling**/
.survey_bg {
  background-color: #fff;
background-image:
linear-gradient(90deg, transparent 79px, #abced4 79px, #abced4 81px, transparent 81px),
linear-gradient(#eee .1em, transparent .1em);
background-size: 100% 1.2em;
}

.survey_header{
  text-align: center;
}

.survey_container {
  display: flex;
  justify-content: center;
}

.survey_form {
  display: inline-flex;
  width: 100%;
}

.survey_display {
  display: inline-flex;
}

.req, .required {
  color: black !important;
}

.form {
  width: 100%;
  /**background: rgba(208, 208, 208, 0.80);**/
  border-radius: 4px;
  padding: 8px;
  color: white !important;
}

label {
  width: 100% !important;
  font-weight: bold;
}

p {
  width: 100%;
}
