.uvod1-body {
	padding: 1vw;
	background-color: white;
	color: black;
	margin-top: 2vw;
    font-size: clamp(1.2rem, 1.6vw, 30px);
	box-sizing: border-box;
}

.uvod1-flex-container {
	display: flex;
	width: 100%;
	box-sizing: border-box;
	gap: 1vw;
	align-items: center;
	flex-wrap: nowrap;
}

.uvod1-left-column,
.uvod1-right-column {
	box-sizing: border-box;
	flex: 0 0 49%;
}

.uvod1-left-column {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 1vw;
}

.uvod1-left-column h2 {
	/* font-size: calc(0.6rem + 2.2vw); */
	line-height: 1.4;
	margin: 0;
}

.uvod1-left-column p {
	/* font-size: calc(0.6rem + 0.7vw); */
	/* color: black; */
	line-height: 1.2;
}

/*****************************************************************************/
.uvod1-right-column {
	padding: 1vw 4vw;
}

.uvod1-right-img-wrapper {
	width: 100%;
	aspect-ratio: 5 / 4;
	overflow: hidden;
}

.uvod1-right-img-wrapper img {
	width: 100%;
	object-fit: contain;
	display: block;
}

/*****************************************************************************/
.uvod1-contact-button-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	/* justify-content: space-between; */
	padding-inline: 2vw 6vw;
	width: 100%;
	box-sizing: border-box;
	margin-top: 2rem;
}

.uvod1-contact-button {
	color: white;
	border: none;
	padding: 1vw 2vw;
	border-radius: 9999px;
	font-size: calc(0.8rem + 0.8vw);
	cursor: pointer;
	font-family: inherit;

	background-color: #2A4184;
	background-image: linear-gradient(to right, #1b2c5a, #2A4184 50%, #5a6bb0);
	transition: background-color 0.3s, color 0.3s, border 0.3s;
}

.uvod1-contact-button:hover {
	background-image: none;
	background-color: #0A1A50;
}

/************************************************************************************************/
@media (max-width: 768px) {
	.uvod1-flex-container {
		flex-direction: column;
		gap: 1rem;
	}

	/* .uvod1-right-img-wrapper {
		aspect-ratio: 4 / 3;
	}
 */
	.uvod1-right-img-wrapper img {
		object-fit: cover;
	}

	.uvod1-left-column,
	.uvod1-right-column {
		flex: 0 0 100%;
		padding: 1rem;
		aspect-ratio: auto;
	}

	/* .uvod1-left-column h2 {
		font-size: 2.2rem;
	} */

	.uvod1-left-column p {
		font-size: 1.2rem;
	}

	.uvod1-right-column {
		padding: 0;
		height: auto;
	}

	.uvod1-contact-button {
		font-size: calc(0.8rem + 1.3vw);
	}
}

@media (max-width: 480px) {
	body {
		padding: 0.5rem;
	}

	.uvod1-left-column {
		padding: 1rem;
	}

	/* .uvod1-left-column h2 {
		font-size: 1.8rem;
	}

	.uvod1-left-column p {
		font-size: 0.9rem;
	} */
}