/* Start custom CSS for shortcode, class: .elementor-element-208dad7 */.collection-terms {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

div.collection-term {
    background-color: #Fffbfb;
}

.collection-term-image img {
    width: 100%;
    height: auto;
    transition: all 1s ease;
    vertical-align: middle;
}
.collection-term-image {
	max-height: 100%;
	position: relative;
	overflow: hidden;
}
.collection-term-image:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 1s;
}
.collection-term-image:hover img {
  transform: scale(1.2);
  opacity: .75;
  background-color: black;  
}
.collection-term-image:hover:before {
  opacity: .75;
}
.collection-term-title {
    text-align:center;
}
.collection-term-description {
    text-align: center;
    padding: 0 24px;
}/* End custom CSS */