


.scrollLine {
	position: absolute;
	top: calc(100% - 8em);
	left: 50%;
	transform: translateX(-50%);
	
	width: 3px;
	height: 10em;
	
	pointer-events: none;
	overflow: hidden;
	z-index: 15;
	
	transition: opacity 0.5s;
}


.scrollLine:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color__orange);
	opacity: 0.4;
}

.scrollLine__indicator {
    display: block;
    width: 5px;
    height: 40%;
    position: absolute;
    top: 0;
    left: -2px;
    z-index: 112;
    border-radius: 3px;
    background: var(--color__orange);
    animation: scroll 6s ease infinite;
	
    transform-origin: 50% 0%;
    transform: translate(0, 0) scale(1, 1);
}


@keyframes scroll {
    0%{
        transform:translate(0, 0) scale(1, 0.5);
        opacity:0
    }
    10%{
        transform:translate(0, 0) scale(1, 0.5);
        opacity:1
    }
    10%{
        transform:translate(0, 0) scale(1, 1);
        opacity:1
    }
    50%{
        transform:translate(0, 0) scale(1, 1);
        opacity:1
    }
    90%{
        transform:translate(0, 333%) scale(1, 1.8);
        opacity:1
    }
    100%{
        transform:translate(0, 333%) scale(1, 1.4);
        opacity:0
    }
}



.btn {
	display: inline-block;
	padding: 0.5em 2em;
    min-width: 12em;
    text-align: center;
    cursor: pointer;
    border-radius: 2px;
    background-color: transparent;
	text-decoration: none;
    /* font-weight: var(--fontSemibold); */
    font-weight: var(--fontRegular);
	box-shadow: none !important;
	font-size: var(--size20);
	
	transition: color 0.4s, background 0.4s;
}

.btn--icon {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
}

.btn--icon .icon {
	width: 1.2em;
}


.btn.btn--orange {
    background-color: var(--color__orange);
	color: #fff;
}

.btn.btn--orange:hover {
    background-color: var(--color__orangeDark);
	color: #fff;
}


.btn.btn--silver {
    background-color: var(--color__silver);
	color: var(--color__text);
}

.btn.btn--btn--orange:hover {
    background-color: var(--color__silver);
	color: var(--color__text);
}

.btn.btn--gray {
    background-color: var(--color__gray);
	color: #fff;
}

.btn.btn--gray:hover {
    background-color: var(--color__gray);
	color: #fff;
}

.btn.btn--ghostSilver {
    background-color: transparent;
	border: 1px solid var(--color__gray);
	color: var(--color__gray);
}

.btn.btn--ghostSilver:hover {
    background-color: var(--color__orange);
	border: 1px solid var(--color__orange);
	color: #fff;
}

.btn.btn--white {
    background-color: #fff;
	border: 1px solid #fff;
	color: var(--color__orange);
}

.btn.btn--white:hover {
	border: 1px solid var(--color__orangeDark);
	background-color: var(--color__orangeDark);
	color: #fff;
}

.btn.btn--ghostWhite {
    background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.btn.btn--ghostWhite:hover {
    background-color: #fff;
	border: 1px solid #fff;
	color: var(--color__orange);
}

.btnWrapp.btnWrapp--center {
	text-align: center;
}

.ws__backBtn {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	gap: 0.5em;
}

.backBtn__element {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.5em;	
	color: var(--color__gray);
	font-weight: var(--fontThin);
	transition: color 0.5s, opacity 0.5s;
}

.backBtn__element span {
	font-weight: var(--fontThin);
	font-size: var(--size0);
}

.backBtn__element:before {
	content: '–';
	color: var(--color__gray);
}

.backBtn__element .icon svg {
	transform: rotate(-180deg);
}

.backBtn__element .icon {
	display: none;
	width: 0;
	color: var(--color__orange);
	transition: transform 0.5s;
    transform-origin: 100% 50%;
	
	transition: width 0.5s;
}

.backBtn__element:hover .icon {
	width: 1.5em;
}

.backBtn__element:last-of-type:before {
	display: none;
}

.backBtn__element:last-of-type {
	font-weight: var(--fontRegular);
	color: var(--color__orange);
	margin-left: -0.5em;
}

.backBtn__element:hover {
	color: var(--color__orange);
}

.backBtn__element:last-of-type .icon {
	display: block;
}


.ws__backBtn + .title {
	margin-top: 2.5rem;
}

.ws--headline.ws--blackBg .backBtn__element {
	color: #fff;
	opacity: 0.7;
}
.ws--headline.ws--blackBg .backBtn__element:before {
	color: #fff;
	opacity: 0.7;
}
.ws--headline.ws--blackBg .backBtn__element:hover {
	color: #fff;
	opacity: 1;
}
.ws--headline.ws--blackBg .backBtn__element:last-of-type {
	font-weight: var(--fontRegular);
	color: var(--color__orange);
	opacity: 1;
}




.title {
	margin-bottom: 0.4em;
}

.title b {
	font-weight: var(--fontSemibold);
}

.title.title--small {
	font-size: var(--size0);
}

.title--line {
	position: relative;
	display: block;
	padding-bottom: 0.4em;
}

.title--line:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 4rem;
    height: 2px;
	background-color: var(--color__orange);
	
	transition: background 0.4s, opacity 0.4s;
}

.superTitle {
	
}

.title--hasSupertitle {
	font-size: var(--size1);
	font-weight: var(--fontRegular);
}



.gridElements {
	
}

.gridElement {
	background-size: cover;
	background-position: 50% 50%;
}

.gridElement__content {
	color: #fff;
}

.gridElement__intro .btn {
	margin-top: 1em;
}


.gridContent {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.gridContent .sliderContent {
	max-width: 100%;
	width: 100%;
}


.gridContent .sliderContent {
	margin: 0;
}

@media (min-width: 48em) {
	
	.gridContent {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 65em) {
	
	.gridContent {
		grid-template-columns: 1fr 1fr 1fr;
	}
	
	.gridElement {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		width: 50%;
	}
	
	.gridElement {
		display: flex;
		justify-content: flex-end;
		align-items: flex-start;
		flex-direction: column;
	}
	
	.gridElement:nth-child(1) {
		align-items: flex-end;
	}
	
	.gridElements--size2 .gridElement {
		width: 50%;
	}
	
	.gridElement__content {
		max-width: calc(700px - var(--wrapper__bodyPadding));
		width: 100%;
		color: #fff;
	}
}


.swiperFullWidth {
  width: 100%;
  height: 100%;
}

.sliderContent {
	display: block;
	max-width: 12em;
	/* margin-right: 30px; */
}

.sliderContent:last-of-type {
	margin-right: 0;
}

.sliderContent .title {
	margin-top: 0;
}

.sliderContent time {
	font-weight: var(--fontThin);
	color: var(--color__gray);
}

.sliderContent__text {
	width: 100%;
}

.sliderContent__text > * {
	margin-top: 1rem;
}

.sliderContent__image {
	margin-bottom: 0.8em;
}

.sliderContent__image--default {
	position: relative;
	aspect-ratio: 10 / 8;
	overflow: hidden;
	background-color: var(--color__silver);
}

.sliderContent__image--default .icon {
	width: 90%;
    position: absolute;
    top: 65%;
    left: 65%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.contentUtils {
	margin-top: 2em;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	gap: 1em;
}

/* če scroll ni aktiven se skirej preko java skripte */
.contentUtils.contentUtils--hidden {
	display: none;
}

/* če scroll ni aktiven se skirej preko java skripte */
.contentUtils.contentUtils--swiperHidden .contentUtil__scrollbar {
	opacity: 0;
	display: none;
}

.contentUtils--center {
	align-items: center;
	justify-content: center;
}

.contentUtil__scrollbar {
	flex: 1 1 auto;
	position: relative;
	height: 1em;
	width: calc(100% - 3em);
}

.contentUtil__scrollbar .swiper-scrollbar-horizontal {
	left: 0 !important;
	top: 50% !important;
    transform: translateY(-50%) !important;
}

.contentUtil__scrollbar {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
	margin-right: 2em;
}

.contentUtil__scrollbar .icon {
	position: absolute;
	left: 100%;
	width: 2em;
	height: 2em;
	color: var(--color__silver);
}

.contentUtil__scrollbar .swiper-scrollbar.swiper-scrollbar-horizontal {
	transition: height 0.4s;
	transition-duration: 0.4s !important;
	cursor: pointer;
}

.contentUtil__scrollbar:hover .swiper-scrollbar.swiper-scrollbar-horizontal {
	height: 0.7em;
}

.sliderContent--first {
	margin-left: var(--wrapper__bodyPadding);
}

.sliderContent--last {
	margin-right: var(--wrapper__bodyPadding);
}


a.sliderContent .sliderContent__image {
	overflow: hidden;
}
a.sliderContent .sliderContent__image img {
	transition: transform 0.6s;
}
a.sliderContent:hover .sliderContent__image img {
	transform: scale(1.1);
}
a.sliderContent .sliderContent__image svg {
	transition: transform 0.6s;
}
a.sliderContent:hover .sliderContent__image svg {
	transform: scale(1.1);
}


a.sliderContent .title {
	transition: color 0.4s;
}
a.sliderContent:hover .title {
	color: var(--color__orange);
}

.swiper-pagination {
	
}


.ws--slider .swiper-pagination {
	position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.ws--slider .swiper-pagination .swiper-pagination-bullet {
	width: 3em;
	height: 2px;
	background-color: var(--color__gray);
}

.ws--slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--color__orange);
}

.swiperHoder {
	position: relative;
}

@media (min-width: 65em) {
	
	.ws--slider .ws__inner.ws__inner--title {
		margin-bottom: 4em;
	}
}


@media (min-width: 48em) {
	
	/* če scroll ni aktiven se skirej preko java skripte */
	.contentUtils.contentUtils--swiperHidden .contentUtil__scrollbar {
		opacity: 0;
		display: block;
	}

	.contentUtils {
		flex-direction: row;
		gap: 2em;
	}
	
	.contentUtil__scrollbar {
		width: auto;
	}
}

@media (min-width: 48em) {
	
	.sliderContent {
		max-width: 30%;
	}
}


@media (min-width: 1600px) {
	
	.sliderContent {
		max-width: 445px;
	}
	
	.sliderContent.gridProduct {
		max-width: 327px;
	}
	
	.sliderContent.sliderContent--first {
		margin-left: calc((100vw - var(--wrapper__maxWidth))/2 - var(--scrollBarWidth) ) !important;
		/* margin-left: 0 !important; */
	}

	.sliderContent.sliderContent--last {
		margin-right: calc((100vw - var(--wrapper__maxWidth))/2 - var(--scrollBarWidth) ) !important;
		/* margin-right: 0 !important; */
	}
}



.ws.ws--headline {
	padding-top: var(--wrapper__paddingBig);
	padding-bottom: calc(var(--wrapper__paddingBig) * 1.2);
	min-height: 50vh;
	padding-top: 7em;
	
	background-color: var(--color__text);
	color: #fff;
	
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	
	position: relative;
    z-index: 12;
}

.ws.ws--headline .title {
	font-weight: var(--fontSemibold);
}

.ws.headline--silver {
	background-color: var(--color__grayLight);
	color: var(--color__text);
}

.ws.headline--silver .title--line {
	padding-bottom: 0;
}

.ws.headline--silver .title--line:after {
	display: none;
}

.ws.headline--silver .contentStyle p:last-of-type {
	margin-bottom: 0;
}

.ws.headline--silver .title {
	color: var(--color__text);
}

.ws.headline--silver .title {
	color: var(--color__text);
}


.ws.ws--headline .ws__inner {
	width: 100%;
}

.ws.ws--headline .ws__content {
	max-width: var(--content__maxWidth);
	margin-left: auto;
	margin-right: auto;
}


.ws.ws--headline .scrollLine {
	left: auto;
	right: calc(var(--wrapper__bodyPadding) / 2);
    transform: none;
}


@media (min-width: 48em) {
	
	.ws.ws--headline {
		min-height: 70vh;
	}
}

@media (min-width: 48em) {
	
	.ws.ws--headline .scrollLine {
		right: var(--wrapper__bodyPadding);
	}
}


@media (min-width: 65em) {
	
	.ws.ws--headline {
		padding-bottom: 3.6em;
	}
	
	.ws.ws--headline .scrollLine {
		height: 16em;
	}
	
	.ws.ws--headline .scrollLine__indicator {
		height: 30%;
	}
	
	.ws.ws--headline {
		height: 70vh;
		min-height: auto;
		max-height: 750px;
	}
	
	
	.ws.ws--headline {
	}
}

@media (min-width: 1400px) {
	
	.ws.ws--headline .scrollLine {
		left: calc(50% + (var(--wrapper__maxWidth)/2) );
		right: auto;
	}
	
}

.ws--mainContent .ws__content {
	max-width: var(--content__maxWidth);
	margin-left: auto;
	margin-right: auto;
}

/*
.ws--mainContent + .ws.ws--slider {
	padding-top: 0;
}
*/

.ws--mainContent + .ws.ws--slider {
    padding-top: 2em;
}

@media (min-width: 65em) {
    .ws--mainContent + .ws.ws--slider {
        padding-top: 3em;
    }
}

@media (min-width: 75em) {
    .ws--mainContent + .ws.ws--slider {
        padding-top: 5em;
    }
}


.inlineGallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 1em;
	margin-bottom: 1em;
}

.inlineImage {
	display: block;
	margin-top: 1em;
	margin-bottom: 1em;
}

.inlineImage img {
	width: 100%;
}

.inlineGallery .inlineImage {
	margin-top: 0;
	margin-bottom: 0;
}

.inlineImage.inlineImage--limitWidth {
	position: relative;
	width: 100%;
	left: 0;
}

.inlineImage.inlineImage--limitWidth img {
	width: auto;
}

.inlineImage__info {
	padding: 0.5em;
}

/* .inlineImage__desc, */
/* .inlineImage__title { */
	/* font-size: var(--size-1); */
/* } */

.inlineImage__title {
	font-weight: var(--fontRegular);
	margin-bottom: 0.5em;
}

.galleryImage--gif {
	background-color: var(--color__silver);
	aspect-ratio: 1 / 1;
	position: relative;
	box-shadow: none !important;
	overflow: hidden;
}

.galleryImage--gif img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.inlineImage.inlineImage--smallImage {
	box-shadow: none !important;
	position: relative;
	width: 100%;
	left: 0;
}

.inlineImage.inlineImage--smallImage img {
	width: auto;
	max-height: 90vh;
}


@media (min-width: 48em) {
	
	.inlineGallery {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 65em) {
	
	.inlineGallery {
		grid-template-columns: 1fr 1fr 1fr;
	}
	
	.inlineGallery.inlineGallery--count2 {
		grid-template-columns: 1fr 1fr;
    }
	
}


@media (min-width: 65em) {
	
	/*
	.inlineImage {
        position: relative;
        width: calc(100% + 6em);
        left: -3em;
    }
	*/
	
    .inlineGallery {
        position: relative;
        width: calc(100% + 6em);
        left: -3em;
    }
	
    .inlineGallery .inlineImage {
        width: 100%;
        left: 0;
    }
}



.attachements {
	margin-top: 2em;
	margin-bottom: 2em;
}

.attachements ul {
    margin-top: 0.5em;
    margin-left: 0;
	list-style: none;
	padding-left: 0;
}

.attachements ul li:after {
	display: none;
}

.attachements a {
    text-decoration: none;
}

.attachements a {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5em;
}

.attachements a span {
    color: var(--color__gray);
}

.attachements a .icon {
    flex: 0 0 auto;
    color: var(--color__gray);
    transition: color .3s;
	width: 1em;
}



.shareContent {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
}


.contentWithShare {
	position: relative;
}

.ws--content time {
	display: block;
	font-weight: var(--fontThin);
    color: var(--color__gray);
	margin-bottom: 1em;
}


@media (min-width: 1600px) {
	
	.contentWithShare {
		position: relative
	}
	
	.shareContent {
		position: absolute;
		top: 2.7em;
		left: 0;
		flex-direction: column;
		gap: 1em;
	}
	
	.shareContent__icons {
		flex-direction: column;
	}
}





.ws--contentWithShare .ws__content {
	max-width: var(--content__maxWidth);
    margin-left: auto;
    margin-right: auto;
}

.ws.ws--relatedNews {
	padding-top: 0;
}

.ws--filter {
	z-index: 15;
}


.ws--filter .ws__inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
	
	gap: 1em;
}

.ws--filter .ws__inner * {
	font-weight: var(--fontRegular) !important;
}

.ws--filter .ws__inner > * {
    margin-bottom: 0;
}

.filter__title {
	width: 100%;
	margin-bottom: 0;
}

.dropDown__status {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.5em;
	font-weight: var(--fontRegular);
}

.dropDown__status .icon {
    color: #fff;
    width: 1em;
    display: block;
    transform: rotate(90deg);
	
	position: absolute;
	right: 1em;
}

.dropDown__status .icon.arrow {
	width: 1.25em;
}

.dropDown__wrapp {
	flex: 1 1 auto;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	font-weight: var(--fontRegular);
}



.dropDown {
	position: relative;
}

.dropDown.btn {
	padding: 0.5em 3em 0.5em 1.5em;
}

.dropDown .icon {
    color: var(--color__orange);
}

.dropDown__list {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 100%;
    max-height: 25em;
    overflow: hidden;
	font-weight: var(--fontRegular);
	
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex-direction: column;
    opacity: 1;
	display: none;
    transition: opacity 0.4s, max-height 0.6s;
	
    background-color: var(--color__silver);
}

.dropDown .btn.dropDown__item {
	pointer-events: none;
}

.dropDown.dropDown--active .btn.dropDown__item {
	pointer-events: all;
}

.btn.dropDown__item {
	padding: 0.5em 3em 0.5em 1.5em;
	text-align: left;
	/* border-bottom: 1px solid var(--color__silver); */
}

.btn.dropDown__item:hover {
	background-color: var(--color__grayDark);
}

.dropDown__item, 
.dropDown__status {
	font-weight: var(--fontThin);
}

.dropDown__list.dropDown__list--top {
    top: 0;
    bottom: auto;
    transform: translate(-50%, 0);
}

.dropDown__list.dropDown__list--top {
    top: 0;
    bottom: auto;
    transform: translate(-50%, 0);
}

.dropDown__list.dropDown__list--bottom {
    bottom: 0;
    top: auto;
    transform: translate(-50%, 0);
}

.dropDown {
	min-width: 14em;
}

.dropDown__item {
    line-height: 1.3;
}

.dropDown .selected {
	display: none;
}

.dropDown .selected .pfw {
	pointer-events: none;
}

.dropDown--selected .selected {
	display: block;
}

.dropDown--selected .default {
	display: none;
}

.dropDown.dropDown--selected {
	background-color: var(--color__silver);
	color: var(--color__gray);
}

.dropDown.dropDown--selected .icon.close {
	color: var(--color__orange);
	pointer-events: all;
}

.showMoreProducts {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
	
	margin-top: 2em;
	font-weight: var(--fontRegular);
}

.showMoreProducts--hidden {
	display: none;
}

.showMoreProducts--loading {
	
}

.showMoreProducts__wrapp {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
}

.showMoreProducts__wrapp.showMoreProducts__wrapp--hidden {
	display: none;
}

.btn__loader {
	display: none;
	width: 25px;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 4px solid var(--color__silver);
	border-right-color: var(--color__gray);
	animation: loaderAnim 1s infinite linear;
}

@keyframes loaderAnim {to{transform: rotate(1turn)}}

.showMoreProducts--loading .btn__loader {
	display: block;
}

.showMoreProducts {
	
}

.gridProducts--v2.swiperProducts .swiper-wrapper {
	align-items: stretch;
    justify-content: stretch;
}

.gridProducts--v2.swiperProducts .gridProduct {
	height: auto;
}

.gridProducts--v2.swiperProducts .gridProduct:after {
	display: block !important;
	left: calc(100% + 15px);
}

.gridProducts--v2.swiperProducts .gridProduct.sliderContent--last:after {
	display: none !important;
}

.productContent__bigger {
	font-size: var(--size2);
    position: relative;
}

@media (min-width: 48em) {
	
	.ws--filter .ws__inner {
		justify-content: center;
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
	}
	
	.dropDown__wrapp {
		flex: 0 1 auto;
	}

	.filter__title {
		width: auto;
	}
}










/*** .header START ***/

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: 2em;
	padding-bottom: 2em;
	max-width: 100%;
	
	z-index: 1010;
	
	transition: transform 0.5s;
}

.header__inner {
	max-width: var(--wrapper__maxWidth);
	margin-left: auto;
	margin-right: auto;
	
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.headerLogo {
	display: block;
	width: 8em;
	margin-top: 0.4em;
}

#logo-napis {
	fill: #fff !important;
}

#logo-e1 {
	fill: transparent !important;
}

#logo-e2 {
	fill: #fff !important;
}

#nav {
	display: flex;
	flex-direction: row;
	justify-content: end;
	align-items: flex-end;
	gap: 3em;
}

.mainNav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 1.5em;
	
	font-weight: var(--fontSemibold);
}

.mainNav a {
	color: #fff;
}

.mainNav a.active {
	color: var(--color__orange);
	opacity: 1;
}


.mainNav--subNav {
	font-weight: var(--fontThin);
	font-size: var(--sizeSmall);
	gap: 1.3em;
}

.mainNav--subNav a {
	opacity: 0.7;
	transition: opacity 0.4s, color 0.4s;
}

.mainNav--subNav a:hover {
	opacity: 1;
}


.btnMenu {
	position: fixed;
	top: 2em;
	right: 2em;
	background-color: var(--color__orange);
	padding: 0.5em;
	border-radius: 2px;
	
	z-index: 1100;
	display: none;
}


.header.black {
	
}

.header.black #logo-napis {
	fill: #656668 !important;
}

.header.black #logo-e1 {
	fill: #f05a2a !important;
}

.header.black #logo-e2 {
	fill: #656668 !important;
}

.header.black .mainNav a {
	color: var(--color__text);
}

.header.black .mainNav a.active {
	color: var(--color__orange);
}

.header + .ws--blackBg:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 10em;
	z-index: 10;
	background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
}

.mainNav__level1 {
	position: relative;
}

.mainNav__level2 {
	display: none;
	
	position: absolute;
    top: 100%;
    left: 50%;
	transform: translateX(-50%);
    min-width: 11em;
    padding-top: 1em;
	z-index: 10;
}

.mainNav__level2Inner {
    background-color: #fff;
	padding: 0.5em 0;
}

.mainNav__level2:after {
	content: '';
    display: block;
    position: absolute;
    top: 0.5em;
    left: 50%;
    width: 1em;
    height: 1em;
    background-color: #fff;
    transform: translateX(-50%) rotate(45deg);
	z-index: -1;
}

.mainNav__level2 a {
	position: relative;
	font-size: var(--size-1);
	line-height: 1.2;
	padding: 0.15em 0;
	margin: 0.6em 1em;
    /* background-color: #fff; */
    color: var(--color__text);
	display: block;
}

.mainNav__itemRow .mainNav__subItem {
	margin: 0.3em 1em;
}

.mainNav__level2 a:after {
	content: '';
	display: block;
	position: absolute;
	top: calc(100% + 0.2rem);
	left: 0;
	height: 2px;
	width: 0;
	background-color: var(--color__orange);
	
	transition: background 0.4s, width 0.4s;
}


.mainNav__level2 a.active:after,
.mainNav__level2 a:hover:after {
	width: 2rem;
	color: var(--color__orange);
}

/*
.mainNav__level2 a:hover {
	background-color: var(--color__orange);
	color: #fff !important;
}
*/

.mainNav__level1:hover .mainNav__level2 {
    display: block;
}
/*
.mainNav__item--submenu .mainNav__item:after,
.mainNav__item--submenu .subNav__item:after {
	display: none;
}
*/

.searchContent {
	width: 0.9em;
    color: var(--color__text);
    position: relative;
    top: 0.2em;
}

.searchContent__icon {
    color: var(--color__text);
	opacity: 0.7;
}

.header.white .searchContent__icon {
	color: #fff;
}

.searchContent.searchContent--active .searchContent__icon {
    color: var(--color__orange);
	opacity: 1;
}

.changeLanguage {
	position: absolute;
	top: 2.7em;
	right: 6.5em;
	color: #fff;
	
	display: flex;
	gap: 1em;
}


.changeLanguage__link {
	color: var(--color__text);
	opacity: 0.7;
	
	transition: color 0.4s, opacity 0.4s;
}

.white .changeLanguage__link {
	color: #fff;
}

.changeLanguage__link:hover {
	color: var(--color__orange);
	opacity: 1;
}

@media (max-width: 1039px) {
	
	.header {
		/* min-height: 7em; */
		/* transform: translate(-100%); */
	}
	
	.mobileMenu .header .changeLanguage__link {
		color: var(--color__text);
		opacity: 0.7;
	}
	
	.header__inner {
		position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        /* height: 100vh; */
        /* background: #fff; */
		
		flex-direction: column;
        align-items: start;
        justify-content: flex-start;
		
		/* display: none; */
		
		transition: height 0.5s, background 0.5s;
	}
	
	.mobileMenu .header__inner {
        height: 100vh;
        background: #fff;
	}
	
	#nav {
		position: relative;
		flex-direction: column;
		align-items: flex-start;
		padding-top: 3em;
		overflow: auto;
		width: 100%;
		
		max-height: 0;
		overflow: hidden;
	}
	
	.mobileMenu #nav {
		max-height: none;
		overflow: visible;
	}
	
	.nav__wrapp {
		opacity: 0;
		pointer-events: none;
	}
	
	.mobileMenu .nav__wrapp {
		opacity: 1;
		pointer-events: all;
	}
	
	.mainNav {
		flex-direction: column;
		align-items: flex-start;
		gap: 1em;
	}
	
	.mainNav a {
		color: var(--color__text);
        font-size: var(--size5);
	}
	
	.mainNav .subNav__item {
        font-size: var(--size4);
	}
	
	.btnMenu {
		display: block;
	}
	
	.btnMenu span {
		font-size: 0.7em;
		color: #fff;
		display: none;
	}
	
	.btnMenu .icon {
		color: #fff;
		width: 2em;
		display: block;
	}
	
	.btnMenu--close {
		display: none;
	}
	
	.btnMenu--close .icon {
		transform: scale(0.8);
	}
	
	.mobileMenu .btnMenu--close {
		display: block;
	}
	
	.mobileMenu .btnMenu--open {
		display: none;
	}
	
	.mobileMenu .header {
		position: fixed;
		transform: translate(0);
	}
	
	.mobileMenu #logo-napis {
		fill: #656668 !important;
	}

	.mobileMenu #logo-e1 {
		fill: #f05a2a !important;
	}

	.mobileMenu #logo-e2 {
		fill: #656668 !important;
	}
	
	
	.mainNav__level2 {
		display: block;
		position: relative;
		top: auto;
		left: auto;
		min-width: auto;
		padding-top: 0.5em;
		padding-bottom: 0.5em;
		transform: none;
	}

	.mainNav__level2:after {
		content: '';
		display: none;
	}

	.mainNav__level2 a {
		font-size: var(--size0);
		line-height: 1.2;
		padding: 0.5em 1em;
		color: var(--color__text);
		background-color: transparent;
	}
	
	.mainNav__level2Inner {
		background-color: transparent;
		padding: 0;
	}
	
	.mobileMenu .nav__wrapp {
		overflow: auto;
        width: 100%;
	}
	
	.mainNav__level2 a.active:after,
	.mainNav__level2 a:hover:after {
		display: none;
	}
	
	.header.white .searchContent__icon {
		color: var(--color__text);
	}
	
	.header .searchContent {
		margin-top: -2em;
		width: 1.6em;
	}
	
	/*
	.header .searchContent {
		width: 1.6em;
		position: fixed;
		top: 2.7em;
		right: 6.5em;
	}
	*/
	
	.mainNav__itemRow .mainNav__subItem {
		margin: 0.3em 1em 0.3em 40px;
		padding-left: 0;
	}
}

@media (min-width: 65em) {
	
	.headerLogo {
		margin-top: 0;
	}

	.changeLanguage {
		top: -1em;
		right: 0;
		font-size: max(0.8em, var(--fs-floor));
		
		top: -1.3em;
        right: 0;
	}
	
	.header__inner.ws {
		padding: 0;
	}

	.mainNav__item, 
	.subNav__item {
		position: relative;
		display: block;
		transition: color 0.4s;
	}
	
	.mainNav__item:after, 
	.subNav__item:after {
		content: '';
		display: block;
		position: absolute;
		top: calc(100% + 0.2rem);
		left: 0;
		height: 2px;
		width: 0;
		background-color: var(--color__orange);
		
		transition: background 0.4s, width 0.4s;
	}
	
	.mainNav__item.active:after, 
	.subNav__item.active:after,
	.mainNav__item:hover:after, 
	.subNav__item:hover:after {
		width: 2rem;
	}
	
	.mainNav__item:hover, 
	.subNav__item:hover {
		color: var(--color__orange);
	}
	
	.searchContent {
		margin-left: -2em;
	}
	
	.searchContent__icon {
		transition: color 0.4s;
	}
	
	.searchContent__icon:hover {
		color: var(--color__orange);
	}
	
	.header.white .searchContent__icon:hover {
		color: var(--color__orange);
	}
}






/***********   POSODOBITVE   **************/



.mainNav__itemRow {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mainNav__itemRow a {
	flex: 1 1 auto;
	min-width: 0;
}

/* gumb plus — na desktopu skrit, uporablja se samo na mobilnih */
.mainNav__toggle {
	display: none;
	position: relative;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	margin-left: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.mainNav__toggle span,
.mainNav__toggle span::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	background: currentColor;
	transform: translate(-50%, -50%);
}

.mainNav__toggle span::after {
	width: 2px;
	height: 16px;
}

/* gumb nazaj v panelih — viden samo na mobilnih */
.mainNav__back {
	display: none;
	position: relative;
	width: 100%;
	padding: 14px 16px 14px 40px;
	border: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	background: transparent;
	font: inherit;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}

.mainNav__back::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 16px;
	width: 10px;
	height: 10px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
}

/* --- desktop: 3. nivo kot flyout desno od elementa 2. nivoja ------------ */

@media (max-width: 1025px) {
	
	.nav__wrapp {
		width: 100%;
		max-width: 100%;
		max-width: 100vw;
		overflow-x: hidden;
	}
	
	.mobileMenu .nav__wrapp {
		
		width: 100%;
		max-width: 100%;
		max-width: 100vw;
		overflow-x: hidden;
	}
	
	.mainNav {
		width: 100%;
		max-width: 100%;
		max-width: 93vw;
		overflow: hidden;
	}
	
	.mainNav__level1, .mainNav__level2Item {
        position: static;
        width: 100%;
    }
	
	.mainNav__level1 .mainNav__level2 {
	    max-width: 93vw;
		overflow-x: hidden;
    }
	
	.mainNav__level1 .mainNav__level4, 
	.mainNav__level1 .mainNav__level2 {
		padding-top: 3em;
    }
	
}

@media (min-width: 1040px) {

	.mainNav__level2Item {
		position: relative;
	}

	/* puščica pri elementih 2. nivoja, ki imajo podmeni */
	.mainNav__subItem--submenu > .mainNav__itemRow > .mainNav__subItem::after {
		content: '';
		/*
		display: inline-block;
		width: 7px;
		height: 7px;
		margin-left: 8px;
		border-top: 2px solid currentColor;
		border-right: 2px solid currentColor;
		transform: rotate(45deg);
		vertical-align: middle;
		*/
	}

	.mainNav__level3 {
		position: absolute;
		top: 0;
		left: 100%;
		min-width: 220px;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.2s ease, visibility 0.2s ease;
		z-index: 10;
	}

	.mainNav__level3Inner {
		background: #fff; /* uskladi z .mainNav__level2Inner */
		/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); */
		padding: 10px 0;
	}

	.mainNav__subItem--submenu:hover > .mainNav__level3,
	.mainNav__subItem--submenu:focus-within > .mainNav__level3 {
		opacity: 1;
		visibility: visible;
	}
	
	.mainNav__subItem--submenu:hover .mainNav__subItem:after {
		width: 2rem;
		color: var(--color__orange);
	}

	.mainNav__subSubItem {
		display: block;
		padding: 8px 20px;
		white-space: nowrap;
	}

	/* --- 4. nivo (content_filter) — flyout desno od .mainNav__level2Item --- */

	/* puščica tudi pri elementih s filter podmenijem */
	.mainNav__subItem--filtermenu > .mainNav__itemRow > .mainNav__subItem::after {
		content: '';
		/*
		display: inline-block;
		width: 7px;
		height: 7px;
		margin-left: 8px;
		border-top: 2px solid currentColor;
		border-right: 2px solid currentColor;
		transform: rotate(45deg);
		vertical-align: middle;
		*/
	}

	.mainNav__level4 {
		position: absolute;
		top: 0;
		left: 100%;
		min-width: 240px;
		padding-left: 12px;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.2s ease, visibility 0.2s ease;
		z-index: 10;
	}

	/* če ima element hkrati 3. in 4. nivo, se 4. nivo zamakne
	   za širino 3. nivoja (uskladi z min-width .mainNav__level3) */
	.mainNav__subItem--submenu.mainNav__subItem--filtermenu > .mainNav__level4 {
		left: calc(100% + 220px);
	}
	
	.mainNav__level4Inner {
		/* uskladi z .mainNav__level2Inner */
		padding: 10px 0;
		background-color: var(--color__orange);
		color: #fff;
	}
	
	.mainNav__level4Inner a.mainNav__filterItem {
		color: #fff !important;
	}
	
	.mainNav__level4Inner a.mainNav__filterItem:after {
		background-color: #fff;
	}

	.mainNav__subItem--filtermenu:hover > .mainNav__level4,
	.mainNav__subItem--filtermenu:focus-within > .mainNav__level4 {
		opacity: 1;
		visibility: visible;
	}

	.mainNav__subItem--filtermenu:hover .mainNav__subItem:after {
		width: 2rem;
	}

	.mainNav__filterItem {
		display: block;
		padding: 8px 20px;
		white-space: nowrap;
	}
}

/* --- mobilno: panelna navigacija ---------------------------------------- */

@media (max-width: 1024px) {

	/* #nav mora biti referenčni okvir za panele */
	#nav {
		position: relative;
		overflow: hidden;
	}

	.mainNav__toggle,
	.mainNav__back {
		display: block;
	}

	.mainNav__level1,
	.mainNav__level2Item {
		position: static; /* paneli se pozicionirajo glede na #nav */
	}

	/* paneli 2., 3. in 4. nivoja: zaprti, ob odprtju prekrijejo trenutni meni */
	.mainNav__level2,
	.mainNav__level3,
	.mainNav__level4 {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #fff; /* uskladi z ozadjem mobilnega menija */
		transform: translateX(100%);
		transition: transform 0.25s ease;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 5;
		visibility: hidden;
	}

	.mainNav__level3,
	.mainNav__level4 {
		z-index: 6;
	}

	.mainNav__level2.is-open,
	.mainNav__level3.is-open,
	.mainNav__level4.is-open {
		transform: translateX(0);
		visibility: visible;
	}

	/* brez animacije ob zapiranju celotnega menija (reset) */
	.mainNav__level2.no-anim,
	.mainNav__level3.no-anim,
	.mainNav__level4.no-anim {
		transition: none;
	}

	.mainNav__level2Inner,
	.mainNav__level3Inner,
	.mainNav__level4Inner {
		padding-bottom: 20px;
	}

	.mainNav__subItem,
	.mainNav__subSubItem,
	.mainNav__filterItem {
		display: block;
		padding: 12px 16px;
	}
}




/***********   POSODOBITVE END  **************/







/*** .header END ***/


/*** .ws--slider START ***/

.ws--slider > * {
	margin-bottom: 1em;
}

.ws--slider > *:last-of-type {
	margin-bottom: 0;
}


.ws--slider > * {
	margin-bottom: 1em;
}

.ws__inner.ws__inner--title {
	margin-bottom: 2em;
}

.ws__inner.ws__inner--titleNormal {
	margin-bottom: 1.5em;
}

@media (min-width: 65em) {
	
	.ws__inner.ws__inner--title {
		padding-top: 1em;
		margin-bottom: 5em;
	}

	.ws__inner.ws__inner--titleNormal {
		padding-top: 1em;
		margin-bottom: 1.5em;
	}
}

/*** .ws--slider END ***/




/*** .ws--izjava-direktorja START ***/


.ws--izjava-direktorja {
	background-color: var(--color__black);
    color: #fff;
}

.ws--izjava-direktorja .ws__imagePart {
	aspect-ratio: 10 / 13;
}

.ws--izjava-direktorja .ws__contentQuote {
	margin-left: auto;
    margin-right: auto;
	color: #fff;
}

.ws__imagePart--default {
	position: relative;
	aspect-ratio: 10 / 8;
	overflow: hidden;
	background-color: var(--color__silver);
}

.ws__imagePart--default .icon {
	width: 90%;
    position: absolute;
    top: 65%;
    left: 65%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}


@media (max-width: 32em) {
	
	.ws--izjava-direktorja .ws__imagePart {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
		margin-top: 2em;
	}
}

@media (min-width: 48em) {
	
	.ws--izjava-direktorja .ws__inner {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 3em;
	}
	
	.ws--izjava-direktorja .ws__imagePart {
		width: 20em;
	}
	
	.ws--izjava-direktorja .ws__contentQuote {
		max-width: 600px;
	}
}

/*** .ws--izjava-direktorja END ***/



/*** .ws--cta-links-anim START ***/

.ws.ws--cta-links-anim {
	padding-bottom: 0;
}

.gridElements--naslovnica {
	position: relative;
	min-height: 100vh;
	
	background-color: #000;
	
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	align-items: stretch;
}

.gridElements--naslovnica .gridElement {
	min-height: 50vh;
	padding-top: 6em;
}

.gridElements--naslovnica .gridElement {
	position: relative;
}

.gridElements--naslovnica .gridElement:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70%;
	
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}


.gridElements--naslovnica .title {
	font-weight: var(--fontSemibold);
	text-transform: uppercase;
}

.gridElements--naslovnica .gridElement__content {
	position: relative;
	z-index: 10;
}

@media (max-width: 991px) {
	
	.gridElements--naslovnica .gridElement:after {
		height: 90%;
	}
}

@media (min-width: 65em) {
	
	.gridElements--naslovnica {
		flex-direction: row;
	}
	
	.gridElements--naslovnica .gridElement {
		padding-bottom: 7em;
	}
}



/*** .ws--cta-links-anim END ***/




/*** .ws--slider-news START ***/

/*
.ws--slider-news {
	min-height: 100vh;
	
	display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.ws--slider-news > * {
	width: 100%;
}
*/

.sliderContent--news .title {
	font-weight: var(--fontSemibold);
	font-size: var(--size1);
}

.sliderContent--news .sliderContent__image {
	margin-bottom: 0;
}

.sliderContent--news .sliderContent__content {
	padding: 1em;
}

.ws--newsGrid.ws--card-content .sliderContent {
    opacity: 1;
    transform: translateY(0);
}

/*** .ws--slider-news END ***/


/* .sliderContent--press .title { */

.ws--press {
	background-color: var(--color__silver);
}

.ws--press .dropDown--selected {
	border: 1px solid var(--color__gray);
}

.sliderContent--press .title {
	font-weight: var(--fontSemibold);
    font-size: var(--size2);
}

.pressFilter {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	
	gap: 1em;
}

.gridContent--press .title {
	font-weight: var(--fontSemibold);
}

.ws__downloadLogos {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 5px;
}

.downloadImage {
	position: relative;
	display: inline-block;
	border: 2px solid var(--color__silver);
	background-color: #fff;
	aspect-ratio: 20 / 12;
	
	max-width: 100%;
	width: 100%;
	
	display: flex;
	justify-content: center;
	align-items: center;
}

.downloadImage__image {
	max-width: 70%;
	width: 100%;
}

.downloadImage__icon {
	position: absolute;
	bottom: 0.8em;
	right: 0.8em;
	width: 1.5em;
	color: var(--color__orange);
}

.downloadImage.downloadImage--orange {
	border: 0;
	background-color: var(--color__orange);
}

.downloadImage.downloadImage--orange .downloadImage__icon {
	color: #fff;
}

.downloadBtn {
	display: flex;
	margin-top: 2em;
	margin-bottom: 0.8em;
	width: 100%;
}

.downloadBtn .btn {
	margin-top: 0;
}

.downloadBtn + .downloadBtn {
	margin-top: 0;
	margin-bottom: 0.8em;
}

.downloadBtn small {
	font-size: var(--size-1);
	font-weight: var(--fontThin);
}

@media (min-width: 32em) {
	
	.ws__downloadLogos {
		gap: 4px;
	}
	
	.downloadImage {
		max-width: calc(50% - 2px);
	}
	
}

@media (min-width: 48em) {
	
	.pressFilter {
		justify-content: space-between;
		flex-direction: row;
		
	}
}

@media (min-width: 65em) {
	
    .gridContent--press {
        grid-template-columns: 1fr 1fr;
    }
	
	.ws__downloadLogos {
		gap: 4px;
	}
	
	.downloadImage {
		aspect-ratio: 20 / 15;
	}
	
	.downloadImage {
		max-width: calc(33.33% - 4px);
	}
	
	.ws--contentWithShare .ws__content {
		min-height: 10em;
    }
}

/*** .ws--slider-news END ***/





/*** .ws--cta-text START ***/

.ws.ws--cta-text {
	padding-top: var(--wrapper__paddingBig);
	padding-bottom: calc(var(--wrapper__paddingBig) * 1.2);
	background-color: var(--color__text);
	color: #fff;
	overflow: hidden;
}

.ws.ws--cta-text .ws__inner > * {
	margin-bottom: 0;
}

.ws.ws--cta-text .title {
	text-align: center;
}

.ws--cta-text .contentStyle--limitWidth {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.virsLogoText {
	position: absolute;
	bottom: -9px;
	left: 50%;
	width: 40%;
	max-width: 12em;
	color: #000;
	opacity: 0.3;
}

.ws--cta-text .contentUtils {
    margin-top: 3em;
}

@media (min-width: 65em) {
	
	.ws.ws--cta-text {
		padding-bottom: 4.6em; /* nastavljeno na poravnavo z gumbom na zgornji rob */
	}
	
	.virsLogoText {
		width: 50%;
		left: calc(50% + 10em);
		max-width: 25em;
		bottom: -17px;
	}
	
	/* zadnji element dodaj več razmika */
	.ws.ws--cta-text.ws--lastElement {
		padding-bottom: 8em;
	}
}

/*** .ws--cta-text END ***/



/*** .ws--cta-full-image START ***/


.ws.ws--cta-full-image {
	padding-top: var(--wrapper__paddingBig);
	padding-bottom: calc(var(--wrapper__paddingBig) * 1.2);
	background-color: var(--color__text);
	color: #fff;
	overflow: hidden;
	min-height: 100vh;
	
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	
	position: relative;
    z-index: 1;
}

.ws.ws--cta-full-image .custom-controls {
	display: none;
}

.ws.ws--cta-full-image big,
.ws.ws--cta-full-image h2, .ws.ws--cta-full-image .h2,
.ws.ws--cta-full-image h3, .ws.ws--cta-full-image .h3,
.ws.ws--cta-full-image h4, .ws.ws--cta-full-image .h4 {
	line-height: var(--lineHeightTitles);
}

.ws.ws--cta-full-image big {
	font-size: var(--size5);
	line-height: var(--lineHeightTitles);
}

.ws.ws--cta-half-image .title {
	line-height: var(--lineHeightTitles) !important;
	font-weight: var(--fontSemibold) !important;
	text-transform: none !important;
}


.ws--cta-full-image + .ws--cta-full-image {
	border-top: 2px solid #ffffff;
}


.ws--reverse.ws--cta-full-image .ws__content {
	margin-left: auto;
	margin-right: 0;
}

.ws--reverse.ws--cta-full-image .ws__image > div:after {
	left: auto;
	right: 0;
	transform: rotate(-180deg);
}

.ws--reverse.ws.ws--cta-full-image.ws--cta-half-image .ws__content {
	margin-left: 0;
	margin-right: auto;
}

.ws--reverse.ws.ws--cta-full-image.ws--cta-half-image .ws__image > div:after {
	left: 0;
	right: auto;
	transform: rotate(0deg);
}


.ws.ws--cta-full-image.ws--cta-half-image {
	min-height: 70vh;
}


.ws.ws--cta-full-image .ws__inner {
	width: 100%;
}

.ws.ws--cta-full-image .ws__content {
	max-width: 600px;
}

.ws--cta-full-image .contentUtils {
    margin-top: 2em;
}

.ws--cta-full-image .contentUtils {
	justify-content: flex-start;
    align-items: flex-start;
}

.contentTag {
	text-transform: uppercase;
	color: var(--color__orange);
	font-weight: var(--fontSemibold);
	font-size: var(--size1);
}

.contentTag + .title {
	margin-top: 1rem;
}

@media (max-width: 65em) {
	
	.ws--cta-full-image .ws__inner {
		padding-bottom: 4em;
	}
}

@media (min-width: 65em) {
	
	.ws.ws--cta-full-image {
		padding-bottom: 10em;
	}
	
	.ws.ws--cta-full-image.ws--cta-half-image {
		height: 70vh;
		max-height: 650px;
		min-height: auto;
	}
}

/*** .ws--cta-text END ***/




/*** .ws--slider-services START ***/

.ws.ws--slider-services {
	padding-left: 0;
	padding-right: 0;
}

.ws--slider-services .ws__innerNoPadd {
	left: 0;
	width: 100%;
}

.ws--slider-services > * {
	width: 100%;
}


.sliderContent--service {
	position: relative;
	aspect-ratio: 1 /1;
	overflow: hidden;
	background-color: var(--color__silver);
	transition: background 0.4s !important;
	
	padding: 1.5em 1.5em 2.5em 1.5em;
}

.downloadContent {
	width: 100%;
	
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.8em;
}

.downloadContent .icon {
	position: relative;
	width: 1.1em;
	color: var(--color__orange);
}

.sliderContent--service.sliderContent--grey {
	background-color: var(--color__gray);
	color: #fff;
}

.sliderContent--service.sliderContent--grey .contentStyle a {
	color: #fff;
}

.sliderContent--service.sliderContent--grey .sliderContent__icon {
	color: var(--color__silver);
}

.sliderContent--service.sliderContent--noIcon .title {
	padding-right: 0;
}


.sliderContent--service .sliderContent__inner {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	flex-direction: column;
	/* min-height: 100%; */
	/* height: 100%; */
}

.swiper-slide.sliderContent--service {
	display: flex;
	justify-content: stretch;
	align-items: stretch;
	/* flex-direction: column; */
}

.sliderContent--service .title {
	font-size: var(--size3);
	font-weight: var(--fontRegular);
	margin-bottom: 0;
	/* padding-right: 1em; */
    width: 100%;
}

.sliderContent--service big {
	line-height: var(--lineHeightTitles);
}

.sliderContent__icon {
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
	color: var(--color__text);
	opacity: 0.07;
}


@media (max-width: 65em) {
	
	.ws.ws--slider-services {
		min-height: auto;
	}
	
	.sliderContent--service big {
		font-size: var(--size-1);
		line-height: 1.6;
        display: block;
	}
	
	.sliderContent--service .contentCard__intro {
		display: none;
	}
	
	.sliderContent--service .downloadContent .contentStyle  {
		font-size: 0.8em;
	}
}

@media (min-width: 65em) {
	
	.sliderContent--service {
		padding: 2em 2em 3em 2em;
	}
	
	a.sliderContent--service:hover {
		background-color: var(--color__orange);
		color: #fff;
	}
	
	a.sliderContent--service:hover .title {
		color: #fff;
	}
	
	a.sliderContent--service:hover .title:after {
		background-color: #fff;
		opacity: 0.15;
	}
	
	a.sliderContent--service:hover .sliderContent__icon {
		color: #fff;
		opacity: 0.15;
	}
	
	a.sliderContent--service:hover .downloadContent .icon {
		color: #fff;
	}
	
	.sliderContent--service {
		aspect-ratio: 10 / 8;
	}
	
	/*
	.sliderContent--service .title {
		padding-right: 3em;
	}
	*/
}


/*** .ws--slider-services END ***/



/*** .ws--card-content START ***/

.ws--card-content .sliderContent {
	opacity: 0;
	transform: translateY(20px);
	
	transition: transform 0.7s, opacity 1s;
	transition-delay: calc(var(--i) * 0.2s);
}

.ws--card-content.loaded .sliderContent {
	opacity: 1;
	transform: translateY(0);
}

.sliderContent--card {
	position: relative;
	/* aspect-ratio: 1 /1; */
	overflow: hidden;
	background-color: var(--color__silver);
	
	padding: 1.5em;
}

.sliderContent.sliderContent--dark {
	background-color: var(--color__gray);
	color: #fff;
}

.sliderContent--card .contentStyle {
	font-size: var(--size2);
}


.sliderContent--card .sliderContent__text {
	font-size: var(--size3);
	line-height: var(--lineHeightTitles);
}

.sliderContent--card strong {
	font-weight: var(--fontRegular);
}

.sliderContent--card .sliderContent__inner {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
}

.sliderContent--card .title {
	font-weight: var(--fontRegular);
	margin-bottom: 0;
	padding-right: 1em;
    width: 100%;
}

.sliderContent--card .sliderContent__text .title {
	font-weight: var(--fontRegular);
	font-size: var(--size3);
}

.sliderContent--card .contentSmaller {
    font-size: var(--size1);
}


@media (min-width: 65em) {
	
	.sliderContent--card {
		padding: 3em 2em;
	}
}


/*** .ws--card-content END ***/




/*** .ws--certifikati START ***/


.ws--certifikati .ws__text {
	margin-bottom: 1em;
}

.ws__certifikati {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1em;
}

.ws__certifikati > * {
	max-width: 15em;
}

.ws__certifikati img {
	max-height: 5em;
}


@media (min-width: 65em) {
	
	.ws--certifikati h2 {
		margin-bottom: 0;
	}
	
	.ws__certifikati {
		gap: 2em;
	}
	
	.ws--certifikati .ws__content {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
		gap: 1.5em;
	}
}


/*** .ws--certifikati END ***/



/*** .ws--ws--image-content-split START ***/


.ws.ws--image-content-split {
	padding: 0;
}

.ws__imagePart {
	position: relative;
	aspect-ratio: 10 / 7;
	width: 100%;
}


.ws__imagePart > div {
	 position: absolute;
	 top: 0;
	 left: 0;
	 height: 100%;
	 width: 100%;
	 z-index: 12;
	 background-repeat: no-repeat;
	 background-size: cover;
	 background-position: center;
}


@media (min-width: 65em) {
	
	.ws--image-content-split {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
		gap: 0;
	}
	
	.ws--image-content-split .ws__imagePart {
		width: 50%;
	}
	
	.ws--image-content-split .ws__content {
		width: 50%;
	}
	
	.ws--image-content-split.ws--reverse .ws__content {
		order: 1;
	}
	
	.ws--image-content-split.ws--reverse .ws__imagePart {
		order: 2;
	}
}


@media (min-width: 1600px) {
	
	.sliderContent {
		max-width: 445px;
	}

	.ws--image-content-split .ws__content {
		padding-right: calc((100vw - var(--wrapper__maxWidth))/2 - var(--scrollBarWidth) );
	}
	
	.ws--image-content-split.ws--reverse .ws__content {
		padding-left: calc((100vw - var(--wrapper__maxWidth))/2 - var(--scrollBarWidth) );
	}
}


/*** .ws--ws--image-content-split END ***/



/*** .ws--slider-images START ***/


.sliderContent--images {
	position: relative;
	aspect-ratio: 1 /1;
	overflow: hidden;
	padding: 0;
}

a.sliderContent.sliderContent--images .sliderContent__image {
	overflow: visible;
}

.sliderContent--noImage {
	background-color: var(--color__silver);
}

.sliderContent--images.sliderContent--noImage {
	background-color: transparent;
}

.sliderContent--images .sliderContent__inner {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
}

.sliderContent--images .sliderContent__text {
	width: auto;
	padding: 1.5em;
}

.sliderContent--images .sliderContent__inner {
	padding: 1.5em;
}

.sliderContent--images .title {
	font-weight: var(--fontRegular);
	margin-bottom: 0;
	text-align: center;
}

.sliderContent--images .title--line:after {
	left: 50%;
	transform: translateX(-50%);
}

.sliderContent__icon {
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
	max-width: 4em;
	color: var(--color__text);
	opacity: 0.07;
}

.sliderContent__icon .servisni_center {
	transform: scale(0.85);
}


@media (max-width: 65em) {
		
	.sliderContent.sliderContent--images {
		max-width: 100px;
	}
	.sliderContent--images .sliderContent__inner {
		padding: 0.5em;
	}

}

@media (min-width: 65em) {
	
	.sliderContent--images .sliderContent__text {
		padding: 2em;
	}
	
    .sliderContent.sliderContent--images {
        max-width: 259px;
    }
}

@media (min-width: 1600px) {
	
    .sliderContent.sliderContent--images {
        max-width: 210px;
    }
}


/*** .ws--slider-images END ***/




/*** .ws--slider-content START ***/


.ws--slider-content {
	/* background-color: var(--color__gray); */
	/* color: #fff; */
	background-color: var(--color__silver);
	color: var(--color__text);
	text-align: center;
}

.ws--slider-content .swiper-vertical {
	pointer-events: none;
}

.ws--slider-content .title {
	color: var(--color__black);
}

.sliderContent--mnenja {
	
}

.sliderContent--mnenja .contentStyle {
	font-size: var(--size20);
	font-weight: var(--fontThin);
	font-style: italic;
}

.sliderContent--mnenja .sliderContent__inner {
	padding-left: 1em;
	padding-right: 1em;
}

.sliderContent--mnenja .avtor {
	font-weight: var(--fontThin) !important;
	color: var(--color__black);
}

.sliderContent--mnenja .sliderContent__text {
	max-width: var(--content__maxWidth);
	margin-left: auto;
	margin-right: auto;
}

.sliderContent.sliderContent--mnenja {
	max-width: 100%;
	width: 100%;
}

.ws--slider.ws--slider-content .swiper-pagination {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -1em;
	left: auto;
	width: 1em;
	height: 100%;
	
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	
    gap: 0;
}

.ws--slider.ws--slider-content .swiper-pagination .swiper-pagination-bullet {
	width: 2px;
	height: 3em;
	background-color: var(--color__orange);
	opacity: 1;
	border-radius: 0;
}

.ws--slider.ws--slider-content .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--color__text);
	opacity: 0.4;
}

@media (max-width: 48em) { 

	.ws.ws--slider-content {
		padding-top: 3em;
	}
	
	.ws--slider.ws--slider-content .swiper-pagination {
		position: relative;
		transform: none;
		margin-top: 1em;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: row;
		gap: 1em;
		width: 100%;
		right: 0;
	}
		
	.ws--slider.ws--slider-content .swiper-pagination .swiper-pagination-bullet {
		width: 2em;
		height: 2px;
	}
}

@media (min-width: 48em) { 
	
	.ws--slider.ws--slider-content .swiper-pagination {
		right: 0;
	}
}


/*** .ws--slider-content END ***/


/*** .ws--video START ***/


.ws--video {
	overflow: hidden;
	min-height: 100vh;
	background-color: var(--color__silver);
}

.ws__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.video-wrapper {
	 height: 100%;
	 width: 100%;
	 position: relative;
	 /* max-width: 60em; */
	 margin-left: auto;
	 margin-right: auto;
	 
	 grid-column: 1 / -1;
}

.video-wrapper:before {
	 display: block;
	 content: "";
	 width: 100%;
	 padding-top: 56.25%;
}

.video-wrapper > .pfw {
	 position: absolute;
	 top: 0;
	 left: 0;
	 right: 0;
	 bottom: 0;
}

.video-wrapper .section__title {
	 z-index: 35;
}

.video-wrapper .image {
	 position: absolute;
	 top: 0;
	 left: 0;
	 height: calc(100% + 2px);
	 width: calc(100% + 2px);
	 z-index: 12;
	 background-repeat: no-repeat;
	 background-size: cover;
	 background-position: center;
}

.video-wrapper .teaser {
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 z-index: 10;
}

.video-wrapper .teaser .inner {
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%, -50%);
	 width: 100%;
}

.video-wrapper .teaser .inner video, .video-wrapper .teaser .inner iframe {
	 width: 100%;
	 height: 100%;
}

.video-wrapper .overlay {
	 position: absolute;
	 width: 100%;
	 height: 100%;
	 left: 0;
	 top: 0;
	 z-index: 5;
	 background-color: rgba(120, 175, 43, 0.2);
}

.home .video-wrapper .overlay {
	 background-color: rgba(120, 175, 43, 0.2);
}

.video-wrapper.youtube .image {
	 z-index: 2;
}

.video-wrapper.youtube .teaser {
	 z-index: 10;
}

.video-wrapper.youtube .overlay-play {
	 position: absolute;
	 left: 50%;
	 top: 50%;
	 transform: translate(-50%, -50%);
	 height: 4em;
	 width: 4em;
	 pointer-events: all;
	 cursor: pointer;
	 color: #fff;
	 z-index: 15;
	 -webkit-transition: color 0.4s;
	 transition: color 0.4s;
}

.video-wrapper.youtube .controls {
	 display: none;
	 position: absolute;
	 left: 1em;
	 bottom: 1em;
	 z-index: 5;
	 opacity: 0.5;
	 
	 transition: bottom 0.5s;
	 transition-delay: 2.3s;
}

/*
.video-wrapper.youtube .controls.videoPaused, 
.video-wrapper.youtube:hover .controls {
	 bottom: 3em;
	 transition-delay: 0s;
}
*/

.video-wrapper.youtube .controls.active {
	 display: block;
}

.video-wrapper.youtube .controls:hover {
	 opacity: 1;
}

.video-wrapper.youtube .controls .icon {
	 display: inline-block;
	 width: 1em;
	 margin-left: 0.6em;
	 cursor: pointer;
	 pointer-events: all;
	 color: #fff;
}

.video-wrapper.youtube .controls .icon:hover {
	 color: #78af2b;
}

.video-wrapper.youtube .controls .icon.hide {
	 display: none;
}

.video-wrapper .progress-bar {
	 position: absolute;
	 left: 0;
	 bottom: 0;
	 height: 0.5em;
	 width: 100%;
	 background-color: rgba(0, 0, 0, 0.2);
	 z-index: 35;
	 cursor: pointer;
	 opacity: 0.6;
}

.video-wrapper .progress-bar.hidden {
	 display: none;
}

.video-wrapper .progress-bar:hover {
	 opacity: 1;
}

.video-wrapper .progress-bar .progress {
	 position: absolute;
	 left: 0;
	 top: 0;
	 height: 100%;
	 width: 0;
	 background-color: #000;
	 -webkit-transition: width 0.1s;
	 transition: width 0.1s;
}

@media (max-width: 47.9375em) {
	
	.video-wrapper .teaser {
		 display: block;
	}
	
	/*
	.video-wrapper .teaser .inner {
		 width: 100% !important;
		 height: auto !important;
		 padding-top: 56.25%;
	}
	*/
	
	.video-wrapper #youtubePlayer {
		 position: absolute;
		 top: 0;
		 left: 0;
		 width: 100%;
		 height: 100%;
	}
	
	.video-wrapper {
	    grid-column: 1 / -1;
	}
}

@media (min-width: 65em) {
	
	.video-wrapper .teaser {
		 display: block;
	}
	
	.video-wrapper .image {
		 background-position: center center;
	}
	
	.video-wrapper.youtube .overlay-play {
		 -webkit-transition: transform 0.4s;
		 transition: transform 0.4s;
	}
	
	.video-wrapper.youtube .overlay-play:hover {
		 color: rgba(120, 175, 43, 0.9);
		 transform: translate(-50%, -50%) scale(1.2);
	}
	
	.video-wrapper.youtube .overlay-play:hover:after {
		 border-color: rgba(120, 175, 43, 0.6);
	}
}


.video-wrapper .overlay {
	background-color: transparent;
}

/*
.videWrapper {
	position: relative;
	padding-top: 56.25%;
}
*/

.video-wrapper:before {
	display: none;
}

.video-wrapper.youtube .image {
	z-index: 15;
}

.video-wrapper.youtube .controls {
	z-index: 13;
    left: 1em;
	
	padding: 0.25em;
}

.video-wrapper.youtube .controls.active {
	display: flex;
}

.video-wrapper.youtube .controls {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0.5em;
}

.video-wrapper.youtube .controls .icon {
	position: relative;
	left: auto;
	top: auto;
	right: auto;
	bottom: auto;
	margin-left: 0;
}

.video-wrapper.youtube .controls.videoPaused {
	background-color: #000000;
	padding: 0.5em 1em;
	gap: 1em;
	
	opacity: 1;
}




/*** .ws--video END ***/



/*** .footer START ***/


.footer {
	background-color: var(--color__black);
	color: #fff;
	padding-bottom: 2em !important;
}

.footerLogo {
    display: block;
	max-width: 12em;
	margin-bottom: 2em;
	text-decoration: none !important;
}

.footerButtons {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 1em;
}

.footerSocials__title {
	font-size: var(--size3);
	color: var(--color__gray);
	margin-top: 1em;
	margin-bottom: 1rem;
}

.lp--kontakt p {
	margin-bottom: 0.3rem;
}

.lp--kontakt a[href^="mailto"] {
	font-size: var(--size6);
}

.lp--kontakt a[href^="tel"] {
	font-size: var(--size3);
}

.lp--location {
	margin-top: 2em;
}

.lp--location > p {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 0.25rem;
}

@media (min-width: 65em) {
	
	.lp--location > p {
		justify-content: flex-end;
		align-items: flex-end;
	}
}

.lp--location a {
	display: inline-block;
}

.lp--location > * {
	font-size: var(--sizeH4);
}

.lp--location a {
	font-size: var(--size-1) !important;
}

.footNote {
	width: 100%;
	margin-top: 2em;
	padding-top: 2em;
	border-top: 1px solid var(--color__gray);
	
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 1em;
}


.footerMenu__item a {
	color: #fff;
	transition: color 0.4s;
	font-size: var(--size-1);
}

.footerMenu__item a.active, 
.footerMenu__item a:hover {
	color: var(--color__orange);
}

.copyright p {
	font-size: var(--sizeSmall) !important;
	color: var(--color__gray);
}

.footer .scrollLine {
	display: none;
}

.ws--slider-content + .footer .scrollLine,
.ws--blackBg + .footer .scrollLine {
	bottom: calc(100% - 5em);
	top: auto;
	display: none;
}


@media (min-width: 48em) {
	
	.footNote {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	
	.footerMenu {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 1em;
	}
}

@media (min-width: 65em) {
	
	.footer .ws__inner {
		display: flex;
		justify-content: space-between;
		align-items: stretch;
		flex-wrap: wrap;
		gap: 0;
	}
	
	.footer__left {
		text-align: right;
		width: 40%;
	}
	
	.footer__right {
		width: 40%;
		padding-bottom: 2em;
		
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: column;
		
	}
	
	.footerLogo {
		margin-left: auto;
		margin-right: 0;
	}
	
	.footerMenu {
		width: 40%;
		justify-content: flex-end;
	}
	
	.footNote {
		margin-top: 1em;
	}
	
	.ws--slider-content + .footer .scrollLine,
	.ws--blackBg + .footer .scrollLine {
		display: block;
	}
}

@media (min-width: 75em) {
	
	.ws.footer {
		padding-top: 3em;
	}
	
	.ws--slider-content + .footer .scrollLine,
	.ws--blackBg + .footer .scrollLine {
		height: 11em;
		bottom: calc(100% - 6em);
	}
	
	.footer .scrollLine__indicator {
		height: 30%;
	}
}


/*** .footer END ***/







.pressContent {
	
}

/*
.ws__pressInfo h2 {
	font-size: var(--size1);
	font-weight: var(--fontSemibold);
	color: var(--color__gray);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.ws__pressInfo strong {
	font-size: var(--size3);
	font-weight: var(--fontSemibold);
}

.ws__pressInfo em {
	font-size: var(--size1);
	font-style: normal;
	font-weight: var(--fontRegular);
	color: var(--color__gray);
	position: relative;
	margin-top: -0.5em;
	display: block;
}

.ws__pressInfo big {
	font-size: var(--size3);
}
*/

.ws__pressInfo {
	margin-top: 2em;
}

.ws__pressInfo .gridContact__position {
	color: var(--color__gray);
    border-bottom: 2px solid var(--color__silver);
    padding: 0 0.5em 0.8em 0.5em;
    margin-bottom: 0.8em;
    line-height: 1.3;
}

.ws__pressInfo .gridContact__position > div {
	font-weight: var(--fontRegular);
    font-size: var(--size-1);
    text-transform: uppercase;
}

.ws__pressInfo .customSocials {
	padding: 0 0.5em 0.5em 0.5em;
}

.ws__pressInfo .gridContact__data p {
	margin-bottom: 0;
}


@media (min-width: 48em) {
	
	.pressContent {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: row;
		gap: 2em;
	}
	
	.ws__pressInfo {
	    min-width: 12em;
		margin-top: 0;
	}
}

@media (min-width: 65em) {
	
	.pressContent {
		gap: 4em;
	}
}


.gridLogos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1em;
	margin-top: 2em;
}

.gridLogo {
	display: flex;
	justify-content: center;
	align-items: center;
	
	aspect-ratio: 10 / 8;
}

.gridLogo img {
	max-height: 5em;
}

@media (min-width: 48em) {
	
	.gridLogos {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (min-width: 65em) {
	
	.gridLogos {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
		gap: 2em;
	}
}

@media (min-width: 1600px) {
	
	.gridLogo {
		padding: 1em;
	}
}


.gridPartnersLogos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3px;
	margin-top: 2em;
}

.gridPartnersLogo {
	display: flex;
	justify-content: center;
	align-items: center;
	
	aspect-ratio: 10 / 8;
	background-color: var(--color__silver);
	border: 2px solid var(--color__silver);
	cursor: pointer;
}

.gridPartnersLogo.gridPartnersLogo--active {
	background-color: #fff;
}

.gridPartnersLogo .h3 {
	margin-bottom: 0;
}

.gridPartnersLogo img {
	max-height: 6em;
    max-width: 7em;
}

.gridLogo img {
	max-height: 3em;
    max-width: 7em;
}

@media (min-width: 48em) {
	

	.gridPartnersLogo img {
		max-height: 7em;
		max-width: 12em;
	}
	
	.gridLogo img {
		max-height: 5em;
		max-width: 10em;
	}

	.gridPartnersLogos {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (min-width: 65em) {
	
	.gridPartnersLogos {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

@media (min-width: 1600px) {
	
	.gridPartnersLogo {
		padding: 1em;
	}
}


.partnersPopups {
	position: fixed;
    top: 0;
    right: 0;
    z-index: 110;
    max-width: 90vw;
    height: 100%;
    width: 100%;
	background-color: var(--color__silver);
}

.partnersPopup {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translate(100%, -50%);
	max-height: 80vh;
	
	transition: transform 1s;
	
	max-width: 100%;
	width: 100%;
	padding: 2em;
	
    max-width: 90vw;
    width: 100%;
	max-height: 100vh;
	min-height: 100vh;
	
	overflow: auto;
	background-color: var(--color__silver);
    z-index: 110;
}

.partnersPopup.partnersPopup--active {
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
}

.partnersPopup .partnersPopup__logo {
	margin-bottom: 1.5em;
    max-width: 12em;
	display: block;
}

.partnersPopup .partnersPopup__logo img {
	max-height: 7em;
}

.partnersPopup.partnersPopup--active {
	display: block;
	transform: translate(0%, -50%);
}

.partnersPopup__content {
	margin-top: 1.5em;
}

.partnersPopup__btn {
	margin-top: 1.5em;
}

.closeBtn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5em;
	
	position: absolute;
	top: 2em;
    right: 2em;
	cursor: pointer;
}

.closeBtn .icon {
	color: var(--color__orange);
	width: 1.5em;
}

.closeBtn span {
	font-size: var(--sizeSmall);
	color: var(--color__gray);
}

@media (min-width: 48em) {
	
	.partnersPopups {
		max-width: 40vw;
	}
	
	.partnersPopup {
		max-width: 40vw;
	}
}

@media (min-width: 65em) {
	
	.partnersPopups {
		max-width: 29em;
	}
	
	.partnersPopup {
		max-width: 32em;
	}
	
	.partnersPopup {
		padding: 4em;
	}
	
	.closeBtn {
		top: 4em;
		right: 4em;
	}
	
	.partnersPopup .partnersPopup__logo {
		margin-bottom: 3.5em;
	}
}

.splitContent {
	display: flex;
	justify-content: stretch;
	align-items: stretch;
	flex-direction: column;
	gap: 1em;
	margin-top: 1em;
}

.splitContent__part {
	
}

@media (min-width: 48em) {
	
	.splitContent {
		flex-direction: row;
		gap: 2em;
	}
}

@media (min-width: 65em) {
	
	.splitContent {
		justify-content: space-between;
	}
}


.gridContacts {
	
}


.gridContacts {
	/* display: grid; */
	/* grid-template-columns: 1fr 1fr; */
	
	display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
	gap: 2em 1em;
}

.gridContact {
	max-width: 100%;
	width: 100%;
}

.gridContact--fullWIdth {
	margin-right: 30%;
}


.gridContact__position {
	color: var(--color__gray);
	border-bottom: 2px solid var(--color__silver);
	padding: 0 0.5em 0.8em 0.5em;
	margin-bottom: 0.8em;
	line-height: 1.3;
}

.gridContact__position b,
.gridContact__position strong {
	font-weight: var(--fontRegular);
	font-size: var(--size-1);
	text-transform: uppercase
}

.gridContact__name {
	font-weight: var(--fontSemibold);
	font-size: var(--sizeH4);
}

.gridContact__image {
	max-width: 100%;
	margin: 1em 0 0.5em 0;
	max-width: 7.5em;
	min-height: 3em;
}
	
.gridContact__image img {
	max-height: 3.5em;
	margin-left: auto;
	margin-right: auto;
}

.gridContact__content {
	padding: 0 0.5em 0.5em 0.5em;
}

.gridContact__data {
	position: relative;
	margin-top: -0.2em;
}

.accordionAdditionalContent {
	margin-bottom: 1em;
}

.accordionAdditionalContent h2 {
	margin-bottom: 0;
}

.accordionAdditionalContent small {
	font-size: 20.8px;
}

/*
.gridContact:nth-child(1n+2) {
	grid-row: 2;
}
*/

@media (min-width: 30em) {
	
	.gridContact {
		max-width: calc(50% - 0.5em);
		width: calc(50% - 0.5em);
	}
}

@media (min-width: 48em) {
	/*
	.gridContacts {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 2em;
	}
	*/
	
	.gridContacts {
		gap: 3em 1em;
	}
	
	.gridContact {
		max-width: calc(33.33% - 0.75em);
		width: calc(33.33% - 0.75em);
	}
	
	.gridContact--fullWIdth {
		margin-right: 60%;
	}
}

@media (min-width: 65em) {
	
}


.accordionTitle {
	position: relative;
	background-color: var(--color__silver);
	padding: 0.3em 3em 0.3em 0.8em;
	color: var(--color__orange);
	cursor: pointer;
}

.accordionTitle .title {
	margin: 0;
	font-weight: var(--fontThin);
	font-size: var(--size5);
	color: var(--color__orange);
}

.accordionTitle .icon {
	color: var(--color__orange);
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	transform-origin: 50% 50%;
	
	right: 1em;
	width: 1.5em;
	
	transition: transform 0.4s;
}

.accordionTitle.accordionTitle--active .icon {
	transform: translateY(-50%) rotate(-90deg);
}

.accordionTitle.accordionTitle--active .title {
	color: var(--color__gray);
}

.accordionContent {
	display: none;
}

.accordionWrapp.accordionWrapp--noTitle .accordionContent {
	display: block;
}

.ws.accordionWrapp {
	padding-bottom: 0;
}

.accordionWrapp + .accordionWrapp:last-of-type {
	padding-bottom: 2em;
}

.accordionContent {
	padding-bottom: 2em;
}


.accordionWrapp--podporniki {
	background-color: var(--color__gray);
}

.accordionWrapp--podporniki .accordionAdditionalContent {
	
}

.accordionWrapp--podporniki .accordionAdditionalContent {
    margin-bottom: 2em;
	padding: 0 0.5rem 0 0.5rem;
}

@media (min-width: 48em) {
    .accordionWrapp--podporniki .accordionAdditionalContent {
        padding: 0 3rem 0 3rem;
    }
}

.accordionWrapp--podporniki .gridContact__name {
    color: #fff;
}

.accordionWrapp--podporniki .gridContact__position {
	color: #fff;
	border-bottom: 1px solid var(--color__silver);
}

.accordionWrapp--podporniki .gridContact__content {
    color: #fff;
}

.accordionWrapp--podporniki .contentStyle a[href^="tel"] {
    color: #fff;
}

.accordionWrapp + .accordionWrapp--podporniki {
	margin-top: 3em;
}

.accordionWrapp--podporniki .gridContact__position {
    color: #fff;
    border-bottom: 1px solid #a9a9a9;
}

.accordionWrapp--podporniki .accordionAdditionalContent {
	margin-left: auto;
    margin-right: auto;
}

.accordionWrapp--default:last-child {
	margin-bottom: 3em;
}

.accordionWrapp--default + .ws:not(.accordionWrapp--default) {
	margin-top: 3em !important;
}

.accordionWrapp + .accordionWrapp--podporniki { margin-top: 3em;}

@media (min-width: 48em) {
	
	.accordionWrapp--default + .ws:not(.accordionWrapp--default) {
		margin-top: 5em !important;
	}
	
	.accordionWrapp--podporniki .gridContact__name {
		margin-bottom: 0.2em;
	}
	
	.accordionWrapp--podporniki .gridContact__position {
		    padding: 0 3rem 0.8em 3rem;
	}
	
	.accordionWrapp--podporniki .gridContact__content {
		padding: 0 3rem 0.5em 3rem;
	}
}

@media (min-width: 65em) {
	
	.accordionWrapp + .accordionWrapp:last-of-type {
		padding-bottom: 3em;
	}
	
	.accordionContent {
		padding-bottom: 3em;
	}
}
@media (min-width: 75em) {
	
	.accordionWrapp + .accordionWrapp:last-of-type {
		padding-bottom: 4em;
	}
	
	.accordionContent {
		padding-bottom: 4em;
	}
}



.gridProducts {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2px;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

.gridProducts__content {
	width: 100%;
}

.gridProduct__image {
	position: relative;
	overflow: hidden;
}

.gridProduct__image.gridProduct__image--default {
	background-color: var(--color__silver);
}

.gridProducts__category {
	font-weight: var(--fontSemibold);
	color: var(--color__gray);
}

.gridProducts .title + .gridProducts__category {
	position: relative;
	margin-top: -0.7em;
	margin-bottom: 0.5em;
	font-size: var(--sizeSmall);
}

.gridProducts__intro {
	font-size: var(--sizeSmall);
}

.gridProducts--v1 .gridProduct {
	background-color: var(--color__silver);
	max-height: 800px;
	min-height: 70vh;
	overflow: hidden;
	
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	flex-direction: column;
	position: relative;
	z-index: 10;
}

.gridProduct__utils .btn {
	margin-top: 1em;
	min-width: auto;
}


/* grid v1 */

.gridProducts--v1 .btn {
	min-width: auto;
}

.gridProducts--v1 .gridProduct__utils {
	color: #fff;
}

.gridProducts--v1 .gridProduct__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
	background-size: cover;
	background-position: 50% 50%;
	
	z-index: -1;
}

.gridProducts--v1 .gridProduct__image:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70%;
	
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	
	transition: opacity 0.5s, background 0.5s, height 0.5s;
}

.gridProducts--v1 .gridProduct__image:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color__black);
	opacity: 0;
	
	transition: opacity 0.5s, background 0.5s, height 0.5s;
}

.gridProducts--v1 .gridProduct:hover .gridProduct__image:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color__black);
	opacity: 0.6;
	
	transition: opacity 0.5s, background 0.5s, height 0.5s;
}

.gridProducts--v1 .gridProduct .title {
	font-weight: var(--fontRegular);
	color: #fff;
}

.gridProducts--v1.swiperSize--4 .gridProduct {
	max-width: 85vw;
}

@media(min-width: 400px) {
	
	.gridProducts--v1.swiperSize--4 .gridProduct {
		width: 85vw;
		max-width: 85vw;
	}
}

@media(min-width: 560px) {
	
	.gridProducts--v1.swiperSize--4 .gridProduct {
		width: 45vw;
		max-width: 45vw;
	}
}

@media(min-width: 1200px) {
	
	.gridProducts--v1.swiperSize--4 .gridProduct {
		width: 31vw;
		max-width: 31vw;
	}
}

@media(min-width: 1700px) {
	
	.gridProducts--v1.swiperSize--4 .gridProduct {
		width: 23.5vw;
		max-width: 23.5vw;
	}
	
	.gridProducts--v1.swiperSize--4exact .gridProduct {
		width: 25vw;
		max-width: 25vw;
	}
}

/* grid v1 END */


/* grid v2 */

.gridProducts--v2 .gridProduct__image {
	aspect-ratio: 600 / 500;
}

.gridProducts--v2 .gridProduct__image {
	margin-bottom: 1em;
}

.gridProducts--v2 .title {
	font-weight: var(--fontRegular);
	font-size: var(--size2);
}

.gridProducts--v2 .gridProduct__image--default .icon,
.gridProduct__image--default .icon {
	width: 90%;
    position: absolute;
    top: 65%;
    left: 65%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.gridProducts--v2  {
	gap: 3em;
}

.gridProducts--v2 .gridProduct {
	position: relative;
}

.gridProducts--v2 .gridProduct:after {
	content: '';
	position: absolute;
	top: 0;
	left: calc(100% + 0.5em);
	width: 2px;
	height: 100%;
	background-color: var(--color__silver);
	display: none;
}

.gridProducts--v2 .gridProduct .gridProduct__image img {
	transform: scale(1);
	transition: transform 0.6s;
}

.gridProducts--v2 .gridProduct .title {
	color: var(--color__text);
	transition: color 0.6s;
}

.gridProducts--v2 .gridProduct .gridProduct__image--default .icon {
	transition: transform 0.6s;
}

.gridProducts--v2 .gridProduct:hover .gridProduct__image img {
	transform: scale(1.1);
}

.gridProducts--v2 .gridProduct:hover .title {
	color: var(--color__orange);
}

.gridProducts--v2 .gridProduct:hover .gridProduct__image--default .icon {
    transform: translate(-50%, -50%) scale(1.1);;
}

/* grid v2 END */


@media (min-width: 48em) {
	
	.gridProducts--v1  {
		/* grid-template-columns: 1fr 1fr; */
		grid-template-columns: repeat(12, 1fr);
	}
	
	.gridProducts--v1 .gridProduct {
		grid-column: span 3;
	}
	
	/*
	.gridProducts--v1  .gridProduct:nth-child(1) { grid-column: span 4; height: 100vh; }
	.gridProducts--v1  .gridProduct:nth-child(2) { grid-column: span 4; height: 100vh; }
	.gridProducts--v1  .gridProduct:nth-child(3) { grid-column: span 4; height: 100vh; }
	*/
	
	.gridProducts--v1.gridProducts--size4 .gridProduct {
		grid-column: span 3 !important;
	}
	
	.gridProducts--v2  {
		/* grid-template-columns: 1fr 1fr; */
		grid-template-columns: repeat(3, 1fr);
		gap: 2em;
	}
	
	.gridProducts--v2 .gridProduct:after {
		left: calc(100% + 1em);
		display: block;
	}
	
	.gridProducts--v2 .gridProduct:nth-child(3n+3):after {
		display: none;
	}
}


@media (min-width: 65em) {
	
	.gridProducts--v1 .gridProduct__utils {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.8s;
	}
	
	.gridProducts--v1 .gridProduct:hover .gridProduct__utils {
		max-height: 15em;
	}
	
	/*
	.gridProducts--v1 .gridProduct:hover .gridProduct__image:after {
		background-color: var(--color__black);
		opacity: 0.7;
		height: 100%;
	}
	*/
	
	.gridProducts--v2  {
		/* grid-template-columns: 1fr 1fr; */
		grid-template-columns: repeat(4, 1fr);
	}
	
	.gridProducts--v2  {
		gap: 4em;
	}
	
	.gridProducts--v2 .gridProduct:after {
		left: calc(100% + 2em);
	}
	
	.gridProducts--v2 .gridProduct:nth-child(3n+3):after {
		display: block;
	}
	
	.gridProducts--v2 .gridProduct:nth-child(4n+4):after {
		display: none;
	}
}

/*
@media (min-width: 65em) {
	
	.gridProducts {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (min-width: 75em) {
	
	.gridProducts {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}
*/



/******* product page END *******/


.product {
	
}

/* .product .ws--povprasevanje + .product .gridProducts--v1 { */
.product .ws.ws--povprasevanje + .gridProducts {
	border-top: 2px solid #ffffff !important;
}

.product .gridProducts + .ws.footer {
	border-top: 2px solid #ffffff !important;
}

.product .ws--mainContent {
	background-color: var(--color__silver);
}

.product .ws--mainContentTechnical {
	background-color: #fff;
}

.product .ws--mainContentTechnical {
	
}

@media (min-width: 65em) {
    .product .gridPartnersLogos {
        grid-template-columns: 1fr 1fr 1fr;
    }
	
    .product .gridPartnersLogo img {
        max-height: 9em;
        max-width: 14em;
    }
}

/* Base styles to force equal distribution */
.ws--mainContentTechnical table[class*="cols-"] {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
}

/* Specific column widths */
.ws--mainContentTechnical .cols-1 td, .cols-1 th { width: 100%; }
.ws--mainContentTechnical .cols-2 td, .cols-2 th { width: 50%; }
.ws--mainContentTechnical .cols-3 td, .cols-3 th { width: 33.33%; }
.ws--mainContentTechnical .cols-4 td, .cols-4 th { width: 25%; }
.ws--mainContentTechnical .cols-5 td, .cols-5 th { width: 20%; }
.ws--mainContentTechnical .cols-6 td, .cols-6 th { width: 16.66%; }


.productContent__more {
	margin-top: 1em;
}

.hiddenContent {
	position: relative;
	max-height: 5.8em;
	overflow: hidden;
	font-size: var(--size1);
	
	transition: max-height 0.4s;
}

.hiddenContent:after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 5em;
	pointer-events: none;
	
	background: linear-gradient(to bottom,  rgba(224,224,225,0) 0%,rgba(224,224,225,1) 80%,rgba(224,224,225,1) 100%);
	opacity: 1;
	
	transition: opacity 0.4s;
}

.showHideContent {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.5em;
	
	cursor: pointer;
	color: var(--color__orange);
	
	transition: padding 0.4s;
}

.hideContent {
	display: none;
}

.showHideContent .icon {
	width: 1.2em;
	color: var(--color__orange);
}

.showHideContent .icon svg {
	transform: rotate(90deg);
	
	transition: transform 0.4s;
}

.showHideContent__arrow {
	height: 1.2em;
}

.hiddenContent .contentUtil__btn {
	margin-top: 2em;
}

.productContent__more .contentUtil__btn .btn {
	min-width: 50%;
}


.productContent__more--active .hiddenContent:after {
	opacity: 0;
}

.productContent__more--active .hideContent { display: block; }
.productContent__more--active .showContent { display: none; }
.productContent__more--active .showHideContent { padding-top: 1em; color: var(--color__gray); }
.productContent__more--active .showHideContent .icon { color: var(--color__gray); }
.productContent__more--active .showHideContent .icon svg { transform: rotate(-90deg); }




.brochure {
	max-width: 25em;
}

.brochureBtn span {
	font-weight: var(--fontThin);
}

.brochureTextAndImage {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	gap: 1em;
	margin-bottom: 1em;
}

.brochureTextAndImage a {
	background-color: transparent;
}

.brochureTextAndImage img {
	max-width: 6em;
}

.brochureTextAndImage .title {
	max-width: 8em;
}

.brochureTextAndImage.brochureTextAndImage--noimage .title {
	max-width: 100%;
}

.brochureBtn .btn {
	width: 100%;
}

.keyFeatures ul {
	list-style: none;
	padding: 0;
	font-size: var(--size1);
}

.keyFeatures ul li:after {
	display: none;
}

.keyFeatures ul li {
	border-bottom: 2px solid var(--color__silver);
	margin-bottom: 0.6em;
	padding-bottom: 0.6em;
}

.keyFeatures ul li:last-of-type {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}


.ws.ws--productGallery {
	padding-left: 0;
	padding-right: 0;
}

.ws.ws--productGallery .swiper-slide {
	width: auto;
}

.ws.ws--productGallery .ws__inner--gallery {
	max-width: 100%;
}

.productGallery__image img {
	max-height: 40vh;
	height: 40vh;
}

.ws.ws--povprasevanje {
	background-color: var(--color__silver);
    color: var(--color__text);
}

.ws.ws--povprasevanje .title {
    font-weight: var(--fontSemibold);
}

.product__circle {
	position: relative;
	width: 10em;
	height: 10em;
	background-color: var(--color__orange);
	color: #fff;
	border-radius: 50%;
	padding: 0.5em;
	
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 1rem;
	
	transition: transform 0.4s !important;
}

a.product__circle span {
	color: #fff;
}

a.product__circle:hover {
	transform: scale(1.2);
}

.product__circle span {
	font-size: var(--size2);
	line-height: var(--lineHeightTitles);
}

.product__intro {
	font-size: var(--size3);
}

.titleWrapp {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
	gap: 1em;
	margin-top: 2em;
}

.titleWrapp .productLogo {
	max-width: 24em;
}

.titleWrapp .productLogo img {
	max-height: 2em;
}

.titleWrapp .productLogo,
.titleWrapp .title {
    margin-bottom: 1.2rem;
}


@media (max-width: 1039px) {
	
	.keyFeatures--empty {
		display: none;
	}
}

@media (max-width: 48em) {
	
	.keyFeatures {
		margin-top: 2em;
		margin-bottom: 3em;
	}

	.titleWrapp .productLogo {
		max-width: 14em;
	}
}

/*
@media (max-width: 65em) {
	
	.product .ws--mainContent {
		padding-right: 4em;
	}
}
*/

@media (min-width: 65em) {
	
	.titleWrapp {
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
		gap: 2em;
	}
	
}

@media (min-width: 65em) {
	
	.ws--keyFeatures .ws__inner {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: row;
		gap: 2em;
	}
	
	.ws--keyFeatures .keyFeatures {
		width: 50%;
		margin-bottom: 0;
	}
	
	.ws--keyFeatures .brochureAndImage {
		width: 50%;
	}
	
	.ws--keyFeatures .brochureAndImage .productImage {
		position: relative;
		margin-top: -6em;
	}
	
	.productGallery__image img {
		max-height: 50vh;
		height: 50vh;
	}
}

@media (min-width: 75em) {
	
	.ws--mainContentProduct {
		min-height: 21em;
	}
	
	.productImage {
		position: relative;
	}
	
	.productImage img {
        width: 130%;
        position: relative;
        max-width: none;
        margin-bottom: 2em;
    }
	
	.ws--keyFeatures .ws__inner {
		gap: 3em;
	}
	
	.ws--keyFeatures .brochureAndImage {
        width: 50%;
    }
	
	.ws--keyFeatures .brochureAndImage .productImage {
		position: relative;
		margin-top: -6em;
    }
	
	.ws--mainContentProduct .ws__content {
		position: relative;
    }
	
	.product__circle {
        position: absolute;
        top: 5em;
        left: calc(100% + 3em);
    }
}

@media (min-width: 1200px) and (max-width: 1700px) {
	
	.ws--mainContentProduct .ws__content {
		padding-right: 9em;
    }
	
	.product__circle {
        position: absolute;
        top: 5em;
        left: calc(100% + -7em);
    }
	
	.product .ws.ws--headline .scrollLine {
		left: calc(50% + (var(--wrapper__maxWidth) / 2) - 12em);
        right: auto;
    }
}

@media (min-width: 1701px) {
	
	/* .product__circle { */
        /* left: calc(100% + 3.5em); */
    /* } */
	
	
	.ws--mainContentProduct .ws__content {
		padding-right: 4.5em;
    }
	
	.product__circle {
        position: absolute;
        top: 5em;
        left: calc(100% + -3.5em);
    }
	
	.product .ws.ws--headline .scrollLine {
		left: calc(50% + (var(--wrapper__maxWidth) / 2) - 8em);
        right: auto;
    }
}

/******* product page START *******/



/*** .ws--logotipi-download START ***/

.ws--logotipi-download {
	
}

.ws--logotipi-download .title {
	font-weight: var(--fontRegular);
	font-size: var(--size5);
}



/*** .ws--logotipi-download END ***/


/*** .ws--cta-gray-with-button ***/

.ws--cta-gray-with-button {
	
}

.ws--cta-gray-with-button + .ws--content-card-with-icon {
	padding-top: 0;
}

.ws--cta-gray-with-button .ws__inner {
	background-color: var(--color__gray);
	color: #fff;
	
	padding: var(--wrapper__bodyPadding);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
}


.ws--cta-gray-with-button .title {
	font-weight: var(--fontThin);
	font-size: var(--size5);
}

.ws--cta-gray-with-button big {
	font-size: var(--size2);
	font-weight: var(--fontThin);
    line-height: var(--lineHeightContent);
}

@media (min-width: 65em) {
    .ws--cta-gray-with-button + .ws--content-card-with-icon {
        margin-top: -2em;
    }
}

@media (min-width: 75em) {
	.ws--cta-gray-with-button + .ws--content-card-with-icon {
        margin-top: -3em;
    }
}

/*** .ws--cta-gray-with-button END ***/


/*** .ws--cta-orange-with-button ***/

.ws.ws--cta-orange-with-button .ws__inner {
	padding-top: 2em;
	padding-bottom: 2em;
}

.ws--cta-orange-with-button + .ws--content-card-with-icon {
	padding-top: 0;
}

.ws--cta-orange-with-button .ws__inner {
	/* background-color: var(--color__text); */
	/* color: #fff; */
	
	background-color: var(--color__gray);
	color: #fff;
	
	padding: var(--wrapper__bodyPadding);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
	
	border-radius: 2px;
}


.ws--cta-orange-with-button .title {
	font-weight: var(--fontThin);
	font-size: var(--size5);
}

.ws--cta-orange-with-button big {
	font-size: var(--size2);
	font-weight: var(--fontThin);
    line-height: var(--lineHeightContent);
}

.ws--cta-orange-with-button .contentMain {
	text-align: center;
}

@media (min-width: 48em) {
	
	.ws--cta-orange-with-button .contentMain {
		text-align: left;
	}
	
	.ws--cta-orange-with-button .ws__content {
	    display: flex;
		justify-content: center;
		align-items: center;
		gap: 3em;
	}
	
	.ws--cta-orange-with-button .contentUtils {
		margin-top: 0;
	}
}

@media (min-width: 65em) {
    .ws--cta-orange-with-button + .ws--content-card-with-icon {
        margin-top: -2em;
    }
}

@media (min-width: 75em) {
	.ws--cta-orange-with-button + .ws--content-card-with-icon {
        margin-top: -3em;
    }
}

/*** .ws--cta-gray-with-button END ***/


/*** .ws--content-card-with-icon ***/

.ws--content-card-with-icon {
	
}

.ws--content-card-with-icon .sliderContent--card .sliderContent__text .title--small {
	font-size: var(--size0);
	margin-bottom: 2em;
}

.ws--content-card-with-icon .sliderContent--card .sliderContent__text .title--sub {
	font-size: var(--size4);
}

.ws--content-card-with-icon .sliderContent__icon {
    max-width: 4em;
}

@media (min-width: 65em) {
    .ws--content-card-with-icon .gridContent {
        grid-template-columns: 1fr 1fr;
    }
}

/*** .ws--content-card-with-icon END ***/



/*** .ws--content-card-with-icon ***/

.ws--content-card-with-icon {
	
}

.ws--content-card-with-icon .sliderContent--card .sliderContent__text .title--small {
	font-size: var(--size0);
	margin-bottom: 2em;
}

.ws--content-card-with-icon .sliderContent--card .sliderContent__text .title--sub {
	font-size: var(--size4);
}

.ws--content-card-with-icon .sliderContent__icon {
    max-width: 4em;
}

@media (min-width: 65em) {
    .ws--content-card-with-icon .gridContent {
        grid-template-columns: 1fr 1fr;
    }
}

/*** .ws--content-card-with-icon END ***/




/*** .ws--product-catalog ***/

.ws--product-catalog {
	background-color: var(--color__silver);
}

.ws--product-catalog .btn {
	min-width: 18em;
}

.ws--product-catalog .title {
	font-size: var(--size5);
}

.ws--product-catalog .contentStyle{
	font-size: var(--size1);
}

.ws--product-catalog .ws__inner {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	gap: 1em;
}


.ws--product-catalog .btn + .btn {
	margin-top: 1em;
}
.ws--product-catalog .btn + .downloadBtn .btn {
	margin-top: 0;
}
.ws--product-catalog .btn + .downloadBtn {
	margin-top: 1em;
}

.catalogImage {
	position: relative;
	display: block;
	overflow: hidden;
}

.catalogImage__text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	gap: 0.5em;
}

.catalogImage__text .icon {
	color: #fff;
	width: 2em;
}

.catalogImage__text span {
	color: #fff;
}

@media (min-width: 48em) {
	
	.ws--product-catalog .ws__inner {
		flex-direction: row;
		gap: 30px;
	}
}

@media (max-width: 65em) {
	
	.catalogImage__text {
		position: absolute;
        top: auto;
        left: 0;
        width: 100%;
        height: auto;
        bottom: 0;
        padding: 2em 1em;
	}
}

@media (min-width: 65em) {
    
	.ws--product-catalog .ws__content--text {
		max-width: 50%;
	}
    
	.ws--product-catalog .ws__content--image {
		max-width: 50%;
	}
	
	.ws--product-catalog .ws__content--image img {
		max-width: 15em;
	}
	
	
	.catalogImage__text {
		opacity: 0;
		transform: scale(1.1);
		transition: opacity 0.5s, transform 0.5s;
		will-change: auto;
	}
	
	
	 .catalogImage:hover .catalogImage__text {
		opacity: 1;
		transform: scale(1);
	}
}

/*** .ws--content-card-with-icon END ***/



/***** video section *****/


.ws.ws--videoTitle {
	position: relative;
	padding-bottom: 1em;
}


/* The Main Wrapper */
.video-wrapper {
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    overflow: hidden; /* Essential for cropping video to fit */
    background: #000;
    border: 0;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* HTML5 Specific Styling */
video.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This does the magic for HTML5 */
}

/* YouTube Specific Styling */
.youtube-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevents clicking youtube default overlays */
}

/* Custom Controls Overlay */
.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    gap: 1em;
    padding: 20px 20px;
    border-radius: 8px;
    align-items: center;
}

.custom-controls button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
	opacity: 0.5;
	
	transition: opacity 0.5s;
}

.custom-controls button:hover {
	opacity: 1;
}

.custom-controls input[type="range"] {
    flex-grow: 1;
    cursor: pointer;
}

.progressBar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	cursor: pointer;
	background-color: rgba(255,255,255,0.5);
	transition: background 0.4s, height 0.4s;
}

.progressBar:hover {
	height: 20px;
}

.progressBar:hover .progressBar__status {
	opacity: 1;
}

.progressBar__status {
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: var(--color__orange);
	pointer-events: none;
}

.videoControls .icon {
	width: 1.2em;
	color: #fff;
	filter: drop-shadow(0px 0px 4px black);
}

.videoControls--muted .btn-mute { display: block; }
.videoControls--muted .btn-unmute { display: none; }
.videoControls--unmuted .btn-mute { display: none; }
.videoControls--unmuted .btn-unmute { display: block; }

.videoControls--playing .btn-play { display: none; }
.videoControls--playing .btn-pause { display: block; }
.videoControls--paused .btn-play { display: block; }
.videoControls--paused .btn-pause { display: none; }


.video-wrapper .progress-bar {
	border: 0;
	border-radius: 0;
	width: 100%;
	display: none;
}

@media (min-width: 65em) {
	
	.ws.ws--videoTitle {
		padding-bottom: 2em;
	}
}


/***** video section END *****/


.customSocials {
	margin-top: 1em;
}

.customSocials .socialIcon--in {
	background-color: #0177b5;
	box-shadow: none !important;
	border: 0;
	opacity: 1 !important;
}

.customSocials .socialIcon--in .icon {
	color: #fff;
}

.gridProducts.swiper--gp1 {
	position: relative;
	border: 0 !important;
	max-width: 100%;
    overflow: hidden;
}

.gridProducts.swiper--gp1 .swiperArrow {
	z-index: 10;
	color: #fff;
	width: 2em;
	height: 2em;
}

.swiperArrow:after {
	display: none;
}

.gridProducts.swiper--gp1 .swiperArrow.swiper-button-disabled {
	pointer-events: all;
}

.gridProducts.swiper--gp1 .swiper-button-prev .icon {
	transform: rotate(-180deg);
}

.gridProducts.swiper--gp1 .gridProduct__utils {
	max-width: 400px;
}

@media (min-width: 65em) {
	
	.gridProducts.swiper--gp1 .swiperArrow.swiper-button-next {
		right: 2rem;
	}
	.gridProducts.swiper--gp1 .swiperArrow.swiper-button-prev {
		left: 2rem;
	}
}

@media (min-width: 1400px) {
	
	.swiperSize--1 .gridProduct {
		padding-left: calc((100vw - var(--wrapper__maxWidth)) / 2 - var(--scrollBarWidth)) !important;
	}
	
}

.noResults {
	text-align: center;
	font-weight: var(--fontRegular);
	display: none;
}

.noResults--visible {
	display: block;
}


.ws--card-link-content + .ws--card-link-content {
	margin-top: 4em;
}

.sliderContent--contentCard .contentCard__intro {
	max-height: 0;
	overflow: hidden;
	
	transition: max-height 0.4s;
}

@media (min-width: 65em) {
	
	.ws--card-link-content + .ws--card-link-content {
		margin-top: -2em;
	}
	
	.sliderContent--contentCard:hover .contentCard__intro {
		max-height: 6em;
	}
	
	.sliderContent--contentCard .contentCard__intro {
		font-size: var(--size-1);
	}
}

@media (min-width: 1500px) {
	
	.sliderContent--contentCard .contentCard__intro {
		font-size: var(--size1);
	}
	
	.ws--card-link-content .gridContent {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
	
	.ws--card-link-content .gridContent .sliderContent {
        padding: 2em 2em 2em 2em;
    }
	
	.ws--card-link-content .gridContent .sliderContent__icon {
		width: 30%;
		max-width: 3em;
    }
	
	.ws--card-link-content .sliderContent--service .title {
		font-size: var(--size2);
    }
	
	.ws--card-link-content .sliderContent--service .contentCard__intro {
		font-size: var(--size-1);
    }
}


.contentLogos {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5em;
	margin-top: 2em;
	margin-bottom: 2em;
}

.contentLogo {
	max-width: 12em;
}

.contentLogo:hover {
	box-shadow: none !important;
}

.contentLogo img {
	max-height: 2.5em;
}


.ws--kontakt {
	
}

.ws__pressText .ws--kontakt {
	padding: 0; !important;
}

.ws__pressText .ws--zaposlitev {
	padding: 0; !important;
}


.ws--productOption {
	
}


.gridItem--product .gridItem__image {
	border: 1px solid var(--color__silver);
	overflow: hidden;
	padding: 0.5em;
	
	display: flex;
    justify-content: center;
    align-items: center;
	height: 17em;
}

.gridItem--product .gridItem__image img {
	max-height: 100%;
	transition: transform 0.6s;
}

.gridItem--product .title {
	font-weight: var(--fontSemibold);
    font-size: var(--size1);
	transition: color 0.4s;
}

.gridItem--product .gridItem__content {
	padding: 1em 1em 0 1em;
}

.gridItem--product .content {
	
}

.gridItem--product:hover .gridItem__image img {
	transform: scale(1.1);
}

.gridItem--product:hover .title {
	color: var(--color__orange);
}

@media (max-width: 600px) {
	
	.ws.ws--productOption {
		padding-top: 3em;
		padding-bottom: 5em;
	}

	.gridItem--product .gridItem__image {
		height: 10em;
	}
}


.ws--milestones {
	/* background-color: var(--color__silver); */
	color: var(--color__text);
}

.ws.ws--milestones > * {
	margin-bottom: 2em;
}

.ws--milestones .swiper {
	/* cursor: grab; */
	cursor: pointer;
}

.ws--milestones .swiper:after {
    content: '';
    display: block;
    position: absolute;
    top: 1.6rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color__gray);
}

.ws--milestones .sliderContent__content {
	position: relative;
    padding-top: 3.5rem;
}

.ws--milestones .sliderContent__content:after {
    content: '';
    display: block;
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background-color: var(--color__orange);
}

.sliderContent--milestone .title {
	font-weight: var(--fontSemibold);
}

@media (max-width: 1600px) {
	
	.ws--milestones .sliderContent__content:after {
		top: 0.85em;
	}
}

@media (min-width: 1600px) {
    .sliderContent.sliderContent--milestone {
        max-width: 385px;
    }
}


