@charset "utf-8";

/* =======================
   Text Styles
   ======================= */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&family=Raleway:wght@200;300;400&display=swap");

strong {
  font-weight: normal;
  /* or 600 */
  color: #000;
  /* optional */
}

body {
  font-family: "Quicksand", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  /* 22px */
  color: #666;
}


/* Headings */
h1,
h2,
h3,
h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 200;
  color: #888;
  line-height: 1.2;
  /* multiplies font-size automatically */
}

/* Remove default hyperlink style inside headings */
h1 a,
h2 a,
h3 a,
h4 a {
  color: inherit;
  /* makes link the same color as the heading */
  text-decoration: none;
  /* removes underline */
}

/* Optional: add hover effect */
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
  text-decoration: underline;
  /* or color change if you like */
  color: #000;
  /* optional hover color */
}

h1 {
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  margin: 0 0 clamp(0.6rem, 3vw, 1.5rem) 0;
  padding: 0;
}

h2 {
  font-weight: normal;
  font-size: clamp(1rem, 5vw, 1.5rem);
  margin: 1rem 0 0rem 0;
}

.flex-table-item h2+p {
  margin-top: 0.25rem;
  /* tight spacing between heading and paragraph */
}

h3 {
  font-weight: normal;
  margin: 2rem 0 1rem 0;
  font-size: clamp(1rem, 5vw, 1.5rem);
}

h3 strong {
  font-weight: normal;
  font-size: 0.6em;
  /* relative to the h3 size */
  color: inherit
}


h4 {
  font-size: 1.5rem;
  /* 24px */
  color: #666;
  font-weight: normal;
}

/* Remove top margin from first child in containers */
div>*:first-child {
  margin-top: 0;
}


/* Links */
a {
  color: #4a86de;
}

/* Specials */
.old_price {
  font-size: 1.25rem;
  /* 20px */
  color: #999;
  text-decoration: line-through;
}

.special_offer {
  font-size: 2.25rem;
  /* 36px */
  color: #cc0000;
}


/* Quote box style */
.quote-box {
  display: block;
  background: #f5f6f7;
  border: 1px solid #e3e4e6;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  max-width: 720px;
  margin: 1rem auto;
  position: relative;
  line-height: 1.5;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

/* Decorative big opening quote */
.quote-box::before {
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  color: #9aa0a6;
  position: absolute;
  left: 12px;
  top: -20px;
  line-height: 1;
  opacity: 0.85;
  pointer-events: none;
}

/* Quote text */
.quote-box blockquote {
  margin: 0;
  padding-left: 0.5rem;
  font-size: 1rem;
  color: #222;
}

/* Attribution */
.quote-box figcaption {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
  text-align: right;
}

.quote-box:nth-of-type(5n+1) {
  background: #f5f6f7;
}

.quote-box:nth-of-type(5n+2) {
  background: #f9f7f5;
}

.quote-box:nth-of-type(5n+3) {
  background: #f5f9f7;
}

.quote-box:nth-of-type(5n+4) {
  background: #f7f5f9;
}

.quote-box:nth-of-type(5n+5) {
  background: #f9f9f5;
}

.callout {
  display: block;
  position: relative;
  background-color: #ffffff;
  /* white background */
  border: 1px solid #e6cf95;
  /* pale green border */
  border-radius: 0.4rem;
  padding: 1rem;
  padding-top: 1rem;
  box-sizing: border-box;
  overflow: hidden;
  /* keeps the icon neatly inside rounded corners */
}

.callout::before {
  content: "🍂";
  font-size: 10rem;
  position: absolute;
  left: -0.5rem;
  top: -2rem;
  line-height: 1;
  opacity: 0.15;
  /* slightly softer so text is easier to read */
  pointer-events: none;
  z-index: 0;
}

.callout p {
  position: relative;
  z-index: 1;
  /* keeps text above the icon */
}

.callout-simple {
  display: block;
  position: relative;
  background-color: #ffffff;
  /* white background */
  border: 1px solid #e6cf95;
  /* pale green border */
  border-radius: 0.4rem;
  padding: 1rem;
  padding-top: 2rem;
  box-sizing: border-box;
}