@charset "utf-8";

.product_cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 32px;
  background-color: #252f39;
}
.product_cta_title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.product_cta_link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  margin-top: 24px;
  padding: 0 40px;
  border: solid 1px #dce2e8;
  border-radius: 48px;
  transition: opacity 0.15s ease;
}
.product_cta_link_text {
  margin-right: 12px;
  color: #fff;
  font-weight: 500;
}
.product_cta_link_img {
  width: 16px;
  height: auto;
  margin-top: 2px;
}

@media screen and (min-width: 641px) {
  .product_cta_link:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 640px) {
  .product_cta {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 480px) {
  .product_cta_title {
    font-size: 18px;
  }
}
