.div-circle {
  position: absolute; /* or relative, depending on your layout */
  width: 600px; /* Set the size of your gradient */
  height: 600px;
  background: radial-gradient(circle, #a5313181, rgba(16, 26, 27, 0) 70%);
  /* Adjust colors and transparency as needed */
  pointer-events: none; /* Optional: makes sure the gradient div doesn't interfere with clicks */
  z-index: -1; /* Optional: send it behind other content */
  left: 65%;
  top: -10%;
}
#end {
  top: 50%;
  left: 5%;
}
h1 {
  text-align: center;
  font-family: Montserrat;
  font-size: 50px;
  font-weight: 300;
  line-height: 78px;
  margin-bottom: 15px;
}

.highlight-red {
  font-family: Montserrat;
  font-size: 50px;
  font-weight: 700;
  line-height: 78px;
  color: var(--red2);
}
.lora-highlight {
  font-family: Lora;
  font-size: 18px;
  font-weight: 400;
  line-height: 24.03px;
  letter-spacing: 0.05em;
  text-align: left;
  color: var(--red2);
}
.content {
  width: 100%;
  min-height: 100vh;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 10%;
  align-items: start;
}

.card {
  width: 100%;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--gray);
}
.card img {
  width: 30%;
  height: 100%;
  position: relative;
  object-fit: cover;
  object-position: center;
}
.card .text {
  width: 70%;
  height: 100%;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
}
p {
  font-family: Lora;
  font-size: 18px;
  font-weight: 400;
  line-height: 24.03px;
  letter-spacing: 0.05em;
  text-align: left;
}
.margintop {
  margin-top: 40px;
}

.card,
.card img {
  box-shadow: 0px 10px 10px 0px #060b0c;
  border-radius: 60px 0 60px 0;
}

.cta-div {
  height: 10vh;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 30px;
}
.cta {
  width: 250px;
  height: 50px;
  background-color: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 4.94px 5.56px 8.59px 0px #300a0a;

  box-shadow: 0px -6.8px 21.81px 0px #efefef0d;

  border-radius: 25px;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
}
.cta:hover {
  background-color: #ffffff;
  color: #060b0c;
}
.mobile {
  display: none;
}
@media (max-width: 1050px) {
  .content {
    padding: 0 5%;
  }
}
@media (max-width: 950px) {
  .content {
    padding: 0 5%;
  }
  p {
    font-size: 16px;
  }
  h1 {
    font-size: 40px;
  }
  .highlight-red {
    font-size: 40px;
  }
  .card {
    height: 26vh;
  }
}
@media (max-width: 810px) {
  .card {
    display: none;
  }
  .desktop {
    display: none;
  }
  .content {
    align-items: center;
    padding: 0;
  }
  .mobile {
    display: flex;
    flex-direction: column;
    box-shadow: none;
    background-color: transparent;

    min-height: 500px;
    width: 100%;
  }
  .mobile img {
    margin: 5%;

    height: 50%;
    width: 50%;
    min-width: 300px;
    min-height: 200px;
  }
  .mobile .text {
    background-color: var(--gray);
    width: 100%;
    border-bottom-right-radius: 60px;
    box-shadow: 8.16px 8.16px 8.16px 0px #060b0c;
    padding: 1rem;
  }
  h1,
  .highlight-red {
    font-size: 35px;
    line-height: 50px;
    margin-bottom: 5px;
  }
  .mobile {
    margin: 40px;
  }
  .cta-div {
    justify-content: center;
  }

  p {
    padding: 0 10px;
  }
  .end-p {
    padding: 0 20px;
  }
  .div-circle {
    position: absolute; /* or relative, depending on your layout */
    width: 600px; /* Set the size of your gradient */
    height: 600px;
    background: radial-gradient(circle, #a5313157, rgba(16, 26, 27, 0) 70%);
    /* Adjust colors and transparency as needed */
    pointer-events: none; /* Optional: makes sure the gradient div doesn't interfere with clicks */
    z-index: -1; /* Optional: send it behind other content */
    left: -50%;
    top: 0;
  }
  #end {
    top: 72%;
    left: -70%;
  }
}
