/***************************************************              GENERAL RESET STYLES             ***************************************************/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Orbitron:wght@400;500;600;700&display=swap");
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #fff;
}

*:focus {
  outline: none;
}

body {
  line-height: 1;
  background-color: #0c0c0c;
  cursor: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body::-webkit-scrollbar {
  display: none; /* For WebKit (Chrome, Safari etc.) */
}
nav ul {
  list-style: none;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  cursor: none;
}

a:hover {
  text-decoration: none;
  cursor: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border-style: none;
  width: 100%;
  height: 100%;
}

form fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

input,
textarea,
select {
  vertical-align: middle;
  color: #000;
  padding: 0;
  border: 1px solid transparent;
  cursor: none !important;
  /* box-sizing: border-box; */
  resize: none;
}

input,
select {
  vertical-align: middle;
}

b {
  font-weight: 400;
}

.container {
  display: block;
  position: relative;
  overflow: hidden;
  width: 1220px;
  padding: 0 10px;
  margin: 0 auto 0 auto;
  height: 100%;
}

.container_s { /*   NEMA u all9704.css */
  display: block;
  position: relative;
  overflow: hidden;
  width: 1220px;
  padding: 0 10px;
  margin: 0 auto 0 auto;
  height: 500px;
}

header,
main,
footer,
section {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
main {
  overflow: visible;
}

section {
  background-color: #0c0c0c;
  padding-top: 130px;
}
section.you-get.dev {
  padding-top: 10px;
}
/***************************************************              CURSOR            ***************************************************/
.ball {
  width: 30px;
  height: 30px;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform-origin: center center;
  pointer-events: none;
  border: 0.5px solid #fff;
}
.cursor {
  width: 10px;
  height: 10px;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  background-color: #fff;
}
input,
button {
  cursor: none;
}
/***************************************************              POPUP            ***************************************************/
.popup {
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 0;
  transition: 1s;
}
.popup.active {
  opacity: 1;
  z-index: 1000;
  transition: 1s;
}
.popup.active .popup__inner {
  transform: translateY(0);
  transition: 1s;
}

.popup__inner {
  border-radius: 15px;
  background: #0c0c0c;
  width: 1151px;
  height: 790px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: translateY(15px);
  transition: 1s;
}
.popup__title {
  width: 80%;
  text-align: center;
  font-family: Orbitron;
  font-size: 40px;
  font-weight: 600;
  line-height: 130%;
  text-transform: uppercase;
}
.popup__text {
  font-size: 18px;
  text-transform: uppercase;
  margin: 20px 0 40px;
}
.closePopup {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 40px;
  top: 40px;
}
.popup form {
  display: flex;
  flex-direction: column;
}
.popup .btn {
  align-self: center;
}
/***************************************************              HEADER            ***************************************************/
.header {
  background-color: #0c0c0c;
  overflow: visible;
  z-index: 99;
  position: fixed;
  transition: top 0.2s ease-in-out;
  top: 0;
}

.header__desktop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.header.nav-up {
  top: -70px;
}

.navigation__list {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 20px 0;
}

.navigation__link {
  text-transform: uppercase;
  transition: 0.3s;
}

.navigation__link:hover {
  color: #ff3d00;
  transition: 0.3s;
}

.logo {
  max-width: 87px;
  transition: max-width 0.5s;
}
.logo.small {
  max-width: 60px !important;
}

.header__desktop {
  position: relative;
}

.header__mobile {
  display: none;
  position: relative;
  z-index: 10;
  height: 45px;
  background-color: #0c0c0c;
  opacity: 0.8;
}

.header__mobile .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__mobile.active {
  top: 0;
}
.logo__mobile {
  width: 50px;
  height: 50px;
}
.menu {
  display: block;
  background-color: transparent;
  border: none;
  display: flex;
  padding: 0;
  position: relative;
  z-index: 101;
}
.line {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 3;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 3;
  stroke-dashoffset: -134;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 3;
}
.open .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 3;
}
.open .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -90;
  stroke-width: 3;
}
.open .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 3;
}
body.lock {
  overflow: hidden;
}
.header__inner {
  align-items: center;
  z-index: 6;
  position: relative;
}
.burger {
  display: block;
  position: fixed;
  width: 100vw;
  height: 100dvh;
  background-color: transparent;
  top: -130%;
  left: 0;
  z-index: 4;
}
.burger .burger__inner {
  width: 100vw;
  height: 100dvh;
  background-color: #0c0c0c;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  position: absolute;
}

.burger__bg {
  width: 100vw;
  height: 100dvh;
  background-color: #161616;
  bottom: 130%;
  position: fixed;
  z-index: 3;
  left: 0;
}

.menu.open {
  z-index: 101;
}
.burger .navigation__list {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.burger_services {
  width: 200px;
  height: auto;
  background-color: #0c0c0c;
  position: fixed;
  top: -200%;
  z-index: 10;
  left: 996px;
  transition: 0.8s;
}
.burger_services__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services__imgg {
  width: 442px;
  height: 442px;
}
.services__list a {
  text-transform: uppercase;
  margin: 15px 0;
  display: block;
  transition: 0.4s;
  width: fit-content;
}
.services__list a:hover {
  color: #ff3d00;
  transition: 0.4s;
}
.sevicesBtn.active {
  color: #ff3d00;
  transition: 0.4s;
}
.burger_services.active {
  top: 42px;
  transition: 0.3s;
}

.burger .navigation__list {
  width: 100%;
  gap: 0;
}
.burger__item {
  width: 100%;
  text-align: center;
}
.burger__item a {
  font-size: 60px;
  transition: 0.8s;
  transition: color 0.3s;
}
.burger__item a:hover {
  /* background-color: #ff3d00; */
  /* color: #0c0c0c; */
  transition: 0.8s;
  transition: color 0.3s;
}
.burger__list {
  background-color: #ff3d00;
  height: 100%;
  justify-content: center;
}
.burger__list a {
  color: #000;
}
.burger__list a:hover {
  color: #fff;
}
/***************************************************              HERO MAIN            ***************************************************/
html, body {
  overflow: visible !important;
}

.hero {
  height: calc(var(--vh) * 100);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero__bg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  z-index: 1;
  bottom: 0;
  overflow: visible;
}

.hero__bg-content {
  width: 1100px;
  height: 1000px;
  margin-bottom: -140px;
  margin-right: 135px;
  filter: brightness(1.05);
  overflow: hidden;
}

.hero__bg-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none; /* ⛔ Ne dozvoli klik na video */
}

.hero__logo {
  position: fixed;
  right: 136px;
  bottom: 70px;
  width: 114px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 50%;
  backdrop-filter: blur(150px);
}
.hero__logo-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  animation: pulse 10s infinite linear;
  border-radius: 50%;
}
.hero__logo:hover .hero__logo-content {
  animation: scale 1.2s infinite linear;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero__logo .hero__logo-content {
  width: 59px;
  height: 59px;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
  padding-top: 120px;
}

.hero__content-1 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.hero__content-1 p {
  max-width: 352px;
  color: #ababab;
  text-align: right;
  font-size: 18px;
  opacity: 0;
}

.hero__content-2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  opacity: 0;
}

.hero__content-2 span {
  font-family: Orbitron;
  font-size: 144px; /* font-size: 186px; u all9704.css */
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #ff3d00;
}

.hero__content-3 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  opacity: 0;
}

.hero__content-3 p {
  font-family: Orbitron;
  font-size: 186px;
  font-weight: 700;
  text-transform: uppercase;
  animation: flickerH 4s linear reverse infinite;
}

.hero__content-3-right,
.hero__content-3-left {
  display: flex;
}

.btn {
  border-radius: 39px;
  width: 224px;
  height: 51px;
  padding: 1px;
  background: rgb(22, 22, 22);
  background: linear-gradient(
    90deg,
    rgba(22, 22, 22, 1) 0%,
    rgba(134, 134, 134, 1) 48%,
    rgba(255, 255, 255, 1) 100%
  );
  transition: 1s;
  display: block;
}

.btn__wrap {
  background-color: #111;
  box-shadow: 8px 8px 15px 0px rgba(60, 60, 60, 0.25) inset,
    0px 7px 15px 0px rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  border-radius: 39px;
  display: flex;
  align-items: center;

  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 6px 6px 6px 20px;
  justify-content: space-between;
}

.btn__inner {
  border-radius: 39px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 8px 8px 15px 0px rgba(60, 60, 60, 0.25) inset,
    0px 7px 15px 0px rgba(0, 0, 0, 0.25);
  width: 65px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.btn__wrap p {
  position: relative;
}

.mix {
  mix-blend-mode: difference;
}

.btn__inner img {
  max-width: 20px;
}

/***************************************************              SERVICES            ***************************************************/
.services__content {
  width: 400vw;
  display: flex;
}

.services__content .services__item {
  width: 100vw;
  height: 60vh;
}

.services__text {
  max-width: 591px;
  margin-bottom: 40px;
  margin-top: 20px;
  font-size: 18px;
}

.services__item-number {
  position: relative;
  z-index: 1;
  width: max-content;
  height: 166px;
  opacity: 1;
  transform: translate(0px, 40px);
  opacity: 1;
  transition: 1s;
}

.services__subtitle {
  font-family: Orbitron;
  font-size: 64px;
  font-weight: 500;
  margin-top: -80px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: 1.2s;
  transform: translate(0px, 70px);
}

.services__item.active .services__subtitle {
  transform: translate(0px, 0px);
  opacity: 1;
  transition: 1.2s;
}

.services__item.active .services__item-number {
  transform: translate(0px, 0px);
  opacity: 1;
  transition: 1s;
}

.services__item.active .services__description {
  transform: translate(0px, 0px);
  opacity: 1;
  transition: 1.5s;
}
.services__item.active .services__bottom {
  opacity: 1;
  scale: 1;
  transition: 1s;
}
.services__description {
  max-width: 603px;
  font-size: 18px;
  margin-bottom: 70px;
  opacity: 0;
  transition: 1.5s;
  transform: translate(0px, 70px);
}

.services__bottom {
  display: flex;
  align-items: center;
  gap: 60px;
  opacity: 0;
  transition: 1s;
  scale: 0.7;
}

.services__link {
  color: #ff3d00;
  font-size: 18px;
  font-weight: 500;
  text-decoration-line: underline;
  text-transform: uppercase;
  margin-top: 8px;
  transition: 0.4s;
}

.services__item-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 565px;
}
.services {
  /* overflow: visible; */
}
.services .container {
  height: auto;
}
.services__wrap .container {
  height: 100%;
  overflow: visible;
}

.services__nav {
  width: 100vw;
  margin-top: 30px;
}
.services__nav .container {
  position: relative;
  z-index: 2;
}
.services__nav-list {
  display: flex;
  justify-content: space-between;
}
.services__nav-item {
  display: flex;
  flex-direction: column;
}
.services__nav-item h4 {
  color: #606060;
  font-family: Orbitron;
  font-size: 24px;
  font-weight: 500;
  transition: 1s;
}
.services__nav-item span {
  font-size: 40px;
  text-transform: uppercase;
  font-family: Orbitron;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #661e08;
  color: transparent;
  transition: 1s;
}
.services__nav .line {
  width: 100%;
  height: 1px;
  background-image: url(../images/service-line.webp);
  position: absolute;
  z-index: 1;
  margin-top: -12px;
}
.services__nav .cirkle {
  background-color: transparent;
  border: 1px solid #fff;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  align-self: center;
  border-color: transparent;
  transition: 1s;
}
.services__nav .cirkle__inner {
  border-radius: 50%;
  width: 12.5px;
  height: 12.5px;
  background-color: #959595;
  transition: 1s;
}

.services__nav-item.active span {
  -webkit-text-stroke-color: #ff3d00;
  transition: 1s;
}
.services__nav-item.active h4 {
  color: #fff;
  transition: 1s;
}
.services__nav-item.active .cirkle {
  border-color: #fff;
  transition: 1s;
}
.services__nav-item.active .cirkle__inner {
  background-color: #fff;
  transition: 1s;
}
/***************************************************              PARTNERS            **************************************************/
.partners__list { /*   IMA u all9704.css nema u all.css */
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.partners__list { /*   IMA u all9704.css nema u all.css */
  display: flex;
  gap: 70px;
  align-items: center;
}
.partners__wrap {
  height: 105px;
  display: flex;
  width: max-content;
}
.partners__list { /*   IMA u all9704.css nema u all.css */
  width: max-content;
}

.partners__item {
  max-width: 215px;
  display: flex;
  align-items: center;
}
.partners__item img {
  height: auto;
}
/* 
.partners__item:nth-child(1) {
  width: 147px;
  height: 101px;
}

.partners__item:nth-child(2) {
  width: 100px;
  height: 101px;
}

.partners__item:nth-child(3) {
  width: 85px;
  height: 101px;
}

.partners__item:nth-child(4) {
  width: 132px;
  height: 101px;
}

.partners__item:nth-child(5) {
  width: 215px;
  height: 101px;
}

.partners__item:nth-child(6) {
  width: 101px;
  height: 101px;
}

.partners__item:nth-child(7) {
  width: 193px;
  height: 101px;
}

.partners__item:nth-child(8) {
  width: 100px;
  height: 101px;
}

.partners__item:nth-child(9) {
  width: 79px;
  height: 86px;
}

.partners__item:nth-child(10) {
  width: 179px;
  height: 36px;
}

.partners__item:nth-child(11) {
  width: 203px;
  height: 62px;
}

.partners__item:nth-child(12) {
  width: 207px;
  height: 60px;
}

.partners__item:nth-child(13) {
  width: 207px;
  height: 60px;
} */

.partners__grad {
  width: 659px;
  height: 105px;
  background: linear-gradient(90deg, #0c0c0c 0%, rgba(12, 12, 12, 0) 100%);
  position: absolute;
  z-index: 2;
  left: 0;
  top: 130px;
}

.grad2 {
  rotate: 180deg;
  right: 0;
  left: auto;
}

/***************************************************              PORTFOLIO            ***************************************************/

.title,
.title-white {
  color: #ff3d00;
  font-family: Orbitron;
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
}

.title.dev,
.title.dev .title-white {
	font-size: 42px;
}

.title-white {
  color: #fff;
  animation: flickerH 4s linear reverse infinite;
}

.title-white--about {
  display: inline-block;
  margin-left: 20px;
}

.highlight-note {
  color: #ff3d00; /* ili crvena po tvojoj paleti */
  font-weight: 700;
}

.clearfix {
  clear: both;
}

.portfolio__list {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
}

.portfolio__item {
  border-top: 1px solid #959595;
  border-bottom: 1px solid #959595;
  height: 260px;
}
.portfolio__item-content {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}
.portfolio__item-left {
  color: #8a8a8a;
  font-size: 18px;
  line-height: 140%; /* 25.2px */
  text-align: right;
  transition: 0.4s;
  display: flex;
  align-items: center;
  gap: 35px;
  z-index: 2;
}
.portfolio__item-left h4 {
  font-family: Orbitron;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.9s;
  color: #fff; /*  NEMA u all9704.css */
}
.portfolio__item-left h3 { /*  NEMA u all9704.css */
  font-family: Orbitron;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.9s;
  margin: 0;
}

.portfolio__item-img {
  position: absolute;
  opacity: 0;
  transform: translate(-100%, 0px);
  transition: 0.7s;
  top: 1px;
  bottom: 1px;
  z-index: 1;
}

.portfolio__item:hover .portfolio__item-img {
  opacity: 1;
  transform: translate(0px, 0px);
  transition: 0.9s;
}
.portfolio__item:hover h4 {
  transform: translate(400px, 0px);
  transition: 0.7s;
}
.portfolio__item:hover h3 { /*  NEMA u all9704.css */
  transform: translate(400px, 0px);
  transition: 0.7s;
}
.portfolio__item span {
  transition: 0.3s;
  transition-delay: 0.5s;
}
.portfolio__item:hover span {
  opacity: 0;
  transition: 0.1s;
}
.portfolio__item:hover .portfolio__item-left {
  color: #ff3d00;
  transition: 0.4s;
}

/***************************************************              CARUSEL            ***************************************************/
/* 
.carousel {
  perspective: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0c0c0c;
}

.carousel > * {
  flex: 0 0 auto;
}

.carousel figure {
  margin: 0;
  width: 40%;
  transform-style: preserve-3d;
  transition: transform 0.5s;
  border-radius: 40px;
  transform-box: fill-box;
}

.carousel figure img {
  width: 100%;
  box-sizing: border-box;
  padding: 0 0px;
  border-radius: 40px;
  transform-box: fill-box;
}

.carousel figure img:not(:first-of-type) {
  position: absolute;
  left: 0;
  top: 0;
} */

.carousel nav { /*  NEMA u all.css */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 0;
}

.carousel nav button { /*  NEMA u all.css */
  flex: 0 0 auto;
  margin: 0 5px;

  width: 65px;
  height: 39px;
  background-color: #262626;
  border-radius: 30px;
  border: none;
  background-image: url("../images/btn-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.carousel nav button.prev { /*  NEMA u all.css */
  transform: rotateY(180deg);
}
.carouselSlider { /*  NEMA u all.css */
  width: 800px;
}
.carouselSlider img { /*  NEMA u all.css */
  border-radius: 20px;
}
.swiper-slide__content {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}
.carousel-item__overlay { /*  NEMA u all.css */
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.60);
    padding: 25px 30px 30px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.8s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.carousel-item__overlay .bottom-block { /*  NEMA u all.css */
    display: flex;
    align-items: flex-end;
    gap: 34px;
}

.carousel-item__overlay .bottom-block p { /*  NEMA u all.css */
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    width: 70%;
}

.carousel-item__overlay .bottom-block span { /*  NEMA u all.css */
    color: #FF3D00;
    text-align: right;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
	white-space: nowrap;
}

.client-name {
	display: flex;
	flex-direction: column;
	gap: 0;
	align-items: flex-end;
	width: 30%;
}

.carousel-item__overlay h3 { /*  NEMA u all.css */
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
}
.carouselSlider .swiper-slide:hover .carousel-item__overlay { /*  NEMA u all.css */
	opacity: 1;
}

/***************************************************     ABOUTUS    **********************************************/
.about__bg {
  color: #232323;
  font-family: Orbitron;
  font-size: 133px;
  font-weight: 700;
  letter-spacing: 6.65px;
  text-transform: uppercase;
  line-height: 200px;
  position: absolute;
  bottom: -20px;
  right: 0;
  z-index: 1;
}
.about__content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
  position: relative;
}
.about__right {
  padding-top: 80px;
}
.about__right,
.about__left {
  flex: 1;
}
.about__text {
  margin: 15px 0 30px;
  margin-left: 20px;
  font-size: 18px;
  line-height: 130%; /* 23.4px */
}
.about__bottom {
  display: none;
  gap: 60px;
  align-items: center;
}
.about__left {
  display: flex;
  align-items: end;
  gap: 15px;
  /* max-width: 594px; */
}
.about__left img {
  width: 70%;
}
.about__left img:first-child {
  padding-top: 20%;
  width: 30%;
}
/***************************************************              REVIEVS            ***************************************************/

.reviews__item-img {
  max-width: 138px;
}
.reviews__slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0 40px;
  border-top: 1px solid #959595;
  border-bottom: 1px solid #959595;
  margin-top: 10px;
}
.review__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.review__nav div {
  width: 65px;
  height: 39px;
  background-color: #262626;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 25px;
  background-image: url(../images/btn-arrow.svg);
}
.review__nav .review__prew {
  transform: rotateY(180deg);
}
.reviews__item {
  display: flex;
  justify-content: space-between;
}
.reviews__item-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.reviews__item-right {
  flex: 3;
}
.reviews__item-right span {
  color: #7d7d7d;
  line-height: 130%; /* 20.8px */
  margin-bottom: 25px;
  display: block;
}

.reviews__item-right p {
  font-size: 18px;
  line-height: 130%; /* 23.4px */
}
.reviews__item-left span {
  color: #777;
  font-size: 18px;
  line-height: 130%; /* 23.4px */
}
.reviews__item-title {
  color: #ff3d00;
  font-size: 20px;
  line-height: 130%; /* 26px */
}
/***************************************************              NEWS            ***************************************************/
.news__content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0 60px;
  flex-wrap: wrap;
}
.news__item {
  flex: 0 0 48%;
  max-width: 49%;
}
.news__item:hover .next__link {
  transform: translate(20px, 0px);
  transition: 0.6s;
  background-color: #ff3d00;
}
.news_title {
  margin-top: 20px;
  font-size: 20px;
  line-height: 130%; /* 26px */
  text-transform: uppercase;
  font-weight: bold;
}
.news__text {
  margin-top: 15px; /* u all9704.css margin: 10px 0 20px; Razmak između videa i teksta/tagova */
  margin: 10px 0 20px;
  font-size: 18px;
  line-height: 130%; /* 23.4px */
}
.news__bottom {
  display: flex;
  align-items: center;
  gap: 15px;
}
.news__data {
  color: #7d7d7d;
  line-height: 130%; /* 20.8px */
}
.next__link {
  transition: 0.6s;
  width: 65px;
  height: 39px;
  background-color: #262626;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 25px;
  background-image: url(../images/btn-arrow.svg);
}
.services__link:hover {
  color: #606060;
  text-decoration: underline;
  transition: 0.4s;
}
/***************************************************              FORM            ***************************************************/
.form {
  padding-bottom: 130px;
}
.form__img {
  max-width: 473px;
  position: absolute;
  top: 50px;
  right: 0;
  animation: flickerH 4s linear reverse infinite;
}
.form__title {
  max-width: 897px;
  font-family: Orbitron;
  font-size: 40px;
  font-weight: 600;
  line-height: 130%; /* 52px */
  text-transform: uppercase;
  margin-bottom: 20px;
}
.form__text {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 65px;
}
.form__top p {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.form__top input {
  flex: 1;
}
.form__wrap {
  width: 692px;
}
.form__textarea {
  height: 120px;
  margin: 30px 0;
}
.form__textarea,
.form__input {
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid #666;
  padding: 10px 0;
  color: #fff;
}
.form__textarea::placeholder,
.form__input::placeholder {
  color: #fff;
}
form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
form button {
  border: none;
}
/***************************************************              FOOTER            ***************************************************/
.footer {
  padding: 30px 0;
  border-top: 1px solid #666;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__logo {
  max-width: 82px;
}
.footer__item p {
  color: #989898;
}
.footer__item:nth-child(1) .footer__link {
  margin: 16px 0 5px;
}
.footer__item:nth-child(4) {
  align-items: end;
}

.footer__link {
  transition: 0.4s;
}
.footer__link:hover {
  color: #989898;
  transition: 0.4s;
}
.policy {
  text-decoration: underline;
}
.policy:hover {
  text-decoration: underline;
}

.first_anima__wrap {
  width: 100vw;
  height: 100dvh;
  position: absolute;
  top: -130px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 2;
}
#first_anima {
  width: 900px;
  height: 90%;
}
canvas {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes flickerH {
  0% {
    opacity: 0.15;
  }
  5% {
    opacity: 0.4;
  }
  10% {
    opacity: 0.32;
  }
  15% {
    opacity: 0.4;
  }
  25% {
    opacity: 0.25;
  }
  30% {
    opacity: 0.6;
  }
  35% {
    opacity: 0.25;
  }
  40% {
    opacity: 0.32;
  }
  45% {
    opacity: 0.15;
  }
  60% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.4;
  }
  80% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.38;
  }
  100% {
    opacity: 0.5;
  }
}

/***************************************************              HERO-GAME            ***************************************************/
.hero-game__inner {
  height: 100%;
}
.hero-game {
  height: calc(100dvh - 121px);
  padding: 0;
  margin-top: 121px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page__title {
  font-size: 84px;
}
.services-page .page__title {
  max-width: 600px;
}
.page__description {
  font-size: 18px;
  margin: 40px 0 70px;
  max-width: 593px;
}
.hero-game__content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.game_line {
  position: relative;
  z-index: 11;
}
.line__img1 {
  width: 367px;
  height: 207px;
}
.line__img2 {
  width: 458.667px;
  height: 258px;
}
.game_line__item {
  display: flex;
}
.game_line__item2,
.game_line__item1 {
  display: flex;
  gap: 20px;
  padding: 0 10px;
}
.game_line {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-game__banner {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
/* .hero-game__foto-1 {
  width: 368px;
  height: 207px;
  top: 43px;
  left: 149px;
}
.hero-game__foto-2 {
  width: 235.585px;
  height: 133px;
  top: 68px;
  right: 710px;
}
.hero-game__foto-3 {
  width: 236.444px;
  height: 133px;
  right: 232px;
  top: 289px;
}
.hero-game__foto-4 {
  width: 382px;
  height: 215px;
  right: 539px;
  bottom: 0;
}
.hero-game__foto-5 {
  width: 306px;
  height: 172px;
  left: 360px;
  bottom: 120px;
}
.hero-game__foto-6 {
  width: 237px;
  height: 133px;
  left: -30px;
  bottom: 255px;
} */
/***************************************************              YOU-GET            ***************************************************/
.you-get__inner {
  display: flex;
  justify-content: space-between;
}
.you-get__img {
  width: 600px;
  height: 600px;
  position: absolute;
  right: 0;
  top: -24px;
  opacity: 0;
}

.dev .you-get__img {
	top: 50px;
}

.you-get__img:nth-child(1) {
  opacity: 1;
}
.grey__button {
  width: 65px;
  height: 39px;
  border-radius: 39px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 8px 8px 15px 0px rgba(60, 60, 60, 0.25) inset,
    0px 7px 15px 0px rgba(0, 0, 0, 0.25);
  padding: 15px;
  display: flex;
  transition: 1s;
}
.you-get__item {
  max-width: 589px;
/*   height: 140px; */
  height: auto;
  padding: 80px 0 10px;
  border-bottom: 1px solid #959595;
  transition: 1s;
  z-index: 2;
  position: relative;
}
.you-get__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  position: relative;
}
.you-get__button h4 {
  font-family: Orbitron;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 15px;
  transition: 0.4s;
}
.you-get__item:hover h4 {
  transition: 0.4s;
  color: #ff3d00;
}


.you-get__content-wr {
	  display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.8s;
}
.you-get__content-wr > * {
	min-height: 0px;
}

.you-get__item.active .you-get__content-wr {
	grid-template-rows: 1fr;
}



.you-get__content {
  color: #ababab;
  font-size: 18px;
  opacity: 0;
  z-index: 1;
  position: relative;
  display: block;
  transition: 0.5s;
}
/* .you-get__item.active {
  height: 265px;
  transition: 1s;
} */
.you-get__item.active h4 {
  color: #ff3d00;
}
.active .you-get__content {
  opacity: 1;
  transition: 0.5s; /* Updated transition properties */
}

.active .grey__button {
  transform: rotateY(180deg);
  transition: 1s;
}
/***************************************************              REDIRECT            ***************************************************/
.redirect__inner {
  display: flex;
}
.redirect__item {
  flex: 1;
  border: 1px solid #4f4f4f;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 20vw;
  height: 790px;
  overflow: hidden;
}
.redirect__item-bg {
  position: absolute;
  bottom: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.redirect__item-bg img {
  z-index: 1;
  position: relative;
  transition: 1s;
  scale: 1.1;
}

.redirect__item:hover .redirect__item-black {
  height: 0;
  transition: 0.7s ease-out;
}
.redirect__item:hover img {
  scale: 1;
  transition: 1s;
}

.redirect__item-black {
  height: 100%;
  width: 100%;
  transition: 0.7s ease-out;
  background-color: #0c0c0c;
  opacity: 0.9;
  z-index: 2;
  top: 0;
  position: absolute;
}
.redirect__item-top {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  z-index: 3;
  position: relative;
}
.redirect__item-top p {
  opacity: 0;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: underline;
}
.redirect__item-top span {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ff3d00;
  text-decoration: underline;
}
.redirect__item-bottom {
  transform: rotate(-90deg);
  font-family: Orbitron;
  font-size: 40px;
  text-transform: uppercase;
  z-index: 3;
  position: relative;
  margin-left: -30%;
  margin-bottom: 340px;
  width: 600px;
}
/***************************************************              TEAM            ***************************************************/
.team__list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: -120px;
}
.team__item {
  border: 1px solid #4f4f4f;
  padding: 20px;
  height: 351px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.team__item:nth-child(1),
.team__item:nth-child(2),
.team__item:nth-child(4) {
  border: 1px solid transparent;
  opacity: 0;
}
.team__subtitle {
  font-family: Orbitron;
  font-size: 32px;
  font-weight: 300;
  color: #ff3d00;
}
.team__text {
  color: #ababab;
  font-size: 18px;
}
.team__grafiri {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  position: absolute;
}
.team__grafiri .grey {
  color: #232323;
  font-family: Orbitron;
  font-size: 137px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  z-index: 2;
  margin-left: 201px;
}
.team__grafiri .stroke {
  transform: rotate(-90deg);
  font-family: Orbitron;
  font-size: 250px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: -170px;
  line-height: 0.7;
  position: relative;
  z-index: 1;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #222;
  margin-top: 50px;
}
.team__title {
  margin-bottom: 40px;
}

/***************************************************              TEAM            ***************************************************/
.develop__text {
  font-size: 18px;
  margin: 20px 0 35px;
}
.develop__inner {
  display: flex;
  gap: 20px;
}
.develop__line {
  width: 1px;
  height: 341px;
  background: #959595;
  margin-top: 40px;
}
.develop__right,
.develop__left {
  width: 49%;
  padding-top: 40px;
  position: relative;
  border-top: 1px solid #959595;
}
.develop__left {
  background-image: url(https://cdn-paula.paulapanijan.workers.dev/images/logo-wedevfor.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 180px;
  background-position: bottom left;
}
.develop__content h4 {
  margin-top: 15px;
  margin-bottom: 15px;
  color: #ff3d00;
  font-family: Orbitron;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
}
.develop__content p {
  color: #ababab;
  font-size: 18px;
  width: 490px;
}
.develop__right {
  display: flex;
  flex-wrap: wrap;
  background-image: url(../images/develop-lines.webp);
  background-repeat: no-repeat;
  background-position: 0 40px;
  row-gap: 31px;
}
.develop__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 150px;
}
.develop__button p {
  font-family: Orbitron;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
}
.develop__content {
  position: absolute;
  opacity: 0;
  transition: 0.5s;
}
.develop__content.active {
  transition: 0.5s;
  opacity: 1;
}
.develop__button.active p {
  color: #ff3d00;
}
/***************************************************              AREAS            ***************************************************/
.areas__top {
  display: flex;
  margin-bottom: 50px;
}
.title__areas {
  width: 60%;
}
.areas__descrip {
  width: 482px;
  font-size: 18px;
  margin-top: 28px;
}
.areas__bottom {
  display: flex;
  flex-wrap: wrap;
  column-gap: 122px;
}
.areas__text {
  width: 285px;
  border-bottom: 1px solid #424242;
  padding: 20px 0;
  display: flex;
  align-items: center;
}
.areas__text p {
  font-size: 18px;
  text-transform: uppercase;
}
/***************************************************              HERO-ABOUT            ***************************************************/
.hero-about {
  height: calc(100dvh - 121px);
  padding: 0;
  margin-top: 121px;
}
.hero-about__inner {
  width: 100%;
  padding-right: calc(50% - 600px);
  display: flex;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-about__img {
  width: 796px;
  height: 795px;
  display: flex;
  align-items: flex-end;
}
.hero-about__img img {
  height: auto;
}
.hero-about__text {
  font-size: 18px;
  margin-top: 56px;
}
.about-btn {
  margin-top: 78px;
}
.hero-about__content {
  width: 763px;
  display: flex;
  flex-direction: column;
}
.hero-about__descrip {
  align-self: flex-end;
  color: #bbb;
  text-align: right;
  font-family: Orbitron;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  width: 458px;
  margin-top: -160px;
}
.about__title-white,
.about__title {
  font-family: Orbitron;
  font-size: 166px;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  color: #ff3d00;
  word-wrap: break-word;
}
.about__title-white {
  color: #fff;
}

/***************************************************              HERO-PORTFOLIO            ***************************************************/
.portfolio__title {
  font-size: 96px;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  width: 80%;
}
.portfolio__titleca { /*  NEMA u all9704.css */
  font-size: 86px;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  width: 80%;
}
.portfolio-btn {
  display: inline-block;
  margin-top: 45px;
  position: absolute;
  right: 0;
}
.hero-portfolio__text {
  width: 794px;
  font-size: 18px;
}
/***************************************************              GALLERY            ***************************************************/
.gallery__top-controls {
  margin: 20px 0 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tabs__control {
  display: flex;
  gap: 12px;
}
.tab__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 291px;
  height: 51px;
  border-radius: 45px;
  border: 1px solid #8a8a8a;
  color: #8a8a8a;
  font-size: 18px;
  line-height: 140%; /* 25.2px */
  text-transform: uppercase;
}
.tab__btn.active {
  border: 1px solid #fff;
  color: #fff;
}
.slider__control {
  display: flex;
  gap: 20px;
}
.portolio__prew {
  rotate: 180deg;
}
.gallery__slider {
  height: 436px;
  position: absolute;
  opacity: 0;
  overscroll-behavior: contain;
  /* display: none; /* ovo sam dodala */
  /* z-index: 1; /* ovo sam dodala */
}
.gallery__slider.active {
  position: relative;
  opacity: 1;
  /* display: block; /* ovo sam dodala */
  /* z-index: 2; /* ovo sam dodala */
}
.gallery:last-child {
  padding-bottom: 130px;
}
/***************************************************              HERO-CONTACT            ***************************************************/
.contact__list {
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*column-gap: 175px;*/
  row-gap: 25px;
}
.contact__img {
  max-width: 30px;
  max-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__item {
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact__item p {
  font-size: 18px;
  transition: 0.4s;
}
.contact__item:hover p {
  color: #ff3d00;
  transition: 0.4s;
}
.contact__title {
  font-size: 96px;
}
/***************************************************              PROJECT            ***************************************************/
.project__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  padding-bottom: 130px;
}
.project__item {
  flex: 0 0 48%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #424242;
}
.project__link {
  width: 291px;
  height: 51px;
  border-radius: 45px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-transform: uppercase;
}
.project__img {
  width: 100%;
  height: 328px;
  position: relative;
  overflow: hidden;
}
.project__item:hover .project__bg {
  opacity: 0;
  transition: 0.5s;
}
.project__item .project__img .item-img {
  transition: 0.5s;
  scale: 1.05;
  overflow: hidden;
}
.project__item:hover .project__img .item-img {
  scale: 1;
  transition: 0.5s;
}
.project__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  transition: 0.5s;
}
.project__bg img {
  width: 345px;
  height: 100px;
}
.project__list-item .img {
  width: 22.704px;
  height: 20px;
}
.project__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
/***************************************************              CATALOG            ***************************************************/
.catalog {
  padding: 120px 0 130px;
}
.catalog__list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 22px;
}
.catalog__list .news__item {
  flex: 0 0 48%;
}
/***************************************************              BLOG            ***************************************************/
.blog {
  padding: 140px 0 130px;
}
.blog__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog__img {
  width: 100%;
  margin: 25px 0 40px;
}
.title-blog {
  color: #fff;
  font-family: Orbitron;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 52px */
  text-transform: uppercase;
  text-align: center;
}
.blog__control {
  margin-top: 50px;
  display: flex;
  gap: 20px;
}
.blog__prew {
  rotate: 180deg;
}
.blog__text {
  font-size: 18px;
  line-height: 130%;
}

.blog__text img {
	width: unset;
}

/***************************************************              BLOG            ***************************************************/

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
  position: absolute !important;
  width: max-content !important;
  font-size: 12px !important;
}
form > p > span:nth-child(3) > span {
  margin-top: -28px;
}
.wpcf7 form .wpcf7-response-output {
  border: none !important;
}
.wpcf7 form .wpcf7-response-output {
  border: none !important;
  margin: 0;
  padding: 0;
  font-size: 12px;
  margin-top: -40px;
}
.wpcf7-form-control-wrap {
  flex: 1 !important;
}
.game_line__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}
/*.news__img {
  height: 350px; 
  overflow: hidden; 
  position: relative; 
}

.news__img iframe {
  width: 100%; 
  height: 100%; 
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover; 
}*/
.news__img {
  position: relative;
  width: 100%;
  max-width: 800px; /* Maksimalna širina videa */
  margin: 0 auto; /* Centriranje */
}

.news__img iframe {
  width: 100%; 
  height: auto;
  aspect-ratio: 16 / 9; /* Automatski održava ispravan odnos stranica */
  border: none;
}

.news__img img {
  object-fit: cover;
}
.blog-page ol {
  margin-left: 18px;
  gap: 10px;
  list-style: auto;
  display: flex;
  flex-direction: column;
}
.blog-page p,
.blog-page ul {
  width: 100%;
  line-height: 1.6;
}
.blog-page ul {
  margin: 5px 0 20px;

  list-style: disc;
  margin-left: 30px;
}
strong {
  font-weight: 600;
}
.blog-page strong {
  display: inline-block;
}
.gallery__item {
  width: 100%;

}

/* Default - fallback */
.gallery__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery__item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Tab sa slikama 2678x1696 ≈ 1.58 */
.tab-2678x1696 .gallery__item {
  aspect-ratio: 2678 / 1696;
  max-height: 80vh;
}

/* Tab sa slikama 3310x1878 ≈ 1.76 */
.tab-3310x1878 .gallery__item {
  aspect-ratio: 3310 / 1878;
  max-height: 80vh;
}

/* Tab sa slikama 2000x2000 = 1 */
.tab-2000x2000 .gallery__item {
  aspect-ratio: 1 / 1;
  max-height: 80vh;
}

.tab-3310x1878 .image-compare {
  aspect-ratio: 3310 / 1878;
  max-height: 80vh;
  width: 100%;
  overflow: hidden;
}
/* .gallery__slider1 .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  background: #222;
  display: block;
} */

.project__list {
  display: flex;
  flex-wrap: wrap;
}
.project__list li {
  width: 50%;
}
.gallery__big {
  position: fixed;
  width: 100vw;
  height: 100dvh;
  background-color: rgb(0, 0, 0);
  align-items: center;
  justify-content: center;
  z-index: 100000;
  top: 0;
  left: 0;
  display: none;
}
.gallery__big img {
  height: 100%;
  width: auto;
}
.gallery__big.active {
  display: flex;
}
.pol h2 {
  font-size: 24px;
  width: 100%;
  text-align: left;
  margin-top: 15px;
}
td,
th {
  padding: 10px;
}
form > p:nth-child(4) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
form > p:nth-child(4) > label {
  display: none;
}
form > p:nth-child(4) img {
  width: 200px;
}
form > p:nth-child(4) a {
  font-size: 12px;
  color: #fff;
  display: none;
}
form > p:nth-child(4) > input {
  margin-top: 0;
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid #666;
  padding: 10px 0;
  color: #fff;
}
.blog-page a strong,
.blog-page a{
	line-height: 1.6;
	color: #ff3d00 !important;
}


/***************************************************              VIDEO            ***************************************************/
 /*  SEKCIJE VIDEO NEMA u all9704.css */
.video-preview {
  text-align: center;
  max-width: 640px;
  height: 320px; /* Osigurajte da okvir ima proporcije 16:9 */
  overflow: hidden; /* Spriječite prikazivanje dijelova slike izvan okvira */
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  /*margin: 20px auto;*/
}

.video-preview img {
  width: 100%;
  height: 100%; /* Ispunjava cijeli okvir */
  object-fit: cover; /* Pomaže da se slika obreže i ispuni prostor */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-preview img:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.7);
}

.video-preview .video-title {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin: 10px 0 5px;
}

.video-preview .video-description {
  font-size: 14px;
  color: #bbbbbb;
}

/***************************************************              BLOG            ***************************************************/
 /*  SEKCIJE VIDEO NEMA u all.css */
.hero-portfolioa {
  padding-top: 60px;
}

.hero-portfolioa__inner {
  position: relative;
}

.KoAfol {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
}

.KoAfol::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Tamni overlay */
  z-index: 5;
}

.KoAfol img {
  display: block;
  width: 100%;
  height: auto;
}

.tYQ4dP {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}
.tYQ4dP h2 {
  font-size: 86px;
  color: #fff;
  font-family: Orbitron, sans-serif;
  animation: flickerH 4s linear reverse infinite;
}
._5xBc0C {
  justify-content:center;
  padding:100px 0;
  margin:100px 0
}
._5xBc0C h2 {
  margin:0;
  letter-spacing:15px
}

/***************************************************        Character Art          ***************************************************/
/* NEMA u all9704.css SVE DO KRAJA */
/* Portfolio tekst u slici */
.KoAfol {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 20px;
}

.KoAfol::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Tamni overlay */
  z-index: 5;
}

.KoAfol img {
  display: block;
  width: 100%;
  height: auto;
}

.tYQ4dP {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}
.tYQ4dP h2 {
  font-size: 86px;
  color: #fff;
  font-family: Orbitron, sans-serif;
  animation: flickerH 4s linear reverse infinite;
}
._5xBc0C {
  justify-content:center;
  padding:100px 0;
  margin:100px 0
}
._5xBc0C h2 {
  margin:0;
  letter-spacing:15px
}
/* Naslov desno od videa */
.text-center {
  display: flex; /* Koristi fleksni raspored */
  justify-content: center; /* Centriraj horizontalno */
  align-items: center; /* Centriraj vertikalno */
  text-align: center; /* Tekst unutar elementa poravnaj centralno */
}

.text-center h4 {
  font-size: 30px;
}
.text-center h3 {
  text-transform: none; /* Uklanja veliko pisanje */
}
/* tablica ispod naslova */
.pp-facts-container {
  margin-top: 40px;
	margin-bottom: 20px;
}
.pp-facts-container * {
  font-family: Orbitron !important; /* Primijeniti Orbitron na sve unutar pp-facts-container */
  font-size: 15px !important;
  color: #8a8a8a !important;
}

.pp-facts-cell {
	padding: 5px;
}

/* Highlights ispod --> */
.news__imgrg {
  height: 350px; /* Ograničava visinu */
  overflow: visible; /* Sprječava sakrivanje sadržaja izvan kontejnera */
  /* position: relative; /* Potrebno za pravilno pozicioniranje iframe-a */
}
.news__itemrg {
  flex: auto;
  max-width: 100%; /* Ako želite da zauzme punu širinu */
}
/* Ikone ispod videa */
/* .work-item-tags-container
{
	margin-top: 10px;
	width: 100%;
	text-align: left;
	overflow: hidden;
}

.work-item-tag
{
	height: 21px;
	min-width: 30px;
	padding-left: 7px;
	padding-right: 7px;
	color: white;
	font-family: 'Quicksand', sans-serif;
	font-weight: 100;
	font-size: 14px;
	float: left;
	background-color: #813772;
	margin-right: 5px;
	margin-top: 5px;
	text-align: center;
	border-radius: 4px;
}
.work-item-desc- {
	margin-top: 10px;
	max-width: 90%;
	bottom: 0;
	text-align: justify;
	display: inline-block;
}
.work-item-desc {
  margin-top: 20px;
	margin-bottom: 20px;
  font-family: Orbitron, sans-serif;
  font-weight: 100;
  font-size: 15px; */
  /* color: #fff; Dodaj boju teksta */
  /* animation: flickerH 4s linear reverse infinite; Isto pulsiranje kao kod .title-white
}
/* .work-item-desc td {
  font-family: Orbitron;
  color: white;
  padding: 0;
  padding-right: 5px;
  text-align: left;
  vertical-align: top;
  text-wrap: normal;
  word-wrap: break-word;
  font-weight: 100;
  font-size: 15px;
} */
/* .work-item-desc i {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; Deblje kvačice */
  /* font-size: 20px; Veličina kvačica */
  /* color: #ff3d00; Ista boja kao tekst
  animation: flickerH 4s linear infinite; */
  /* animation-delay: 0.5s; Kašnjenje kako bi kvačice pulsirale prije teksta
}
.work-item-contrib-cell {
	padding-right: 5px;
	text-align: left;
	vertical-align: top;
	text-wrap: normal;
	word-wrap: break-word;
	font-size: 19px;
} */

/* .work-item-contrib-cell i {
  margin-right: 10px; ili koliko želite */
  /* animation: flickerCheck 2s infinite; Koristi novu animaciju */
  /*color: #ff3d00;  Pojačajte boju za vidljivost
} */
/*.work-item-desc .work-item-contrib-cell {
padding-bottom: 1px;
  line-height: 1.6;
}*/
/* */
/* .work-item-desc .work-item-contrib-cell i {
  margin-right: 10px;
}*/

a, i {
  color: white;
}

@keyframes flickerCheck {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  25% {
    opacity: 0.7;
    transform: scale(1.1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  75% {
    opacity: 0.7;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

  /* animirani tekst Retopology */
.banner {
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: bgZoomIn 4s ease-in-out 1 forwards;
  z-index: -1;
  pointer-events: none;
}
.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top;
  transform: scale(2);
  animation: bgZoomOut 4s ease-in-out 1 forwards;
  z-index: -1;
  pointer-events: none;
}
@keyframes bgZoomIn {
  from {
    transform: scale(1.2);
  } to {
    transform: scale(1);
  }
}
@keyframes bgZoomOut {
  from {
    transform: scale(1);
  } to {
    transform: scale(2);
  }
}
.model-placeholder-gallery {
  display: flex;
  gap: 10px;
  background: #111;
  padding: 10px;
  border-radius: 6px;
  overflow-x: auto;
}

.model-placeholder-gallery img {
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}
.zoomed-img-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: zoom-out;
  transition: opacity 0.3s ease;
}

.zoomed-img-container.hidden {
  display: none;
}

.zoomed-img-container img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* Samo kada je slika iz custom slidera */
.zoomed-img-container img.custom-slider-zoom {
  max-width: 98%;
  max-height: 98%;
}

.banner .title {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px; /* Dodatni razmak unutar kutova ako je potreban */
}

/* slike za Retopology */
.title-r {
  /* text-align: center; */
  margin-top: 20px !important;
  margin-left: 170px;
}

/* High poly model */

:root {
  --swiper-pagination-color: #ff3d00 !important;
}
.mySwiper .swiper-slide {
  width: 400px;
  height: 300px;
}
.swiper-slide {
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-sizing: border-box;
  will-change: transform;
}

.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: auto; /* Centriranje */
}


swiper-container,
.swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
.swiper-wrapper {
  will-change: transform;
}
.gallery__slider1 .swiper-wrapper {
  display: flex;
  align-items: center;
  user-select: none;
  scroll-behavior: smooth;
  overflow: visible !important;
  will-change: transform;
}
/* .gallery__slider1 {
  width: 100%;
  display: none;
  overflow: hidden !important; 
  scroll-behavior: smooth;
}

.gallery__slider1.active {
  display: block;
}

.gallery__slider1 .swiper-wrapper {
  display: flex;
  align-items: center;
  user-select: none;
  scroll-behavior: smooth;
  overflow: visible !important;
  will-change: transform;
}

.gallery__slider1 .swiper-slide {
  width: 400px;
  height: 400px;
  margin-right: 20px;
  flex-shrink: 0;
}

.gallery__slider1 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
} */


.swiper-slide img {
  transition: transform 0.3s ease-in-out; /* Animacija za glatki efekt */
  cursor: pointer; /* Pokazuje da je klikabilno */
}

.swiper-horizontal {
  touch-action: pan-y !important; /* Onemogućava horizontalni scroll točkom miša */
}

mySwiper .swiper-slide img {
  transition: transform 0.3s ease-in-out; /* Glatka animacija */
  cursor: pointer;
}

.mySwiper .swiper-slide img.zoomed {
  transform: scale(2); /* Povećaj sliku */
  position: fixed; /* Postavi iznad svih elemenata */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2); /* Centriraj i uvećaj */
  z-index: 1000;
  max-width: 90vw; /* Ograniči širinu */
  max-height: 90vh; /* Ograniči visinu */
  background: rgba(0, 0, 0, 0.8); /* Dodaj tamnu pozadinu */
  padding: 10px;
  border-radius: 8px;
}

.mySwiper .swiper-slide img.zoomed::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
}

.bstcontainer {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}  


.accordion-content {
  display: none;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  margin-top: 10px;
}

.accordion-header {
  /* padding: 15px;*/
  cursor: pointer;
  /* background: #5c4033;*/
  color: #ff3d00; /* Narančasti naslov */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  font-weight: bold;
}

.icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.active .icon {
  transform: rotate(45deg);
}

.active .accordion-content {
  display: block;
}


.accordion-header-span {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: normal;
  color: #fff;
}



/* 🔹 zoom slika High poly model */

.zoomed-img-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.zoomed-img-container img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.zoomed-img-container.hidden {
  display: none;
}

/* PureRef and sketches */
/* .pureRef-section {
  text-align: center;
  margin: 50px auto;
} */

.pureRef-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
  align-items: center;
  max-width: 90%;
  margin: auto;
}

.pureRef-grid img {
  width: auto; /* Ostavlja originalne dimenzije */
  height: auto;
  max-width: 100%; /* Sprječava preveliko rastezanje */
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

/* Asimetričan raspored */
.pureRef-grid img:nth-child(1) {
  grid-column: span 1; /* Manja slika */
  transform: rotate(-5deg);
}

.pureRef-grid img:nth-child(2) {
  grid-column: span 2;
  transform: rotate(10deg);
  max-width: 60%; /* Povećaj, ali ne previše */
  max-height: 110%; /* Lagano veća od prve slike */
  margin-top: +10%;
}

.pureRef-grid img:nth-child(3) {
  grid-column: span 3; /* Širi prikaz referenci */
  margin-left: -60%; /* Pomiče sliku ulijevo za 10% */
  margin-top: -10%;
}

/* Hover efekat za zumiranje */
.pureRef-grid img:hover {
  transform: scale(1.05) rotate(0deg);
}

section.partners.stack {
  padding-top: 20px;
}

.model-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none; /* Sprečava da ometa interakciju sa slajderom */
}

.model-prev, .model-next {
  pointer-events: auto; /* Omogućava klik na dugmad */
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.model-prev:hover, .model-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

.model-prev {
  margin-left: 20px;
}

.model-next {
  margin-right: 10px;
}

.gallery__model.active {
  position: relative;
  opacity: 1;
}
.gallery__model {
  height: 436px;
  position: absolute;
  opacity: 0;
}

.model {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.model__item {
  width: auto;
}
.model-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.rotate-left {
  transform: rotate(180deg);
}

model-viewer {
  display: block;
  width: 100%;
  height: 500px;
  background: #111;
  border-radius: 6px;
  margin-bottom: 1rem;
}


.image-compare {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.image-compare img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}
.image-compare .after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.2s;
}
.image-compare .slider-bar {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 4px #000;
  z-index: 2;
  pointer-events: none;
  transition: left 0.2s;
}
.image-compare .slider-range {
  position: absolute;
  left: 0; right: 0; bottom: 10px;
  width: 100%;
  z-index: 3;
  pointer-events: auto;
}

.creature-poster {
  padding: 64px 0;
  /*background-color: #f9f9f9;  ili neka boja koja odgovara ostatku stranice */
  text-align: center;
}

.creature-poster img {
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .creature-poster img {
    max-width: 100%;
  }
}
