* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-size: 24px;
	font-family: sans-serif;
	font-family: Halcom, sans-serif;
}
h1 {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 30px;
	color: #fff;
}

.container {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: space-between;
}

.logo {
	position: absolute;
	display: flex;
	justify-content: center;
	width: 100vw;
	padding-left: 15px;
}

.logo img {
	max-width: 348px;
	width: 100vw;
	margin-top: 25px;
}

.map-text-box {
	width: 49.5vw;
	height: 100vh;
}

.map-text-box img {
  width: 49.5vw;
  height: 100vh;
  object-fit: cover;
  /* object-position: -200px; */
}

.orange-bg-box {
	position: absolute;
	bottom: 0;
	background-color: #F37B00;
	height: 200px;
	width: 49.5vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.orange-bg-box img{
	width: 30px;
	height: auto;
	margin-bottom: 10px;
	object-position: 0;
}
.orange-bg-box h1{
	margin-bottom: 45px;
}

.info-link {
	font-weight: 600;
	position: absolute;
	z-index: 3;
	bottom: 10px;
	color: #fff;
	background-color: #F37B00;
	text-decoration: none;
	width: 45px;
	height: 45px;
	border-radius: 100%;
	display: flex;
	border: 1px solid #fff;
	align-items: center;
	justify-content: center;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.info-link.bz {
	left: 25%;
}
.info-link.m {
	left: 75%;
}
.info-link:hover {
	color: #F37B00;
	background-color: #fff;
	border-color: #fff;
}

@media (min-width: 1440px) {

	.map-text-box img {
	  object-position: 0;
	}
}