/* Site colours */
/* Bootstrap media queries */
@font-face {
  font-family: "jost";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Jost-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Jost-Bold.woff2") format("woff2"), url("../fonts/Jost-Bold.woff") format("woff"), url("../fonts/Jost-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "chronica";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ChronicaPro-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/ChronicaPro-Book.woff2") format("woff2"), url("../fonts/ChronicaPro-Book.woff") format("woff"), url("../fonts/ChronicaPro-Book.ttf") format("truetype");
}
@font-face {
  font-family: "chronica";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ChronicaPro-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/ChronicaPro-Medium.woff2") format("woff2"), url("../fonts/ChronicaPro-Medium.woff") format("woff"), url("../fonts/ChronicaPro-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "chronica";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/ChronicaPro-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/ChronicaPro-Bold.woff2") format("woff2"), url("../fonts/ChronicaPro-Bold.woff") format("woff"), url("../fonts/ChronicaPro-Bold.ttf") format("truetype");
}
.product-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 0;
}

.product-card {
  background: #fff;
  border: 1px solid #d1d3d4;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15), 0px 2px 3px 0px rgba(0, 0, 0, 0.12);
  width: 100%;
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  .product-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
  }
  .product-card {
    width: calc(50% - 25px);
    max-width: none;
  }
}
.product-card__image {
  padding: 30px;
  box-sizing: border-box;
}

.product-card__image-inner {
  width: 100%;
  min-height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(ellipse at center, #fff 0%, #f3f3f3 100%);
  padding: 20px;
  box-sizing: border-box;
}

.product-card__image img {
  max-width: 308px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0;
}

.product-card__body {
  padding: 0 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card__title {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 500;
  font-size: 24.4px;
  line-height: 28px;
  color: #000;
  margin: 0;
}

.product-card__pricing {
  background-color: rgba(105, 46, 140, 0.12);
  padding: 8px 12px 6px;
  text-align: center;
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 600;
  color: #692E8C;
}

.product-card__pricing-line {
  display: block;
}

.product-card__pricing-label,
.product-card__pricing-amount {
  font-size: 22.5px;
  line-height: 24px;
}

.product-card__pricing-note {
  display: block;
  font-size: 14px;
  line-height: 24px;
  margin-top: 2px;
}

.product-card__cta {
  display: block;
  background-color: #89C140;
  border: 3px solid #89C140;
  color: #fff;
  font-family: "jost", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 9.75px;
  text-align: center;
  padding: 18px 16px 15px;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.product-card__cta:hover,
.product-card__cta:focus {
  opacity: 0.85;
  color: #fff;
  text-decoration: none;
}

.product-card__cta--enquire {
  background-color: transparent;
  border-color: #692E8C;
  color: #692E8C;
}

.product-card__cta--enquire:hover,
.product-card__cta--enquire:focus {
  color: #692E8C;
}

.product-card__specs {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-card__specs li {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #333;
}

.product-card__specs li strong {
  font-weight: 500;
}

.product-card__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card__details[hidden] {
  display: none;
}

.product-card__description {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.product-card__description p {
  margin: 0;
  line-height: 24px;
}

.product-card__description strong {
  font-weight: 500;
}

.product-card__uses {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #333;
}

.product-card__uses-heading {
  font-weight: 500;
  margin: 0 0 2px;
  line-height: 28px;
}

.product-card__uses ul {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-card__uses li {
  font-weight: 400;
  line-height: 28px;
}

.product-card__closing {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.product-card__closing p {
  margin: 0;
  line-height: 24px;
}

.product-card__closing strong {
  font-weight: 500;
}

.product-card__disclaimer {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #000;
  margin: 0;
}

.product-card__toggle {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  display: inline-block;
  width: auto;
  align-self: flex-start;
}

.product-card__toggle:hover {
  color: #000;
}

.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.booking-modal__dialog {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.25);
  padding: 40px 32px;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .booking-modal__dialog {
    padding: 24px 16px;
    border-radius: 8px;
  }
}

.booking-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 24px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .booking-modal__header {
    padding-left: 0;
    margin-bottom: 24px;
  }
}

.booking-modal__title {
  font-family: "jost", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 600;
  font-size: 27px;
  line-height: 21.6px;
  color: #692E8C;
  margin: 0;
}

.booking-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.booking-modal__close img {
  width: 100%;
  height: 100%;
}

.booking-modal__content {
  display: flex;
  gap: 35px;
  padding: 0 16px;
  align-items: stretch;
}
@media only screen and (max-width: 767px) {
  .booking-modal__content {
    flex-direction: column;
    padding: 0;
    gap: 24px;
  }
}

.booking-modal__form {
  flex: 1 1 390px;
  min-width: 0;
  max-width: 390px;
}
@media only screen and (max-width: 767px) {
  .booking-modal__form {
    max-width: 100%;
    width: 100%;
  }
}

.booking-modal__form-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 15px 32px;
}
@media only screen and (max-width: 767px) {
  .booking-modal__form-inner {
    padding: 0 0 24px;
  }
}

.booking-modal .with_frm_style {
  --field-border-width: 3px;
  --field-border-color: #692E8C;
  --field-border-color-active: #89C140;
  --border-color: #692E8C;
  --border-color-active: #89C140;
  --field-height: 40px;
  --field-pad: 4px 16px;
  --font-size: 18px;
  --text-color: #000;
  --label-color: #565656;
  --bg-color: #fff;
  --border-radius: 0px;
  --field-border-style: solid;
  --submit-bg-color: #89C140;
  --submit-border-color: #89C140;
  --submit-text-color: #fff;
  --submit-border-radius: 0px;
  --submit-border-width: 3px;
}

.booking-modal .with_frm_style .frm_fields_container {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
}

.booking-modal .with_frm_style .frm_form_field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.booking-modal .with_frm_style .frm_primary_label {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #565656 !important;
  text-transform: uppercase;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  max-width: 100% !important;
}

.booking-modal .with_frm_style .frm_form_field input[type=text],
.booking-modal .with_frm_style .frm_form_field input[type=tel],
.booking-modal .with_frm_style .frm_form_field input[type=number],
.booking-modal .with_frm_style .frm_form_field input[type=date],
.booking-modal .with_frm_style .frm_form_field input[type=email] {
  border: 3px solid #692E8C !important;
  height: 40px !important;
  width: 100% !important;
  padding: 4px 16px !important;
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 20px !important;
  color: #000 !important;
  outline: none;
  background: #fff !important;
  border-radius: 0 !important;
  -webkit-appearance: none;
  box-sizing: border-box;
  max-width: 100% !important;
}

.booking-modal .with_frm_style .frm_form_field input[type=text]:focus,
.booking-modal .with_frm_style .frm_form_field input[type=tel]:focus,
.booking-modal .with_frm_style .frm_form_field input[type=number]:focus,
.booking-modal .with_frm_style .frm_form_field input[type=date]:focus,
.booking-modal .with_frm_style .frm_form_field input[type=email]:focus,
.booking-modal .with_frm_style .frm_form_field textarea:focus {
  border-color: #89C140 !important;
}

.booking-modal .with_frm_style .frm_form_field textarea {
  border: 3px solid #692E8C !important;
  width: 100% !important;
  height: 260px !important;
  padding: 8px 16px !important;
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  color: #000 !important;
  resize: vertical;
  outline: none;
  border-radius: 0 !important;
  -webkit-appearance: none;
  box-sizing: border-box;
  max-width: 100% !important;
}

.booking-modal .with_frm_style .frm_form_field input.frm_date,
.booking-modal .with_frm_style .frm_form_field input[type=date] {
  padding-right: 40px !important;
}

.booking-modal .frm-has-date-icon {
  position: relative;
}

.booking-modal .frm-has-date-icon::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 24px;
  height: 24px;
  background-image: url("../images/icon-calendar.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.booking-modal .with_frm_style .frm_dropzone,
.booking-modal .with_frm_style .frm_dropzone.dz-clickable {
  border: 3px solid #692E8C !important;
  border-radius: 0 !important;
  background: #fff !important;
  min-height: auto !important;
  padding: 16px !important;
}

.booking-modal .with_frm_style .frm_dropzone .dz-message {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif !important;
  font-weight: 500;
  font-size: 16px !important;
  color: #565656 !important;
  margin: 0 !important;
}

.booking-modal .with_frm_style .frm_dropzone .frm_small_text {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif !important;
  font-size: 13px !important;
  color: #999 !important;
}

.booking-modal .with_frm_style .frm_opt_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-modal .with_frm_style .frm_radio,
.booking-modal .with_frm_style .frm_checkbox {
  display: flex;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}

.booking-modal .with_frm_style .frm_radio label,
.booking-modal .with_frm_style .frm_checkbox label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif !important;
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 24px !important;
  color: #565656 !important;
}

.booking-modal .with_frm_style .frm_radio input[type=radio],
.booking-modal .with_frm_style .frm_checkbox input[type=checkbox] {
  width: 24px !important;
  height: 24px !important;
  min-height: 24px !important;
  border: 3px solid #692E8C !important;
  flex-shrink: 0;
  box-sizing: border-box;
  -webkit-appearance: none !important;
  appearance: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
  position: relative;
}

.booking-modal .with_frm_style .frm_radio input[type=radio]:checked,
.booking-modal .with_frm_style .frm_checkbox input[type=checkbox]:checked {
  background-color: #692E8C !important;
}

.booking-modal .with_frm_style .frm_radio input[type=radio]::before,
.booking-modal .with_frm_style .frm_radio input[type=radio]::after,
.booking-modal .with_frm_style .frm_checkbox input[type=checkbox]::before,
.booking-modal .with_frm_style .frm_checkbox input[type=checkbox]::after {
  display: none !important;
  content: none !important;
}

.booking-modal .with_frm_style .frm_submit {
  display: none !important;
}

.booking-modal .frm_message,
.booking-modal .with_frm_style .frm_message {
  display: none !important;
}

.booking-modal .with_frm_style .frm_error {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 14px;
  color: #cc0000;
  margin-top: 4px;
}

.booking-modal .with_frm_style .frm_error_style {
  background: rgba(204, 0, 0, 0.08);
  border: 1px solid #cc0000;
  padding: 8px 12px;
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 14px;
  color: #cc0000;
  margin-bottom: 16px;
}

.booking-modal .with_frm_style .frm_description {
  display: none;
}

.booking-modal__form-inner[hidden],
.booking-modal__footer[hidden] {
  display: none;
}

.booking-modal__footer {
  display: flex;
  align-items: center;
  background-color: rgba(137, 193, 64, 0.12);
  padding: 0 15px;
  margin: 28px 15px 0;
}
@media only screen and (max-width: 767px) {
  .booking-modal__footer {
    margin: 24px 0 0;
  }
}

.booking-modal__total {
  flex: 1;
  font-family: "jost", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 43px;
  color: #565656;
  padding: 0 16px;
}

.booking-modal__sidebar-submit {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  align-items: flex-end;
}

.booking-modal__submit {
  background-color: #89C140;
  border: 3px solid #89C140;
  color: #fff;
  font-family: "jost", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 9.75px;
  text-align: center;
  padding: 16px 14px 13px;
  width: 172px;
  height: 43px;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 0;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.booking-modal__submit:hover {
  opacity: 0.85;
}

.booking-modal__sidebar {
  flex: 1 1 390px;
  min-width: 0;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media only screen and (max-width: 767px) {
  .booking-modal__sidebar {
    max-width: 100%;
    width: 100%;
  }
}

.booking-modal__product {
  background: #f5f5f5;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-modal__product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-modal__product-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.booking-modal__product-thumb {
  width: 120px;
  height: 80px;
  border: 1px solid #eaeaea;
  flex-shrink: 0;
  background: #fff;
  box-sizing: border-box;
}
.booking-modal__product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.booking-modal__product-title {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  margin: 0;
}

.booking-modal__product-prices {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-modal__price-tag {
  background-color: rgba(105, 46, 140, 0.12);
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #692E8C;
  padding: 6px 10px 4px;
  border: 2px solid transparent;
  display: inline-block;
}

.booking-modal__details-section {
  background: #fff;
}

.booking-modal__details-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #e6e6e6;
  border: none;
  padding: 4px 8px 2px;
  cursor: pointer;
  box-sizing: border-box;
}
.booking-modal__details-btn span {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #565656;
  text-transform: uppercase;
}
.booking-modal__details-btn img {
  width: 20px;
  height: 24px;
  -webkit-transition: -webkit-transform 0.3s linear;
  -moz-transition: -moz-transform 0.3s linear;
  transition: transform 0.3s linear;
}

.booking-modal__details-btn.is-open img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.booking-modal__details-content {
  padding: 8px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-modal__details-content[hidden] {
  display: none;
}

.booking-modal__details-list {
  list-style: disc;
  padding-left: 27px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.booking-modal__details-list li {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #333;
}

.booking-modal__pdf-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 27px;
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #692E8C;
  text-decoration: underline;
  opacity: 0.8;
}
.booking-modal__pdf-link img {
  width: 15px;
  height: auto;
  flex-shrink: 0;
}
.booking-modal__pdf-link:hover {
  opacity: 1;
  color: #692E8C;
}

.booking-modal__pdf-link[hidden] {
  display: none;
}

.booking-modal__info-banner {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  padding: 12px 16px;
}
.booking-modal__info-banner strong {
  font-weight: 600;
}

.booking-modal__info-banner--green {
  background-color: rgba(137, 193, 64, 0.12);
  color: #000;
}

.booking-modal__info-banner--light {
  background-color: #f5f5f5;
  color: #000;
}

.booking-modal__info-banner--purple {
  background-color: rgba(105, 46, 140, 0.1);
  color: #000;
  font-size: 20px;
  line-height: 24px;
  padding: 24px;
}

.booking-modal__success {
  padding: 0 32px;
}

.booking-modal__success[hidden] {
  display: none;
}

.booking-modal__success-title {
  font-family: "jost", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 66.14px;
  color: #000;
  margin: 0 0 31px;
}

.booking-modal__success-text {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 25.2px;
  color: #000;
  margin: 0;
}

.booking-modal__content[hidden] {
  display: none;
}

.booking-modal__loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .booking-modal__loading {
    border-radius: 8px;
  }
}

.booking-modal__loading[hidden] {
  display: none;
}

.booking-modal__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(105, 46, 140, 0.2);
  border-top-color: #692E8C;
  border-radius: 50%;
  animation: booking-modal-spin 0.7s linear infinite;
}

@keyframes booking-modal-spin {
  to {
    transform: rotate(360deg);
  }
}

.page-id-955 #main-content h2 {
  font-family: "jost", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 66.14px;
  color: #000;
  letter-spacing: 0;
  margin-bottom: 31px;
}

.page-id-955 #main-content p {
  font-family: "chronica", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 25.2px;
  color: #000;
}

.page-id-955 #main-content p:has(a[href^="tel:"]) {
  font-family: "jost", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 66.14px;
  color: #89C140;
}

.page-id-955 #main-content p:has(a[href^="tel:"]) a {
  color: #89C140;
  text-decoration: underline;
}

.page-id-955 #main-content p:has(a[href^="tel:"]) a:hover {
  color: #692E8C;
}
