body{
  background-color: #e0e0e0;
}

.section1__usluge{
  width: 100%;
  height: 400px;
  background-color: rgb(246, 204, 106);
  margin: 0;
}

.section1__usluge__container{
  font-size: 50px;
  color: black;
  max-width: 1120px;
  margin: auto;
  padding-top: 200px;
}

.tekst1__usluge{
  font-size: 70px;
  color: black;
  font-weight: 600;
  text-align: center;
  vertical-align: center;
}

.section2__usluge{
  width: 100%;
  height: 1500px;
}

.section2__usluge__container{
  margin: auto;
  max-width: 1120px;
  padding-top: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 110px;
}

.card {
  width: 100%;
  height: 350px;
  margin: 1rem auto;
  perspective: 1000px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.card-front {
  background: rgb(246, 204, 106);
  border: 2px solid rgb(255, 238, 198);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-right: 20px;
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.div__za__sliku{
  width: 70%;
  height: 100%;
}

.card-front__slika{
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

.card-front__div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 150px;
  gap: 12px;
  width: 30%;
  padding-top: 30px;
}

.card-front__ikonice{
  width: 40px;
  display: flex;
  align-self: center;
}

.card-front__usluga{
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.card-front__desc{
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}

.card-back {
  background: white;
  color: black;
  transform: rotateY(180deg);
  display: flex;
  justify-content: space-between;
  padding: 0px 40px;
  border: 2px solid rgb(227, 227, 227);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card-back__sadrzaj{
  width: 300px;
  height: 300px;
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 4px;
  background-color: rgb(246, 204, 106);
  transition: opacity 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-back__sadrzaj:hover{
  opacity: 0.65;
}

.card-back__slika{
  object-fit: cover;
  width: 100%;
  height: 70%;
  border-radius: 0.5rem;
}

.card-back__usluga{
  text-align: center;
  font-weight: 500;
  font-size: 1.2rem;
}
