@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.back-container {
  background-image: url(https://zlatanovbreg.rs/stanovi-img/ponuda-staniva-background.png);
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.prikaz-stana {
  height: auto;
  width: 100%;
  /* background-color: antiquewhite; */
  color: #003049;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prikaz-stana-container {
  /* background-color: azure; */
  height: auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1145px) {
  .prikaz-stana-container {
    justify-content: center;
  }
}
.prikaz {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 2rem;
  /* background-color: bisque; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* overflow: hidden; */
}
.prikaz-img {
  width: 100%;
  max-width: 500px;
  /* height: 358px; */
  height: auto;
  /* background-color: #67859f; */
}
.prikaz-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.prikaz-img:hover img {
  transform: scale(1.1);
}
@media (max-width: 790px) {
  .prikaz-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.prikaz-title {
  width: 100%;
  height: auto;
  /* background-color: beige; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.prikaz-title h2 {
  height: 60px;
  padding-top: 1rem;
  text-align: center;
  font-weight: 400;
}
th,
th h2 {
  font-weight: 400;
}

td {
  font-weight: 400;
  height: 30px;
  width: 200px;
  background-color: rgb(242, 242, 242);
  font-size: 1.2rem;
  color: #003049;
  text-align: center;
}

thead,
tfoot {
  font-weight: 400;
  height: 60px;
  background-color: #67859f;
  color: #fff;
}
tfoot {
  font-size: 1.4rem;
}

/* OPREMLJENOST */

.opremljenost {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
}
.opremljenost-title h2 {
  font-weight: 400;
}
.opremljenost-container {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.opremljenost-title {
  width: 100%;
  text-align: center;
  margin: 4rem;
  color: #003049;
}
.oprema {
  height: 80px;
  width: 350px;
  /* background-color: antiquewhite; */
  display: flex;
  margin: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
}
.oprema-icon {
  height: 100%;
  width: 80px;
  background-color: #003049;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  color: #fff;
}
.oprema-desc {
  height: 100%;
  width: 230px;
  background-color: #67859fcb;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  padding: 1rem;
}
