@media only screen and
		(max-width: 768px){
				html,
				body{
						width:100% ;
						overflow-x:hidden ;
				}
}


















.modelViewPort {
  /* The black circle background around the model*/
  perspective: 1000px;
  width: 20rem;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  overflow: hidden;
}
.eva {
  --EVA-ROTATION-DURATION: 4s;
  transform-style: preserve-3d;
  animation: rotateRight var(--EVA-ROTATION-DURATION) linear infinite alternate;
}
.head {
  position: relative;
  width: 6rem;
  height: 4rem;
  border-radius: 48% 53% 45% 55% / 79% 79% 20% 22%;
  background: linear-gradient(to right, white 45%, gray);
}
.eyeChamber {
  width: 4.5rem;
  height: 2.75rem;
  position: relative;
  left: 50%;
  top: 55%;
  border-radius: 45% 53% 45% 48% / 62% 59% 35% 34%;
  background-color: #0c203c;
  box-shadow: 0px 0px 2px 2px white, inset 0px 0px 0px 2px black;
  transform: translate(-50%, -50%);
  animation: moveRight var(--EVA-ROTATION-DURATION) linear infinite alternate;
}
.eye {
  width: 1.2rem;
  height: 1.5rem;
  position: absolute;
  border-radius: 50%;
}
.eye:first-child {
  left: 12px;
  top: 50%;
  background: repeating-linear-gradient(
    65deg,
    #9bdaeb 0px,
    #9bdaeb 1px,
    white 2px
  );
  box-shadow: inset 0px 0px 5px #04b8d5, 0px 0px 15px 1px #0bdaeb;
  transform: translate(0, -50%) rotate(-65deg);
}
.eye:nth-child(2) {
  right: 12px;
  top: 50%;
  background: repeating-linear-gradient(
    -65deg,
    #9bdaeb 0px,
    #9bdaeb 1px,
    white 2px
  );
  box-shadow: inset 0px 0px 5px #04b8d5, 0px 0px 15px 1px #0bdaeb;
  transform: translate(0, -50%) rotate(65deg);
}
.body {
  width: 6rem;
  height: 8rem;
  position: relative;
  margin-block-start: 0.25rem;
  border-radius: 47% 53% 45% 55% / 12% 9% 90% 88%;
  background: linear-gradient(to right, white 35%, gray);
}
.hand {
  position: absolute;
  left: -1.5rem;
  top: 0.75rem;
  width: 2rem;
  height: 5.5rem;
  border-radius: 40%;
  background: linear-gradient(to left, white 15%, gray);
  box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.25);
  transform: rotateY(55deg) rotateZ(10deg);
}
.hand:first-child {
  animation: compensateRotation var(--EVA-ROTATION-DURATION) linear infinite
    alternate;
}
.hand:nth-child(2) {
  left: 92%;
  background: linear-gradient(to right, white 15%, gray);
  transform: rotateY(55deg) rotateZ(-10deg);
  animation: compensateRotationRight var(--EVA-ROTATION-DURATION) linear
    infinite alternate;
}
.scannerThing {
  width: 0;
  height: 0;
  position: absolute;
  left: 60%;
  top: 10%;
  border-top: 180px solid #9bdaeb;
  border-left: 250px solid transparent;
  border-right: 250px solid transparent;
  transform-origin: top left;
  mask: linear-gradient(to right, white, transparent 35%);
  animation: glow 2s cubic-bezier(0.86, 0, 0.07, 1) infinite;
}
.scannerOrigin {
  position: absolute;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  left: 60%;
  top: 10%;
  background: #9bdaeb;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.5);
  animation: moveRight var(--EVA-ROTATION-DURATION) linear infinite;
}
@keyframes rotateRight {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(25deg);
  }
}
@keyframes moveRight {
  from {
    transform: translate(-50%, -50%);
  }
  to {
    transform: translate(-40%, -50%);
  }
}
@keyframes compensateRotation {
  from {
    transform: rotateY(55deg) rotateZ(10deg);
  }
  to {
    transform: rotatey(30deg) rotateZ(10deg);
  }
}
@keyframes compensateRotationRight {
  from {
    transform: rotateY(55deg) rotateZ(-10deg);
  }
  to {
    transform: rotateY(70deg) rotateZ(-10deg);
  }
}
@keyframes glow {
  from {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  45% {
    transform: rotate(-25deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    opacity: 0;
  }
}














.orange {
  color: #ff7a01;
}

.form-container {
  max-width: 700px;
  margin: 30px;
  background-color: #001925;
  padding: 30px;
  border-left: 5px solid #ff7a01;
  /* Odstranjen clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%); */
  transition: box-shadow 0.3s ease, outline 0.3s ease, outline-offset 0.3s ease, transform 0.3s ease;
}

/* Ostala CSS koda ostane nespremenjena */

.form-container:hover {
  box-shadow: 0 0 10px 5px #40E0D0;
  outline: 5px solid #40E0D0; 
  outline-offset: -5px;
  transform: scale(0.96); 
}



.heading {
  display: block;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
	font-family: 'Archivo Black', sans-serif; 
	color: #64ffda;
	font-size: 30px;
}

.form-container .form .input {
  color: #EFF9FF;
  width: 100%;
  background-color: #002733;
  border: none;
  outline: none;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  border-left: 1px solid transparent;
}

.form-container .form .input:focus {
  border-left: 5px solid #ff7a01;
}

.form-container .form .textarea {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  background-color: #013747;
  color: #EBFAFF;
  font-weight: bold;
  resize: none;
  max-height: 150px;
  margin-bottom: 20px;
  border-left: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.form-container .form .textarea:focus {
  border-left: 5px solid #ff7a01;
}

.form-container .form .button-container {
  display: flex;
  gap: 10px;
}

.form-container .form .button-container .send-button {
  flex-basis: 70%;
  background: #ff7a01;
  padding: 10px;
  color: #E9F8FF;
  text-align: center;
  font-weight: bold;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.form-container .form .button-container .send-button:hover {
  background: transparent;
  border: 1px solid #ff7a01;
  color: #D8FEF5;
}

.form-container .form .button-container .reset-button-container {
  filter: drop-shadow(1px 1px 0px #ff7a01);
  flex-basis: 30%;
}

.form-container .form .button-container .reset-button-container .reset-button {
  position: relative;
  text-align: center;
  padding: 10px;
  color: #ff7a01;
  font-weight: bold;
  background: #001925;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  transition: all 0.2s ease-in-out;
}

.form-container .form .button-container .reset-button-container .reset-button:hover {
  background: #ff7a01;
  color: #D8FEF5;
}

		

		






























/* Stil za premikajočo se vrstico */
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee p {
  display: inline-block;
  animation: marquee 30s linear infinite; /* Prilagojen čas animacije */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%); 
  }
}







.navigation {
   border: 5px solid; /* Set initial border thickness */
  border-image-slice: 1; /* Ensure border-image covers entire border */
  border-image-source: linear-gradient(to right, #99A6D9, #99A7D9, #99D9D9, #99D9A6, #99A6D9);
  animation: colorShift 2s linear infinite; /* Animation for color change */
}

@keyframes colorShift {
  60% { border-image-source: linear-gradient(to right, #99A6D9, #99A7D9, #99D9D9, #99D9A6, #99A6D9); }
20% { border-image-source: linear-gradient(to right, #99A7D9, #99D9D9, #99D9A6, #99A6D9, #99A7D9); }
40% { border-image-source: linear-gradient(to right, #99D9D9, #99D9A6, #99A6D9, #99D9A6, #99D9D9); }
80% { border-image-source: linear-gradient(to right, #99D9A6, #99A6D9, #99D9A6, #99D9D9, #99D9A6); }
100% { border-image-source: linear-gradient(to right, #99A6D9, #99A7D9, #99D9D9, #99D9A6, #99A6D9); }

}
		.navigation {
  border-bottom: none; /* Remove the bottom border */
}



















#kubio .style-krjLr6qWdH7-outer a.style-krjLr6qWdH7-link {
  background: #a370f0;
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #714da6;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

#kubio .style-krjLr6qWdH7-outer a.style-krjLr6qWdH7-link .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #7b52b9;
  right: 0.3em;
  transition: all 0.3s;
}

#kubio .style-krjLr6qWdH7-outer a.style-krjLr6qWdH7-link:hover .icon {
  width: calc(100% - 0.6em);
}

#kubio .style-krjLr6qWdH7-outer a.style-krjLr6qWdH7-link .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #7b52b9;
}

#kubio .style-krjLr6qWdH7-outer a.style-krjLr6qWdH7-link:hover .icon svg {
  transform: translateX(0.1em);
}

#kubio .style-krjLr6qWdH7-outer a.style-krjLr6qWdH7-link:active .icon {
  transform: scale(0.95);
}













#kubio .style-vdS6JgwCMb-outer a.style-vdS6JgwCMb-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 5px;
  font-weight: 600;
  color: #FFFFFF;
  box-shadow: 0 0 0 2px #FFFFFF;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

#kubio .style-vdS6JgwCMb-outer a.style-vdS6JgwCMb-link svg {
  position: absolute;
  width: 24px;
  fill: #FFFFFF;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

#kubio .style-vdS6JgwCMb-outer a.style-vdS6JgwCMb-link .arr-1 {
  right: 16px;
}

#kubio .style-vdS6JgwCMb-outer a.style-vdS6JgwCMb-link .arr-2 {
  left: -25%;
}

#kubio .style-vdS6JgwCMb-outer a.style-vdS6JgwCMb-link .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: greenyellow;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

#kubio .style-vdS6JgwCMb-outer a.style-vdS6JgwCMb-link .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

#kubio .style-vdS6JgwCMb-outer a.style-vdS6JgwCMb-link:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

#kubio .style-vdS6JgwCMb-outer a.style-vdS6JgwCMb-link .arr-1 {
  right: -25%;
}

#kubio .style-vdS6JgwCMb-outer a.style-vdS6JgwCMb-link .arr-2 {
  left: 16px;
}

#kubio .style-vdS6JgwCMb-outer a.style-vdS6JgwCMb-link .text {
  transform: translateX(12px);
}

#kubio .style-vdS6JgwCMb-outer a.style-vdS6JgwCMb-link svg {
  fill: #212121;
}

#kubio .style-vdS6JgwCMb-outer a.style-vdS6JgwCMb-link {
  scale: 0.95;
  box-shadow: 0 0 0 4px #FFFFFF;
}

#kubio .style-vdS6JgwCMb-outer a.style-vdS6JgwCMb-link:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}









.parent {
  width: 300px;
  padding: 20px;
  perspective: 1000px;
}


.card {
  padding-top: 100px;
  /* border-radius: 10px; */
  border: 3px solid rgb(255, 255, 255);
  transform-style: preserve-3d;
  background: linear-gradient(135deg,#ECF1F6  18.75%,#DDE9F7 0 31.25%,#CCE1F6  0),
      repeating-linear-gradient(45deg,#f3f3f3 -6.25% 6.25%,#ffffff 0 18.75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 0;
  background-color: #BCE3EA;
  width: 200%;
  box-shadow: rgba(142, 142, 142, 0.8) 0px 30px 30px -10px;
  transition: all 0.5s ease-in-out;
}

.card:hover {
  background-position: -100px 100px, -100px 100px;
  transform: rotate3d(0.5, 1, 0, 30deg);
}

.content-box {
  background: rgba(4, 193, 250, 0.732);
  /* border-radius: 10px 100px 10px 10px; */
  transition: all 0.5s ease-in-out;
  padding: 60px 25px 25px 25px;
  transform-style: preserve-3d;
}

.content-box .card-title {
  display: inline-block;
  color: white;
  font-size: 25px;
  font-weight: 900;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 50px);
}

.content-box .card-title:hover {
  transform: translate3d(0px, 0px, 60px);
}

.content-box .card-content {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #f2f2f2;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 30px);
}

.content-box .card-content:hover {
  transform: translate3d(0px, 0px, 60px);
}

.content-box .see-more {
  cursor: pointer;
  margin-top: 1rem;
  display: inline-block;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  color: rgb(7, 185, 255);
  /* border-radius: 5px; */
  background: white;
  padding: 0.5rem 0.7rem;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 20px);
}

.content-box .see-more:hover {
  transform: translate3d(0px, 0px, 60px);
}

.date-box {
  position: absolute;
  top: 20px;
  right: 80px;
  height: 80px;
  width: 80px;
  background: none;
  /* border-radius: 10px; */
  padding: 10px;
  transform: translate3d(1px, 1px, 100px);
}
.date-box span {
  display: block;
  text-align: center;
}

.date-box .month {
  color: rgb(250, 250, 250);
  font-size: 9px;
  font-weight: 700;
}

.date-box .date {
  font-size: 10px;
  font-weight: 200;
  color: rgb(4, 193, 250);
}
























button21 {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 font-family: inherit;
 font-size: 14px;
 font-weight: 800;
 text-transform: uppercase;
 letter-spacing: 0.4px;
 color: #40D2A8;
 background-color: #e0e8ef;
 border-style: solid;
 border-color: rgba(255, 255, 255, 0.333);
 border-radius: 30px 0px 30px 30px;
 padding: 16px 24px 16px 28px;
 transform: translate(0px, 0px) rotate(0deg);
 transition: 0.2s;
 box-shadow: -4px -2px 16px 0px #ffffff, 4px 2px 16px 0px rgb(64 210 168 / 48%);
}

button21:hover {
 color: #516d91;
 background-color: #E5EDF5;
 box-shadow: -2px -1px 8px 0px #ffffff, 2px 1px 8px 0px rgb(95 157 231 / 48%);
}

button21:active {
 box-shadow: none;
}
































button1 {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 font-family: inherit;
 font-size: 14px;
 font-weight: 800;
 text-transform: uppercase;
 letter-spacing: 0.4px;
 color: #40D2A8;
 background-color: #e0e8ef;
 border-style: solid;
 border-color: rgba(255, 255, 255, 0.333);
 border-radius: 0px 30px 30px 30px;
 padding: 16px 24px 16px 28px;
 transform: translate(0px, 0px) rotate(0deg);
 transition: 0.2s;
 box-shadow: -4px -2px 16px 0px #ffffff, 4px 2px 16px 0px rgb(64 210 168 / 48%);
}

button1:hover {
 color: #516d91;
 background-color: #E5EDF5;
 box-shadow: -2px -1px 8px 0px #ffffff, 2px 1px 8px 0px rgb(95 157 231 / 48%);
}

button1:active {
 box-shadow: none;
}

















.loader_phone {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 160px;
  height: 100px;
  margin-left: -80px;
  margin-top: -50px;
  border-radius: 5px;
  background: #1e3f57;
  animation: dot1_ 3s cubic-bezier(0.55,0.3,0.24,0.99) infinite;
}

.loader_phone:nth-child(2) {
  z-index: 11;
  width: 150px;
  height: 90px;
  margin-top: -45px;
  margin-left: -75px;
  border-radius: 3px;
  background: #3c517d;
  animation-name: dot2_;
}

.loader_phone:nth-child(3) {
  z-index: 12;
  width: 40px;
  height: 20px;
  margin-top: 50px;
  margin-left: -20px;
  border-radius: 0 0 5px 5px;
  background: #6bb2cd;
  animation-name: dot3_;
}

@keyframes dot1_ {
  3%,97% {
    width: 160px;
    height: 100px;
    margin-top: -50px;
    margin-left: -80px;
  }

  30%,36% {
    width: 80px;
    height: 120px;
    margin-top: -60px;
    margin-left: -40px;
  }

  63%,69% {
    width: 40px;
    height: 80px;
    margin-top: -40px;
    margin-left: -20px;
  }
}

@keyframes dot2_ {
  3%,97% {
    height: 90px;
    width: 150px;
    margin-left: -75px;
    margin-top: -45px;
  }

  30%,36% {
    width: 70px;
    height: 96px;
    margin-left: -35px;
    margin-top: -48px;
  }

  63%,69% {
    width: 32px;
    height: 60px;
    margin-left: -16px;
    margin-top: -30px;
  }
}

@keyframes dot3_ {
  3%,97% {
    height: 20px;
    width: 40px;
    margin-left: -20px;
    margin-top: 50px;
  }

  30%,36% {
    width: 8px;
    height: 8px;
    margin-left: -5px;
    margin-top: 49px;
    border-radius: 8px;
  }

  63%,69% {
    width: 16px;
    height: 4px;
    margin-left: -8px;
    margin-top: -37px;
    border-radius: 10px;
  }
}





















.loader1 {
  position: relative;
  border-style: solid;
  box-sizing: border-box;
  border-width: 40px 60px 30px 60px;
  border-color: #3760C9 #96DDFC #96DDFC #36BBF7;
  animation: envFloating 1s ease-in infinite alternate;
}

.loader1:after {
  content: "";
  position: absolute;
  right: 62px;
  top: -40px;
  height: 70px;
  width: 50px;
  background-image: linear-gradient(#fff 45px, transparent 0),
            linear-gradient(#fff 45px, transparent 0),
            linear-gradient(#fff 45px, transparent 0);
  background-repeat: no-repeat;
  background-size: 30px 4px;
  background-position: 0px 11px , 8px 35px, 0px 60px;
  animation: envDropping 0.75s linear infinite;
}

@keyframes envFloating {
  0% {
    transform: translate(-2px, -5px)
  }

  100% {
    transform: translate(0, 5px)
  }
}

@keyframes envDropping {
  0% {
    background-position: 100px 11px , 115px 35px, 105px 60px;
    opacity: 1;
  }

  50% {
    background-position: 0px 11px , 20px 35px, 5px 60px;
  }

  60% {
    background-position: -30px 11px , 0px 35px, -10px 60px;
  }

  75%, 100% {
    background-position: -30px 11px , -30px 35px, -30px 60px;
    opacity: 0;
  }
}






















.input {
  margin-top: 1rem;
  border-radius: 10px;
  outline: 2px solid #00a6fb;
  border: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #d6f1ff;
  outline-offset: 3px;
  padding: 10px 12.5px;
  transition: all 0.2s ease;
  width: 250px;
}

.input:hover {
  background-color: #fff;
}

.input:focus {
  outline-offset: -6px;
  background-color: #d6f1ff;
}









button3 {
  font-family: inherit;
  font-size: 20px;
  background: #212121;
  color: white;
  fill: rgb(155, 153, 153);
  padding: 10px 45px; /* Adjusted padding */
  display: flex;
  align-items: center;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  font-weight: 1000;
}


button3 span {
  display: block;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}

button3 svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

button3:hover {
  background: #000;
}

button3:hover .svg-wrapper {
  transform: scale(1.25);
  transition: 0.5s linear;
}

button3:hover svg {
  transform: translateX(1.2em) scale(1.1);
  fill: #fff;
}

button3:hover span {
  opacity: 0;
  transition: 0.5s linear;
}

button3:active {
  transform: scale(0.95);
}









































.button11 {
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  animation: sway 2s infinite alternate;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 500px;
  transition: transform 0.5s, box-shadow 0.5s;
}

.button11:hover {
  transform: scale(1.5) rotate(-360deg) translateY(-1em);
  box-shadow: 0 0 20px 0 rgba(29, 161, 242, 0.5);
}

.icon11 {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  transition: transform 0.5s;
}

.icon11:hover {
  transform: scale(8);
  filter: drop-shadow(1px 2px 4px rgba(0,0,0,0.9))
}