.border-rounded-left-tb {
    border-top-left-radius: 0.8rem;
    border-bottom-left-radius: 0.8rem;
}

.border-rounded-right-t {
    border-top-right-radius: 0.8rem;
}

.border-rounded-right-b {
    border-bottom-right-radius: 0.8rem;
}

.wrap-img-full {
    max-height: calc(60vh - 64px);
    height: 600px;
}

.wrap-img-half {
    height: 50%;
}

.img-first {
    height: 100%;
    width: 100%;
    object-fit: cover;
    vertical-align: bottom;
    transition: filter 0.5s;
}

.img-pos-left {
    object-position: left;
}

.img-first:hover {
    filter: brightness(0.8);
    cursor: pointer;
}

.link {
    outline: none;
    color: #dfa974;
    text-decoration: underline;
}

.show-all-photos {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.sticky-book-client {
    position: relative;
    top: 0;
}

@media (min-width: 576px) {
    .wrap-img-full {
        max-height: calc(40vh - 64px);
    }
}

@media (min-width: 768px) {
    .wrap-img-full {
        max-height: calc(50vh - 64px);
    }
}

@media (min-width: 992px) {
    .sticky-book-client {
        position: sticky;
        top: 40px;
    }
    .wrap-img-full {
        max-height: calc(60vh - 64px);
    }
}