﻿

.head-menu {
	position: relative;
	width: 100%;
	height: 70px;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 10px 10px 15px;
	box-sizing: border-box;
	box-shadow: 0px 0px 10px 5px rgb(0, 0, 0, 0.1);
	z-index: 10;
}


.head-logo {
	width: 180px;
	padding-top: 7px;
	margin: 0;
}

.bt-menu-contact {
	position: relative;
	background-color: #533184;
	color: #fff!important;
	z-index: 10
	border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
	padding: 5px 20px;
	font-size: 0.85em!important;
	line-height: 2em;
	transition: .2s;
	display: inline-block;
	border: solid 2px #b39edd;
}

.bt-menu-contact:hover {
	background-color: #b39edd;
}

.nav_logo {
	display: none;
}

@media (max-width:800px){
		
	.nav_logo {
		display: block;
		width: 100%;
		text-align: center;
		padding-top: 50px;
	}
	
	.nav_logo img {
		width: 120px;
	}
	
}

@media (max-width:600px){
	
	.head-logo {
		width: 180px;
		padding-top: 5px;
	}
}

.top-box {
	position: relative;
	display: block;
	width: 100%;
	height: 500px;
	background-image:url("../images/mainvisual.jpg");
	background-repeat: no-repeat;
	background-size:cover;
	background-position: top 20% center;
}

.top-screen {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(38,23,68,0.3);
}


@media (max-width:600px){
	
	.top-box,
	.top-screen {
		height: calc(100vh - 150px);
		height:-webkit-calc(100vh - 150px);
	}
	
	.top-box {
		background-size:cover;
		background-position: center bottom;
	}

}


.top-about-room {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(38,23,68,0.6);
	padding: 30px;
	box-sizing: border-box;
}

.top-about-block {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1000px;
	margin: auto;
	z-index: 2;
}

.top-about-logo {
	width: 25%;
}

.top-about-txt {
	width: 65%;
	color: #fff;
	text-align: left;
	letter-spacing: 0.05em;
}

.top-about-txt p {
	font-weight: 500;
	font-size: 1.05em;
	margin-bottom: 0.5em;
}

@media (max-width:600px){
	
	.top-about-room {
		padding: 20px 10px 10px 15px;
	}
	
	.top-about-block {
		display: block;
	}
	
	.top-about-logo {
		width: 100%;
		margin-bottom: 1em;
	}
	
	.top-about-logo img {
		width: 45%;
	}
	
	.top-about-txt {
		width: 100%;
		line-height: 1.6em;
	}
	
	.top-about-txt p {
		text-align: center;
	}

	
}






