.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 20px;
  min-height: 589px;
}

.hero-section .right {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-image: url('https://images.pexels.com/photos/7245319/pexels-photo-7245319.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-section .overlay {
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.8)
  );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-section .phone-mockup-of-app {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.phone-mockup-of-app-img {
  width: 270px;
}

@media screen and (max-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: none;
  }

  .hero-section .right {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    min-height: 589px;
  }
}

.hero-section .left {
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-section .left p {
  font-size: 14pt;
  font-weight: 200;
  max-width: 500px;
}

.hero-section .left h1 {
  font-size: 52pt;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  font-style: normal;
  color: #7d53de;
}

.hero-section .left a {
  background-color: #7d53de;
  padding: 10px 30px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  width: fit-content;
  cursor: pointer;
}

.hero-section .left a:hover {
  background-color: #6c4ac5;
}

.hero-testimonials {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.svgs {
  display: flex;
  flex-direction: column;
}

.test-8 {
  font-size: 24pt;
  font-weight: bold;
  color: #7d53de;
}

.test-name {
  font-weight: bold;
}
