#main_img_block {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;

	background-image: url('../img/Main.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;

	margin-bottom: 60px;

	display: flex;
	flex-direction: column;
	justify-content: center;
}
#main_img_text {
	margin-left: 15%;
	color: #fff;
	font-size: 2em;
	text-transform: uppercase;
}
#main_img_text p {
	margin: 5px 0;
}
.main_img_svg {
	width: 51%;
	position: absolute;
	bottom: 0;
}
.main_img_svg#left_trng {
	left: 0;
}
.main_img_svg#right_trng {
	right: 0;
}
#arrow_block {
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translate(-50%, 0);
	animation-name: arrowAnim;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
	cursor: pointer;
}
#main_img_block::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	width: 60px;
	height: 5px;
	background-color: #000;
	opacity: .1;
	border-radius: 50%;
	animation-name: arrowShadowAnim;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
}

@keyframes arrowShadowAnim {
	from {
		width: 60px;
		opacity: .1;
	}
	to {
		width: 30px;
		opacity: .2;
	}
}

@keyframes arrowAnim {
	from {
		transform: translate(-50%, 0);
	}
	to {
		transform: translate(-50%, 10px);
	}
}


.main_info_title {
	font-size: 40px;
	font-family: Cormorant Garamond, serif;
	font-weight: 700;
	margin-bottom: 20px;
	margin-top: 0;
}

.main_info {
	font-size: 24px;
	font-weight: 300;
}
#niye_inharta .main_info {
	margin-left: 0;
}
#main_info_flex {
	display: flex;
	flex-wrap: wrap;
}
.info_flex_point_emoji {
	margin-top: 30px;
	margin-bottom: 10px;
}
.info_flex_point {
	padding: 5px;
	width: 150px;
	height: 200px;
	border-radius: 13%;
	color: #000;
	border: 2px solid #ededed;
	margin: 20px 10px 20px 0;
	transition: transform 0.2s linear;


	&:hover {
		transform: translateY(-2px);
	}
}

#niye_inharta_parent {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;

}

#harda {
	margin-bottom: 40px;
}
#map_block {
	position: relative;
	width: 100%;
	padding-top: 40%;
}
#map {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
}

#rezerv .inst_link_img {
	margin-right: 5px;
	width: 20px;
}
.inst_link span, .wtsp_link span {
	display: inline-block;
	transition: transform 0.1s linear;
	&::after {
		content: "";
		display: block;
		background-color: #f1e7d4;
		width: 0;
		height: 3px;
		margin: -3px auto 0;
		transition: transform 0.1s linear,
					width 0.1s linear
					;

	}
	&:hover {
		transform: translateY(-3px);
		/*box-shadow: ;*/

		&::after {
			transform: translateY(3px);
			width: 100%;
		}
	}
}


@media (max-width: 750px) {
	#main_img_text {
		font-size: 1.5em;
		margin-left: 20px;
	}
}

@media (max-width: 1050px) {
	#niye_inharta_parent {
		flex-direction: column;
		align-items: flex-start !important;
	}
}