/* Global */

/* Osnovni stilovi za fontove */
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
  font-family: "Karla", serif;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-style: italic;
  text-transform: uppercase;
}
h2{
  background-color:#C00000;
  display: inline-block;
  padding: 4px 5px 4px 2px;
  border-left: 20px solid #fff;
}

p, span {
  font-size: 1.2rem!important;
  line-height: 1.5rem!important;
  margin: 0!important;
 }
 
 h1 {
  font-size: 3rem!important; /* 3 times the body text */
  line-height: 3rem!important; /* 3 times the body text */
  margin: 0!important;
 }
 
 h2 {
  font-size: 2rem!important; /* 2 times the body text */
  line-height: 2rem!important; /* 2 times the body text */
  margin: 0!important;
 }
 
 h3 {
  font-size: 1.5rem!important; /* 1 ½ times the body text */
  line-height: 1.5rem!important; /* 1 ½ times the body text */
  margin: 0!important;
 }
 
 h4 {
  font-size: 1.3rem!important; /* 1 ½ times the body text */
  line-height: 1.3rem!important; /* 1 ½ times the body text */
  margin: 0!important;
 }
 
 figcaption {
  font-size: 0.75rem!important; /* ¾ of the body text */
  line-height: 0.75rem!important; /* ¾ of the body text */
  margin: 0!important;
 }

/* Osnovni stilovi za boje */
body {
  color: #333; /* Boja teksta */
  background-color: #f2f2f2; /* Boja pozadine */
}

a {
  color: #fff; /* Boja linkova */
  text-decoration: none;
}

a:hover {
  /*color: #0056b3;  Boja linkova na hover */
}

img {
  max-width: 100%;
}

section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 25px;
  box-sizing: border-box;

  transition: all .5s;
}

ul {
  padding: 0!important;
}

.container {
  /*max-width: 1200px;*/
  width: 100%;
  margin: 0 auto;
}
.container-limit {
  max-width:1300px;
}
#animation1, #animation2, #animation3 {
  width: 100%;
  max-width: 800px; /* Možeš podesiti maksimalnu širinu */
  margin: 0 auto;
}


/* header */

header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 50px);
  text-shadow: 0 0 1px #000;
  z-index: 9;
  color: #fff;
  right: 0;
  margin-right: auto;
}

.header .container {
  display: flex;
  justify-content: space-between;
  max-height: 100%;
}

.logo {
  width: 180px;
  height: 72px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  /*margin-left: 15px;
  margin-top: 9px;*/
  z-index: 9;
  background-color:#C00000;
  padding:8px;
  border-radius:0px 0px 40px;
}

.logo a {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.hamburger {
  display: flex;
  width: 50px;
  height: 50px;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.menu ul {
  display: none;
}

.language-menu ul {
  display: flex;
  margin-right: 25px;
  color: #000;
  margin-top: 20px;
}

.language-menu a{
  color: #000;
}

ul li {
  list-style: none;
}
ul li a {
  font-size: .9rem;
  padding: 3px 7.5px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
@import url('https://fonts.googleapis.com/css?family=Montserrat');



.aside-section {
  top: 0;
  bottom: 0;
  position: absolute;
}

.aside-left {
  display: none;
  width: 40%;
  left: 0;
  background-color: indianred;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 2;
}

.aside-right {
    z-index: 2;
  width: 100%;
  right: 0;
  background-color: #434343;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 150px;
  text-align: left;
  padding-left: 50px;
}

.aside-content {
  margin-top: 150px;
  padding: 0 40px;
  position: relative;
  color: white;
  text-align: center;
}

.aside-list li {
    margin-bottom: 20px;
    margin-left: 40px;
}

.aside-anchor::after {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #dd1c1c;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px;
}

.aside-anchor::before {
  border-radius: 3px;
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #fff;
  left: 0;
  height: 3px;
  z-index: 1;
  width: 50%;
  -webkit-transition: transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}

.aside-anchor:hover:before {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

.aside-anchor {
  padding-bottom: 7px;
  color: #fff;
  text-decoration: none;
  font-size: 30px;
  position: relative;
  font-weight: 500;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked ~ aside .aside-left {
  transform: translateY(0%);
}

input[type="checkbox"]:checked ~ aside .aside-right {
  transform: translateX(0%);
}

input[type="checkbox"]:checked ~ label .bar {
  background-color: #fff;
}

input[type="checkbox"]:checked ~ label .top {
  -webkit-transform: translateY(0px) rotateZ(45deg);
  -moz-transform: translateY(0px) rotateZ(45deg);
  -ms-transform: translateY(0px) rotateZ(45deg);
  -o-transform: translateY(0px) rotateZ(45deg);
  transform: translateY(0px) rotateZ(45deg);
}

input[type="checkbox"]:checked ~ label .bottom {
  -webkit-transform: translateY(-15px) rotateZ(-45deg);
  -moz-transform: translateY(-15px) rotateZ(-45deg);
  -ms-transform: translateY(-15px) rotateZ(-45deg);
  -o-transform: translateY(-15px) rotateZ(-45deg);
  transform: translateY(-15px) rotateZ(-45deg);
}

input[type="checkbox"]:checked ~ label .middle {
  width: 0;
}

.middle {
  margin: 0 auto;
}

label {
    top: 0px;
    display: inline-block;
    padding: 7px 10px;
    background-color: transparent;
    cursor: pointer;
    margin: 10px;
    z-index: 3;
    position: fixed;
    right: 0;
    box-sizing: border-box;
    
    transition: top .5s;
}

input[type="checkbox"]:checked ~ label {
    top: 10px;
}

.bar {
  display: block;
  background-color: #C00000;
  width: 30px;
  height: 3px;
  border-radius: 5px;
  margin: 5px auto!important;
  transition: background-color 0.4s ease-in, transform 0.4s ease-in,
    width 0.4s ease-in;
}

aside h1 {
  margin: 0;
  position: relative;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  font-size: 30px!important;
  line-height: 40px!important;
}

aside h1 span {
  font-size: 20px!important;
  line-height: 30px!important;
  display: block;
}

aside p {
  font-size: 30px!important;
  line-height: 40px!important;
}

aside .button {
  display: inline-block;
  background-image: none;
  border: none;
  background-color: transparent;
  padding-bottom: 7px;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  color: white;
  padding: 7px 50px;
  border: 2px solid white;
  margin-top: 50px;
}

@media (min-width: 992px) {
  aside h1 {
    font-size: 40px;
  }
  .aside-left {
    display: block;
  }

  .aside-right {
    width: 60%;
  }
}


/* slider  */

.swiper-container {
  height: calc(100vh);
  width: 100vw;
  background: rgb(246,184,184);
  background: radial-gradient(circle, rgb(222, 215, 215) 20%, rgb(254, 195, 1) 68%, rgb(222, 215, 215) 97%);
}
.swiper-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-wrapper {
  width: 100vw;
  height: 100vh;
}

.swiper-slide {
  width: 100vw;
  height: 85vh;
  margin: 0 auto;
  overflow: hidden;
}

div.swiper-slide > * {
  opacity: .5;

  transition: all .5s;
}

div.swiper-slide-active > * {
  opacity: 1;
}

/* hero */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

video {
  min-width: 100%;
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 60vh;
  left: 0;
  right: 0;
  margin: auto;
  height: 208px;
  width: 100%;
  text-align: left;
  color: #fff;
  text-shadow: 0 0 1px #000;
  max-width: 1200px;
  padding: 20px;
}

.hero-content h1 {
  margin: 0;
  margin-bottom: 50px;
}

.hero-content span, .hero-content p {
  margin: 0;
}

.fast-navi {
  position: absolute;
  bottom: 16vh;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: calc(1200px - 20px);
  padding: 0 10px;
  margin: 0 auto;
  left: 0;
  right: 0;
  box-sizing: border-box;
}

.fast-navi > a {
  position: relative;
  padding: 20px 20px 75px 20px;
}

.fast-navi > a span:nth-of-type(1) {
  margin-bottom: 2rem;
}

.fast-navi h3 {
  margin-bottom: 18px!important;
}

a.twofive:nth-of-type(1) {
  border-radius: 35px 0 0 35px;
}

a.twofive {
  width: 33.33%;
  background: rgba(254, 195, 1, 0.92);
  max-width: 480px;
}

a.onefive {
  width: 33.33%;
  background: rgba(192, 0, 0, 0.92);
  max-width: 375px;
  border-radius: 0 35px 35px 0;
}

a.twofive:nth-of-type(2) {
  background: rgba(96, 133, 12, 0.92);
  width: 33.33%;
  max-width:375px;
}

.circle-icon {
  display: flex;
  background-color: white;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  padding: 5px;
  text-align: center;
  line-height: 2rem;
  color: #000;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  bottom: 25px;
}

.circle-icon i {
  font-size: 1.2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.icon {
  font-size: 1rem; /* You can adjust the size */
  color: #333; /* You can adjust the color */
}

/* about-us */

.about-us {
  position: relative;
  box-sizing: border-box;
}

.about-us > .image-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

.image-column {
  display: flex;
  max-width: 768px;
  margin-right: auto;
}

.image-column > img {
  flex-basis: 50%;
  display: flex;
  max-width: 49%;
  margin-right: 0.5rem;
}

.small-images {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 49%;
  margin-left: 0.5rem;
}

.content-column {
  width: 768px;
  text-align: right;
  align-self: center;
  margin-left: auto;
}

.about-us h2 {
  color: #fff;
  margin-bottom: 0;
  margin-bottom: 20px!important;
}

.about-us p {
  color: #111;
  margin-bottom: 20px!important;
}


.button-red {
  color: #C00000 !important;
  text-transform: uppercase;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  border-bottom: 3px solid #fff;
  font-size: 1.3rem;
}
.button-red:hover{
  border-bottom:3px solid #000;
}

/* tehnologija  */

.tehnologija {
  position: relative;
  background-image: url(../img/solar-three.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.tehnologija h2 {
  color: #fff;
  width: 100%;
  text-align: center;
  margin-top: 0;
}

.tehnologija .container,
.proizvodnja .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

.tehnologija .circle-container {
  margin-top: 50px;
}

.circle-container {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 768px;
  margin-left: auto;
  flex-wrap: wrap;
}

.circle:nth-of-type(1) {
  margin-top: 30px;
}

.circle:nth-of-type(2) {
  margin-top: 0;
}

.circle:nth-of-type(3) {
  margin-top: -30px;
}

.circle:nth-of-type(4) {
  margin-top: 0;
}

.circle:nth-of-type(5) {
  margin-top: -30px;
}

.circle:nth-of-type(6) {
  margin-top: -60px;
}

.circle {
  width: 175px;
  height: 175px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  background: #d6d71d;
  margin: 0 10px;
  border-radius: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 90px;
  box-shadow: 1px 1px 20px;
}

.number {
  font-size: 1.8rem;
}

.bullet-list {
  padding: 0;
  margin: 0;
  flex-direction: column;
  display: flex;
  justify-content: center;
  width: 45%;
}

.tehnologija .bullet-list {
  padding-right: 15px;
  text-align: right;
}

.tehnologija li,
.proizvodnja li {
  padding: 5px 2.5px;
}

.tehnologija p, .proizvodnja p {
  position: absolute;
  color: #000;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-style: italic;
  color: #ffffff;
  bottom: -40px;
  left: 0;
  right: 0;
}

span.visibled {
  font-size: 2rem!important;
}

.proizvodnja .bullet-list {
  padding-left: 15px;
}

.proizvodnja a, .tehnologija a {
  color: #830000;
}

/* lokacija */

.lokacija {
    position: relative;
    overflow: hidden;
    height: 85vh;
}

.map-container {
  width: 100vw;
  height: 100vh!important;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.map-container iframe {
  width: 100%;
  height: 100vh!important;
  pointer-events: none;
}

.background {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    min-width: 300px;
}

.background h2, .background p {
  color: white;
  margin-bottom: 20px!important;
}

.lokacija .left-content {
    position: relative;
}

.background .cta-link {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid white;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 25px;
}

.background .cta-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lokacija p {
}

.lokacija .separator-down {
    background-color: #fff;
}

.lokacija .left-content, .map-container, .map-container iframe {
  height: 85vh;
}

.masonry-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.lokacija .container {
  position: absolute;
  z-index: 9;
  top: 50%;
  transform: translateY(-50%);
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  box-sizing: border-box;
}

/* Style for individual masonry items */
.masonry-item {
  width: calc(33.33% - 20px); /* Adjust the width as needed */
  margin: 10px;
  box-sizing: border-box;
}

/* fotogalerija */
.fotogalerija img, .fotogalerija a {
  max-width: 100%;
  display: block;
}

.fotogalerija figure {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  margin-bottom: 10px;
  break-inside: avoid;
}

.fotogalerija figure > img {
  grid-row: 1 / -1;
  grid-column: 1;
}

.fotogalerija figure a {
  color: black;
  text-decoration: none;
  position: relative;
}

.fotogalerija figcaption {
  grid-row: 2;
  grid-column: 1;
  background-color: rgba(255,255,255,.5);
  padding: .2em .5em;
  justify-self: start;
  position: absolute;
}

.fotogalerija .container {
  column-count: 4;
  column-gap: 10px;
}

/* timeline */

.timeline {
  padding-bottom: 100px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: auto;
  flex-wrap: wrap;
  z-index: 9;
  padding: 50px 20px;
  box-sizing: border-box;
}

.timeline .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: auto;
  z-index: 9;
  padding: 50px 20px;
  box-sizing: border-box;
  margin-top: 250px;
}

.timeline .circle {
  width: 20px;
  height: 20px;
  background-color: red;
  border-radius: 50%;
  position: absolute;
  z-index: 9;
}

.timeline .circle:nth-of-type(1) {
  margin-top: 87px;
}

.timeline h2 {
  width: 100%;
  display: block;
  max-width: 1200px;
  margin: 0 auto 150px auto;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: -250px;
}

.step p {
  width: 175px;
  position: relative;
  z-index: 1;
  height: 120px;
  display: flex;
  flex-wrap: wrap;
  white-space: normal;
  text-align: left;
  left: 19px;
  padding-left: 10px;
  border-left: 2px solid red;
}

.step {
  position: relative;
  width: 25%;
  min-width: 250px;
  top: 2px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.step.below p {
  top: 80px;
  padding-top: 20px;
  margin: 0!important;
  font-size: 1rem;
}

.step.above p {
  top: -80px;
  padding-top: 20px;
  margin: 0!important;
  font-size: .9rem;
}

.step.above p {
  bottom: 35px;
}

.simulated-line {
  content: '';
  position: absolute;
  top: calc(50%);
  left: 0;
  right: 0;
  height: 2px;
  background-color: red;
  transform: translateY(-50%);
}

.timeline .separator-down {
  background-color: #fff;
}


/* jobs */
.jobs h2 {
  width: 100%;
  display: block;
  max-width: 1200px;
  margin: 25px auto;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 0;
}

.jobs .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin-top: 150px;
}

a.job {
  position: relative;
  width: calc(100%);
  height: 450px;
  align-self: flex-start;
  margin: 1%;
  overflow: hidden;
  z-index: 9;
}

.job-circle img {
  position: absolute;
  height: 100%;
  width: auto;
  max-width: 1000%;
  transform: scale(1);
  transition: all .5s;
}

section.jobs {
}

.job-circle img {
  position: absolute;
  height: 100%;
  width: auto;
  transform: scale(1);
  transition: all .5s;
}

.job-title {
  position: absolute;
  bottom: 10px;
  left: 10px;
  text-transform: uppercase;
  transition: all .5s;
}

a.job:hover {
  margin: 1%;
}

a.job:hover .job-circle img {
  transform: scale(1.2);
}

a.job:hover .job-title {
  color: #fff;
  width: 100%;
  bottom: 30px;
  left: 20px;
}

/* novosti */

.novostiV .swiper {
  width: 100%;
  padding-top: 150px;
  padding-bottom: 150px;
  height: 300px;
  padding: 15px;
  box-sizing: border-box;
}

.novostiV h2 {
  width: 100%;
  display: block;
  max-width: 1200px;
  margin: 25px auto;
  color: #fff;
  width: 100%;
  text-align: center;
}

.novostiV .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
}

.novostiV .swiper-slide img {
  display: block;
  width: 100%;
}

.novostiV .swiper-3d .swiper-slide-shadow-right,
.novostiV .swiper-3d .swiper-slide-shadow-left {
  background-image: none;
}

.novostiV .mySwiper h3 {
  padding: 15px;
}

.novostiV .mySwiper p {
  padding-left: 15px;
}

.novostiV .image-container {
  position: relative;
}

.news-details {
  position: absolute;
  bottom: 35px;
  left: 10px;
}

.novostiV span.category {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #ffffff;
  text-shadow: 0px 0px 2px #000;
}

.novostiV .swiper-slide:nth-of-type(3n + 2) {
  background: #434343;
}
.novostiV .swiper-slide:nth-of-type(3n + 2) h3,
.novostiV .swiper-slide:nth-of-type(3n + 2) p {
  color: #fff;
}

.novostiV .swiper-slide:nth-of-type(3n + 1) {
  background: rgb(221,28,28);
}
.novostiV .swiper-slide:nth-of-type(3n + 1) h3,
.novostiV .swiper-slide:nth-of-type(3n + 1) p {
  color: #fff;
}

.novostiV .swiper-slide:nth-of-type(3n) {
  background: rgb(214 215 31)
}
.novostiV .swiper-slide:nth-of-type(3n) h3,
.novostiV .swiper-slide:nth-of-type(3n) p {
  color: #fff;
}

.sponzori .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px;
}

.sponzori h2 {
  width: 100%;
  text-align: left;
  color: #fff;
  padding-left: 15px;
}

.sponzor {
  flex: 0 0 calc(12.5% - 10px); /* Postavite širinu za 8 logotipova u redu s razmakom */
  margin: 5px;
  text-align: center;
  padding: 5px;
}

.sponzor img {
  max-width: 100%;
  height: auto;
}

.sponzori .swiper-slide {
  background-color: transparent!important;
}

/* footer */

.footer {
  background-color: #333;
}

.footer-column {
  width: calc(50% - 40px);
  padding: 20px;
}

.footer-container > .container {
  display: flex;
  flex-wrap: wrap;
}

footer p {
  color: #fff;
}

footer img {
  max-width: 250px;
}

footer h4 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px!important;
}

footer form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer textarea {
  width: 100%;
  margin-top: 20px;
  height: 100px;
  padding: 10px;
  box-sizing: border-box;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 15px;
  color: #fff;
}


footer input[type="email"], footer input[type="text"] {
  width: calc(50% - 10px);
  height: 50px;
  padding: 10px;
  box-sizing: border-box;
  background: transparent;
  border: 1px solid #FFF;
  border-radius: 15px;
  color: #fff;
}

footer .send {
  height: 50px;
  width: calc(50% - 10px);
  margin-left: auto;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: transparent;
  color: #fff;
  border: 1px solid #FFF;
  border-radius: 15px;
}

.footer-column:first-of-type {
  width: 100%;
  display: flex;
}

footer .bullet-list {
  color: #fff;
  display: flex;
  flex-direction: row;
  width: calc(100% - 300px);
  justify-content: space-around;
}

footer .bullet-list li {
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

footer .bullet-list span {
  font-weight: bold;
}

.footer-column:nth-of-type(2) {
  width: 250px;
  display: flex;
  flex-wrap: wrap;
}
.footer-column:nth-of-type(2) h4 {
  width: 100%;
}

ul.social-icons {
  display: flex;
  height: 100%;
}

ul.social-icons a {
  font-size: 3rem;
  padding: 20px;
}

.footer-column:last-of-type {
  margin-left: auto;
  margin-right: 0;
}

.current-slide > section {
  max-width: 100%;
  width: 100%;
}
.fast-img{
  width:140px;
  height:140px;
  border-radius:50%;
  background-color:#000;
  float:left;
  margin-right:10px;
  background-size: contain;
  border:3px solid #fff;
}

/* animacije */
.anim1 {
  transform: scale(3);
  transition: transform 10s ease-out, opacity 10s ease-out;
  opacity: 0; /* Nevidljivo dok ne uđe u viewport */
  will-change: transform, opacity; /* Poboljšava performanse */
  position: relative;
  z-index: 99999999999; /* Osigurava da je iznad drugih elemenata ako treba */
}

.anim1.visible {
  transform: scale(1);
  opacity: 1;
}

.cv-circle-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  display: inline-block;
  margin: 50px; /* Da se simulira pomicanje kroz stranicu */
  text-align: center;
}

svg {
  transform: rotate(-90deg);
}

.cv-circle-background {
  fill: none;
  stroke: #fff;
  stroke-width: 10;
  opacity: 1;
}

.cv-circle-progress {
  fill: none;
  stroke: #C00000;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  transition: stroke-dashoffset 2s ease-in-out;
}

.cv-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
  color: #C00000;
  text-align: center;
}

.cv-circle-unit {
  font-size: 14px;
  font-weight: normal;
}

.cv-circle-description {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #700000;
}
