body
{
	min-height: 100vh;
	background: linear-gradient(to bottom right, #ffb300, #fff);
}

.bg1
{
	background-image: url(../img/city.jpeg);
	background-size: cover;
	height: 70vh;
	position: relative;
}

.bg9
{
	background-image: url(../img/9.jpg);
	height: 100%;
	background-size:     contain;   
	background-repeat:   no-repeat;
}

h1
{
	font-weight: 800;
	text-decoration: underline;
}

h2
{
	font-weight: 800;
}

h3
{
	font-weight: 800;
}

h4
{
	font-style: italic;
	font-weight: 800;
}

img
{
	height: 100%;
}

.textBackground
{
	background-color:rgba(256, 256, 256, 0.75);
	padding: 5px;
	border-radius: 7px;
}

.header
{
	color: #000;
	padding-top: 5px;	
}

.im1
{
	padding: 5px;
	height: 500px;
}
.im2
{
	padding: 5px;
	height: 300px;
}

.footer
{
	color: #000;
	padding-top: 30px;
	height: 150px;
}

.footer h5
{
	background-color:rgba(256, 256, 256, 0.75);
	padding: 5px;
	border-radius: 7px;
}

.footer h4
{
	font-weight: 600;
}

.right
{
	text-align: right;
}
.center
{
	text-align: center;
}
.down
{
	position: absolute;
	bottom: 10px;
	width: 80%;
	margin-right:10%;
	margin-left: 10%;
}

.waves {
  width: 100%;
  height: 60px;
  padding-bottom: 5px;
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}


