.meet {
  background: #EAEAEA;
  padding: 100px 0;
}
.meet h3 {
  font-weight: 600;
  font-size: 60px;
  line-height: 110px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #4A0A1F;
  font-family: "Bebas Neue", sans-serif;
}
.meet .desc-container {
  display: flex;
  gap: 39px;
  align-items: start;
}
.meet .desc-container__text {
  flex-shrink: 0;
  display: flex;
  width: 527px;
  flex-direction: column;
}
.meet .desc-container__text p {
  font-family: "helvetica";
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #454545;
  margin-bottom: 38px;
}
.meet .desc-container img {
  border-radius: 20px;
  height: 480px;
  width: calc(100% - 527px);
  -o-object-fit: cover;
     object-fit: cover;
  background: linear-gradient(0deg, rgba(29, 29, 29, 0.4), rgba(29, 29, 29, 0.4));
}

.btn-meet {
  background: #4A0A1F;
  font-weight: 700;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #FFFFFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "helvetica";
  border-radius: 260px;
  border: 1px solid #4A0A1F;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .btn-meet {
    margin-top: 14px;
    margin-bottom: 4px;
  }
}
.btn-meet:hover {
  background: transparent;
  color: #4A0A1F;
}

@media screen and (max-width: 1024px) {
  .meet {
    background: #EAEAEA;
    padding: 40px 0;
  }
  .meet h3 {
    font-weight: 400;
    font-size: 42px;
    line-height: 40px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #4A0A1F;
  }
  .meet .desc-container {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: start;
  }
  .meet .desc-container__text {
    flex-shrink: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
  }
  .meet .desc-container__text p {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #454545;
    margin-bottom: 5px;
  }
  .meet .desc-container img {
    border-radius: 20px;
    height: 480px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    background: linear-gradient(0deg, rgba(29, 29, 29, 0.4), rgba(29, 29, 29, 0.4));
  }
}