* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
html {
  font-size: 62.5%;
}
header {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  z-index: 100;
}

.drop {
  position: relative;
}

.drop-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.781);
  padding: 2rem;
  width: auto;
  align-items: flex-start;
  font-size: 1.5rem;
  white-space: nowrap;
  top: 2.5rem;
  left: 0rem;
  display: none;
}

.drop-menu a:link,
.drop-menu a:visited {
  text-decoration: none;
  color: #222;
}
.drop-menu a:hover,
.drop-menu a:active {
  text-decoration: none;
  color: #a81420;
}

.drop:hover .drop-menu {
  display: flex;
}

.nav-bar {
  padding: 2rem 4rem;
  width: 90rem;
  justify-self: center;
}
.nav-bar ul {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  justify-content: flex-end;
  list-style: none;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.nav-bar a {
  text-decoration: none;
  color: #333;
}
.nav-bar a:hover,
.nav-bar a:active {
  color: #a81420;
}
.reviews-container {
  position: relative;
  width: 110rem;
  height: 80vh;
  margin: 1rem auto;
  background-color: #fdfdfc;
}
.subheading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.customers {
  font-size: 3rem;
  font-weight: 600;
  color: #a81420;
}
.customers-text {
  margin: 0.7rem 17rem;
  gap: 1.4rem;
  line-height: 2rem;
  color: rgba(51, 51, 51, 0.568);
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  text-align: center;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 2rem 0rem;
  gap: 2rem;
}
.testimonial {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  padding: 3rem 2rem;
}
.testimonial img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
}
.testimonial-text {
  line-height: 1.7rem;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  margin: 2rem 0 0 0;
  color: #333;
}
.testimonial-name {
  color: rgba(51, 51, 51, 0.705);
  margin-top: 1rem;
}

.join {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 5rem 8rem 0rem 8rem;
  background-color: #a81420;
  border-radius: 1.4rem;
  padding: 4rem 0rem;
  font-size: 1.5rem;
  color: #fdfdfc;
}
