:root {
  --font-body-family: Avenir, Calibri, sans-serif;;
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-body-weight-bold: 700;
  --font-heading-family: GeorgiaPro, sans-serif;
  --font-heading-style: normal;
  --font-heading-weight: 400;
  --font-body-scale: 1.05;
  --font-heading-scale: 1;
  --color-base-text: 0, 0, 0;
  --color-shadow: 0, 0, 0;
  --color-base-background-1: 250, 246, 239;
  --color-base-background-2: 243, 243, 243;
  --color-base-solid-button-labels: 250, 246, 239;
  --color-base-outline-button-labels: 72, 37, 71;
  --color-base-accent-1: 0, 110, 99;
  --color-base-accent-2: 232, 116, 37;
  --payment-terms-background-color: #faf6ef;
  --gradient-base-background-1: #faf6ef;
  --gradient-base-background-2: #482547;
  --gradient-base-accent-1: #006e63;
  --gradient-base-accent-2: #e87425;
  --media-padding: px;
  --media-border-opacity: 0.05;
  --media-border-width: 0px;
  --media-radius: 0px;
  --media-shadow-opacity: 0;
  --media-shadow-horizontal-offset: 0px;
  --media-shadow-vertical-offset: 0px;
  --media-shadow-blur-radius: 0px;
  --media-shadow-visible: 0;
  --page-width: 120rem;
  --page-width-margin: 0rem;
  --product-card-image-padding: 0rem;
  --product-card-corner-radius: 0rem;
  --product-card-text-alignment: center;
  --product-card-border-width: 0rem;
  --product-card-border-opacity: 0.1;
  --product-card-shadow-opacity: 0.1;
  --product-card-shadow-visible: 1;
  --product-card-shadow-horizontal-offset: 0rem;
  --product-card-shadow-vertical-offset: 0rem;
  --product-card-shadow-blur-radius: 0rem;
  --collection-card-image-padding: 0rem;
  --collection-card-corner-radius: 0rem;
  --collection-card-text-alignment: center;
  --collection-card-border-width: 0rem;
  --collection-card-border-opacity: 0.1;
  --collection-card-shadow-opacity: 0.1;
  --collection-card-shadow-visible: 1;
  --collection-card-shadow-horizontal-offset: 0rem;
  --collection-card-shadow-vertical-offset: 0rem;
  --collection-card-shadow-blur-radius: 0rem;
  --blog-card-image-padding: 0rem;
  --blog-card-corner-radius: 0rem;
  --blog-card-text-alignment: center;
  --blog-card-border-width: 0rem;
  --blog-card-border-opacity: 0.1;
  --blog-card-shadow-opacity: 0.1;
  --blog-card-shadow-visible: 1;
  --blog-card-shadow-horizontal-offset: 0rem;
  --blog-card-shadow-vertical-offset: 0rem;
  --blog-card-shadow-blur-radius: 0rem;
  --badge-corner-radius: 4rem;
  --popup-border-width: 0px;
  --popup-border-opacity: 0.1;
  --popup-corner-radius: 0px;
  --popup-shadow-opacity: 0.1;
  --popup-shadow-horizontal-offset: 6px;
  --popup-shadow-vertical-offset: 6px;
  --popup-shadow-blur-radius: 25px;
  --drawer-border-width: 1px;
  --drawer-border-opacity: 0.1;
  --drawer-shadow-opacity: 0;
  --drawer-shadow-horizontal-offset: 0px;
  --drawer-shadow-vertical-offset: 0px;
  --drawer-shadow-blur-radius: 0px;
  --spacing-sections-desktop: 0px;
  --spacing-sections-mobile: 0px;
  --grid-desktop-vertical-spacing: 40px;
  --grid-desktop-horizontal-spacing: 40px;
  --grid-mobile-vertical-spacing: 20px;
  --grid-mobile-horizontal-spacing: 20px;
  --text-boxes-border-opacity: 0;
  --text-boxes-border-width: 0px;
  --text-boxes-radius: 0px;
  --text-boxes-shadow-opacity: 0;
  --text-boxes-shadow-visible: 0;
  --text-boxes-shadow-horizontal-offset: 0px;
  --text-boxes-shadow-vertical-offset: 0px;
  --text-boxes-shadow-blur-radius: 0px;
  --buttons-radius: 40px;
  --buttons-radius-outset: 41px;
  --buttons-border-width: 1px;
  --buttons-border-opacity: 1;
  --buttons-shadow-opacity: 0.1;
  --buttons-shadow-visible: 1;
  --buttons-shadow-horizontal-offset: 2px;
  --buttons-shadow-vertical-offset: 2px;
  --buttons-shadow-blur-radius: 5px;
  --buttons-border-offset: 0.3px;
  --inputs-radius: 2px;
  --inputs-border-width: 1px;
  --inputs-border-opacity: 0.15;
  --inputs-shadow-opacity: 0.05;
  --inputs-shadow-horizontal-offset: 2px;
  --inputs-margin-offset: 2px;
  --inputs-shadow-vertical-offset: 2px;
  --inputs-shadow-blur-radius: 5px;
  --inputs-radius-outset: 3px;
  --variant-pills-radius: 40px;
  --variant-pills-border-width: 1px;
  --variant-pills-border-opacity: 0.55;
  --variant-pills-shadow-opacity: 0;
  --variant-pills-shadow-horizontal-offset: 0px;
  --variant-pills-shadow-vertical-offset: 0px;
  --variant-pills-shadow-blur-radius: 0px;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
  font-size: calc(var(--font-body-scale) * 62.5%);
  height: 100%;
}
body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100%;
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.06rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
}
@media screen and (min-width: 750px) {
  body {
    font-size: 1.6rem;
  }
}

product-form__input input[type="checkbox"] {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}
.product-form__input input[type="checkbox"] + label {
  border: var(--variant-pills-border-width) solid
    rgba(var(--color-foreground), var(--variant-pills-border-opacity));
  background-color: rgb(var(--color-background));
  color: rgba(var(--color-foreground));
  border-radius: var(--variant-pills-radius);
  color: rgb(var(--color-foreground));
  display: inline-block;
  margin: 0.7rem 0.5rem 0.2rem 0;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-align: center;
  transition: border var(--duration-short) ease;
  cursor: pointer;
  position: relative;
}

@media screen and (max-width: 750px) {
  .product-form__input input[type="checkbox"] + label {
    margin: 0.7rem 0 0.2rem 0;
  }
}

.product-form__input input[type="checkbox"]:checked + label {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

.product-form__swatch {
  flex: 0 0 100%;
  padding: 0;
  margin: 0 0 1.2rem;
  min-width: fit-content;
  border: none;
}
.product-form__input input[type="radio"] + label {
  border: var(--variant-pills-border-width) solid
    rgba(var(--color-foreground), var(--variant-pills-border-opacity));
  background-color: rgb(var(--color-background));
  color: rgba(var(--color-foreground));
  border-radius: var(--variant-pills-radius);
  color: rgb(var(--color-foreground));
  display: inline-block;
  margin: 0.7rem 0.5rem 0.2rem 0;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-align: center;
  transition: border var(--duration-short) ease;
  cursor: pointer;
  position: relative;
}

.product-form__input input[type="radio"] + label:before {
  content: "";
  position: absolute;
  top: calc(var(--variant-pills-border-width) * -1);
  right: calc(var(--variant-pills-border-width) * -1);
  bottom: calc(var(--variant-pills-border-width) * -1);
  left: calc(var(--variant-pills-border-width) * -1);
  z-index: -1;
  border-radius: var(--variant-pills-radius);
  box-shadow: var(--variant-pills-shadow-horizontal-offset)
    var(--variant-pills-shadow-vertical-offset)
    var(--variant-pills-shadow-blur-radius)
    rgba(var(--color-shadow), var(--variant-pills-shadow-opacity));
}

.product-form__input input[type="radio"] + label:hover {
  border-color: rgb(var(--color-foreground));
}

.product-form__input input[type="radio"]:checked + label {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

@media screen and (forced-colors: active) {
  .product-form__input input[type="radio"]:checked + label {
    text-decoration: underline;
  }
}

.product-form__input input[type="radio"]:checked + label::selection {
  background-color: rgba(var(--color-background), 0.3);
}

.product-form__input input[type="radio"]:disabled + label {
  border-color: rgba(var(--color-foreground), 0.1);
  color: rgba(var(--color-foreground), 0.4);
  text-decoration: line-through;
}
.product-form__input input[type="radio"]:focus-visible + label {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
}

/* Fallback */
.product-form__input input[type="radio"].focused + label,
.no-js .shopify-payment-button__button [role="button"]:focus + label {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
}

/* No outline when focus-visible is available in the browser */
.no-js
  .product-form__input
  input[type="radio"]:focus:not(:focus-visible)
  + label {
  box-shadow: none;
}

.product-form__input .select {
  max-width: 25rem;
}

.product-form__submit {
  margin-bottom: 1rem;
}

.no-js .product-form__submit.button--secondary {
  --color-button: var(--color-base-accent-1);
  --color-button-text: var(--color-base-solid-button-labels);
  --alpha-button-background: 1;
}

.product-form__submit[aria-disabled="true"]
  + .shopify-payment-button
  .shopify-payment-button__button[disabled],
.product-form__submit[disabled]
  + .shopify-payment-button
  .shopify-payment-button__button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

@media screen and (forced-colors: active) {
  .product-form__submit[aria-disabled="true"] {
    color: Window;
  }
}

.contact .product-form__input label {
  --color-foreground: 0, 110, 99;
}

.content-for-layout {
  overflow: hidden;
}

.pitchIcon {
  display: block; 
  margin-left: auto; 
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 10px;
}

.package-icon-container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  width: 100%;
  /*height: 50px;*/
  padding: 0 20px;
  font-weight: bold;
}
.package-icon-container img {
  overflow: hidden;
  width: 40px;
  height: 40px;
}
.flex-vert {
  display: flex;
  flex-direction: column;
  align-content: center;
}

.contrast {
  color: #fff;
}
.thick {
  font-weight: 900;
}

/* modal dialog */

.modal {
  display: none;
  position: fixed;
  z-index: 9999999;
  padding: 50px 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #fff;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.modal-close {
  color: #777;
  float: right;
  font-size: 36px;
  font-weight: bold;
  padding-bottom: 10px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#legal-agreement {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#legal-agreement input[type="checkbox"] {
  transform: scale(1.5);
  margin-right: 25px;
}
.section-template--16661731016921__f141a41b-db45-489a-b822-25017e6a5e5a-padding {
  padding-bottom: 0;
}

#other-service-details {
  height: 50%;
}
#other-service-suggestion {
  height: 100%;
}

.cta-button-group {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .cta-button-group {
    flex-direction: column;
    align-items: center;
  }
  .cta-button-group button {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}

@media screen and (min-width: 750px) {
  .cta-button-group button:nth-child(2) {
    margin-left: 20px;
  }
}
#ContactForm h2 {
  color: black !important;
}

.product-form__input input[type="radio"] + label {
  color: black;
}
.product-form__input input[type="radio"]:checked + label {
  color: white !important;
}

#section-personal-info input,
#section-personal-info label {
  color: black;
}

#section-take-back .h3 span {
  font-size: 30px;
}

@font-face {
  font-family: 'GeorgiaPro';
  src: url('../res/Georgia-Pro-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Avenir';
  src: url('../res/AvenirNext-Regular.ttf') format('truetype');
}