/* Common */

:root {
  --ultralight: #9ccdfb;
  --light: #69b4f6;
  --core: #428fec;
  --medium: #0047c7;
  --dark: #00308c;
  --gray: #e2e8f0;
  --dark-coral: #e1251b;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html { 
  font-size: 18px; 
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html { font-size: 22px; }
}

@media (min-width: 1200px) {
  html { font-size: 22px; }
}

.headline {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
}

.subheadline {
  font-size: 1.15rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  background-color: #fff !important;
  margin-bottom: 60px;
}


a {
  text-decoration: none;
}


.btn {
  background-color: var(--medium);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  fill: currentColor;
  font-family: inherit;
  line-height: normal;
  margin: 0.5rem 0;
  padding: 0.375rem 0.75rem;
  position: relative;
  text-align: center;
  user-select: none;
  white-space: normal;
  overflow-wrap: break-word;
  outline-offset: 2px;
  font-size: 1rem;
}

.btn-primary {
  padding: 0.75rem 0.75rem;
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark);
  border: 1px solid var(--medium);
  border-radius: 4px;
  padding: 0.5rem 0.5rem;
  transition: all 0.2s ease-in-out;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--dark);
  color: #ffffff;
}

.top-curve {
  background: linear-gradient(to bottom, #ffffff, #b7ccf3);
  height: 200px;
  width: 100%;
  clip-path: ellipse(90% 100% at 50% 0%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.card-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-top: -140px;
}

.card {
  background: #fff;
  width: 100%;
  max-width: 90%;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  text-align: center;
  position: relative;
  min-height: 340px;
}

.custom-rounded {
  border-radius: var(--radius) !important;
}

.bg-white-90 {
  background-color: rgba(255, 255, 255, 0.9);
}

.p-top-bottom-50 {
  padding: 50px 0 50px 0;
}

.p-top-bottom-25 {
  padding: 25px 0 25px 0;
}