/* Depoimentos */
.global-page-container {
    width: 100%;
    display: inline-block;
    margin: auto;
    height: 100%;
    text-align: center;
  }
  
  .watch-slider {
    padding: 40px 0;
    padding-bottom: 180px;
    overflow: hidden;
  
  }
  
  .slick-track {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 30px !important;
  }
  
  .slick-initialized .slick-slide {
    opacity: 0.5 !important;
  }
  
  .watch-slider .slide.slick-center {
    opacity: 1 !important;
  }
  
  .watch-slider .slide {
    transform: scale(0.6);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    outline: none !important;
  }
  
  .watch-slider .slide.slick-center {
    transform: scale(1);
  }
  
  .arrow {
    display: inline-block;
    margin: 30px 10px;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 70% auto;
    background-position: center;
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    margin-top: -400px;
  }
  
  #arrow-prev {
    background-image: url('../img/arrow_prev.svg');
  }
  
  #arrow-next {
    background-image: url('../img/arrow_next.svg');
  }
  
  .watch-slider {
    background-color: #f7f7f5;
  }
  
  .depoimento-box {
    background-color: white;
    display: flex;
    flex-direction: column;
    max-width: 700px;
    padding: 40px 40px 50px 40px;
    box-shadow: 0 1px 8px #dadada;
    border-radius: 5px;
    color: #333333;
  }
  
  .depoimento-texto {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 25px;
  }
  
  .stars {
    align-self: center;
    height: 18px;
    margin-bottom: 18px;
  }
  
  .quote1 {
    width: 55px;
    position: absolute;
    right: 20px;
    margin-top: -25px;
  }
  
  .depoimento {
    display: flex;
  }
  
  .nome {
    font-weight: bold;
  }
  
  /* Medium Screens */
  
  @media only screen and (min-width: 641px) and (max-width: 1023px) {
    .watch-slider .slide {
      width: 33%;
    }
  }
  
  /* End of Medium Screens*/
  /* Small Screens */
  
  @media only screen and (max-width: 767px) {
    .quote1 {
      width: 55px;
      margin-top: -25px;
    }
    .depoimento-box {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 1rem;
    }
  }
  /* End of Small Screens*/