@charset "utf-8";

.footer_cta {
  padding: 64px 0;
  background-color: #0e1a25;
}
.footer_cta_wrapper {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer_cta_link {
  box-sizing: border-box;
  width: calc(50% - 12px);
  padding: 40px;
  background-color: #252f39;
  border-radius: 8px;
  transition: opacity 0.15s ease;
}
.footer_cta_link_title {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}
.footer_cta_link_text {
  margin-top: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 1.8;
}
.footer_cta_link_btn {
  margin-top: 24px;
  padding: 0 48px;
  background-color: #fff;
  border-radius: 48px;
  color: #252f39;
  font-weight: 500;
  line-height: 48px;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .footer_cta_link {
    padding: 32px;
  }
}

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

@media screen and (max-width: 640px) {
  .footer_cta_wrapper {
    display: block;
    padding: 0 20px;
  }
  .footer_cta_link {
    width: 100%;
  }
  .footer_cta_link:last-child {
    margin-top: 24px;
  }
  .footer_cta_link_title {
    font-size: 20px;
  }
}

@media screen and (max-width: 460px) {
  .footer_cta_link_btn {
    width: 100%;
    padding: 0;
  }
}
