.hero {
  /* border: 1px solid; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 60px;
  gap: 60px;
  height: calc(100vh - 75px);
}

.hero__content,
.hero__intro {
  width: 50%;
}

.hero__image {
  width: 340px;
  height: 340px;
  border-radius: 10px;
  box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.4);
}

.hero__content h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 400;
  margin-top: 20px;
  width: 85%;
}

.hero__intro {
  padding-right: 40px;
}

.hero__intro h3 {
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 10px;
}

.hero__intro p {
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  gap: 10px;
}

.hero__actions .btn {
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 500;
}

.hero__socials {
  position: absolute;
  display: flex;
  flex-direction: column;

  gap: 16px;
  right: 30px;
  top: 20%;
}

.hero__socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border: 2px solid #e5e7eb;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.5s ease;
}
