.o_mne {
	width: 100%;
	display: flex;
	box-sizing: border-box;
	background-color: white;
}

.o_mne_box {
	max-width: 1440px;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding-top: 50px;
	margin-right: auto;
	margin-left: auto;
}

.o_mne_img_box {
	width: 50%;
	min-height: 600px;
	position: relative;
	overflow: hidden;
}

.o_mne_img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.o_mne_box_text {
	width: 50%;
	display: flex;
	flex-direction: column;
	padding: 50px;
	box-sizing: border-box;
}

.o_mne_text h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-family: "Saira", sans-serif;
	text-transform: uppercase;
	color: #292929;
}

.o_mne_text p {
	font-size: 1.0rem;
	line-height: 1.6;
	font-family: "Saira", sans-serif;
	color: #292929;
	padding-bottom: 15px;
}

/* Responzivita pre menšie obrazovky */
@media (max-width: 768px) {
  .o_mne_box {
    flex-direction: column;
  }

  .o_mne_img_box,
  .o_mne_box_text {
    width: 100%;
  }

  .o_mne_img_box {
    height: auto;
    min-height: 500px;
  }
}
