/*izbornik  alt*/
.izbornik-green a {
  position: relative;
  color: var(--primary);
  text-decoration: none;
  padding-bottom: 5px;
}

.izbornik-green a:hover {
  color: var(--primary);
}

.izbornik-green a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transform: scaleX(0);
  transition: transform 0.45s ease;
}

.izbornik-green a:hover::before {
  transform: scaleX(1);
}
.izbornik a {
  position: relative;
  color: var(--primary);
  text-decoration: none;
  padding-bottom: 5px;
}

.izbornik a:hover {
  color: var(--primary);
}

.izbornik a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: transform 0.45s ease;
}

.izbornik a:hover::before {
  transform: scaleX(1);
}
/*Full btn*/
.full-width-btn a span, 
.full-width-btn a {
    width: 100%;
    text-align: center !important;
    box-sizing: border-box;
}
/*footer*/
.clients-img{opacity: 0.35;
    filter: grayscale(100%);
    transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
    transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750);}
.clients-img:hover{opacity: 1;
    filter: grayscale(0%);}
.max-h-50{
height: calc(50vh);}

/*reveal*/
/*reveal*/
:root {
	--animation-delay: 0.5s;
	--duration: 500ms;
	--iterations: 1;
}
.reveal-text,
.reveal-text::after {
	animation-delay: var(--animation-delay);
	animation-iteration-count: var(--iterations);
	animation-duration: var(--duration);
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.reveal-text {
	position: relative;
	user-select: none;
	animation-name: reveal-text;
	cursor: default;
  color: #32cebc;
}
.reveal-text:after{content: "";
		position: absolute;
		z-index: 999;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #011cff;
		transform: scaleX(0);
		transform-origin: 0 50%;
		pointer-events: none;
		animation-name: revealer-text;}
@keyframes reveal-text {
	from {
		clip-path: inset(0 100% 0 0);
	}
	to {
		clip-path: inset(0 0 0 0);
	}
}
@keyframes revealer-text {
	
	0%, 50% {
		transform-origin: 0 50%;
	}
	
	60%, 100% {
		transform-origin: 100% 50%;		
	}

	
	60% {
		transform: scaleX(1);
	}
	
	100% {
		transform: scaleX(0);
	}
}