.home {
	background-color: #333;
	display: flex;
	flex-direction: row;
	padding: 0;
}

@media only screen and (max-width: 600px) {
	.home {
		flex-direction: column;
	}
}

.home__photo {
	width: 45%;
	text-align: right;
	background-image: url(../images/background_office.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

@media only screen and (max-width: 600px) {
	.home__photo {
		width: 100%;
		height: 60vh;
	}
}

.home__photo-overlay {
	display: flex;
	align-items: flex-end;
	justify-content: right;
	background-color: rgba(0, 0, 0, 0.45);
	position: absolute;
	left: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.home__photo-img {
	max-width: 100%;
	max-height: 554px;
}

@media only screen and (max-width: 600px) {
	.home__photo-img {
		max-height: 100%;
	}
}

.home__info {
	width: 55%;
	background-image: url(../images/background.jpg);
	background-size: cover;
}

@media only screen and (max-width: 600px) {
	.home__info {
		width: 100%;
	}
}

.home__info-overlay {
	padding: 140px;
	/* background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 0.95)
	); */
	background-color: rgba(0, 0, 0, 0.75);
}

@media only screen and (max-width: 600px) {
	.home__info-overlay {
		padding: 60px 16px;
	}
}

.home__info-title {
	color: #fff;
	margin-bottom: 25px;
}

.home__info-phone {
	margin-bottom: 25px;
}

.home__info-phone-link {
	font-size: 32px;
	color: #dca44d;
	font-weight: bold;
}

@media only screen and (max-width: 600px) {
	.home__info-phone-link {
		font-size: 24px;
	}

	.home__info-description-text {
		font-size: 22px;
	}
}

.home__info-email {
	margin-bottom: 25px;
}

.home__info-email-link {
	font-size: 24px;
	color: #dca44d;
}

.home__info-description {
	margin-bottom: 35px;
}

.home__info-description-text {
	color: #fff;
}

.navbar-content {
	display: flex;
	align-items: center;
}

.language-switcher {
	list-style: none;
	display: flex;
	margin-bottom: 0;
	border-left: 2px solid #ededed;
	padding-left: 15px;
}

.language-switcher li {
	margin-right: 10px;
	font-size: 10px;
}

.language-switcher li:last-child {
	margin-right: 0;
}

.current-language {
	font-weight: bold;
}
