/* Seção 7 */

.section7 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.depoimentos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.titulo h1 {
  font-size: 55px;
  font-weight: 800;
  margin-bottom: 10px;
  font-family: "TonCondensed-Bold", Sans-serif;
}

.titulo h1 u {
  color: var(--color-one);
}

.googleBox {
  max-width: 1050px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  overflow: hidden;
}

.exelente {
  font-size: 24px !important;
  display: block;
  margin-bottom: 4px;
  font-family: "Open Sans";
}

.estrelas {
  height: 30px;
  width: 100%;
  text-align: center;

}

.estrelas .ti-star {
  background-image: url(https://cdn.trustindex.io/assets/platform/Google/star/f.svg);
  width: 30px !important;
  height: 30px !important;
  display: inline-block;
  margin: 0 !important;
  margin-right: 1px !important;
  background-size: contain;
  background-repeat: no-repeat;
}

.com-base {
  height: 30px;
  width: 100%;
  text-align: center;
  font-size: 14px !important;
  display: block;
  margin-bottom: 4px;
  font-family: "Open Sans";
}

.google-logo {
  height: 50px;
  width: 100%;
  text-align: center;
  display: block;

}

.google-logo img {
  height: 35px;
  width: 110px;
}

.google-slider {
  height: 215px;
  display: flex;
  align-self: baseline;
}

.slide-card {
  width: 350px;
  height: 210px;
  padding: 20px;
  transition: all .5s;
}

.card-content {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.head {
  height: 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 0.7fr 3fr;
  position: relative;
  font-family: "Open sans";
  line-height: 21.75px;
  font-size: 14px;
}

.picture {
  width: 40px;
  height: 40px;
  border-radius: 20px;
}

.icon {
  display: flex;
  flex-direction: column;
}

.icon img {
  position: absolute;
  top: 0;
  right: 0;
}

.icon .name {
  font-weight: 900;
}

.icon .date {
  font-weight: 100;
}



.card-content .estrelas {
  height: 17px;
  margin: 15px 0 8px 0;
  display: flex;
  justify-content: baseline;

}

.card-content .ti-star {
  background-image: url(https://cdn.trustindex.io/assets/platform/Google/star/f.svg);
  width: 17px !important;
  height: 17px !important;
  display: inline-block;
  margin: 0 !important;
  margin-right: 1px !important;
  background-size: contain;
  background-repeat: no-repeat;
}

.comment {
  font-family: "Open sans";
  line-height: 21.75px;
  height: 87px;
  font-size: 15px;
  text-align: left;
  transition: all 0.5s;
  font-style: normal;
  overflow: auto;
  overflow-x: hidden;
  padding-right: 10px;
}



.slide-card:hover {
  margin-top: -10px;
  transition: all .5s;
}

.slide-card::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}

.slide-card::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 1px;
}

.slide-card::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.slide-card::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.slide-card::-webkit-scrollbar-button {
  display: none;
}



.seta-direita {
  position: absolute;
  width: 20px;
  height: 40px;
  right: -15px;
  top: 60%;
  opacity: 0.5;
}

.seta-esquerda {
  position: absolute;
  width: 20px;
  height: 40px;
  left: -15px;
  transform: scaleX(-1);
  top: 60%;
  opacity: 0.5;
}

.seta-direita:hover,
.seta-esquerda:hover {
  width: 22px;
  height: 54px;
  margin-top: -6px;
  cursor: pointer;
}



/* Media Queries */

/* Tablets */
@media (max-width: 1123px) {
  .section7 {
    margin-top: 50px;
  }


  .titulo h1 {
    font-size: 40px;
    margin-bottom: 5px;
  }

  .googleBox {
    max-width: 700px;
  }

  .seta-direita {
    width: 16px;
    height: 30px;
    right: -10px;
  }

  .seta-esquerda {
    width: 16px;
    height: 30px;
    left: -10px;
  }

  .seta-direita:hover,
  .seta-esquerda:hover {
    width: 18px;
    height: 38px;
    margin-top: -3px;
  }


}

/* Celulares */
@media (max-width: 777px) {
  .section7 {
    margin-top: 50px;
  }

  .depoimentos {
    width: 350px;
  }

  .titulo h1 {
    font-size: 33px;
    margin-bottom: 5px;
  }

  .googleBox {
    max-width: 350px;

  }

  .googleBox .exelente {
    font-size: 20px;
  }

  .seta-direita {
    width: 16px;
    height: 30px;
    right: 0px;
  }

  .seta-esquerda {
    width: 16px;
    height: 30px;
    left: 0px;
  }

  .seta-direita:hover,
  .seta-esquerda:hover {
    width: 18px;
    height: 38px;
    margin-top: -3px;
  }


}