.two-buttons {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (width <= 767px) {
  .two-buttons {
    background-position: left;
  }
}
.two-buttons .container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.two-buttons .two-buttons-card {
  border-radius: 9px;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 578px;
  width: 100%;
}
.two-buttons .two-buttons-card .title > * {
  color: #030D16;
  margin: 0;
}
.two-buttons .two-buttons-card .text {
  color: #303A43;
  text-align: center;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  margin-bottom: 15px;
}
.two-buttons .two-buttons-card .text p {
  color: #303A43;
  text-align: center;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  margin: 0 0 5px;
  letter-spacing: 0.3px;
}
.two-buttons .two-buttons-card .wrapper-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.two-buttons .two-buttons-card .button-left .button,
.two-buttons .two-buttons-card .button-right .button {
  min-height: 56px;
  padding: 0 27px;
  border-radius: 999px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.two-buttons .two-buttons-card .button-left .button {
  background: #3C5A78;
  border: none;
  color: #FEFEFE;
}
.two-buttons .two-buttons-card .button-left .button:hover {
  background: #537BA2;
}
.two-buttons .two-buttons-card .button-left .button span {
  color: #FEFEFE;
}
.two-buttons .two-buttons-card .button-right .button {
  background: transparent;
  border: 1px solid #3C5A78;
  color: #3C5A78;
}
.two-buttons .two-buttons-card .button-right .button:hover {
  background: rgba(245, 250, 255, 0.5);
  border-color: #537BA2;
}
.two-buttons .two-buttons-card .button-right .button span {
  color: #3C5A78;
}
@media (width <= 1024px) {
  .two-buttons .container {
    padding: 0 16px;
  }
  .two-buttons .two-buttons-card {
    padding: 60px 40px;
  }
}
@media (width <= 768px) {
  .two-buttons .two-buttons-card {
    padding: 40px 24px;
  }
}