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

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

body {
	font-family: 'Lato', sans-serif;
	line-height: 1.4;
	background-color: rgba(60, 60, 60, 1)
}



/* Header logo */
.header-container {
	display: flex;
	height: 50px;
	width: 100%;
	justify-content: flex-start;
	align-content: center;
}
.header-container img {
	height: 50px;
	width: 50px;
	padding: 10px;
	cursor: pointer;
}
.header-container p {
	font-size: 18px;
	font-weight: 100;
	align-self: center;
	color: white;
}


/* Address */
.address {
	font-size: 22px;
	font-weight: 100;
	text-align: center;
	padding-bottom: 5px;
	color: white;
}


/* Video */
.video-container {
	display: flex;
	justify-content: center;
}
.video-container-inner {
    max-width: 1920px;
}
.video-container-inner video {
    width: 100%;
    object-fit: contain;
}


/* Virtual tour */
.virtual-tour {
	display: flex;
	justify-content: center;
	height: 720px;
	max-width: 1000px;
	margin: auto;
	padding-top: 10px;
}
.ku-embed {
    width: 100%;
    height: 100%;
}


/* Moblie phone mode */
@media (min-width: 200px) and (max-width: 500px) {
	.address {
		font-size: 16px;
	}
	
	.virtual-tour {
		height: 600px;
	}
}


