.slider-image-container {
  position: relative;
  width: 100%;
  height: 370px;
}

.slider-image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-image-text-container {
  text-transform: uppercase;
  font-family: 'Space Grotesk' sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* to smoothly fade in/out the text */
}
.slider-image-text-container a{
  text-transform: uppercase;
  font-family: 'Space Grotesk' sans-serif;
  color: #fdfdfd;
}  
.slider-image-container:hover .slider-image-text-container {
  opacity: 1;
  background-color: #ef3d0c7b; /* to make the text more visible */
  color: #fdfdfd; /* to make the text more visible */
  padding: 20px; /* to add some space around the text */
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.slider-image-container {
position: relative;
width: 100%;
max-height: 300px;
}
.slider-wrapper .la-arrow-circle-right.slick-arrow, .slider-wrapper .la-arrow-circle-left.slick-arrow {
  position: absolute; /* make the arrow buttons position absolute */
  top: 50%; /* position the buttons at the vertical center of the container */
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); /* adjust the buttons to be vertically centered */
  z-index: 1; /* set a high z-index to make sure the buttons appear above the slider */
}

.slider-wrapper .la-arrow-circle-left.slick-arrow{
  left: 0.3em; /* position the previous button at the left edge of the container */
}

.slider-wrapper .la-arrow-circle-right.slick-arrow {
  right: 0.3em; /* position the next button at the right edge of the container */
}
.arrow-container{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
  -ms-flex-direction: row;
      flex-direction: row;
-webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
padding: 0 1em;
border-top: 1px solid #1d1d1d;
}
.block-slider-container-txt{
border: 1px solid #1d1d1d;
margin: auto;
}
.slider-image-container-txt {
position: relative;
width: 100%;
height: 470px !important;
max-height: 470px;
}

.slider-image-container-txt img{
width: 100%;
height: 100%;
-o-object-fit: cover;
   object-fit: cover;
}