/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Hanlding Updates
-----------------------------------------------------------------*/

:root {
  --primary-color: #007094;
  --secondary-color: #92ba1f;
}

body {
  font-family: 'Ubuntu', sans-serif;
}

h1 {
  height: 0 !important;
  visibility: hidden;
  margin: 0;
}

.sx {
  background-color: #FFFFFF;
  color: var(--primary-color);
  font-size: 1.2rem;
  height: 100vh;
}

.dx {
  background-image: url(../images/bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 4rem;
  color: #FFFFFF;
  text-align: center;
  position: relative;
}

.dx p {
  margin-top: 5%;
}

.dx p span {
  font-weight: 700;
}

.dx .footer-stripe {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #82b92f 0%, #047397 100%);
  font-size: 1.2rem;
  padding: 40px;
  text-align: center;
  letter-spacing: 1.3px;
  font-weight: 700;
}






@media screen and (max-width:767px) {
  .dx .footer-stripe {
    font-size: 0.8rem;
  }
}