.squareGallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(100%/6), 1fr));
    gap: 8px;
    min-height: 100px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.squareGallery>.square::before {
    content: "";
    padding-bottom: 100%;
    display: block;
}

.squareGallery>.square {
    position: relative;
    overflow: hidden;
}

.squareGallery>.square>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.25s;
}

.squareGallery>.square>img:hover {
    scale: 1.1;
}


*[element-type="gallerys.slideshow"] {
    padding-left: 8%;
    padding-right: 8%;
}

.imageSlideshow {
    position: relative;
    height: 25rem;
    user-select: none;
    overflow: hidden;
    margin: 4% 0;
    border-radius: var(--border-radius);
}

.imageSlideshow>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeIn 0.6s forwards;
    transition: ease-out 0.6s;
    position: absolute;
    left: 0;
}

.imageSlideshowControl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4em;
    padding: 12px;
    z-index: 100;
}

.imageSlideshowControl>span {
    border-radius: 50%;
    color: whitesmoke;
    background-color: rgba(37, 37, 37, 0.6);
    border: 2px whitesmoke solid;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    opacity: 0.5;
    transition: 0.2s;
    cursor: pointer;
}

.imageSlideshowControl:hover>span {
    background-color: rgba(37, 37, 37, 0.5);
    border: 2px whitesmoke solid;
    opacity: 0.8;
}

.imageSlideshowControl[type=next] {
    right: 0;
    padding-right: 20px;
    border-radius: 8px 0 0 8px;
}

.imageSlideshowControl[type=back] {
    left: 0;
    padding-left: 20px;
    border-radius: 0 8px 8px 0;
}



.carousel-item {
    padding: 20px;
    height: 100%;
}

.feature-box {
    height: 100%;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
    transition: 0.2s;
    transform: scale(0.9);
}

.slick-center {
    transform: scale(1.05);
}