.img-modal-display {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.container-img-modal {
    position: relative;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.img-modal {
    height: 250px;
}

.img-modal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.comparative-photos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.photos.polaroid {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  padding: 10px;
  text-align: center;
  width: 350px;
  transition: transform 0.3s ease;
    & p, h1, h2, h3, h4, h5, h6 {
        margin: 0;
        line-height: 1.2 !important;
    }
}

.photos.polaroid img {
  width: 100%;
  border-radius: 4px;
  display: block;
}


.photos.right{
    transform: rotate(3deg);
}

.photos.left{
    transform: rotate(-3deg);
}


.h-200{
    height: 200px;
}

.h-250{
    height: 250px;
}

.h-300{
    height: 300px !important;
}
.h-400{
    height: 400px !important;
}

.h-500{
    height: 500px !important;
}

.gap-5{
    gap: 5px;
}
.gap-10{
    gap: 10px;
}

.gap-20{
    gap: 20px;
}

.gap-30{
    gap: 30px;
}

.gap-40{
    gap: 40px;
}