.blur-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  filter: brightness(20%) contrast(90%) grayscale(0%);
  -webkit-filter: brightness(20%) contrast(90%) grayscale(0%);
}

/* .blur-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  filter: blur(20px);
  -webkit-filter: blur(20px);
} */

/* .blur-overlay {
  background: radial-gradient(ellipse closest-side at center, white, black);
  opacity: 0.6;
} */

body {
  min-height: 100vh;
}

h1#h1_slogan {
  display: none;
}

#div_splash {
	background: #cd771c;
  height: 100vh;
  display: none !important;
}

#div_splash_container {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: -webkit-radial-gradient(rgba(41, 20, 5, 0.1), rgba(41, 20, 5, 0.3) 35%, rgba(41, 20, 5, 1));
	background: -moz-radial-gradient(rgba(41, 20, 5, 0.1), rgba(41, 20, 5, 0.3) 35%, rgba(41, 20, 5, 1));
	background: -ms-radial-gradient(rgba(41, 20, 5, 0.1), rgba(41, 20, 5, 0.3) 35%, rgba(41, 20, 5, 1));
	background: radial-gradient(rgba(41, 20, 5, 0.1), rgba(41, 20, 5, 0.3) 35%, rgba(41, 20, 5, 1));
}

.animation-area {
  width: 400px;
  height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
}

#div_splash .section {
  width: 200px;
  height: 200px;
  float: left;
  position: relative;
}

.horizontal-bar {
  width: 200px;
  height: 10px;
  background-color: #FFF;
  position: absolute;
  opacity: 1;
  box-shadow: 0px 0px 10px #FFF;
  display: none;
}

#div_splash span, #img_splash_logo {
  margin: auto;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  color:#FFF !important;
  text-shadow: 0px 0px 10px #FFF;
}

#span5, #span6 {
  font-size: 28px;
  font-weight:bold;
  opacity:1;
  width: 120px;
  height: 40px;
  margin-left: 0px;
}

#span6 {
  margin-left: auto;
  transform: rotate(90deg);
}

.splash-logo-area {
  /* position: relative;
  display: none;
  color: white;
  text-align: center; */

  position: absolute;
  bottom: 0;
  top: -10rem;
  left: 0;
  right: 0;
  /* position: relative; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
  color: white !important;
}

.splash-logo-area .title-primary {
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  width: 100%;
  font-size: 48px;
  margin-top: 270px;
  /* transform: scale(3); */
  display: none;
  transition: all 1s;
}

.display-inline-important {
  display: inline !important;
}

.splash-logo-area .title-secondary {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  width: 100%;
  font-size: 20px;
  margin-top: 0px;
  /* display: none; */
}

#img_splash {
  opacity: 0;
}

#div_splash div.section > div {
  margin: auto;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:#FFF !important;
  color: #c16832 !important;
  line-height: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0px 0px 15px #FFF;
}

.animate {
  transition: all 2s;
  transform: scale(0);
}
.animate-default-scale {
  transition: all 1s;
  /* transform: scale(1) !important; */
}

#img_splash_logo {
  content: url("../img/logo-150.png");
  transform: scale(5);
  transition: all 1s;
}

@media (min-width: 1024px) {
  #img_splash_logo {
    content: url("../img/logo-180.png");
  }
  .title-primary {
    font-size: 64px !important;
    margin-top: 320px !important;
  }
  .title-secondary {
    font-size: 24px !important;
    margin-top: 0px !important;
  }
}

@media (max-width: 768px) {
  #img_splash_logo {
    content: url("../img/logo-50.png");
  }
  .title-primary {
    font-size: 28px !important;
    margin-top: 140px !important;
  }
  .title-secondary {
    font-size: 18px !important;
    margin-top: 0px !important;
  }
}