/*LANDING IMAGE*/

.landingContainer {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.image1 {
  position: relative;
  min-width: 100%;
}
.image2 {
  position: absolute;
  top: 3%;
  left: 16%;
}

.image3 {
  position: absolute;
  top: 38%;
  left: 47%;
}

.image4 {
  position: absolute;
  top: 74%;
  left: 21%;
}

.linkholder {
	width: 100%;
}
  
  /*RESPONSIVE LANDING PAGE*/
  
  @media screen and (max-width: 600px) {
	  .landingContainer {
		  width: 100%;
		  overflow: hidden;
	  }
	  .image1 {
		  width: 210%;
	  }
	  .image2 {
		  width: 70%;
		  top: 3%;
		  left: 28%;
		}

		.image3 {
		  width: 90%;
		  top: 38%;
		  left: 0%;
		}

		.image4 {
		  width: 70%;
		  top: 73%;
		  left: 25%;
		}
  }
