.overview__sorting-block {
    position: relative;
}

.overview__dropdown-menu {
    width: 20%;
}

.overview__sorting-block-controller {
    width: 160px;
    cursor: pointer;
}

.overview__head {
    display: flex;
    justify-content: space-between;
}

.overview__pagination-arrows {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.overview__view-block {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(184px,1fr));
    gap: 16px;
    justify-content: center;
}

@media screen and (max-width: 1600px) {
    .overview__view-block {

    }
}

.overview__item {
    overflow: hidden;
    position: relative;
    height: 302px;
    transition: .3s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.overview__item::before {
    transition: .3s;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(44.58deg,
    var(--gradient-dark-blue) 0%,
    var(--gradient-blue) 45.1%,
    var(--gradient-light-blue)) 100%;
    opacity: 0;
}

.overview__item-title {
    position: absolute;
    left: 0px;
    bottom: 0px;
    color: white;
    margin: 15px 10px;
    text-shadow: 0px 0px 2px var(--black-blue);
}

.overview__item:hover .overview__item-title {
    display: none;
}

.overview__item:hover:before {
    opacity: 0.65;
}

.overview__item:hover .overview__item-button {
    display: inline-block;
}

.overview__item:hover .overview__item-background {
    transform: scale(1.1);
}
.overview__item-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overview__item-background {
    transition: .3s;
    position: relative;
    object-fit: cover;
    height: 100%;
    width: 100%;
    background: var(--light-gray);
    text-align: center;
}
.overview__item-background-container {
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: -1;
}

.overview__item-button {
    transition: .3s;
    margin: 0 auto 30px auto;
    z-index: 2;
    display: none;
}

