/* Basic settings */
/* Reset - https://meyerweb.com/eric/tools/css/reset/ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  -webkit-transition: all 45ms ease-in-out;
  -moz-transition: all 45ms ease-in-out;
  -ms-transition: all 45ms ease-in-out;
  -o-transition: all 45ms ease-in-out;
  transition: all 45ms ease-in-out;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.fa {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

:root {
  --blue-violet: rgba(100, 81, 162, 1);
  --grayish-lavender: rgba(192, 169, 179, 0.1);
  --grayish-lavender-lite: #f0e6ea;
  --grayish-lavender-v-lite: #ece5e8;
  --violet-blue: rgba(64, 69, 106, 1);
  --black: rgb(38, 38, 38, 1);
  --white: rgb(255, 255, 255, 1);
  --page-bg: var(--grayish-lavender);
  --page-border: var(--violet-blue);
}

.full {
  grid-area: full;
}

.single {
  grid-area: single;
}

.third {
  grid-area: third;
}
.third--left {
  grid-area: third-left;
}
.third--middle {
  grid-area: third-middle;
}
.third--right {
  grid-area: third-right;
}
.third--two {
  grid-area: two-third;
}

.sixth--left {
  grid-area: sixth-left;
}
.sixth--four-middle {
  grid-area: sixth-four-middle;
}
.sixth--right {
  grid-area: sixth-right;
}
.sixth--one {
  grid-area: sixth-one;
}
.sixth--two {
  grid-area: sixth-two;
}
.sixth--three {
  grid-area: sixth-three;
}
.sixth--four {
  grid-area: sixth-four;
}
.sixth--five {
  grid-area: sixth-five;
}
.sixth--six {
  grid-area: sixth-six;
}

.half--left {
  grid-area: half-left;
}
.half--right {
  grid-area: half-right;
}

.grid {
  align-items: start;
  display: grid;
  gap: 0;
  grid-auto-flow: row;
  grid-template-columns: 90%;
  grid-template-rows: auto;
  margin: 0 5% 0.65rem 5%;
  overflow: hidden;
  width: 100%;
}
.grid:last-of-type {
  margin-bottom: 0;
}
.grid--full {
  grid-template-areas: "full";
}
.grid--single {
  grid-template-areas: "single";
}
.grid--4-2 {
  grid-template-areas: "two-third" "third";
}
.grid--2-4 {
  grid-template-areas: "third" "two-third";
}
.grid--2-2-2 {
  grid-template-areas: "third-left" "third-middle" "third-right";
}
.grid--1-4-1 {
  grid-template-areas: "sixth-left" "sixth-four-middle" "sixth-right";
}
.grid--1-1-1-1-1-1 {
  grid-template-areas: "sixth-one" "sixth-two" "sixth-three" "sixth-four" "sixth-five" "sixth-six";
}
.grid--3-3 {
  grid-template-areas: "half-left" "half-right";
}
.grid img {
  max-width: 100%;
}
.grid img.small {
  max-width: 75%;
}

[class^=third--] {
  margin-bottom: 0.65rem;
}

@media only screen and (min-width: 520px) {
  .grid {
    gap: 2em 3.2%;
    grid-auto-flow: row;
    grid-template-columns: 14% 14% 14% 14% 14% 14%;
    grid-template-rows: auto;
    margin: 0 auto 1.3rem auto;
    max-width: 920px;
    width: 90%;
  }
  .grid section.grid {
    width: auto;
  }
  .grid--full {
    max-width: 100%;
    grid-template-areas: "full full full full full full";
    width: 100%;
  }
  .grid--single {
    max-width: 920px;
    grid-template-areas: "single single single single single single";
    width: 90%;
  }
  .grid--2-4 {
    grid-template-areas: "third third two-third two-third two-third two-third";
  }
  .grid--4-2 {
    grid-template-areas: "two-third two-third two-third two-third third third";
  }
  .grid--2-2-2 {
    grid-template-areas: "third-left third-left third-middle third-middle third-right third-right";
  }
  .grid--1-4-1 {
    grid-template-areas: "sixth-left sixth-four-middle sixth-four-middle sixth-four-middle sixth-four-middle sixth-right";
  }
  .grid--1-1-1-1-1-1 {
    grid-template-areas: "sixth-one sixth-two sixth-three sixth-four sixth-five sixth-six";
  }
  .grid--3-3 {
    grid-template-areas: "half-left half-left half-left half-right half-right half-right";
  }
  [class^=third--] {
    margin-bottom: 0;
  }
}
.flex {
  display: flex;
}
.flex--left {
  flex-grow: 1;
}
.flex--right {
  flex-grow: 0;
}

.high-low {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.high-low .top {
  flex-grow: 1;
}
.high-low .bottom {
  flex-grow: 0;
}

html {
  font-size: 1em;
  line-height: 1.3;
}

@media only screen and (min-width: 800px) {
  html {
    font-size: 1em;
  }
}
body {
  font-family: Helvetica, Arial, sans-serif;
  background-color: var(--page-bg);
  color: var(--black);
}

p {
  margin-bottom: 0.65rem;
}

small, figcaption, .small {
  font-size: 0.7em;
  line-height: 1rem;
}

a {
  color: var(--page-border);
}
a:hover {
  text-decoration: none;
}

h1 {
  font-size: 1.3em;
  font-weight: normal;
  padding: 20px 0;
}
h1.home {
  text-align: center;
}
h1 img {
  max-width: 100%;
  margin: 0 auto;
}

h2 {
  font-size: 1.2em;
  font-weight: normal;
  margin: 0 0 0.6em 0;
}

h3 {
  font-size: 1.1em;
  font-weight: normal;
  margin: 0 0 0.4em 0;
}

h4 {
  font-size: 1.1em;
  font-weight: normal;
  margin: 0 0 0.4em 0;
}

h5 {
  font-size: 0.9em;
  font-weight: normal;
  margin: 0 0 0.4em 0;
}

.strike {
  text-decoration: line-through;
}

header {
  background: url(/assets/img/headers/print-paradiso-logo_studio.jpg) no-repeat center center;
  background-size: cover;
  height: 50vh;
  margin: 20px auto 0 auto;
  width: calc(100% - 40px);
}
@media (max-width: 800px) {
  header {
    margin-bottom: 0;
  }
}

hr {
  border-top: 1px solid var(--page-border);
  color: transparent;
  margin: 2em;
  width: 70%;
}

section {
  margin: 0 auto 2em auto;
  width: 70%;
}
section.text {
  max-width: 800px;
  width: 85%;
}
@media (max-width: 640px) {
  section.text {
    width: 90%;
  }
  section.text.top-item {
    margin-top: 30px;
  }
}
section.text img {
  max-width: 100%;
}

.solo-header {
  margin: 0 auto 1em auto;
  max-width: 800px;
  width: 85%;
}
@media (max-width: 640px) {
  .solo-header {
    width: 90%;
  }
}

.banner-image img {
  margin: 2%;
  width: 96%;
  object-fit: cover;
}

.line {
  border-style: solid;
  border-color: var(--page-border);
  margin: 0 auto;
  position: fixed;
  z-index: 1;
}
.line__top {
  border-top: 10px;
  height: 10px;
  left: 0;
  right: 0;
  top: 0;
  border-style: solid;
  border-color: var(--page-border);
  margin: 0 auto;
  position: fixed;
  z-index: 2;
}
.line__right {
  border-right: 10px;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  border-style: solid;
  border-color: var(--page-border);
  margin: 0 auto;
  position: fixed;
  z-index: 2;
}
.line__bottom {
  background-color: var(--grayish-lavender-v-lite);
  border-bottom: 10px;
  bottom: 0;
  height: 10px;
  left: 0;
  right: 0;
  border-style: solid;
  border-color: var(--page-border);
  margin: 0 auto;
  position: fixed;
  z-index: 2;
}
.line__left {
  border-left: 10px;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  border-style: solid;
  border-color: var(--page-border);
  margin: 0 auto;
  position: fixed;
  z-index: 2;
}

ul {
  margin: 0 0 1em 0;
}
ul li {
  margin: 0 0 0.25em 1em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
  width: calc(100% - 40px);
}
.nav li {
  border: 1px solid var(--violet-blue);
  border-left: 0;
  flex-grow: 1;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.nav li:first-child {
  border-left: 1px solid var(--violet-blue);
}
.nav li a {
  background-color: var(--grayish-lavender-lite);
  display: block;
  padding: 0 0.5em;
  text-decoration: none;
  transition: background-color 0.4s, color 0.4s;
}
.nav li a:hover {
  background-color: var(--violet-blue);
  color: var(--grayish-lavender-lite);
}

.insta {
  background: url(../img/furniture/insta-logo_pansy.png) no-repeat 0 1px;
  background-size: 13%;
  padding-left: 19px;
}

footer {
  background-color: var(--grayish-lavender-lite);
  border: 1px solid var(--violet-blue);
  bottom: 20px;
  height: auto;
  left: 20px;
  margin: 20px auto 20px;
  padding: 0.25em;
  right: 20px;
  width: calc(100% - 50px);
  z-index: 3;
}
@media only screen and (min-width: 800px) {
  footer {
    height: 120px;
  }
}

.button {
  background-color: var(--violet-blue);
  border: 0;
  color: var(--white);
  display: inline-block;
  font-size: 0.85em;
  margin: 0.65rem 0;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
}
.button:hover {
  background-color: var(--grayish-lavender-lite);
  border: 0;
  color: var(--page-border);
}
.button img {
  margin-top: 4px;
}

/* Block */
.carousel {
  /* Fallback for no-JS */
}
.carousel__container {
  position: relative;
  max-width: 800px;
  height: 533px;
  margin: auto;
  overflow: hidden;
  width: 100%;
}
.carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  padding: 0;
  margin: 0;
  list-style: none;
}
.carousel__track li {
  margin: 0;
}
.carousel__slide {
  min-width: 100%;
  height: 100%;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0 10px;
  cursor: pointer;
  z-index: 10;
}
.carousel__button--prev {
  left: 10px;
}
.carousel__button--next {
  right: 10px;
}
.carousel.no-js__track {
  display: block;
}
.carousel.no-js__slide {
  display: none;
}
.carousel.no-js__slide:first-child {
  display: block;
}
.carousel.no-js__button {
  display: none;
}

blockquote {
  background-color: var(--grayish-lavender-lite);
  border: 1px solid;
  padding: 1em;
  margin: 1em;
}

.nav-wrapper {
  position: sticky;
  top: 20px;
  z-index: 1;
}
.nav-wrapper .menu-toggle {
  display: none;
}
.nav-wrapper .menu-toggle:checked + .hamburger + .nav {
  display: flex;
}
.nav-wrapper .hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  z-index: 1000;
}
.nav-wrapper .hamburger span {
  background-color: var(--violet-blue);
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-wrapper .menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-wrapper .menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-wrapper .menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.nav-wrapper .nav {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
  width: calc(100% - 40px);
}
.nav-wrapper .nav li {
  border: 1px solid var(--violet-blue);
  border-left: 0;
  flex-grow: 1;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.nav-wrapper .nav li:first-child {
  border-left: 1px solid var(--violet-blue);
}
.nav-wrapper .nav li a {
  background-color: var(--grayish-lavender-lite);
  display: block;
  padding: 0.2em 0.5em;
  text-decoration: none;
  transition: background-color 0.6s, color 0.6s;
}
.nav-wrapper .nav li a:hover {
  background-color: var(--violet-blue);
  color: var(--grayish-lavender-v-lite);
}
@media (max-width: 640px) {
  .nav-wrapper .hamburger {
    background-color: var(--grayish-lavender-lite);
    display: flex;
    justify-content: flex-start;
    width: auto;
  }
  .nav-wrapper .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 37px;
    left: 20px;
    right: 20px;
    background-color: var(--grayish-lavender-lite);
    z-index: 999;
  }
  .nav-wrapper .nav li {
    flex-grow: 0;
    border: none;
  }
  .nav-wrapper .nav li a {
    padding: 1em;
  }
}

/* MailChimp Form Embed Code - Classic - 12/17/2015 v10.7 */
#mc_embed_signup form {
  display: block;
  position: relative;
  text-align: left;
}

#mc_embed_signup input {
  border: 1px solid #ABB0B2;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 60%;
}

#mc_embed_signup input + input {
  width: 35%;
}

#mc_embed_signup input[type=checkbox] {
  -webkit-appearance: checkbox;
}

#mc_embed_signup input[type=radio] {
  -webkit-appearance: radio;
}

#mc_embed_signup input:focus {
  border-color: #333;
}

#mc_embed_signup .button {
  clear: both;
  background-color: #111;
  border: 0 none;
  border-radius: 4px;
  transition: all 0.23s ease-in-out 0s;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: normal;
  height: 32px;
  line-height: 17px;
  margin: 0 5px 10px 0;
  padding: 0 22px;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  white-space: nowrap;
  width: fit-content;
  width: -moz-fit-content;
}

#mc_embed_signup .button:hover {
  background-color: #222;
}

#mc_embed_signup .small-meta {
  font-size: 11px;
}

#mc_embed_signup .nowrap {
  white-space: nowrap;
}

#mc_embed_signup .mc-field-group {
  clear: left;
  position: relative;
  width: 96%;
  padding-bottom: 3%;
  min-height: 50px;
  display: grid;
}

#mc_embed_signup .size1of2 {
  clear: none;
  float: left;
  display: inline-block;
  width: 46%;
  margin-right: 4%;
}

* html #mc_embed_signup .size1of2 {
  margin-right: 2%; /* Fix for IE6 double margins. */
}

#mc_embed_signup .mc-field-group label {
  display: block;
  margin: 0 0 0.6em 0;
}

#mc_embed_signup .mc-field-group input {
  padding: 8px;
}

#mc_embed_signup .mc-field-group select {
  display: inline-block;
  width: 99%;
  padding: 5px 0;
  margin-bottom: 2px;
}

#mc_embed_signup .mc-address-fields-group {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 96%;
  gap: 15px;
}

#mc_embed_signup .mc-sms-phone-group {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 96%;
  gap: 15px;
  padding-top: 5px;
}

#mc_embed_signup .datefield, #mc_embed_signup .phonefield-us {
  padding: 5px 0;
}

#mc_embed_signup .datefield input, #mc_embed_signup .phonefield-us input {
  display: inline;
  width: 60px;
  margin: 0 2px;
  letter-spacing: 1px;
  text-align: center;
  padding: 5px 0 2px 0;
}

#mc_embed_signup .phonefield-us .phonearea input, #mc_embed_signup .phonefield-us .phonedetail1 input {
  width: 40px;
}

#mc_embed_signup .datefield .monthfield input, #mc_embed_signup .datefield .dayfield input {
  width: 30px;
}

#mc_embed_signup .datefield label, #mc_embed_signup .phonefield-us label {
  display: none;
}

#mc_embed_signup .indicates-required {
  text-align: right;
  font-size: 11px;
  margin-right: 4%;
}

#mc_embed_signup .asterisk {
  color: #e85c41;
  font-size: 150%;
  font-weight: normal;
  position: relative;
  top: 5px;
}

#mc_embed_signup .clear {
  clear: both;
}

#mc_embed_signup .foot {
  display: grid;
  grid-template-columns: 3fr 1fr;
  width: 96%;
  align-items: center;
}

@media screen and (max-width: 400px) {
  #mc_embed_signup .foot {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    align-items: center;
  }
}
@media screen and (max-width: 400px) {
  #mc_embed_signup .referralBadge {
    width: 50%;
  }
}
#mc_embed_signup .brandingLogo {
  justify-self: right;
}

@media screen and (max-width: 400px) {
  #mc_embed_signup .brandingLogo {
    justify-self: left;
  }
}
#mc_embed_signup .mc-field-group.input-group ul {
  margin: 0;
  padding: 5px 0;
  list-style: none;
}

#mc_embed_signup .mc-field-group.input-group ul li {
  display: block;
  padding: 3px 0;
  margin: 0;
}

#mc_embed_signup .mc-field-group.input-group label {
  display: inline;
}

#mc_embed_signup .mc-field-group.input-group input {
  display: inline;
  width: auto;
  border: none;
}

#mc_embed_signup #mce-error-response {
  display: none;
}

#mc_embed_signup #mce-success-response {
  display: none;
}

#mc_embed_signup label.error {
  display: block;
  float: none;
  width: auto;
  margin-left: 1.05em;
  text-align: left;
  padding: 0.5em 0;
}

#mc_embed_signup .helper_text {
  color: #8d8985;
  margin-top: 2px;
  display: inline-block;
  padding: 3px;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: normal;
  z-index: 1;
}

#mc-embedded-subscribe {
  clear: both;
  width: auto;
  display: block;
  margin: 1em 0 1em 5%;
}

#mc_embed_signup #num-subscribers {
  font-size: 1.1em;
}

#mc_embed_signup #num-subscribers span {
  padding: 0.5em;
  border: 1px solid #ccc;
  margin-right: 0.5em;
  font-weight: bold;
}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  display: inline-block;
  margin: 2px 0 1em 0;
  padding: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: normal;
  z-index: 1;
}

#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
  border: 2px solid #e85c41;
}

#mc_embed_signup {
  clear: left;
  width: 100%;
}

.mailchimp-two-col {
  display: flex;
}

.mailchimp-two-col input {
  height: 15px;
  width: 70%;
}

.mailchimp-two-col input + input {
  margin-left: 10px !important;
  width: 20%;
}

#mc_embed_signup div.mce_inline_error {
  background-color: transparent !important;
  color: #000 !important;
}

.dates {
  margin-top: 2rem;
}
.dates h3 {
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
}

.date {
  display: none;
}

.date.is-active {
  display: block;
}

/*# sourceMappingURL=styles.css.map */
