/* 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;
  }
}
/* animation */

@keyframes pulse {
  0% {
    transform: skewX(-5deg);
    transform: scale(0.97);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

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

  100% {
    transform: skewX(-10deg);
    transform: scale(0.97);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
/* end of animations */
body {
  box-sizing: border-box;
  font-size: 1.8rem;
  font-family: "Times New Roman", sans-serif;
  line-height: 1.4;
  overflow-x: hidden !important;
  overflow-y: auto;
  backface-visibility: hidden;
  scroll-behavior: smooth;
}
body::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
  background-color: rgb(59, 2, 2);
  border-radius: 10rem;
}
/* animations */
@keyframes border_animation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    transform: scale(1.01);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

h1 {
  font-weight: 500;
  font-size: 3rem;
  color: rgb(8, 8, 8);
  margin: 2rem 0;
  word-wrap: break-word;
}

@media (max-width: 1600px) {
  h1 {
    font-size: 2.5rem;
  }
}
h2 {
  font-weight: 500;
  font-size: 2.7rem;
  margin: 1rem 0;
  color: rgb(163, 35, 35);
}
@media (max-width: 1600px) {
  h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  h2,
  h3 {
    font-size: 2rem;
    word-wrap: break-word;
  }
}

b {
  font-weight: bold;
}
p {
  text-indent: 2rem;
  word-break: break-word;
  text-align: left;
  font-size: 2.2rem;
}
@media only screen and (max-width: 768px) {
  p {
    font-size: 2rem;
  }
}

a {
  text-decoration: none;
}

.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__link {
  color: rgb(163, 35, 35);
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.footer__link:hover {
  transform: scale(1.05);
}
.footer__margin {
  margin-right: 1rem;
}
.fb__footer__text {
  color: rgb(163, 35, 35);
  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;
  }
}
@media only screen and (max-width: 768px) {
  .hide {
    display: none;
  }
}

.subtitle__p {
  color: rgb(75, 13, 13);
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  margin-left: 2rem;
  margin-right: 2rem;
  text-align: center;
}
@media (max-width: 1600px) {
  .subtitle__p {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .subtitle__p {
    font-size: 2.3rem;
  }
}

/* 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;
}
@media only screen and (max-width: 768px) {
  .footer p {
    font-size: 1.6rem;
  }
}
.footer p:last-child {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1200px) {
  .footer {
    font-size: 1.6rem;
    position: relative;
  }
}

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

main {
  text-align: center;
}

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

.logo__right {
  display: inline-block;
  margin: auto 3rem;
  height: 6rem;
  width: 6rem;
  object-fit: cover;
  border-radius: 10%;
}
@media (max-width: 1600px) {
  .logo__right {
    margin: auto 1rem;
    height: 6rem;
    width: 6rem;
  }
}
@media (max-width: 768px) {
  .logo__right {
    display: none;
  }
}
.figure__logo {
  position: fixed;
  top: 1.5rem;
  left: 3rem;
  display: inline-block;
  height: 6rem;
  width: fit-content;
}
@media (max-width: 768px) {
  .figure__logo {
    top: 0.5rem;
    left: 0.1rem;
  }
}
.logo__right {
  position: fixed;
  top: 1.5rem;
  right: 3rem;
  display: inline-block;
  height: 6rem;
  width: fit-content;
}
@media (max-width: 768px) {
  .logo__right {
    display: none;
  }
}

/*   style home page */

.home {
  min-height: 100vh;
  background-color: #f0f0f0;
  text-align: center;
}

.home h2 {
  color: rgb(75, 13, 13);
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  margin: 1rem 2rem;
}
@media (max-width: 1600px) {
  .home h2 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .home h2 {
    font-size: 2.2rem;
    margin: 0.5rem 1rem;
  }
}
.home h3 {
  color: rgb(75, 13, 13);
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  margin: 1rem 2rem;
  text-align: center;
}
@media (max-width: 1600px) {
  .home h3 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .home h3 {
    font-size: 2.2rem;
    margin: 0.5rem 1rem;
  }
}
.cover-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  opacity: 0.9;
}
@media (max-width: 1200px) {
  .cover-video {
    height: 40vh;
  }
}

.title__wrapper {
  position: relative;
  width: 100%;
  text-align: center;
}
.title__wrapper p {
  position: absolute;
  font-weight: 600;
  font-size: 4rem;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgb(16, 16, 16);
  z-index: 1;
}
@media (min-width: 1600px) {
  .title__wrapper p {
    font-size: 5.5rem;
  }
}
@media (max-width: 768px) {
  .title__wrapper p {
    display: none;
  }
}
.info {
  display: flex;
  position: absolute;
  top: 3%;
  width: 100%;
  height: 18rem;
  justify-content: space-between;
  padding: 0 5rem;
  align-items: center;
  z-index: 100000;
}
@media (max-width: 768px) {
  .info {
    display: none;
  }
}
.info__p {
  font-size: 4rem;
  font-weight: 600;
  color: white;
  text-align: left;
}
.call-now {
  display: none;
}
@media (max-width: 768px) {
  .call-now {
    text-decoration: none;
    display: inline-block;
    position: absolute;
    height: 4rem;
    width: 15rem;
    font-weight: 600;
    font-size: 1.8rem;
    top: 60%;
    left: 55%;
    transform: translateX(-50%);
    color: white;
    background-color: #af393b;
    z-index: 1;
    padding: 0.5rem;
    cursor: pointer;
    animation: pulse 2s infinite;
    margin-left: -10rem;
    vertical-align: middle;
    text-align: center;
    border-radius: 40%;
  }
}
@media (max-width: 768px) {
  .call-add {
    top: 85%;
  }
}
@media (min-width: 1200px) {
  .rv {
    display: none;
  }
}
.call-now-viber {
  display: none;
}
@media (max-width: 768px) {
  .call-now-viber {
    text-decoration: none;
    display: inline-block;
    position: absolute;
    height: 4rem;
    width: 15rem;
    font-weight: 600;
    font-size: 1.8rem;
    top: 75%;
    left: 55%;
    transform: translateX(-50%);
    color: white;
    background-color: #45090b;
    z-index: 1;
    padding: 0.5rem;
    cursor: pointer;
    animation: pulse 2s infinite;
    margin-left: -10rem;
    vertical-align: middle;
    text-align: center;
    border-radius: 40%;
  }
}
.viber__mobile {
  height: 1.3rem;
  width: 1.3rem;
  object-fit: cover;
}
.headphone {
  display: inline-block;
  height: 1.3rem;
  width: fit-content;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(121deg)
    brightness(103%) contrast(103%);
}
.blok__wrapper {
  display: flex;
  height: fit-content;
  justify-content: space-between;
  padding: 0 5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .blok__wrapper {
    flex-direction: column;
    padding: 0 1rem;
    align-items: center;
    margin-bottom: 1rem;
  }
}
.blok__wrapper ul {
  width: 100%;
  margin: auto;
  list-style: none;
}
.blok__wrapper ul li {
  text-align: center;
}
@media (max-width: 768px) {
  .blok__wrapper ul li {
    font-size: 2rem;
    text-align: left;
  }
}
.blok__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 45%;
  background-color: white;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .blok__text {
    display: block;
    width: 90%;
    border-radius: 0.5rem;
    margin-top: 0;
  }
}
.blok__top__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  background-color: #f0f0f0;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .blok__top__left {
    display: block;
    width: 90%;
    border-radius: 0.5rem;
  }
}
.blok__akcija {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  background-color: #f0f0f0;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .blok__akcija {
    display: block;
    width: 90%;
    border-radius: 0.5rem;
  }
}

.blok__text p:first-child {
  margin-top: 2rem;
}

.izrada__video {
  width: 60rem;
  height: 40rem;
  object-fit: cover;
  margin-top: 2rem;
}
@media (max-width: 1600px) {
  .izrada__video {
    width: 50rem;
    height: 35rem;
  }
}
@media (max-width: 1200px) {
  .izrada__video {
    width: 25rem;
    height: 18rem;
  }
}

.izrada__iframe {
  width: 90%;
  height: 90vh;
  margin: 3rem 0;
}
@media only screen and (max-width: 768px) {
  .izrada__iframe {
    height: 40vh;
    margin: 1rem 0;
  }
}

@media (max-width: 768px) {
  .mobile__image {
    display: none;
  }
}
/*   header  */
.site-header {
  height: 10rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-bottom: 1px solid rgb(68, 39, 9);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .site-header {
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.site-header-container {
  display: inline-block;
}

.above {
  text-align: center;
  color: rgb(163, 35, 35);
  font-size: 4rem;
  font-weight: 700;
  margin: 10rem auto;
}
@media only screen and (max-width: 768px) {
  .above {
    font-size: 2.2rem;
    margin: 0 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .above:first-child {
    margin: 8rem 1rem;
  }
}
.above-top {
  text-align: center;
  color: rgb(163, 35, 35);
  font-size: 4rem;
  font-style: italic;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .above-top {
    font-size: 1.6rem;
    margin-right: 2.5rem;
  }
}
/* 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: 25vh;
    width: 90%;
    margin-top: 1rem;
  }
}
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: 35vh;
  }
}
.naselje__img {
  object-fit: cover;
  width: 80%;
  height: 50rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .naselje__img {
    height: 20rem;
    width: 30rem;
  }
}
div#slider figure {
  position: relative;
  width: 500%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  animation: 22s slajd infinite;
}

.home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  background-color: #f0f0f0;
}
.title__wrapper h1 {
  position: absolute;
  font-weight: 600;
  font-size: 7rem;
  top: 35%;
  left: 50%;
  text-align: center;
  color: white;
  z-index: 1;
  margin-top: 2rem;
  text-indent: 0;
  transform: translateX(-50%);
}

.title__wrapper h1 span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: inline-block;
  white-space: nowrap;

  /* nasledjuje sve stilove od h1 */
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
}

.title__wrapper h1 span.active {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .title__wrapper h1 {
    font-size: 2.5rem;
    top: 3%;
  }
}
.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;
  }
}
.top__wrapper {
  position: relative;
  padding: 4rem 5.5rem;
}
@media (max-width: 768px) {
  .top__wrapper {
    font-size: 2.2rem;
    padding: 2rem 3rem;
  }
}
@media (max-width: 768px) {
  .ad__trap {
    top: 5% !important;
  }
}
.top__wrapper h1 {
  position: absolute;
  font-weight: 600;
  font-size: 5rem;
  top: 15%;
  left: 50%;
  text-align: center;
  color: white;
  z-index: 1;
  margin-top: 2rem;
  text-indent: 0;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .top__wrapper h1 {
    font-size: 3rem;
  }
}
.top__wrapper p {
  position: absolute;
  font-weight: 600;
  font-size: 4rem;
  font-style: italic;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgb(55, 33, 10);
  z-index: 1;
}
@media (min-width: 1600px) {
  .top__wrapper p {
    font-size: 5.5rem;
  }
}
@media (max-width: 768px) {
  .top__wrapper p {
    font-size: 2.2rem;
    top: 70%;
  }
}

.dark {
  filter: brightness(60%);
}
.white {
  color: white !important;
  margin: 0 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .white {
    margin: 0 1rem;
  }
}
.specific__img {
  height: 20rem;
  width: fit-content;
  margin: 1rem;
  object-fit: cover;
}
@media (max-width: 768px) {
  .specific__img {
    height: 15rem;
    margin: auto;
  }
}
.iveco__img {
  height: 25rem;
  width: fit-content;
  margin: 1rem;
  object-fit: cover;
}
@media (max-width: 768px) {
  .iveco__img {
    height: 16.5rem;
    margin: auto;
  }
}
.delatnost__list {
  width: 50% !important;
  list-style: none;
}

/* menu */
/*   header  */
.site-header {
  height: 10rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: white;
  border-bottom: 1px solid rgb(68, 39, 9);
}
@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;
}
@media screen and (max-width: 768px) {
  .store-logo-text {
    display: block;
    margin-left: 1rem;
  }
}

.site-header__menu {
  margin-right: 4rem;
}

.min-list {
  display: flex;
  justify-content: center;
  /*  width: 60rem; */
  list-style: none;
}
@media screen and (max-width: 1600px) {
  .min-list {
    margin-left: 12rem;
  }
}
@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(68, 13, 13);
  font-size: 3rem;
  display: inline-block;
  font-weight: 700;
}
@media screen and (max-width: 1600px) {
  .min-list li a {
    font-size: 3rem;
  }
}
.min-list li a:hover::before {
  background-color: transparent;
  border-bottom: 0.3rem solid rgb(155, 10, 10);
  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;
  }
}

.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(85, 32, 32), rgb(38, 1, 1));
  background-image: -moz-radial-gradient(rgb(85, 32, 32), rgb(38, 1, 1));
  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(125, 33, 37);
  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;
}
/* kontakt */
/* contact style */
.kontakt {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  min-height: 100vh;
  background-color: #f0f0f0;
}
@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;
  }
}
.kontakt__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 25%;
  min-height: 15vh;
}
@media only screen and (max-width: 768px) {
  .kontakt__items {
    margin-top: -15rem;
  }
}
.kontakt__img {
  height: 8rem;
  position: absolute;
  top: 2rem;
  left: 5rem;
}
@media only screen and (max-width: 768px) {
  .kontakt__img {
    display: none;
  }
}
.kontakt__title {
  margin-top: 3rem;
  color: #1f041f;
}
@media only screen and (max-width: 1600px) {
  .kontakt__title {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .kontakt__title {
    margin-top: 1rem;
  }
}
.kontakt__phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* justify-content: center; */
  height: 4.5rem;
  width: 90%;
  margin: 1.5rem 0;
  transition: all 0.3s ease-in-out;
  text-align: left;
}
@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--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: #350335;
  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__mail {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 4.5rem;
  width: 90%;
  margin: 1.5rem 0;
  margin-left: -17rem;
}
@media only screen and (max-width: 1200px) {
  .kontakt__mail {
    height: 10rem;
  }
}
@media only screen and (max-width: 768px) {
  .kontakt__mail {
    height: 7rem;
    width: 90vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-left: 0rem;
  }
}
.kontakt__mail:hover {
  background-color: #f1eeee;
}
.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: #350335;
  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;
  }
}
/* --------------------- */
.naselja__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1rem;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 2rem;
  width: 65%;
  margin: 1rem auto;
}
@media only screen and (max-width: 768px) {
  .naselja__list {
    grid-template-columns: 1fr;
    margin: 0 2.5rem;
    padding: 0.5rem;
    width: 90%;
    grid-row-gap: 1rem;
  }
}
.naselja__list li {
  width: 100%;
  height: 22rem;
}
.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;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.4s all;
  background-color: rgb(59, 2, 2);
}
@media only screen and (max-width: 768px) {
  .tutorijali__li {
    width: 95%;
    margin: 0 auto;
  }
}
.tutorijali__li:hover {
  background-color: rgb(152, 63, 63);
  transform: scale(0.98);
}
.tutorijali__li--img {
  height: 15rem;
  width: 90%;
  display: block;
  object-fit: cover;
  margin: 1rem auto;
}
.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;
  }
}
.tutorial__image {
  width: 80rem;
  height: 40rem;
  object-fit: cover;
  margin: 1.5rem auto;
}
@media only screen and (max-width: 1200px) {
  .tutorial__image {
    width: 60rem;
    height: 30rem;
  }
}
@media only screen and (max-width: 768px) {
  .tutorial__image {
    width: 30rem;
    height: 15rem;
  }
}
.cover__naselje {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  filter: brightness(0.75);
}
@media (max-width: 1200px) {
  .cover__naselje {
    height: 40vh;
  }
}
.blok__wide {
  padding: 2rem 3rem;
  margin: 2rem 5rem;
  background-color: white;
}
.blok__wide p {
  color: rgb(48, 45, 45);
}
.blok__wide ul {
  list-style: none;
}
@media (max-width: 1200px) {
  .blok__wide {
    width: 85%;
    padding: 1.5rem;
    margin: 1rem 3rem;
  }
}
.phone {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 600;
  color: rgb(111, 25, 25);
}
.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;
}

@media only screen and (max-width: 768px) {
  .mapa div {
    width: 100%;
  }
}
.mapa li {
  width: 100%;
  height: 45rem;
  display: flex;
  align-items: center;
  transition: 0.4s all;
  background-color: #e2dddd;
  border-radius: 1rem;
}
/* .mapa li .h3__p:hover {
  animation: border_animation 0.5s linear forwards;
} */
@media only screen and (max-width: 768px) {
  .mapa li {
    height: fit-content;
  }
}
.mapa li figure {
  background: rgb(59, 2, 2);
  border-radius: 1rem;
}
.icon {
  height: 7rem;
  width: 7rem;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .h3__p {
    width: 90%;
    text-align: left;
  }
}
.internal__link {
  text-decoration: none;
  font-weight: 700;
  color: rgb(75, 13, 13);
}
.internal__link:hover {
  text-decoration: none;
  font-weight: 800;
  color: rgb(31, 3, 3);
}
.saznajte-vise {
  text-decoration: none;
  font-weight: 700;
  color: rgb(75, 13, 13);
  cursor: pointer;
}
.internal__link--o {
  text-decoration: none;
  font-weight: 800;
  color: white;
  transition: all 0.2s ease-in-out;
}
.internal__link--o:hover {
  text-decoration: none;
  font-weight: 900;
  color: rgb(208, 196, 196);
}
.image__in {
  object-fit: cover;
  width: 50rem;
  height: 30rem;
  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;
  }
}
#back-to-top {
  float: right;
  margin: 2rem;
  cursor: pointer;
  border-radius: 50%;
  object-fit: cover;
  width: 6rem;
  height: 6rem;
}
@media only screen and (max-width: 768px) {
  #back-to-top {
    width: 4rem;
    height: 4rem;
  }
}
.background__image {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/4.jpg") center/cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  margin: 0;
  height: 100%;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  margin-top: -0.7rem;
}
.background__image-vulkanizer {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/vulkanizer-u-radu.webp") center/cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  margin: 0;
  height: 100%;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  margin-top: -0.7rem;
}
.background__image-gume {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/prodaja-guma.webp") center/cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  margin: 0;
  height: 100%;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  margin-top: -0.7rem;
}
.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;
  }
}
