@font-face {
    font-family: 'myMullerNarrow_bold';
    src: url('../fonts/mullernarrow-bold-webfont.woff2') format('woff2'),
         url('../fonts/mullernarrow-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    color: #1B1B1E;
}

#ad2{
	width: 728px;
	height: 90px;
	background: linear-gradient(rgba(186,230,251,1), rgba(28, 100, 165, .5));
	position:relative;
	overflow: hidden;

	margin-left: auto;
	margin-right: auto;
}

.font{
	font-family: myMullerNarrow_bold;
	color: rgba(28, 40, 84, 1.0);
	position: absolute;
	z-index: 10;
}

h1{
	font-size: 60px;
	position: absolute;
	top: 15px;
	left: 30px;
	width: 360px;
	height: auto;
	opacity: 0%;

	animation: 7s fadeInAndOut .5s;
}

h2{
	font-size: 47px;
	position: absolute;
	top: 21.5px;
	height: 45px;
	opacity: 0%;
	z-index: 5;
}

h2:nth-of-type(1){
	width: 490px;
	left: 30px;
	animation: 7s fadeInAndOut 6s;
}

h2:nth-of-type(2){
	width: 307px;
	left: 30px;
	animation: 4s fadeInAndOut 12s;
}

h2:nth-of-type(3){
	width: 489px;
	left: 30px;
	animation: 7s fadeInAndOut 16s;
}

h2:nth-of-type(4){
	width: 422px;
	left: 40px;
	animation: 7s fadeInAndOut 21s;
}

h3{
	font-size: 35px;
	width: 330px;
	height: 70px;
	opacity: 0%;

	position: absolute;
	top: 10px;
	left: 30px;

	animation: 3s fadeIn 27s forwards;
}

.button{
	font-size: 23px;
	background-color: #e9f1fa;
	color: rgba(28, 40, 84, 1.0);
	border-style: solid;
	border-color: rgba(28, 40, 84, 1.0);
	border-width: 3px;
	text-decoration: none;
	text-align: center;
	opacity: 0%;

	padding-right: 10px;
	padding-left: 10px;
	padding-top: 7px;
	padding-bottom: 7px;

	position: absolute;
	width: 110px;
	height: 23px;

	top: 50%;
	left: 53%;
	margin-left: -50px;
	margin-top: -20px;

	animation: 3s fadeIn2 27s forwards;
	transition-duration: .75s;
}

.button:hover {
  	background-color: rgba(28, 40, 84, 1.0);
  	color: #e9f1fa;
  	transition-duration: .5s;
}

img{
	display: block;

	height: 100%;
	width: 100%;
}

.leftIce{
	z-index: 1;
	position: absolute;
	bottom: 0px;
	left: 0px;

	animation: 10s bobbingIceAnimation infinite;		
}

.rightIce{
	z-index: 1;	
	position: absolute;
	bottom: 0px;
	right: 0px;

	animation: 10s bobbingIceAnimation 1s infinite;	
}

.water{
	z-index: 2;
	position: absolute;
	bottom: -22px;
	left: 0px;

	animation: 10s bobbingWaterAnimation .5s infinite;
}

.reflectionContainer{
	display: block;
	width: 728px;
	height: 23px;

	z-index: 3;
	position: absolute;
	bottom: 0px;
	left: 0px;

	overflow: hidden;

	animation: 10s bobbingIceReflectContainerAnimation .5s infinite;
}

.mask2 {
	-webkit-mask-image: linear-gradient(black, transparent);
  	mask-image: linear-gradient(black, transparent);
}

.leftReflect{
	width: 728px;
	height: 90px;

	bottom: -43px;
	left: 0px;
	position: absolute;
	
	animation: 10s bobbingReflectAnimation infinite;
}

.rightReflect{
	width: 728px;
	height: 90px;

	bottom: -43px;
	right: 0px;
	position: absolute;

	animation: 10s bobbingReflectAnimation 1s infinite;
}

@keyframes fadeIn{
	0%{
		opacity: 0;
		top: 10px;
		left: 25px;
	}

	100%{
		opacity: 1;
		top: 10px;
		left: 30px;
	}
}

@keyframes fadeIn2{
	0%{
		opacity: 0;
		top: 50%;
		left: 53%;
		margin-left: -50px;
		margin-top: -20px;
	}

	100%{
		opacity: 1;
		top: 50%;
		left: 58%;
		margin-left: -50px;
		margin-top: -20px;
	}
}

@keyframes fadeInAndOut{
	0%{
		opacity: 0;
		left: 25px;
	}

	25%{
	 	opacity: 1;
	 	left: 30px;
	}

	50%{
		opacity: 1;
		left: 30px;
	}

	75%{
	 	opacity: 0;
	 	left: 35px;
	}

	100%{
		opacity: 0;
		left: 35px;
	}
}

@keyframes bobbingIceAnimation{
	0% {
		bottom: 0px;
	}

	25%{
		bottom: -5px;
	}

	50%{
		bottom: 0px;
	}

	75%{
		bottom: -10px;
	}

	100% {
		bottom: 0px;
	}
}

@keyframes bobbingReflectAnimation{
	0%{
		bottom: -43px;
	}
	25%{
		bottom: -38px;
	}

	50%{
		bottom: -43px;
	}

	75%{
		bottom: -33px;
	}

	100%{
		bottom: -43px;
	}
}

@keyframes bobbingWaterAnimation{
	0% {
		bottom: -22px;
	}

	25%{
		bottom: -25px;
	}

	50%{
		bottom: -20px;
	}

	75%{
		bottom: -26px;
	}

	100% {
		bottom: -22px;
	}
}

@keyframes bobbingIceReflectContainerAnimation{
	0% {
		bottom: 0px;
	}

	25%{
		bottom: -3px;
	}

	50%{
		bottom: 2px;
	}

	75%{
		bottom: -4px;
	}

	100% {
		bottom: 0px;
	}
}

























