/* Gathering Minds : gathering-minds.net */
/*!
<!--
It is true, you ARE what you see, but even before that there is already an established existence.
.
All that you see, is you. You are, therefore all is. What a momentous occasion to celebrate!
-->
*/
/* font converted using font-converter.net. thank you! */
/*
    'xs': (min-width : 480px),
    'sm': (min-width : 768px),
    'md': (min-width : 992px),
    'lg': (min-width : 1200px)
*/
/**
 * Conditional Media Query Mixin.
 * Usage: @include media(xs) { ... }, @include media(sm) { ... }, ...
 *
 * Other elegant and nice solutions:
 * http://css-tricks.com/approaches-media-queries-sass
 *
 * The best solution to get total control of the conditions:
 * https://github.com/eduardoboucas/include-media
 * http://davidwalsh.name/sass-media-query
 */
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; }

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */ }

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */ }

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0; }

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0; }

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 * 3. Show the overflow in Edge 18- and IE.
 */
hr {
  color: inherit;
  /* 1 */
  height: 0;
  /* 2 */
  overflow: visible;
  /* 3 */ }

/**
 * Add the correct display in IE.
 */
main {
  display: block; }

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0; }

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
nav li::before {
  content: "\200B"; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar;
  /* 3 */ }

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none; }

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
table {
  border-collapse: collapse;
  /* 1 */
  border-color: inherit;
  /* 2 */
  text-indent: 0;
  /* 3 */ }

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0; }

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */ }

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */ }

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible; }

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none; }

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
  resize: block;
  /* 3 */ }

/**
 * Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  padding: 0; }

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none; }

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block; }

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content; }

dialog:not([open]) {
  display: none; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* User interaction
 * ========================================================================== */
/*
 * Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; }

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress; }

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer; }

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed; }

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden] {
  display: initial; }

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute; }

/* Gathering Minds : gathering-minds.net */
@font-face {
  font-family: "icomoon";
  src: url("font/icomoon/icomoon.eot") format("eot"), url("font/icomoon/icomoon.eot?#iefix") format("embedded-opentype"), url("font/icomoon/icomoon.otf") format("opentype"), url("font/icomoon/icomoon.svg") format("svg"), url("font/icomoon/icomoon.ttf") format("truetype"), url("font/icomoon/icomoon.woff") format("woff"), url("font/icomoon/icomoon.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "Palatino";
  src: url("font/Palatino/Palatino.eot") format("eot"), url("font/Palatino/Palatino.eot?#iefix") format("embedded-opentype"), url("font/Palatino/Palatino.otf") format("opentype"), url("font/Palatino/Palatino.svg") format("svg"), url("font/Palatino/Palatino.ttf") format("truetype"), url("font/Palatino/Palatino.woff") format("woff"), url("font/Palatino/Palatino.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "Montserrat-Regular";
  src: url("font/Montserrat-Regular/Montserrat-Regular.eot") format("eot"), url("font/Montserrat-Regular/Montserrat-Regular.eot?#iefix") format("embedded-opentype"), url("font/Montserrat-Regular/Montserrat-Regular.otf") format("opentype"), url("font/Montserrat-Regular/Montserrat-Regular.svg") format("svg"), url("font/Montserrat-Regular/Montserrat-Regular.ttf") format("truetype"), url("font/Montserrat-Regular/Montserrat-Regular.woff") format("woff"), url("font/Montserrat-Regular/Montserrat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "OpenSans";
  src: url("font/OpenSans/OpenSans.eot") format("eot"), url("font/OpenSans/OpenSans.eot?#iefix") format("embedded-opentype"), url("font/OpenSans/OpenSans.otf") format("opentype"), url("font/OpenSans/OpenSans.svg") format("svg"), url("font/OpenSans/OpenSans.ttf") format("truetype"), url("font/OpenSans/OpenSans.woff") format("woff"), url("font/OpenSans/OpenSans.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "CormorantGaramond";
  src: url("font/CormorantGaramond/CormorantGaramond.eot") format("eot"), url("font/CormorantGaramond/CormorantGaramond.eot?#iefix") format("embedded-opentype"), url("font/CormorantGaramond/CormorantGaramond.otf") format("opentype"), url("font/CormorantGaramond/CormorantGaramond.svg") format("svg"), url("font/CormorantGaramond/CormorantGaramond.ttf") format("truetype"), url("font/CormorantGaramond/CormorantGaramond.woff") format("woff"), url("font/CormorantGaramond/CormorantGaramond.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "Lato-Regular";
  src: url("font/Lato-Regular/Lato-Regular.eot") format("eot"), url("font/Lato-Regular/Lato-Regular.eot?#iefix") format("embedded-opentype"), url("font/Lato-Regular/Lato-Regular.otf") format("opentype"), url("font/Lato-Regular/Lato-Regular.svg") format("svg"), url("font/Lato-Regular/Lato-Regular.ttf") format("truetype"), url("font/Lato-Regular/Lato-Regular.woff") format("woff"), url("font/Lato-Regular/Lato-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "Baskerville";
  src: url("font/Baskerville/Baskerville.eot") format("eot"), url("font/Baskerville/Baskerville.eot?#iefix") format("embedded-opentype"), url("font/Baskerville/Baskerville.otf") format("opentype"), url("font/Baskerville/Baskerville.svg") format("svg"), url("font/Baskerville/Baskerville.ttf") format("truetype"), url("font/Baskerville/Baskerville.woff") format("woff"), url("font/Baskerville/Baskerville.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

body {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 1rem;
  font-size: -webkit-calc(1rem + 0.5vw);
  font-size: calc(1rem + 0.5vw);
  line-height: calc(1.25em + 0.5vw);
  color: #000;
  background-color: #000;
  margin: 0px;
  padding: 1em 1em 2em 1em;
  background: url(_bk2.gif); }

a:link, a:visited, a:active,
a:hover {
  text-decoration: none; }

img {
  border: 0; }

#quotewrapper {
  display: block;
  margin: 0px auto;
  width: 100%;
  overflow: hidden;
  margin-top: 2em;
  position: relative;
  width: 770px; }
  #quotewrapper h1 {
    text-align: center; }

#site {
  display: none; }

#header {
  min-height: 40px;
  overflow: hidden; }
  #header img {
    float: right;
    opacity: 0.7; }
    #header img:hover {
      opacity: 1; }

#headernav {
  float: right;
  margin-top: 19px;
  padding: 0;
  border-bottom: 1px dotted #daa520;
  font-family: Verdana, Tahoma, Arial, sans-serif;
  font-size: 0.5rem;
  font-size: -webkit-calc(0.5rem + 0.5vw);
  font-size: calc(0.5rem + 0.5vw);
  line-height: calc(1em + 0.5vw); }
  #headernav a:link, #headernav a:visited, #headernav a:active {
    color: #cdb2ad;
    margin: 0 1.25em; }
  #headernav a:hover {
    color: #eee; }

#quotecontainer {
  clear: both;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 6em;
  padding-bottom: 25px;
  text-align: center;
  font-family: "Futura CondensedLight", "Trebuchet MS", Arial, Verdana, sans-serif; }
  #quotecontainer img {
    border: 2px solid #daa520;
    max-height: 100%;
    max-width: 100%; }

#quoteinner {
  padding: 14px;
  font-size: 0.75rem;
  font-size: -webkit-calc(0.75rem + 0.5vw);
  font-size: calc(0.75rem + 0.5vw);
  line-height: calc(1.25em + 0.5vw);
  color: #daa520;
  text-align: justify; }
  #quoteinner p {
    margin: 0;
    padding: 0 0 10px 0; }
  #quoteinner img {
    border: none; }

#quotem {
  float: left;
  margin-top: 1em; }
  #quotem img {
    border: 0;
    margin: 0 .5em; }

#quoteinfo {
  clear: both;
  float: right;
  width: 100%;
  padding: 8px 16px 0 0; }

#quoteauthor,
#quoteref {
  font-size: 0.5rem;
  font-size: -webkit-calc(0.5rem + 0.5vw);
  font-size: calc(0.5rem + 0.5vw);
  line-height: calc(1em + 0.5vw);
  color: #888;
  text-align: right; }

#quoteref {
  font-style: italic; }
  #quoteref a {
    color: #888;
    border-bottom: #666 1px dashed; }
  #quoteref a:hover {
    color: #ff0000;
    border-bottom: 0; }

input[type="text"],
textarea {
  display: inline-block;
  border: 1px solid #aaa;
  padding: .2em .4em;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 6px  6px  6px  6px;
  -khtml-border-radius: 6px  6px  6px  6px;
  -moz-border-radius: 6px  6px  6px  6px;
  -ms-border-radius: 6px  6px  6px  6px;
  -o-border-radius: 6px  6px  6px  6px;
  border-radius: 6px  6px  6px  6px;
  font-family: "Montserrat-Regular", Georgia, "Times New Roman", serif;
  font-size: 0.6rem;
  font-size: -webkit-calc(0.6rem + 0.5vw);
  font-size: calc(0.6rem + 0.5vw);
  line-height: calc(0.6em + 0.5vw);
  color: #000;
  background-color: #f4f1e6;
  opacity: 0.8; }
  input[type="text"]:focus,
  textarea:focus {
    background-color: #fff;
    outline: none;
    border: 1px solid #4195fc;
    -webkit-box-shadow: 0 0 5 #4195fc;
    -khtml-box-shadow: 0 0 5 #4195fc;
    -moz-box-shadow: 0 0 5 #4195fc;
    -ms-box-shadow: 0 0 5 #4195fc;
    -o-box-shadow: 0 0 5 #4195fc;
    box-shadow: 0 0 5 #4195fc;
    opacity: 1; }
  input[type="text"]:hover,
  textarea:hover {
    border: 1px solid #4195fc;
    background-color: #fff; }
  input[type="text"] ::-webkit-input-placeholder,
  input[type="text"] :-ms-input-placeholder,
  input[type="text"] :placeholder-shown,
  textarea ::-webkit-input-placeholder,
  textarea :-ms-input-placeholder,
  textarea :placeholder-shown {
    font-size: 0.9em;
    color: #7f7f7f; }
  input[type="text"] :-moz-placeholder,
  input[type="text"] ::-moz-placeholder,
  textarea :-moz-placeholder,
  textarea ::-moz-placeholder {
    font-size: 0.9em;
    color: #7f7f7f;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1; }

textarea {
  width: 48ch;
  scrollbar-color: #bbb #444; }
  textarea body::-webkit-scrollbar-track {
    background: #bbb; }
  textarea body::-webkit-scrollbar-thumb {
    background-color: #444; }

input[type="text"] {
  margin: .4em 0;
  width: 16em; }

.btnsubmit {
  width: 100%;
  margin: 1em 0;
  text-align: center;
  font-family: "Montserrat-Regular", Georgia, "Times New Roman", serif; }

[type="submit"] {
  margin: 0 auto;
  margin-top: 1em;
  padding: 0.5em 0.75em;
  border: 1px solid #5a8311;
  background-color: #04b404;
  -webkit-border-radius: 6px  6px  6px  6px;
  -khtml-border-radius: 6px  6px  6px  6px;
  -moz-border-radius: 6px  6px  6px  6px;
  -ms-border-radius: 6px  6px  6px  6px;
  -o-border-radius: 6px  6px  6px  6px;
  border-radius: 6px  6px  6px  6px;
  font-family: "Montserrat-Regular", Georgia, "Times New Roman", serif;
  font-size: 0.6rem;
  font-size: -webkit-calc(0.6rem + 0.5vw);
  font-size: calc(0.6rem + 0.5vw);
  line-height: calc(1em + 0.5vw);
  color: #fff;
  font-weight: bold; }
  [type="submit"]:hover {
    color: #333;
    background-color: #01df01; }

#content {
  display: inline-block;
  width: 770px;
  font-size: 14px;
  line-height: 20px;
  color: #000; }

#pagetop {
  clear: both;
  display: block;
  float: left;
  background: url(quote/header_bg.png) no-repeat top left;
  width: 770px;
  height: 27px; }

#page {
  overflow: hidden;
  background: url(quote/content_bg.png) repeat-y top left;
  padding: 15px 25px 0 25px;
  width: 770px; }

#pageend {
  clear: both;
  display: block;
  float: left;
  background: url(quote/footer_bg.png) no-repeat top left;
  width: 770px;
  height: 27px; }

tbody {
  font-size: 0.5rem;
  font-size: -webkit-calc(0.5rem + 0.5vw);
  font-size: calc(0.5rem + 0.5vw);
  line-height: calc(1em + 0.5vw); }
  tbody a {
    color: #000;
    border-bottom: 0; }
  tbody a:hover {
    color: #ff0000; }

tbody td {
  padding: 3px 0 3px 0; }

tbody tr {
  border-bottom: 1px solid #ccc; }

tbody tr:hover {
  background-color: #e5e5cb; }

.tblhdr {
  font-size: 0.6rem;
  font-size: -webkit-calc(0.6rem + 0.5vw);
  font-size: calc(0.6rem + 0.5vw);
  line-height: calc(1em + 0.5vw);
  font-style: italic;
  background-image: url(quote/bk_m112.gif); }

.dcenter {
  text-align: center; }

@media only screen and (max-width: 768px) {
  [type="submit"] {
    font-family: Verdana, Tahoma, Arial, sans-serif;
    font-size: 1rem;
    font-size: -webkit-calc(1rem + 0.5vw);
    font-size: calc(1rem + 0.5vw);
    line-height: calc(1em + 0.5vw);
    font-weight: 200; } }

@media print {
  font-family: "OpenSans", sans-serif;
  font-size: 1em;
  line-height: 1.618;
  color: #000;
  #header,
  #headernav,
  img {
    display: none; }
  #quoteinner,
  #quoteref {
    color: #000; }
    #quoteinner a,
    #quoteref a {
      color: #000;
      border-bottom: none; }
  #this {
    display: block;
    margin-top: 2em;
    font-size: 0.8rem;
    font-size: -webkit-calc(0.8rem + 0.5vw);
    font-size: calc(0.8rem + 0.5vw);
    line-height: calc(1em + 0.5vw);
    color: #000; }
  #header,
  #quotem {
    display: none; } }
