.photogallery__wrapper {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.photogallery-slider {
    overflow: hidden;
    width: 100%;
    height: 67.1rem;
}
.photogallery__item {
    width: 100%;
    height: 100%;
}
.photogallery__item img {
    object-fit: contain;
}
.photogallery__bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}
.photogallery__nav-btn {
    width: 4.4rem;
    height: 4.4rem;
    flex: 0 0 auto;
    cursor: pointer;
    transition: opacity .2s;
}
.photogallery__nav-btn svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.photogallery__nav-btn:hover{
    opacity: .8;
}
.photogallery-slider-thumb {
    width: 12rem !important;
    height: 10rem !important;
    opacity: .6;
    transition: opacity .3s ease;
    cursor: pointer;
}
.photogallery-slider-thumb.swiper-slide-thumb-active {
    opacity: 1;
}
.photogallery-slider-thumb img {
    object-fit: cover;
    object-position: center;
}
.photogallery-slider-thumb:hover{
    opacity: .7;
}
@media (max-width: 1280px){
    .photogallery__item img {
        object-fit: cover;
    }
}
@media (min-width: 768px) and (max-width: 1280px){
    .photogallery-slider {
        height: 38rem;
    }
    .photogallery-slider-thumb {
        width: 9rem !important;
        height: 6rem !important;
    }
    .photogallery__bottom {
        gap: 2rem;
    }
}
@media (max-width: 767px){
    .photogallery-slider {
        height: 20rem;
    }
    .photogallery-slider-thumb {
        width: 7rem !important;
        height: 5rem !important;
    }
    .photogallery__bottom {
        gap: 1.6rem;
    }
    .photogallery__nav-btn {
        display: none;
        width: 3.2rem;
        height: 3.2rem;
    }
}