header {
  background-image: url("images/header.jpg");
  position: relative;
  min-height: 33vh;
  background-size: cover;
  background-position: center top;
}

@media (min-width:992px) {
  header {
    min-height: 50vh;
  }  
}

h1 {
	font-family: Shalimar;
	font-size: 4rem;
	display: inline-block;
	margin: 0;
	background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 100%);
	padding: 4rem 2rem !important;
	min-height: inherit;
	min-width: 40%;
  max-width: 60%;
  line-height: 4rem;
  letter-spacing: 2px;
}

h1 > span {
  margin-left: 2rem;
  font-size: 6rem;
  letter-spacing: 8px;
}

@media (min-width:768px) {
  h1 {
    font-size: 8rem;
    line-height: 7rem;
  }
  h1 > span {
    font-size: 10rem;
    margin-left: 4rem;
  }
}

.main h2 {
  margin: 2rem auto 4rem auto;
  width: 75%;
  font-size: 1.15rem;
}

@media (min-width:768px) {
  .main h2 {
    font-size: 1.5rem;
  }
}
@media (min-width:992px) {
  .main h2 {
    font-size: 2rem;
  }
}

.main .container {
  margin-bottom: 4rem;
}
.main .container p {
  font-size: 0.85rem;
}
@media (min-width:768px) {
  .main .container p {
    font-size: 1rem;
  }
}
.main .container p.h4 {
  font-size: 1rem;
}
@media (min-width:768px) {
  .main .container p.h4 {
    font-size: 1.5rem;
  }
}

footer {
  background-image: url("images/footer.jpg");
  position: relative;
  min-height: 25vh;
  background-size: cover;
  background-position: center top;
}

footer .row {
  background: linear-gradient(0deg,rgb(0, 0, 0) 0%, rgb(0, 0, 0) 35%, rgba(0, 0, 0, 0) 100%);
  padding: 4rem 0rem 1rem 0rem;
  color: white;
  min-height: inherit;
  align-content: center;
}

footer .h5 a {
  color: white;
  text-decoration: underline;
  transition: color 0.5s ease-in-out;
}

footer .h5 a:hover {
  color: yellow;
}