@import url("ModalWindow.css");
@import url("template.css");

body{
	background: #333;
}

.map{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.background_container{
	position: relative;
	height: 100%;
	width: 100%;
}

.background_container .img{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 110%;
  min-height: 110%;
  transform-origin: 50%, 50%;
 }


/*__________item_1, item_2, item_3______________*/
.item_1, .item_2, .item_3{
	position: absolute;
	cursor: pointer;
}

.item_1_core, .item_2_core, .item_3_core{
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transition: .3s; 
}

.item_1_circle, .item_2_circle, .item_3_circle{
	position: absolute;
	border-radius: 50%;
}

.item_1_content, .item_2_content, .item_3_content{
	padding: 10px 25px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	border-radius: 10px 0 10px 0;
	text-align: center;
} 

.upper{
	display: flex;
	height: 70%;
	width: 100%;
	background: white;
}

.upper .text{
	width: 55%;
	padding: 10px;
}

.down{
	height: 30%;
	display: flex;
	padding: 0 10px;
	justify-content: flex-end;
	align-items: center;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	border-top: 2px solid #b77b11;
}


/*_____________________item_1___________________*/
.item_1{
	width: 55px;
	height: 55px;
}

.item_1_core{
	border: 4px solid white;
}

.item_1_circle{	
	width: 20px;
	height: 20px;
	border: 10px solid white;
	top: 50%;
	left: 50%;
	margin: -10px;
}

.item_1_content{
	width: 230px;
	font-size: 25pt;
	margin-left: 28px;
	margin-top: -31px;
}

.item_1_detal_content{
	width: 350px;
	height: 150px;
	margin-left: 50%;
	margin-top: -220%;
	display: none;
}

.item_1_detal_content .upper .content_img{
	width: 45%;
	background: url('../images/fon_4.jpg') center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.item_1:hover .item_1_core{
	margin: 10%;
	width: 80%;
	height: 80%;
	border: 3px solid #b77b11;
	background: #b77b11;
}

.item_1:hover .item_1_content{
	display: none;
}

.item_1:hover .item_1_detal_content{
	display: block;
}

/*_____________________item_2___________________*/
.item_2{
	width: 45px;
	height: 45px;
}

.item_2_core{
	border: 3px solid white;
}

.item_2_circle{
	width: 15px;
	height: 15px;
	border: 7.5px solid white;
	top: 50%;
	left: 50%;
	margin: -7.5px;
}

.item_2_content{
	width: 190px;
	font-size: 20pt;
	margin-left: 22px;
	margin-top: -28px;
}

.item_2_detal_content{
	width: 310px;
	height: 135px;
	margin-left: 50%;
	margin-top: -245%;
	display: none;
}

.item_2_detal_content .upper .content_img{
	width: 45%;
	background: url('../images/3.jpg') center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.item_2:hover .item_2_core{
	margin: 9.95%;
	width: 80%;
	height: 80%;
	border: 2px solid #b77b11;
	background: #b77b11;
}

.item_2:hover .item_2_content{
	display: none;
}

.item_2:hover .item_2_detal_content{
	display: block;
}


/*_____________________item_3___________________*/
.item_3{
	width: 35px;
	height: 35px;
}

.item_3_core{
	border: 2px solid white;
}

.item_3_circle{
	width: 10px;
	height: 10px;
	border: 5px solid white;
	top: 50%;
	left: 50%;
	margin: -5px;
}

.item_3_content{
	width: 170px;
	font-size: 17pt;
	margin-left: 18px;
	margin-top: -28px;
}

.item_3_detal_content{
	width: 290px;
	height: 120px;
	margin-left: 50%;
	margin-top: -290%;
	display: none;
}

.item_3_detal_content .upper .content_img{
	width: 45%;
	background: url('../images/fon_1.jpg') center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.item_3:hover .item_3_core{
	margin: 10%;
	width: 80%;
	height: 80%;
	border: 1px solid #b77b11;
	background: #b77b11;
}

.item_3:hover .item_3_content{
	display: none;
}

.item_3:hover .item_3_detal_content{
	display: block;
}


