/* reset css */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1200px) {
  html {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
  }
  html ::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  html {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
  }
  html ::-webkit-scrollbar {
    display: none;
  }
}
@keyframes animateBackground {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.8);
  } /* zumiranje proporcionalno */
  100% {
    transform: scale(1);
  }
}
@keyframes border_animation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes pulse {
  0% {
    /* transform: skewX(-5deg); */
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    /* transform: skewX(-15deg); */
    transform: scale(1.01);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    /* transform: skewX(-10deg); */
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* end of animations */

body {
  overscroll-behavior-x: contain; /* blokira bounce horizontalno */
  touch-action: pan-y;
  box-sizing: border-box;
  width: 100vw;
  height: 100%;
  font-size: 1.8rem;
  font-family: "Times New Roman", times, sans-serif;
  line-height: 1.4;
  overflow-x: hidden !important;
  overflow-y: auto;
  backface-visibility: hidden;
  scroll-behavior: smooth;
}
body::-webkit-scrollbar {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #4d5ea9;
  border-radius: 10rem;
}
/* title animation */

/* end title animation */
h1 {
  font-weight: 600;
  font-size: 6rem;
  color: #3737c2;
  margin: 2rem 0;
  word-wrap: break-word;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 4rem;
    margin: 0 1.5rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
    margin: 0 1.5rem;
  }
}
h2 {
  font-weight: 600;
  font-size: 3.2rem;
  margin: 1rem 0;
  color: #3737c2;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
    word-wrap: break-word;
  }
}
h3 {
  color: #3737c2;
  word-wrap: break-word;
  font-size: 2.7rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 2rem;
    word-wrap: break-word;
  }
}
b {
  font-weight: bold;
}
p {
  text-indent: 2rem;
  word-wrap: break-word;
  text-align: left;
  font-size: 2rem;
  color: rgb(64, 64, 64);
}
@media only screen and (max-width: 768px) {
  p {
    font-size: 1.8rem;
  }
}
time {
  font-weight: 400;
  color: rgb(48, 48, 48);
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
.current {
  background-color: red;
}
/* entry page style */
.header__wrapper {
  height: 15vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
@media only screen and (max-width: 768px) {
  .header__wrapper {
    justify-content: center;
    padding: 0.5rem;
  }
}
.header__wrapper--img {
  height: 7rem;
  width: 7rem;
  object-fit: cover;
  display: inline-block;
  margin-left: 4rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .header__wrapper--img {
    margin-left: 1.5rem;
    height: 3rem;
    width: 3rem;
    object-fit: cover;
    margin-right: 1rem;
  }
}
.header__wrapper--title {
  font-size: 4.5rem;
  color: rgb(22, 1, 22);
  font-weight: 500;
  text-align: center;
  margin-right: 5rem;
}
@media only screen and (max-width: 1600px) {
  .header__wrapper--title {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 768px) {
  .header__wrapper--title {
    margin-right: 1rem;
    font-size: 1.7rem;
  }
}

.footer {
  padding: 1.5rem;
}
@media only screen and (max-width: 1200px) {
  .footer {
    font-size: 1.6rem;
    position: relative;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footer__wrapper a {
  text-decoration: none;
  cursor: pointer;
}
.footer__margin {
  margin-right: 1rem;
}
.fb__footer__text {
  color: rgb(15, 9, 62);
  font-size: 2.2rem;
  font-weight: 600;
  margin-right: 2rem;
}
@media only screen and (max-width: 768px) {
  .fb__footer__text {
    font-size: 1.6rem;
  }
}
.fb__image__footer {
  display: inline-block;
  height: 3rem;
  width: 3rem;
}
.fb__image__footer:hover {
  transform: scale(0.95);
}
@media only screen and (max-width: 768px) {
  .fb__image__footer svg {
    height: 40px;
  }
}
/* button style */
.button-back {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: 500;
  background-color: #002244;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  width: 10rem;
  height: 3rem;
  z-index: 10000;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1200px) {
  .button-back {
    top: 1rem;
    right: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .button-back {
    position: relative;
    top: 0;
    right: 0;
    display: block;
    font-size: 2rem;
    padding: 0.1rem;
    height: 3rem;
    width: 100vw;
    border-radius: 0;
    transform: none;
  }
}

.button-back:hover {
  background-color: #034694;
  transform: scale(0.9);
}

.hide {
  display: none;
}

.u__ponudi {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 1rem;
  align-items: center;
  padding: 1rem 3rem;
}
@media only screen and (max-width: 1200px) {
  .u__ponudi {
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .u__ponudi {
    padding: 1rem;
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
  }
}

.mapa {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 1rem;
  grid-column-gap: 1.5rem;
  align-items: center;
  list-style: none;
  padding: 2rem;
}

@media only screen and (max-width: 768px) {
  .mapa {
    grid-template-columns: 1fr;
    margin: 0 2.5rem;
    padding: 0.5rem;
  }
}

.mapa div {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.mapa div:last-child {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .mapa div {
    width: 100%;
  }
}
.mapa li {
  width: 100%;
  height: 24rem;
  background-color: rgb(58, 46, 109);
  display: flex;
  align-items: center;
  transition: 0.4s all;
}
@media only screen and (max-width: 768px) {
  .mapa li {
    height: fit-content;
  }
}

.mapa li p {
  color: white;
}

/* --------------------- */
.sport-list__tutorijali {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-row-gap: 1rem;
  grid-column-gap: 1.5rem;
  align-items: center;
  list-style: none;
  padding: 2rem;
}
@media only screen and (max-width: 1200px) {
  .sport-list__tutorijali {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .sport-list__tutorijali {
    grid-template-columns: 1fr;
    margin: 0 2.5rem;
    padding: 0.5rem;
  }
}
.tutorijali__li {
  max-width: 100%;
  height: 24rem;
  background-color: rgb(106, 95, 156);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.4s all;
}
@media only screen and (max-width: 1600px) {
  .tutorijali__li {
    width: 32rem;
    height: 25rem;
  }
}
@media only screen and (max-width: 768px) {
  .tutorijali__li {
    width: 95%;
    height: 25rem;
    margin: 0 auto;
  }
}
.dodatak {
  background-color: #086816;
}
.dodatak h3 {
  color: white;
}
.h3__p {
  color: white;
  font-size: 2.2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .h3__p {
    font-size: 2rem;
    width: 90%;
    text-align: left;
  }
}
.tutorijali__li:hover {
  background-color: rgb(67, 58, 108);
  transform: scale(0.98);
}
.tutorijali__li--img {
  height: 15rem;
  width: 90%;
  display: block;
  object-fit: cover;
  margin: 1rem auto;
}
@media only screen and (max-width: 1600px) {
  .tutorijali__li--img {
    width: 28rem;
    height: 20rem;
  }
}
@media only screen and (max-width: 768px) {
  .tutorijali__li--img {
    width: 26rem;
    height: 18rem;
  }
}
.tutorijali__li--link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.8rem;
  color: white;
}
@media only screen and (max-width: 768px) {
  .tutorijali__li--link {
    font-size: 1.6rem;
  }
}

/* footer style */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  text-align: center;
  height: auto;
  width: 100%;
}
.footer p {
  color: rgb(48, 48, 48);
  margin-top: 1rem;
}
.footer p:last-child {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1200px) {
  .footer {
    font-size: 1.6rem;
    position: relative;
  }
}

/* contact style */
.kontakt {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  min-height: 100vh;
  justify-content: space-between;
}
@media only screen and (min-width: 1200px) {
  .kontakt {
    overflow-y: hidden;
  }
}

@media only screen and (max-width: 1200px) {
  .kontakt {
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin-top: 10rem;
  }
}
@media only screen and (max-width: 768px) {
  .kontakt__items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
    margin-top: -25rem;
  }
}

.kontakt__phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 4.5rem;
  width: 60%;
  margin: 1.5rem 0;
}
@media only screen and (max-width: 1200px) {
  .kontakt__phone {
    height: 10rem;
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .kontakt__phone {
    height: 4.5rem;
    width: 90vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
.kontakt__phone:hover {
  background-color: #f1eeee;
}
.kontakt__phone--svg {
  display: inline-block;
  height: 4.5rem;
  width: fit-content;
  filter: invert(9%) sepia(18%) saturate(6816%) hue-rotate(282deg)
    brightness(98%) contrast(107%);
}

@media only screen and (max-width: 1200px) {
  .kontakt__phone--svg {
    margin-left: 20%;
  }
}
@media only screen and (max-width: 768px) {
  .kontakt__phone--svg {
    height: 5rem;
    margin-left: 1rem;
  }
}
.kontakt__phone--text {
  display: inline-block;
  font-size: 3rem;
  color: #3737c2;
  margin-left: 10%;
}
@media only screen and (max-width: 1200px) {
  .kontakt__phone--text {
    margin-left: 5%;
    font-size: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .kontakt__phone--text {
    font-size: 2rem;
  }
}

.kontakt__viber--svg {
  display: inline-block;
  height: 4.5rem;
}
@media only screen and (max-width: 768px) {
  .kontakt__viber--svg svg {
    height: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .kontakt__viber--svg {
    margin-left: 20%;
  }
}
@media only screen and (max-width: 768px) {
  .kontakt__viber--svg {
    height: 5rem;
    margin-left: -0.5rem;
  }
}
.kontakt__viber--text {
  display: inline-block;
  font-size: 3rem;
  color: rgb(4, 49, 6);
  margin-left: 3rem;
}
@media only screen and (max-width: 1200px) {
  .kontakt__viber--text {
    margin-left: 5%;
    font-size: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .kontakt__viber--text {
    font-size: 2rem;
  }
}

.kontakt__mail--svg {
  display: inline-block;
  height: 4.5rem;
}
@media only screen and (max-width: 768px) {
  .kontakt__mail--svg svg {
    height: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .kontakt__mail--svg {
    margin-left: 20%;
  }
}
@media only screen and (max-width: 768px) {
  .kontakt__mail--svg {
    height: 5rem;
    margin-left: 1rem;
  }
}
.kontakt__mail--text {
  display: inline-block;
  font-size: 3rem;
  color: rgb(4, 49, 6);
  margin-left: 2rem;
}
@media only screen and (max-width: 1200px) {
  .kontakt__mail--text {
    margin-left: 5%;
    font-size: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .kontakt__mail--text {
    font-size: 2rem;
  }
}
.kontakt__fb {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 1.5rem 0;
  height: 4.5rem;
  width: 90%;
}
@media only screen and (max-width: 1200px) {
  .kontakt__fb {
    height: 10rem;
  }
}
@media only screen and (max-width: 768px) {
  .kontakt__fb {
    height: 7rem;
    width: 90vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
.kontakt__fb:hover {
  background-color: #f1eeee;
}
.kontakt__fb--svg {
  display: inline-block;
  height: 4.5rem;
}
@media only screen and (max-width: 768px) {
  .kontakt__fb--svg svg {
    height: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .kontakt__fb--svg {
    margin-left: 20%;
  }
}
@media only screen and (max-width: 768px) {
  .kontakt__fb--svg {
    height: 5rem;
    margin-left: 1rem;
  }
}
.kontakt__fb--text {
  display: inline-block;
  font-size: 3rem;
  color: rgb(4, 49, 6);
  margin-left: 10%;
}
@media only screen and (max-width: 1200px) {
  .kontakt__fb--text {
    margin-left: 5%;
    font-size: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .kontakt__fb--text {
    font-size: 2rem;
  }
}

.internal__link {
  text-decoration: none;
  cursor: pointer;
  color: rgb(104, 104, 104);
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.internal__link:hover {
  color: rgb(20, 19, 19);
}
.internal__city {
  text-decoration: none;
  cursor: pointer;
  color: white;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.internal__city:hover {
  color: rgb(161, 146, 146);
}
/* menu style */
main {
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

/* Logo */
.logo {
  display: inline-block;
  margin: auto 3rem;
  height: 6rem;
  width: fit-content;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 1600px) {
  .logo {
    margin: auto 1rem;
    height: 6rem;
  }
}
@media (max-width: 768px) {
  .logo {
    height: 6rem;
  }
}
.logo__center {
  display: none;
}

@media (max-width: 768px) {
  .logo__center {
    display: inline-block;
    height: 5rem;
    width: fit-content;
    object-fit: cover;
    margin-left: 7.5rem;
    margin-top: 0.5rem;
  }
}
.figure__logo {
  display: inline-block;
  height: 6rem;
  width: fit-content;
}
.figure__right {
  display: inline-block;
  height: 6rem;
  width: fit-content;
}
@media (max-width: 1200px) {
  .figure__right {
    display: none;
  }
}
.figure__center {
  display: none;
}
@media (max-width: 1200px) {
  .figure__center {
    margin-left: 8rem;
    display: inline-block;
    height: 5rem;
    width: fit-content;
  }
}
.kontakt__h2 {
  margin: 0 1.5rem;
  text-align: center;
}

.kontakt {
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

/*   style home page */

.home {
  min-height: 100vh;
  background-color: rgb(240, 240, 240);
  text-align: center;
}

.home h2 {
  color: rgb #3737c2 (55, 55, 194);
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 3rem;
}
@media (max-width: 1600px) {
  .home h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .home h2 {
    font-size: 2.7rem;
    margin: 0 2rem 1rem 2rem;
  }
}
.heading__p {
  color: #3737c2;
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
}
@media (max-width: 1600px) {
  .heading__p {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .heading__p {
    font-size: 2.7rem;
    margin: 0 2rem 1rem 2rem;
  }
}
.heading__pillar {
  filter: brightness(0) saturate(100%) invert(15%) sepia(94%) saturate(3732%)
    hue-rotate(242deg) brightness(82%) contrast(90%);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}
.cover-wrapper {
  position: relative;
  width: 100%;
  height: 93vh;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cover-wrapper {
    height: 40vh;
  }
}
.cover-video {
  display: block;
  width: 100%; /* uvek puni horizontalno */
  height: 100%; /* uvek puni vertikalno */
  object-fit: cover; /* proporcije slike se čuvaju */
  transform-origin: center;
  /* opacity: 0.95; */
  animation: animateBackground infinite ease-in-out 55s;
}

/* @media (max-width: 1200px) {
  .cover-video {
    height: 40vh;
  }
} */
/* #cover-image {
  position: relative;
  display: block;
  width: 100%;
  height: 93vh;
  overflow: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../images/cover-izrada.webp");
  animation: animateBackground infinite ease-in-out 55s;
  opacity: 0.9;
} */
.title__wrapper {
  position: relative;
}
.blok__wrapper {
  display: flex;
  height: fit-content;
  justify-content: space-between;
  padding: 0 5rem;
  margin-bottom: 5rem;
}
.blok__wrapper:first-child {
  margin-top: 15rem;
}
@media (max-width: 768px) {
  .blok__wrapper {
    flex-direction: column;
    padding: 0 1rem;
    align-items: center;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .blok__wrapper:first-child {
    margin-top: 8rem;
  }
}
.blok__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45%;
  background-color: rgb(240, 240, 240);
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 2rem;
}
@media (max-width: 1200px) {
  .blok__text {
    display: block;
    width: 95%;
    border-radius: 1rem;
    padding: 1rem;
    margin: 0.5rem 1rem;
  }
}
@media (max-width: 1200px) {
  .blok__text:first-child {
    margin-top: 8rem;
  }
}
.seo__analiza {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.blok__wide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95%;
  background-color: rgb(240, 240, 240);
  padding: 2rem 3rem;
  border-radius: 2rem;
  margin: 5rem 5rem 1rem 5rem;
}

@media (max-width: 1200px) {
  .blok__wide {
    flex-direction: column;
    width: 92%;
    border-radius: 1rem;
    padding: 1rem;
    margin: 5rem auto;
  }
}
@media (max-width: 1200px) {
  .blok__wide--main {
    margin: 17rem auto;
  }
}
@media (max-width: 1200px) {
  .blok__text--main {
    margin-top: -14rem !important;
  }
}
.wp__wrapper {
  display: inline-block;
  margin-left: 5rem;
}
.wp__wrapper img {
  border-radius: 50%;
  width: 25rem;
  height: 25rem;
}
@media (max-width: 1200px) {
  .wp__wrapper img {
    width: 20rem;
    height: 20rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 1200px) {
  .wp__wrapper {
    margin-left: 0;
  }
}
.izrada__video {
  width: 50rem;
  height: 28rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .izrada__video {
    width: 28rem;
    height: 15.8rem;
  }
}
.izrada__video--ja {
  width: 128rem;
  height: 72rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .izrada__video--ja {
    width: 28rem;
    height: 15.8rem;
  }
}
.izrada {
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rounded {
  opacity: 0.8;
  max-width: 95%;
  margin-top: 1rem;
  object-fit: cover;
}

@media (max-width: 768px) {
  .rounded {
    border-radius: 1rem;
  }
}

@media (max-width: 768px) {
  .mobile__image {
    display: none;
  }
}
/*   header  */
.site-header {
  height: 10rem;
  background-color: white;
  border-bottom: 1px solid gray;
}
@media screen and (max-width: 768px) {
  .site-header {
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.site-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10rem;
}

.site-header__menu {
  margin: 0 auto;
}

.min-list {
  display: flex;
  justify-content: center;
  /*  width: 60rem; */
  list-style: none;
}
@media screen and (max-width: 768px) {
  .min-list {
    display: none;
  }
}
.min-list li {
  display: inline-block;
  margin-left: 1.5rem;
  /* width: 100%; */
}
.min-list li a {
  color: rgb(55, 55, 194);
  font-size: 3rem;
  display: inline-block;
  font-weight: 600;
}

@media screen and (min-width: 1600px) {
  .min-list li a {
    font-size: 3.5rem;
  }
}
.min-list li a:hover::before {
  background-color: transparent;
  border-bottom: 0.3rem solid rgb(22, 40, 76);
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  bottom: 0;
  width: 0;
  animation: border_animation 0.5s linear forwards;
}
@media screen and (max-width: 1200px) {
  .min-list li a {
    font-size: 2rem;
  }
}

/*   header burger styling  */

.navigation__checkbox {
  display: none;
}
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(90);
}
.navigation__checkbox:checked ~ .navigation__nav {
  display: block;
  width: 100%;
}

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  transform: rotate(135deg);
  top: 0;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  transform: rotate(-135deg);
  top: 0;
}
@media screen and (min-width: 768px) {
  .navigation__background {
    display: none;
  }
}
.navigation__button {
  background-color: white;
  height: 5rem;
  width: 5rem;
  position: fixed;
  top: 1.4rem;
  right: 2.2rem;
  border-radius: 50%;
  z-index: 2000;
  text-align: center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .navigation__button {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .navigation__button {
    height: 5rem;
    width: 5rem;
    top: 0.9rem;
  }
}
.navigation__button:hover .navigation__icon::before {
  top: -0.7rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 0.7rem;
}
.navigation__background {
  height: 4.5rem;
  width: 4.5rem;
  border-radius: 50%;
  position: fixed;
  top: 1.5rem;
  right: 2.5rem;
  background-image: radial-gradient(rgb(81, 125, 141), rgb(1, 9, 26));
  background-image: -moz-radial-gradient(rgb(81, 125, 141), rgb(1, 9, 26));
  z-index: 1000;
  transition: transform 0.8s;

  /* transform: scale(80); */
}
@media screen and (max-width: 768px) {
  .navigation__background {
    top: 1rem;
  }
}
.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  display: none;
  width: 0;
  transition: all 0.8s;
}
.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}
.navigation__item {
  margin: 1.5rem;
}
.navigation__link,
.navigation__link:link,
.navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  color: white;
  text-decoration: none;
  background-image: -moz-linear-gradient(
    120deg,
    transparent 0%,
    transparent 50%,
    white 50%
  );
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    transparent 50%,
    white 50%
  );
  padding: 0.2rem 2rem;
  background-size: 230%;
  transition: all 0.4s;
  border-bottom: 1px solid white;
}
@media screen and (min-width: 1600px) {
  .navigation__link,
  .navigation__link:link,
  .navigation__link:visited {
    font-size: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .navigation__link,
  .navigation__link:link,
  .navigation__link:visited {
    font-size: 2rem;
    padding: 0.1rem 2rem;
  }
}
.navigation__link:hover,
.navigation__link:active {
  background-position: 100%;
  color: rgb(37, 2, 37);
  transform: translateX(1rem);
}
.navigation__icon {
  position: relative;
  margin-top: 2.5rem;
}
.navigation__icon,
.navigation__icon::before,
.navigation__icon::after {
  width: 3rem;
  height: 2px;
  background-color: rgb(13, 3, 48);
  display: inline-block;
}
.navigation__icon::before,
.navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.navigation__icon::before {
  top: -0.8rem;
}
.navigation__icon::after {
  top: 0.8rem;
}
/* animation */
.min-list a:hover {
  background-color: transparent;
  position: relative;
}
.min-list a:hover::before {
  background-color: transparent;
  border-bottom: 0.3rem solid white;
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 0;
  animation: border_animation 0.5s linear forwards;
}

.seo__list {
  list-style: none;
  margin-top: 1.5rem;
}
.seo__list li {
  font-weight: 700;
  color: rgb(100, 92, 92);
  text-align: left;
}
.inner__section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .inner__section {
    padding: 0 1rem;
  }
}
.seo__list__add {
  width: 60%;
}
.main__title {
  position: absolute;
  color: white;
  font-size: 7.5rem;
  font-weight: 600;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 1600px) {
  .main__title {
    font-size: 5.5rem;
  }
}
@media screen and (max-width: 768px) {
  .main__title {
    top: 30%;
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .add-main {
    top: 20%;
    font-size: 4rem;
  }
}

.title__wrapper p {
  position: absolute;
  font-weight: 600;
  font-size: 6rem;
  top: 70%;
  left: 50%;
  text-align: center;
  color: white;
  z-index: 1;
  margin-top: 2rem;
  text-indent: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 1600px) {
  .title__wrapper p {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  .title__wrapper p {
    display: none;
  }
}
.blok__text .w__image {
  transition: 0.4s all;
}
.item {
  transition: 0.4s all;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(208, 205, 219);
  padding: 0.5rem;
  border-radius: 1rem;
}
.item img {
  transition: 0.4s all;
}
@media only screen and (max-width: 768px) {
  .item {
    margin: 0.5rem 1rem;
  }
}
.item h3 {
  color: rgb(104, 104, 104);
}
.izrada__iframe {
  width: 90%;
  height: 90vh;
}
@media only screen and (max-width: 768px) {
  .izrada__iframe {
    height: 40vh;
  }
}
.up {
  float: right;
  margin: 2rem;
  cursor: pointer;
  height: 4rem;
  width: 4rem;
}
@media only screen and (max-width: 768px) {
  .up {
    height: 3.5rem;
    width: 3.5rem;
  }
}

.dark {
  filter: brightness(75%);
}
.preporuke__wrapper {
  min-height: 80vh;
  background-color: rgb(240, 240, 240);
}
.moja__slika {
  border-radius: 50%;
  height: 30rem;
  width: 30rem;
  object-fit: cover;
  margin: 2rem auto;
}
@media only screen and (max-width: 768px) {
  .moja__slika {
    height: 20rem;
    width: 20rem;
    margin: 1rem auto;
  }
}

.w__image {
  height: 20rem;
  width: 30rem;
  object-fit: cover;
}
.w__image:hover {
  transform: scale(0.97);
}
@media only screen and (max-width: 1600px) {
  .w__image {
    height: 20rem;
    width: 28rem;
  }
}
@media only screen and (max-width: 768px) {
  .w__image {
    height: 20rem;
    width: 30rem;
  }
}
.cena__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 1rem;
  grid-column-gap: 2rem;
  align-items: center;
  justify-content: center;
  margin: 2rem 11rem;
}
@media only screen and (max-width: 768px) {
  .cena__wrapper {
    grid-template-columns: 1fr;
    grid-row-gap: 1.5rem;
    margin: 0.5rem 1rem;
  }
}
.ponuda__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-row-gap: 1rem;
  grid-column-gap: 2rem;
  align-items: center;
  justify-content: center;
  margin: 2rem 4rem;
}
@media only screen and (max-width: 768px) {
  .ponuda__wrapper {
    grid-template-columns: 1fr;
    grid-row-gap: 4rem;
    margin: 0.5rem 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .ponuda__wrapper__add {
    grid-row-gap: 1.5rem;
    margin: 0.5rem 1rem;
  }
}
.pillar__section {
  background-color: rgb(240, 240, 240);
  padding: 1rem;
  height: 38rem;
}
@media only screen and (max-width: 1600px) {
  .pillar__section {
    height: 42rem;
  }
}
@media only screen and (max-width: 768px) {
  .pillar__section {
    width: 95%;
    margin: auto;
    height: fit-content;
  }
}
.sajt-ponuda {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 40rem;
  height: 52rem;
  transition: all 0.4s ease-in-out;
  background-color: rgb(198, 194, 215);
  padding: 7rem;
}
@media only screen and (max-width: 1600px) {
  .sajt-ponuda {
    width: 30rem;
    height: 60rem;
    padding: 6rem;
  }
}
@media only screen and (max-width: 768px) {
  .sajt-ponuda {
    width: 95%;
    height: auto;
    margin: auto;
    padding: 3rem;
  }
}

.card-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  background-color: rgb(33, 16, 88);
  padding: 0.5rem 1.5rem;
  margin-top: 3rem;
}
@media only screen and (max-width: 1600px) {
  .card-title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .card-title {
    margin-top: 1.5rem;
  }
}
.price {
  font-size: 3rem;
  font-weight: 600;
  margin-top: 1rem;
}
.sajt-ponuda p {
  word-break: break-all;
}
.sajt-video {
  width: 55rem;
  height: 40rem;
  margin-top: 2rem;
  transition: all 0.4s ease-in-out;
  background-color: rgb(220, 220, 220);
  object-fit: cover;
}
@media only screen and (max-width: 1600px) {
  .sajt-video {
    width: 40rem;
    height: 30rem;
  }
}
@media only screen and (max-width: 768px) {
  .sajt-video {
    width: 88%;
    height: 23rem;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.radovi__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 1.5rem;
  grid-column-gap: 2rem;
  align-items: center;
  justify-content: center;
  margin: 0 10rem;
}
@media (max-width: 1600px) {
  .radovi__wrapper {
    grid-column-gap: 1rem;
    margin: 2rem 5rem;
  }
}
@media (max-width: 768px) {
  .radovi__wrapper {
    grid-template-columns: 1fr;
    margin: 0.5rem 1rem;
  }
}
.radovi__wrapper section {
  height: 35rem;
  width: 90%;
}
@media (max-width: 1600px) {
  .radovi__wrapper section {
    height: 22rem;
  }
}
@media (max-width: 768px) {
  .radovi__wrapper section {
    height: 20rem;
    width: 100%;
  }
}
.radovi__wrapper img {
  height: 30rem;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1600px) {
  .radovi__wrapper img {
    height: 22rem;
  }
}
@media (max-width: 768px) {
  .radovi__wrapper img {
    height: 20rem;
    width: 90%;
  }
}
.radovi__wrapper section a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.radovi__wrapper section a:hover {
  transform: scale(0.97);
}
.portfolio__item {
  justify-content: center;
}
@media (max-width: 768px) {
  .portfolio__item {
    justify-content: space-between;
  }
}
.pf__link {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.pf__link:hover {
  transform: scale(0.95);
}
.pf__image {
  object-fit: cover;
  height: 30rem;
  width: 100%;
}
@media (max-width: 768px) {
  .pf__image {
    height: 20rem;
    width: 90%;
  }
}

/* flip card */
.flip-card {
  background-color: transparent;
  width: 50rem;
  height: 45rem;
  perspective: 1000px;
}
@media only screen and (max-width: 1600px) {
  .flip-card {
    width: 40rem;
    height: 45rem;
    /* padding: 0 3rem; */
  }
}
@media only screen and (max-width: 768px) {
  .flip-card {
    width: 95vw;
    height: 42rem;
    padding: 0 1rem;
    margin: 1rem auto;
  }
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 1.2s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-back {
  background-color: rgb(198, 194, 215);
  transform: rotateY(180deg);
}

.back-div {
  margin: auto;
  text-align: center;
}
.back-div p {
  font-size: 3rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .back-div p {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .back-h3 {
    display: none !important;
  }
}
.color {
  color: rgb(12, 2, 45);
}

/* call now button */
.call-now {
  display: none;
}
.call-now-viber {
  display: none;
}

@media (max-width: 768px) {
  .call-now {
    text-decoration: none;
    display: inline-block;
    position: absolute;
    width: 20rem;
    font-weight: 600;
    font-size: 1.8rem;
    top: 105%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    z-index: 1;
    padding: 1rem;
    cursor: pointer;
    animation: pulse 2s infinite;
    margin-left: -10rem;
    vertical-align: middle;
    text-align: center;
    background-color: rgb(97, 65, 161);
  }
}
@media (max-width: 768px) {
  .call-now-viber {
    text-decoration: none;
    display: inline-block;
    position: absolute;
    width: 20rem;
    font-weight: 600;
    font-size: 2.2rem;
    top: 125%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    z-index: 1;
    padding: 1rem;
    cursor: pointer;
    animation: pulse 2s infinite;
    margin-left: -10rem;
    vertical-align: middle;
    text-align: center;
    background-color: rgb(68, 38, 128);
  }
}

.viber__mobile {
  height: 2.5rem;
  width: 2.5rem;
  object-fit: cover;
}
.icon__image {
  height: 5rem;
  width: 5rem;
}
@media (max-width: 768px) {
  .call-add {
    top: 85%;
  }
}
@media (max-width: 768px) {
  .call-now-card-back {
    top: 45%;
  }
}

.headphone {
  display: inline-block;
  height: 1.8rem;
  width: 1.8rem;
  filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(0%)
    hue-rotate(55deg) brightness(104%) contrast(104%);
}
.pillar {
  display: inline-block;
  height: 15rem;
  width: 15rem;
  filter: brightness(0) saturate(100%) invert(15%) sepia(94%) saturate(3732%)
    hue-rotate(242deg) brightness(82%) contrast(90%);
}
.green-svg {
  filter: invert(20%) sepia(38%) saturate(1694%) hue-rotate(77deg)
    brightness(98%) contrast(95%);
}

.bold {
  font-weight: bold;
}

.top__wrapper {
  position: relative;
  padding: 4rem 5.5rem;
}

@media (max-width: 768px) {
  .top__wrapper {
    font-size: 2.2rem;
    padding: 2rem 3rem;
  }
}
.top__wrapper h1 {
  color: white;
}
@media (max-width: 768px) {
  .top__wrapper h1 {
    margin-top: 2rem;
  }
}

.cover__naselje {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  opacity: 0.9;
}
@media (max-width: 1200px) {
  .cover__naselje {
    height: 40vh;
  }
}
.phone {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 600;
  color: #3737c2;
}
/* slider */
@keyframes slajd {
  0% {
    left: 0%;
  }
  20% {
    left: 0%;
  }
  25% {
    left: -100%;
  }
  45% {
    left: -100%;
  }
  50% {
    left: -200%;
  }
  70% {
    left: -200%;
  }
  75% {
    left: -300%;
  }
  95% {
    left: -300%;
  }
  100% {
    left: -400%;
  }
}

div#slider {
  overflow: hidden;
  height: 90vh;
}
@media only screen and (max-width: 768px) {
  div#slider {
    height: 40vh;
    width: 90%;
  }
}
div#slider figure img {
  width: 20%;
  float: left;
  object-fit: cover;
  height: 90vh;
}
@media only screen and (max-width: 768px) {
  div#slider figure img {
    height: 60vh;
    border-radius: 0.5rem;
  }
}
div#slider figure {
  position: relative;
  width: 500%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  animation: 20s slajd infinite;
}
.image__in {
  object-fit: cover;
  width: 100rem;
  height: 50rem;
  padding: 1.5rem;
  border-radius: 2rem;
}
@media only screen and (max-width: 768px) {
  .image__in {
    width: 35rem;
    height: 20rem;
    padding: 1rem;
    border-radius: 0.5rem;
  }
}
#kontaktForma {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70%;
}
@media only screen and (max-width: 768px) {
  #kontaktForma {
    width: 90%;
  }
}
.form__name {
  width: 30%;
  height: 3rem;
  border: 2px solid #3737c2;
  border-radius: 0.5rem;
  outline: none;
}
.form__name:focus {
  border-bottom: 0.3rem solid #120c60;
}
@media only screen and (max-width: 768px) {
  .form__name {
    width: 60%;
  }
}
.form__mail {
  width: 35%;
  height: 3rem;
  border: 2px solid #3737c2;
  border-radius: 0.5rem;
  outline: none;
}
.form__mail:focus {
  border-bottom: 0.3rem solid #120c60;
}
@media only screen and (max-width: 768px) {
  .form__mail {
    width: 70%;
  }
}
.form__text {
  width: 40%;
  height: 18rem;
  border: 2px solid #3737c2;
  border-radius: 0.5rem;
  outline: none;
}
.form__text:focus {
  border-bottom: 0.5rem solid #120c60;
}
@media only screen and (max-width: 768px) {
  .form__text {
    width: 80%;
    height: 14rem;
  }
}
.form__button {
  margin-top: 1.5rem;
  width: 20%;
  height: 3rem;
  cursor: pointer;
  background-color: #3737c2;
  color: white;
  font-size: 2rem;
  border-radius: 2rem;
  transition: 0.2s ease-in-out;
  margin-bottom: 1.5rem;
  border: none;
}
@media only screen and (max-width: 768px) {
  .form__button {
    width: 40%;
    font-size: 1.6rem;
  }
}
.form__button:hover {
  transform: scale(0.98);
  background-color: rgb(19, 19, 127);
}
.portfolio__lista {
  list-style: none;
  text-align: left;
}
.background__image {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/background.webp") center/cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  margin: 0;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  margin-top: -0.7rem;
}
.white {
  color: white !important;
  margin: 6rem auto !important;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .white {
    margin: 5rem auto !important;
  }
}
#back-to-top {
  object-fit: cover;
  border-radius: 50%;
}
.youtube__icon {
  height: 2rem;
  width: 2.5rem;
  object-fit: cover;
  vertical-align: middle;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .youtube__icon {
    height: 2rem;
    width: 2.5rem;
    margin-bottom: 0.3rem;
  }
}
/* #cover-image {
  position: relative;
  display: block;
  width: 100%;
  height: 93vh;
  overflow: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../images/cover-izrada.webp");
  animation: animateBackground infinite ease-in-out 55s;
  opacity: 0.9;
} */
