:root {
	--white: #fff;
	--dark-grey: #575757;	
	--black: #000;
	--blue: #005aa6;
	--dark-blue: #004986;
	--very-dark-blue: #003867;
	--orange: #ff3f0c;
	--dark-orange: #cb2a00;
	--text-gray: #808080;
	--blue-mwe: #0371eb;
	--border-color: #ccc;	
	--light-blue: #94d2e1;
	--light-gray: #f5f5f5;
}

body {
	background: var(--white);	
	font-family: 'Jost', sans-serif;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

header {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background-color: transparent;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 100;
	transition: all 0.3s;
}

header.scrolled {
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: rgba(255,255,255,0.95);
}

header .logo img {
	height: 60px;	
	transition: all 0.3s;
}

header.scrolled .logo img {
	height: 40px;	
}

.dropdown-menu {
	border: 0;
	box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

section {
	flex-grow: 1;
}

h1 {
	font-weight: 800;
}

footer {
	background: var(--light-gray);
	padding-top: 4rem;
}

footer strong {
	color: var(--very-dark-blue);
	font-weight: 700;
}

footer .logo {
	margin-bottom: 1rem;
}

footer a {
	color: var(--very-dark-blue);
	text-decoration: none;
}

footer .copy {
	padding-top: 2rem;
	padding-bottom: 3rem;
	margin-top: 4rem;
	border-top: 1px solid var(--text-gray);
}

.ul-custom {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ul-custom li {
	background: url(../img/li.svg) no-repeat left 6px;
	padding-left: 1.25rem;
}

.section-dark-blue .ul-custom li {
	color: rgba(255,255,255,0.7);
}

.section-dark-blue strong {
	color: var(--white);
}

.main-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.main-nav .navbar-nav {
	display: flex;
	flex-direction: row;
	background-color: rgba(255,255,255,0.65);
	position: relative;
}

.main-nav .navbar-nav::before {
	content: "";
	display: block;
	position: absolute;	
	right: 100%;
	top: 0;
	width: 0;
	height: 0;
	border: 24px solid transparent;
	border-right-color: rgba(255,255,255,0.65);
	border-bottom-color: rgba(255,255,255,0.65);
}

.main-nav .nav-link {
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.8125rem;
  	padding-bottom: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 15px;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
	color: var(--dark-blue);
}

.main-nav .nav-link.nav-link-phone {
	background-color: var(--blue);
	color: var(--white);
	text-transform: none;
}

.main-nav .nav-link.nav-link-phone:hover,
.main-nav .nav-link.nav-link-phone:focus {
	background-color: var(--dark-blue);
	color: var(--white);
}

.main-nav .nav-link.active {
	color: var(--blue);
	font-weight: 600;
}


.section-main {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.section-main h1 {
	color: var(--blue);
	font-size: 3rem;
}

.bars-link {
	background: var(--blue);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 68px;
	width: 68px;
	margin-left: 12px;
}

.bars-link:hover,
.bars-link:focus {
	background: var(--orange);
}

.nav-link-search img,
.bars-link img {
	width: 18px;
}

.section-center {
	text-align: center;	
	padding-top: 7rem;
	padding-bottom: 7rem;
}

.section-center h2 {
	font-weight: 800;
	color: var(--blue);
	font-size: 2.25rem;
}

.section-center h3 {
	color: var(--dark-blue);
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: 2rem;
}

.section-center p {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem;
	color: var(--dark-grey);
}

.logos {
	display: flex;
	justify-content: space-around;
	max-width: 860px;
	margin: auto;
	flex-wrap: wrap;
	align-items: center;
}

.logos img {
	width: 120px;
	height: 100px;
	-o-object-fit: contain;
	object-fit: contain;
}

.logos .fuji {
	height: 30px;
}

.section-three {
	margin-top: -3rem;
	position: relative;
}

.section-after-intro {
	padding-top: 4rem;;
	padding-bottom: 4rem;
}

.section-three-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 2rem;
}

.section-three-container > div {
	width: 32%;
	background: var(--light-gray);
	padding: 2rem 4rem;
	position: relative;
}

.section-three-container > div::before {
	content: "";
	position: absolute;
	left: 2rem;
	top: -2rem;
	width: 4rem;
	height: 4rem;
	background-image: url(../img/logo-s.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.section-three-container h3 {
	font-size: 1.125rem;
	color: var(--dark-blue);
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.section-three-container p {
	font-size: 16px;
	margin-bottom: 0;
}

.section-three-container img {
	margin-right: 1.5rem;
	max-width: 60px;
	max-height: 70px;
	flex-grow: 0;
	flex-shrink: 0;	
}

.section-intro {
	height: calc(100vh - 100px);
	max-height: 860px;
	position: relative;
	background-image: url(../img/bg-kostky.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position:  center bottom;
	position: relative;
}

.section-intro-page {
	height: 360px;
}

.section-intro-vacutainer {
	background-image: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%), url(../img/bg-vacutainer-barricor.jpg);
}

.section-neutral {
	background-image: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%), url(../img/bg-neutral.jpg);
}

.section-intro-page::before {
	background-image: url(../img/bg-intro2.svg);
}

.produkty-odbery {
	background-image: url(../img/bg-produkty-odbery.jpg);
}

.produkty-odbery::before {
	background-image: url(../img/bg-intro2.svg);
}

.znacky-3m {
	background-image: linear-gradient(to right, rgba(255,255,255,0.9),rgba(255,255,255,0.1)), url(../img/bg-hugger.jpg);
	height: calc(100vh - 100px);
	max-height: 860px;
	background-size: auto 100%;
	background-position: right center;
}

.znacky-bd {
	background-image: linear-gradient(to right, rgba(255,255,255,0.9),rgba(255,255,255,0.1)), url(../img/bg-bd.jpg);
	height: calc(100vh - 100px);
	max-height: 860px;
}

.znacky-mwe {
	background-image: linear-gradient(to bottom, rgba(255,255,255,0.8),rgba(255,255,255,0.1)), url(../img/bg-mwe.jpg);
	height: calc(100vh - 100px);
	max-height: 860px;
}

.znacky-immy {
	background-image: linear-gradient(to right, rgba(255,255,255,0.8),rgba(255,255,255,0.1)), url(../img/bg-immy.jpg);
	height: calc(100vh - 100px);
	max-height: 860px;
}

.section-intro .texts {
	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 4rem;
}

.section-intro-page .texts {
  bottom: 3rem;
}

.section-intro-page.o-nas .texts {
  bottom: 0;
}

.section-intro-page .texts img {
	width: 25rem;
	height: 7rem;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: 0 50%;
	object-position: 0 50%;
}

.section-intro-page .texts p {
	max-width: 41%;
}

.section-intro h1 {
	color: var(--blue);
	font-size: 2.5rem;
	font-weight: 700;
}

.produkty-odbery h1 {
	max-width: 600px;
}

.section-intro h2 {
	font-weight: 600;
	color: var(--dark-blue);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.btn-orange {
	background-color: var(--orange);
	color: var(--white);
	font-weight: 600;
	letter-spacing: 0.5px;
	border-color: transparent;
}

.btn-orange:hover,
.btn-orange:focus {
	background: var(--dark-orange);
	color: var(--white);
}

.section-intro .btn,
.section-product .btn,
.section-product-blue .btn {
	padding-left: 1.75rem;
	padding-right: 1.75rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.section-product {
	padding-top: 5rem;
	padding-bottom: 7rem;
}

.section-product h2 {
	font-weight: 800;
	color: var(--blue);
	font-size: 2.25rem;
	margin-bottom: 1rem;
}

.section-product p {
	font-size: 1.25rem;
	color: var(--very-dark-blue);
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.section-product-blue {
	background-color: var(--blue);
	height: 500px;
	display: flex;
	align-items: center;	
	position: relative;
}

@media (min-width: 1680px) {
	.section-product-blue {
		height: 600px;
	}
}

.section-product-blue::after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60%;
	background-image: url(../img/bg-doctors.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left center;
}

.section-product-blue-2::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 60%;
	background-image: url(../img/bg-mwe.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center;
}

@media(min-width: 1680px) {
	.section-product-blue-2::after {
		width: 55%;
	}
}

/*.section-product-blue::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background-image: url(../img/bg-blue.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right top;
	z-index: 10;
}*/

.section-product-blue .container {
	z-index: 20;
}
.section-product-blue .row {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.section-product-blue h2 {
	font-weight: 800;
	color: var(--white);
	font-size: 2.25rem;
	margin-bottom: 1rem;
}

.section-product-blue h2 {
	display: flex;
	align-items: center;
}

.section-product-blue h2 img {
	width: 90px;
	margin-right: 1rem;
}

.section-product-blue p {
	font-size: 1.25rem;
	color: rgba(255,255,255,0.8);
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.main-page {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.main-page p a {
	color: var(--blue);
	text-decoration: none;
}

.main-page p a:hover {
	color: var(--dark-blue);
	text-decoration: underline;
}

.section-intro-page .breadcrumb-item a {
	color: var(--blue);
	text-decoration: none;
	display: flex;
	align-items: center;
}

.section-intro-page .breadcrumb-item a img {
	width: 1rem;
	margin-right: 0.5rem;
	height: 1rem;
}

.section-intro-page .breadcrumb-item + .breadcrumb-item::before {
	color: var(--blue);
	opacity: 0.3;
}

.section-intro-page .breadcrumb-item a:hover,
.section-intro-page .breadcrumb-item.active {
	color: var(--dark-blue);
}

.section-intro-produkt {
	padding-top: 10rem;
	padding-bottom: 0;
	border-bottom: 1px solid #ddd;
	height: auto;
}

.section-intro-produkt h1 {
	color: var(--blue);
}

.section-intro-produkt h2 {
	color: var(--dark-blue);
	font-size: 1rem;
}

.produkty-list a:not(.btn) {
	text-align: center;
	display: block;
	color: var(--blue);
	text-decoration: none;
	padding: 0 1rem;
}

.produkty-list a:not(.btn):hover,
.produkty-list a:not(.btn):focus {
	color: var(--dark-blue);
}

.produkty-list a:not(.btn) img {
	transition: all 0.3s;
	height: 250px;
	-o-object-fit: contain;
	object-fit: contain;
    margin: 0 auto 1rem auto;
	max-width: 200px;
}

.produkty-list a:not(.btn) strong {
	position: relative;
}

.produkty-list a:not(.btn):hover img {
	transform: scale(1.1);	
}

.produkty-list > div {
	border-right: 1px solid rgba(0,0,0,0.1);
}

.produkty-list > div:last-child {
	border-right: 0;
}

.btn-primary {
    border-color:  var(--blue);
    background-color: var(--blue);
	padding-left: 1rem;
	padding-right: 1rem;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--dark-blue);
    border-color:  var(--dark-blue);
}

.btn-outline-primary,
.btn-outline-primary:active {
    color: var(--blue);
    border-color:  var(--blue);
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--blue);
    border-color:  var(--blue);
    color: var(--white);
}

.icon-mwe {
	width: 100px;
	max-width: 100%;
	height: auto;
	margin-bottom: 1rem;
}

.h2-bold {
	font-weight: 600;
	color: var(--blue);
}

.section-produkty {
	padding-top: 4rem;
	padding-bottom: 4rem;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.section-produkty:last-child {
	border-bottom: 0;
}

.section-intro .intro-h1 {
	font-size:1.75rem;
	color:var(--blue);
	font-weight: 600;
}

.h2-produkt {
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark-blue);
	margin-bottom: 1.5rem;
}

.section-produkty h3 {
	font-weight: 600;
	font-size: 1.5rem;
	color: var(--very-dark-blue);
}

.soc-nav {
	position: fixed;
	right: 0;
	top: 50%;
	background-color: var(--blue);
	margin-top: -5rem;
}

.soc-nav a {
	display: block;
	padding: 0.75rem;
}

.soc-nav svg {
	width: 1.5rem;
	fill: var(--white);
}

.soc-nav a:hover {
	background-color: rgba(255,255,255,0.1);
}

.kategorie-3m {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.kategorie-3m a {
	display: inline-block;
	padding: 2rem;
	margin-bottom: 1rem;
	width: 18%;
	height: auto;
	margin-right: 1rem;
	text-decoration: none;
	color: var(--blue);
	text-align: center;
	font-weight: 600;
}

.kategorie-3m a:hover {
	border-color: var(--dark-grey);
	box-shadow: 0 0 16px rgba(0,0,0,0.1);
}

.kategorie-3m a img {
	margin-top: 1rem;
	max-width: 100px;
	max-height: 100px;
	-o-object-fit: contain;
	object-fit: contain;
	margin-left: auto;
	margin-right: auto;
}

.section-one-container {
	background-color: var(--white);
	padding: 2rem;
	width: 50%;
	margin-left: 50%;
}

.section-intro-page .texts .section-one-container p {
	max-width: none;
	margin-bottom: 0;
	font-size: 1.125rem;
}

.section-white-image {
	height: 500px;
	display: flex;
	align-items: center;	
	position: relative;
	margin-top: 5rem;
	margin-bottom: 5rem;
}

.section-white-image::after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	background-image: url(../img/bg-doctors.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left center;
}

.section-white-image strong {
	color: var(--very-dark-blue);
}

.section-light-blue {
	padding-top: 4rem;
	padding-bottom: 4rem;
	background-color: var(--light-blue);
}

.section-light-blue h2 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--dark-blue);
}

.section-dark-blue {
	padding-top: 4rem;
	padding-bottom: 4rem;
	background-color: var(--dark-blue);
}

.section-dark-blue h2 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--white);	
}

@media(min-width: 1680px) {
	.section-white-image {
		height: 700px;		
	}
	.section-white-image p {
		font-size: 1.125rem;
	}
}

.section-white-image2::after {
	background-image: url(../img/bg-logistika.jpg);
}

.section-white-image3 {
	height: 500px;
	display: flex;
	align-items: center;	
	position: relative;
	margin-top: 5rem;
	margin-bottom: 5rem;
}

.section-white-image3::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	background-image: url(../img/bg-skoleni.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left center;
}

.section-white-image3 h2,
.section-white-image h2 {
	color: var(--blue);
	font-weight: 700;
}

.section-dark-blue p {
	color: var(--light-blue);
}

.circle {
	color: var(--white);
	text-align: center;
	width: 33%;
	margin-bottom: 2rem;
	font-size: 1.25rem;
}

.circle span {
	display: block;
	font-size: 2.75rem;
	background-image: url(../img/circle.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	width: 15rem;
	height: 15rem;
	line-height: 15rem;
	margin: auto;
	margin-bottom: 1rem;
}

.div-last {
	display: none;
}

@media(max-width: 1399.98px) {
	.section-intro h1 {
		font-size: 3rem;
	}
	.section-intro h2 {
		font-size: 1.3125rem;
	}
	.section-three-container img {
		margin-right: 1rem;
		width: 45px;
  		height: 45px;
		max-width: none;
		max-height: none;
	}
	.section-three-container h3 {
		font-size: 1rem;
	}
	.section-three-container p {
		font-size: 0.9rem;
	}
}

.section-white-image p,
.section-white-image3 p {
	text-align: justify;
}

.section-intro-3m {
	padding-top: 4rem;
	padding-bottom: 4rem;
	background-color: var(--light-gray);
	position: relative;
	min-height: 450px;
	display: flex;
	align-items: center;
}

.section-intro-3m::after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	background-image: url(../img/bg-intro-3m.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.section-intro-3m.fixace::after {
	background-image: url(../img/fixace.jpg);
}

.section-intro-cevni {
	padding-top: 4rem;
	padding-bottom: 4rem;
	position: relative;
	background-color: var(--light-gray);
	min-height: 450px;
	display: flex;
	align-items: center;
}

.section-intro-cevni::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	background-image: url(../img/cevni-vstupy.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.section-intro-mwe::after {
	background-image: url(../img/bg-intro-mwe.jpg);
}

.section-intro-3m.barricor::after {
	background-image: url(../img/vacutainer-barricor.jpg);
	background-position: left center;
}

.section-intro-3m h2,
.section-intro-cevni h2 {
	color: var(--dark-blue);
	font-weight: 700;
}

.m-to-solventum {
	display: flex;
	flex-direction: column;
}

.section-loga .m-to-solventum {
	align-items: center;
}

.logo-3m,
.section-intro .m-to-solventum .logo-3m {
	width: 150px;
}

.logo-solventum,
.section-intro .m-to-solventum .logo-solventum {
	width: 300px;
}

.section-loga .logo-3m {
	width: 100px;
}

.section-loga .logo-solventum {
	width: 220px;
}

.m-to-solventum span {
	font-weight: 600;
	font-size: 1.125rem;
	margin-top: 4px;
	margin-bottom: 4px;
}

.section-loga h2 {
	font-weight: 700;
}

.section-loga h3 {
	font-weight: 600;
	color: inherit;
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.section-dotaz {
	margin-top: 3rem;
	margin-bottom: 3rem;
	position: relative;
	display: flex;
	justify-content: center;
}

.section-dotaz::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
	width: 12rem;
	height: 6rem;
	margin-top: -3rem;
	margin-left: -6rem;
	background-image: url(../img/logo-s.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	z-index: 2;
}

.section-dotaz img {
	width: 400px;
	height: 600px;
	-o-object-fit: cover;
	object-fit: cover;
	flex-shrink: 0;
}

.section-dotaz div {
	width: 400px;
	height: 600px;
	flex-shrink: 0;
	background-color: var(--light-gray);
	padding: 2.5rem 3rem 3rem;
}

.section-dotaz h2 {
	color: var(--dark-blue);
}

.h-icon svg {
	width: 1.5rem;
	height: 1.5rem;
	margin-right: 0.5rem;
}

.section-normal {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.section-normal h2 {
	color: var(--dark-blue);
	font-weight: 600;
}

.dop-80 {
	background-color: var(--blue);
	color: var(--white);
	padding: 1.5rem;
}

.dop-80 span {
	display: block;
	font-size: 3rem;
	font-weight: 700;
}

.dop-item {
	display: flex;	
	align-items: center;
}

.dop-item span {
	font-size: 2.5rem;
	margin-right: 1rem;
}

@media (max-width: 767px) {
	.section-intro h1 {
		font-size: 1.75rem;		
	}
	.section-intro h1 br {
		display: none;
	}
	.section-intro {
		max-height: 600px;
	}
	header .logo img {
		height: 40px;
	}
	header.scrolled .logo img {
		height: 30px;		
	}
	header.scrolled {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}
	.main-nav .navbar-nav {
		display: none;
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		background-color: #fff;
		padding: 2rem;
	}
	.mobile-toggle {
        background: var(--dark-blue);
        display: inline-block;
        padding: 0.25rem;
    }
	.close-menu {
		display: none;
		background: var(--dark-blue);
        padding: 0.25rem;
	}
    .mobile-toggle svg,
	.close-menu svg {
        width: 1.75rem;
        fill: var(--white);
    }
	.close-menu {
		z-index: 120;
		position: fixed;
		right: 1rem;
		top: 2.25rem;
	}
	.main-nav .nav-link.nav-link-phone {
		display: none;
	}
	.section-three-container {
		flex-direction: column;
	}
	.section-three-container > div {
		width: 100%;
		margin-bottom: 2rem;
	}
	.section-after-intro {
		padding-top: 3rem;
		padding-bottom: 2rem;
	}
	.footer-logo {
		width: 200px;
		margin-bottom: 1rem;
	}
	footer .copy {
		margin-top: 2rem;
	}
	.section-dotaz {
		flex-direction: column;
		align-items: center;
	}

	.section-dotaz img {
		width: 80%;
	}
	.section-dotaz div {
		width: 80%;
		height: auto;
  		padding-top: 5rem;
	}
	.section-dotaz::before {
		width: 10rem;
		margin-left: -5rem;
	}
	.section-loga {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
	.section-loga h2 {
		font-size: 1.75rem;
	}
	.section-intro-3m,
	.section-intro-cevni,
	.section-white-image,
	.section-white-image3 {
		padding-bottom: 332px;
		padding-top: 2rem;
	}
	.section-intro-3m::after,
	.section-intro-cevni::after,
	.section-white-image::after,
	.section-white-image3::after {
		width: 100%;
		height: 300px;
		left: 0;
		top: auto;
		bottom: 0;
	}
	.section-intro .btn {
		padding-left: 1rem;
  		padding-right: 1rem;
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}
	.section-intro-page .breadcrumb {
		margin-bottom: 1rem !important;
	}
	.section-intro-page .texts p {
		max-width: none;
	}
	.section-intro-page .texts {
		bottom: 2rem;
	}
	.kategorie-3m a {
		width: 46%;
	}
	.section-produkty h3 {
		font-size: 1.25rem;
	}
	.circle {
		width: 50%;
		font-size: 0.9rem;
	}
	.circle span {
		width: 9rem;
    	height: 9rem;
    	line-height: 9rem;
    	font-size: 2rem;
	}
}