.mtx__slideShow-slides {    
    display: none;
    height: 20vh;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.mtx__slideShow-slides img {vertical-align: middle;}

.mtx__slideShow-container {
  display: flex;
  margin: 2em 0em 2em 0em;
  height: 50vh;
  background-color: var(--matexOrange);
  border-radius: 10px;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}

.mtx__slideShow-container .text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.mtx__slideShow-container .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.mtx__slideShow-container .dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.mtx__slideShow-container .active {
  background-color: #717171;
}

.mtx__slideShow-container .fade {
  animation-name: fade;
  animation-duration: 1.5s;
  border-radius: 10px;
}

.mtx__slideShow-container-title {
  position: relative;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: var(--whitesmoke);
  width: 100%;
  padding: 10px;
  border-radius: 0px 0px 10px 10px;
  font-size: inherit;
  font-family: 'MagistralC'!important;
  font-weight: 700;
  max-height: unset;
  margin-top: 40vh;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media only screen and (max-width: 300px) {
    .mtx__slideShow-container .text {font-size: 11px}
}