@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap");

body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #2e2c27;
}

body > * {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-image: url("../imgs/background.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 123px);
}

.mb-6 {
  margin-bottom: 60px !important;
}

a {
  font-weight: 700;
  font-size: 14px;
  line-height: 135%;
  text-align: center;
  color: #f19fc2;
  text-decoration: none;
}
a:hover {
  color: #e794b7;
}

em {
  font-style: normal;
  color: #4dc4b1;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  gap: 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 135%;
  border-radius: 999px;
}
.btn.btn-primary {
  color: #2e2c27;
  background-color: #f19fc2;
  border: none;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  color: #2e2c27;
  background-color: #e794b7;
}
.btn.btn-outline-secondary {
  color: #4dc4b1;
  background-color: transparent;
  border: 2px solid #4dc4b1;
}
.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:focus {
  color: #3eb6a2;
  background-color: transparent;
  border: 2px solid #3eb6a2;
}
.btn.btn-long {
  padding: 12px 81px;
}

header {
  margin-bottom: 30px;
}
header .container {
  gap: 10px;
}
header .container:first-of-type {
  height: 90px;
}
header .container img {
  max-height: 40px;
  max-width: 47%;
}
header hr {
  width: 100%;
  height: 3px;
  background: #e3dfd7;
  border-radius: 999px;
  border: none;
  opacity: 1;
  margin: 0;
  transform: matrix(1, 0, 0, -1, 0, 0);
}

h1 {
  font-family: "Lora";
  font-weight: 300;
  font-size: 29px;
  line-height: 115%;
  text-align: center;
  color: #2e2c27;
  margin-bottom: 8px;
}

h2 {
  font-family: "Lora";
  font-weight: 300;
  font-size: 29px;
  line-height: 115%;
  text-align: center;
  color: #4dc4b1;
}

.card.card-selling-point {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 28px 12px;
  gap: 8px;
  background: #faf6ed;
  border: 2px solid #2e2c27;
  box-shadow: 7px 7px 0px #e3dfd7;
  border-radius: 16px;
}
.card.card-selling-point .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.card.card-selling-point .card-body h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  text-transform: uppercase;
  color: #2e2c27;
  margin-bottom: 8px;
}
.card.card-selling-point .card-body h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 115%;
  text-align: center;
  text-transform: uppercase;
  color: #4dc4b1;
  margin-bottom: 8px;
}
.card.card-selling-point .card-body p {
  line-height: 140%;
  text-align: center;
}

.container-quote-loading {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-quote i[data-quote-detail] {
  font-style: inherit;
}
.container-quote > p {
  margin-bottom: 10px;
}
.container-quote > p small {
  font-size: 13px;
  line-height: 140%;
  color: rgba(46, 44, 39, 0.6);
}
.container-quote > p small em {
  font-weight: 700;
  font-style: normal;
  color: #4dc4b1;
}
.container-quote .card-quote {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 7px 7px 0px #4bc0ab;
  border-radius: 16px;
  border: none;
}
.container-quote .card-quote::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../imgs/background-quote.svg);
  background-size: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  opacity: 0.6;
}
.container-quote .card-quote .row {
  height: 100%;
}
.container-quote .card-quote .card-body {
  position: relative;
  padding: 28px 0;
}
.container-quote .card-quote .card-body .quote-details * {
  text-align: center;
}
.container-quote .card-quote .card-body .quote-details strong {
  font-family: "Lora";
  font-weight: 300;
  font-size: 20px;
  line-height: 115%;
  margin-bottom: 20px;
}
.container-quote .card-quote .card-body .quote-details span {
  font-size: 14px;
  line-height: 135%;
  margin-bottom: 20px;
}
.container-quote .card-quote .card-body .quote-price small {
  font-family: "Lora";
  font-weight: 300;
  font-size: 29px;
  line-height: 115%;
  text-decoration-line: line-through;
  text-align: right;
  opacity: 0.6;
}
.container-quote .card-quote .card-body .quote-price small sup {
  font-size: 18px;
  line-height: 115%;
}
.container-quote .card-quote .card-body .quote-price em {
  font-family: "Lora";
  font-weight: 500;
  font-size: 48px;
  font-style: normal;
  line-height: 115%;
  text-align: center;
  color: #4dc4b1;
}
.container-quote .card-quote .card-body .quote-price em sup {
  font-size: 28px;
  line-height: 115%;
  margin-right: 8px;
}
.container-quote .card-quote .card-body .quote-price hr {
  width: 100%;
  height: 2px;
  background: #2e2c27;
  border: none;
  opacity: 0.6;
  margin: 8px auto;
}
.container-quote .card-quote .card-body .quote-price span {
  text-align: center;
  font-size: 16px;
}
.container-quote .quote-includes {
  padding: 12px 0px 12px 12px;
  background: rgba(243, 239, 230, 0.01);
  border-radius: 16px;
}
.container-quote .quote-includes h6 {
  font-weight: 700;
  font-size: 24px;
  line-height: 115%;
  color: #4dc4b1;
  margin-bottom: 24px;
}
.container-quote .quote-includes strong {
  font-size: 18px;
}
.container-quote .quote-includes strong:not(:last-of-type) {
  margin-bottom: 24px;
}
.container-quote .quote-includes em {
  font-weight: 700;
  font-size: 20px;
  margin-left: 8px;
}
.container-quote .quote-includes em:not(:last-of-type) {
  margin-bottom: 24px;
}
.container-quote img.img-shield {
  width: 192px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: 45px;
}
.container-quote > .d-flex > hr {
  flex-grow: 1;
  align-self: center;
  height: 2px;
  background: #4dc4b1;
  border: none;
  margin: 0;
  opacity: 1;
}

.container-btns {
  position: relative;
  gap: 8px;
  z-index: 1;
}
.container-btns span {
  font-size: 18px;
  text-align: center;
  opacity: 0.6;
}

footer .container {
  position: relative;
}
footer .container * {
  position: relative;
}
footer .container img {
  position: absolute;
  top: -96px;
  height: 172px;
  width: 172px;
  -o-object-fit: contain;
  object-fit: contain;
}

.container-banner {
  margin-bottom: 30px;
}
.container-banner > img {
  height: 164px;
  margin-right: 18px;
}
.container-banner p {
  font-size: 20px;
  margin-right: 33px;
}

.container-perks {
  margin-bottom: 30px;
}
.container-perks .card-perk {
  background: #ffffff;
  box-shadow: 7px 7px 0px #e3dfd7;
  border-radius: 16px;
}
.container-perks .card-perk > img {
  width: 100%;
  height: 223px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.container-perks .card-perk .card-body {
  padding: 8px;
}
.container-perks .card-perk .card-body h3 {
  font-family: "Lora";
  font-weight: 700;
  font-size: 24px;
  line-height: 115%;
  text-align: center;
  color: #4dc4b1;
  margin-bottom: 4px;
}
.container-perks .card-perk .card-body h4 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 8px;
}
.container-perks .card-perk .card-body p {
  font-size: 18px;
  text-align: center;
  letter-spacing: -0.01em;
  opacity: 0.6;
}

.spinner {
  display: inline;
  animation: rotate 2s linear infinite;
  width: 75px;
  height: 75px;
}
.spinner .path {
  stroke: #4dc4b1;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

.modal .modal-body {
  background: #ffffff;
  box-shadow: 10px 10px 0px #4dc4b1;
  border-radius: 16px;
}
.modal .modal-body label {
  font-style: normal;
  font-weight: 200;
  font-size: 16px;
  line-height: 140%;
}
.modal .modal-body small {
  font-weight: 400;
  font-size: 11px;
  line-height: 140%;
  color: #2e2c27;
  opacity: 0.6;
  margin-bottom: 8px;
}

img.pet-thumbnail {
  max-width: 415px;
  -o-object-fit: contain;
  object-fit: contain;
}

.img-wrapper {
  box-shadow: 10px 10px 0px #e3dfd7;
  border-radius: 16px;
  overflow: hidden;
}
.img-wrapper img.pet-photo {
  max-width: 415px;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

[data-quote-step="enrolled"] h1 {
  margin-top: 60px;
  margin-bottom: 70px;
}
[data-quote-step="enrolled"] h1 img {
  display: inline-block;
  vertical-align: baseline;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 9px;
}
[data-quote-step="enrolled"] .insurance-details h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 115%;
  color: #2e2c27;
}
[data-quote-step="enrolled"] .insurance-details p {
  max-width: 455px;
  font-size: 20px;
  line-height: 140%;
  margin-right: auto;
  margin-left: auto;
}
[data-quote-step="enrolled"] .insurance-details p.insurance-number {
  font-weight: 300;
  font-size: 20px;
  color: #4dc4b1;
}
[data-quote-step="enrolled"] .box-review img.icon-star {
  width: 21px;
}
[data-quote-step="enrolled"] .box-review img.call-dog {
  width: 96px;
  height: 96px;
}
[data-quote-step="enrolled"] .box-review span {
  font-weight: 300;
  font-size: 18px;
  line-height: 115%;
}
[data-quote-step="enrolled"] .box-review p {
  font-weight: 300;
  font-size: 20px;
  line-height: 115%;
}
[data-quote-step="enrolled"] .box-review p small {
  color: #4dc4b1;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
body#landing section {
  position: relative;
  padding: 7rem 0;
}
body#landing section > .container {
  position: relative;
}
body#landing section h1 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.95rem;
  text-align: start;
}
body#landing section h1 span {
  color: #4dc4b1;
}
body#landing section .btn {
  font-size: 1.3rem;
  font-weight: 100;
  color: #fff !important;
  background-color: #4dc4b1;
}
body#landing section .btn:hover {
  background-color: #3eb6a2;
}
body#landing section a {
  color: inherit;
}
body#landing section a:hover {
  color: #4dc4b1;
}
body#landing section .img-combo {
  position: relative;
}
body#landing section .img-combo > img {
  position: absolute;
  top: -40px;
  left: -30px;
  width: 130px;
  height: 130px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
body#landing section .img-combo .img-wrapper img {
  max-width: 280px;
}
body#landing section:nth-of-type(2n) h1 span {
  color: #f19fc2;
}
body#landing section:nth-of-type(2n) .img-combo > img {
  left: auto;
  right: -25px;
}
body#landing section.cta h1 {
  color: #4dc4b1;
}
body#landing section.cta .btn {
  font-size: 2rem;
  font-weight: 100;
  color: #fff;
  background-color: #4dc4b1;
}
body#landing section.cta .btn:hover {
  background-color: #3eb6a2;
}
body#landing .logo {
  font-family: "Lora";
  font-size: 2.8rem;
  font-weight: 700;
}
body#landing footer {
  padding: 4rem 0;
  background-color: #f3efe6;
}
body#landing footer .container img {
  position: relative;
  top: 0;
  height: auto;
  width: 115px;
}
body#landing footer .container ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
body#landing footer .container ul li {
  transition: all 125ms ease-in-out;
}
body#landing footer .container ul li a {
  display: block;
  text-align: left;
  transition: all 125ms ease-in-out;
}
body#landing footer .container ul li:hover a {
  color: #e794b7 !important;
  transform: translateX(5px);
}

@media (min-width: 576px) {
  a {
    font-size: 18px;
  }
  .btn {
    font-size: 18px;
  }
  .container-quote .card-quote .card-body .quote-details strong {
    font-size: 24px;
  }
  .container-quote .card-quote .card-body .quote-details span {
    font-size: 18px;
  }
  .container-quote .card-quote .card-body .quote-price small {
    font-size: 29px;
  }
  .container-quote .card-quote .card-body .quote-price small sup {
    font-size: 18px;
  }
  .container-quote .card-quote .card-body .quote-price em {
    font-size: 57px;
  }
  .container-quote .card-quote .card-body .quote-price em sup {
    font-size: 37px;
  }
  .container-quote .card-quote .card-body .quote-price span {
    font-size: 20px;
  }
  .modal .modal-body {
    padding: 60px;
  }
  .modal .modal-body label {
    font-size: 19px;
  }
  .modal .modal-body small {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
  .container-quote .card-quote img.img-shield {
    width: auto;
  }
  .container-btns {
    gap: 40px;
  }
}
@media (min-width: 992px) {
  body#landing section .btn {
    font-size: 2em;
  }
  .container-quote .card-quote {
    width: 580px;
  }
  .container-quote .card-quote .card-body .quote-details > div {
    padding: 0 60px;
  }
  .container-quote .quote-includes {
    box-shadow: -2px 0px 0px #4dc4b1;
  }
  body#landing section h1 {
    font-size: 2.85rem;
    line-height: 3.1rem;
  }
  body#landing section .img-combo > img {
    top: -70px;
    left: -70px;
    width: 180px;
    height: 180px;
  }
  body#landing section .img-combo .img-wrapper img {
    max-width: 320px;
  }
  body#landing section:nth-of-type(2n) .img-combo > img {
    left: auto;
    right: -70px;
  }
}
@media (min-width: 1200px) {
  body#landing section h1 {
    font-size: 3.8rem;
    line-height: 4rem;
  }
  body#landing section .img-combo > img {
    width: 220px;
    height: 220px;
  }
  body#landing section .img-combo .img-wrapper img {
    max-width: 415px;
  }
}
