@media (orientation: landscape) {
	#uslugiContainer {
		min-height: 100vh;
	}
	#uslugiBackgroundImage {
		height: 100vh;
	}
	.uslugiInfoBoxTextContainer {
		min-width: 40em;
	}
}
@media (orientation: portrait) {
	#uslugiContainer {
		min-height: 60em;
	}
	#uslugiBackgroundImage {
		height: 60em;
	}
	.uslugiInfoBoxTextContainer {
		min-width: 20em;
	}
}
#uslugiBackgroundImage {
	object-fit: cover;
	opacity: 0.0;
	position: absolute;
		left: 75px;
	width: 100vw;
	z-index: -1;
}
.uslugiBackgroundImageLoaded {
	animation-name: uslugiBackgroundImageFadeIn;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
#uslugiMainContainer {
	margin-left: 2.5vw;
}
#uslugiDividerContainer {
	position: relative;
	z-index: 1;
}
#uslugiDividerText {
	text-align: center;
}
#uslugiContactBox {
	background-color: #496A81;
	border-radius: 0em 0em 0em 2em;
	box-shadow: 0px 0px 5px 0px #253541;
	color: white;
	float: right;
	height: fit-content;
	margin-bottom: 4em;
	width: fit-content;
	padding: 0.25em 2em;
	position: sticky;
		top: -1px;
	text-align: center;
}
.uslugiFillLinkWhite {
	box-shadow: inset 0em 0em 0em white;
	color: white;
	font-weight: bold;
	padding: 0.2em 0.2em;
	text-decoration: none;
	transition: all 0.1s;
}
.uslugiFillLinkWhite:hover {
	box-shadow: inset 0em -1.5em 0em white;
	color: #496A81;
	transition: all 0.1s;
}
.uslugiInfoBox {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 2em;
}
.uslugiInfoBoxTextContainer {
	flex: 3;
	font-size: 0.8em;
	margin-right: 5px;
}
.uslugiInfoBoxPhotoContainer {
	flex: 2;
	margin-left: 5px;
	min-width: 25%;
	max-height: 40em;
}
.uslugiInfoBoxPhoto {
	border-radius: 10px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

@keyframes uslugiBackgroundImageFadeIn {
	0% {
		opacity: 0.0;
		left: 75px;
	}
	100% {
		opacity: 1.0;
		left: 0px;
	}
}