@charset "UTF-8";
/* CSS Document */

/* CSS for local story */
/* text and photo above map */
#mainContent {
    padding: 1%;
    background-color: #2957A6;
}
#mainContent h1 {
	color: white;
	font-weight: bold;
}
#mainContent .text{
	color: white;
	font-size: 1.5vw;
}

#mainContent .row {
    margin: 40px auto;
}

/* placeholder image above map */
#divider{
}

#divider img {
    width: 100%;
    display: block;
}

#scroll {
	width: 90%;
	margin-top: 50px;
	text-align: center;
	color: white;
	font-size: 20px;
    padding-top: 10px;
	border: solid white 2px;
}

/* interactive map */

#graphic {
	width: 100%;
	text-align: center;
	margin: 50px auto;
	margin-top: 40px;
	margin-bottom: 50px;
	align-content: center;
}
#graphic img {
    width: 100%;
	
}

.btn {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
	border: none;
}
.btn:hover {
    transform: scale(1.15);
}

#btn1 {
	background-image: url("../images/btn1.svg");
    margin-left: 6%;
    margin-top: 20%;
}
#btn2 {
	background-image: url("../images/btn2.svg");
   margin-left: 18%;
    margin-top: 22%;
}
#btn3 {
	background-image: url("../images/btn3.svg");
    margin-left: 21%;
    margin-top: 23%;
}

#btn4 {
	background-image: url("../images/btn4.svg");
    margin-left: 24%;
    margin-top: 25%;
}

.infoBox {
    position: absolute;
    width: 200px;
    height: 90px;
    border: 2px solid black;
    background-color: white;
    border-radius: 5px;
    padding: 10px;
}
#infoBox1 {
    display:none;
   margin-left: 80px;
    margin-top: 150px;
}
#infoBox2 {
    display:none;
     margin-left: 200px;
    margin-top: 170px;
}
#infoBox3 {
    display:none;
    margin-left: 300px;
    margin-top: 180px;
}
#infoBox4 {
    display: none;
      margin-left: 380px;
    margin-top: 250px;
}

.closeBtn {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url("../images/closeBtn.svg");
    right: -15px;
    top: -15px;
}
.closeBtn:hover {
    transform: scale(115%);
}

#categories {
	background-color: white;
}
.category {
	max-width: 1350px;
	margin: 0 auto 40px auto;
	padding: 20px 0 40px 0;
    border-bottom: 1px solid black;
}

.category img:hover{
	opacity:0.5;
}

.category img {
	max-width: 400px;
	width: 100%;
    display: block;
    margin: 0 auto;
}

.category h4 {
	font-weight: bold;
	padding: 20px 20px 20px 0;
	color: #2957A6;
}

.category p {
    margin: 0 auto;
    padding: 20px 20px 20px 0;
	color: #2957A6;
}


.topBtn {
	display: none;
    position: fixed;
	width: 40px;
	height: 40px;
	margin: 0 0 0 0;
    z-index: 400;
}

.topBtn:hover {
	opacity: 0.5;
}



@media only screen and (max-width: 855px) {
	#mainContent h1 {
		font-size: 3vw;
		margin-left: 10%;
	}
	#mainContent .text {
		font-size: 2vw;
		margin-left: 10%;
	}
	#scroll {
		font-size: 1.8vw;
		margin-top: 30px;
	}
}

    
@media only screen and (max-width:768px) {
	#btn1 {
		margin-left: 11%;
		margin-top: 38%;
	}
	#btn2 {
		margin-left: 34%;
		margin-top: 45%;
	}
	#btn3 {
		margin-left: 39%;
		margin-top: 46%;
	}
	#btn4 {
		margin-left: 49%;
		margin-top: 50%;
	}
}

