@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Averia+Sans+Libre:ital,wght@0,300;0,700;1,300;1,700&family=Averia+Serif+Libre:ital,wght@0,300;0,700;1,300;1,700&family=Rock+Salt&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  display: grid;
  grid-template-columns: 1fr 840px 1fr;
  grid-template-rows: auto 1fr 30px;
  grid-column-gap: 20px;
  grid-row-gap: 25px;
  padding: 10px 0;
  background-color: #c9c8b9;
  font-family: "Averia Sans Libre", sans-serif;
}

h1, h2, h3, h4, h5 {
  font-family: "Averia Serif Libre", serif;
  color: #3d428e;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  transform: rotateZ(0.5deg);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
}

p {
  margin-bottom: 1em;
  font-family: "Averia Sans Libre", sans-serif;
  font-size: 22px;
  line-height: 1.3em;
  color: #17193a;
}
p:last-of-type {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: #c57a1e;
}
a:hover {
  color: #cc924b;
}

form button {
  transform: translate(0, 0) rotateZ(2deg);
  display: block;
  margin: 0 auto;
  padding: 0 20px;
  background-color: white;
  box-shadow: 5px 5px 0 #3d428e;
  border: none;
  border-radius: 0;
  font-family: "Rock Salt", serif;
  font-size: 24px;
  color: #17193a;
  transition: 200ms ease-in-out;
}
form button:hover {
  transform: translate(-2.5px, -2.5px) rotateZ(4deg);
  box-shadow: 10px 10px 0 #3d428e;
  cursor: pointer;
}
form button:active {
  transform: translate(0, 0) rotateZ(-2deg);
  box-shadow: 1px 1px 0 #3d428e;
  transition: none;
}
form .field-collection {
  margin-bottom: 50px;
}
form .field-collection h2 {
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
}
form .field-collection .field {
  margin-bottom: 20px;
}
form .field-collection .field h3 {
  margin-left: 1.5em;
  font-size: 22px;
}
form .field-collection .field p {
  transform: translate(0) rotateZ(0);
  width: auto;
  margin: 0 10px 0.5em;
  font-size: 16px;
  text-align: justify;
}
form .field-collection .field .entry {
  width: 100%;
}
form .field-collection .field .entry input {
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2509803922);
  border: none;
  border-bottom: 1px solid #3d428e;
  border-radius: 10px 10px 0 0;
  font-family: "Averia Sans Libre", sans-serif;
  font-size: 20px;
}
form .field-collection .field .entry input::placeholder {
  color: rgba(0, 0, 0, 0.2509803922);
}
form .field-collection .field .entry input:focus {
  padding-bottom: 9px;
  border-bottom: 2px solid #3d428e;
  outline: none !important;
}
form .field-collection .field .entry textarea {
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2509803922);
  border: none;
  border-bottom: 1px solid #3d428e;
  border-radius: 10px 10px 0 0;
  font-family: "Averia Sans Libre", sans-serif;
  font-size: 20px;
}
form .field-collection .field .entry textarea:focus {
  padding-bottom: 9px;
  border-bottom: 2px solid #3d428e;
  outline: none !important;
}
form .field-collection .field .entry select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2509803922);
  border: none;
  border-bottom: 1px solid #3d428e;
  border-right: 10px solid rgba(255, 255, 255, 0);
  border-radius: 10px 10px 0 0;
  font-family: "Averia Sans Libre", sans-serif;
  font-size: 20px;
}
form .field-collection .field .entry select:focus {
  padding-bottom: 9px;
  border-bottom: 2px solid #3d428e;
  outline: none !important;
}
form .field-collection .field .entry select:invalid {
  color: rgba(0, 0, 0, 0.2509803922);
}
form .field-collection .field .entry label {
  font-size: 16px;
  color: #4c53b2;
}
form .field-collection .field .entry.text label, form .field-collection .field .entry.paragraph label, form .field-collection .field .entry.select label, form .field-collection .field .entry.currency label {
  display: none;
}
form .field-collection .field .entry.select:after {
  content: "⌄";
  position: absolute;
  right: 10px;
  display: inline-block;
  font-size: 24px;
}
form .field-collection .field .entry.currency {
  position: relative;
}
form .field-collection .field .entry.currency:before {
  content: "$";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 20px;
}
form .field-collection .field .entry.currency input {
  padding-left: 25px;
}
form .field-collection .field .entry.radio .option, form .field-collection .field .entry.checkbox .option {
  display: block;
  margin-left: 10px;
}
form .field-collection .field .entry.radio .option input, form .field-collection .field .entry.checkbox .option input {
  width: auto;
}
form .field-collection .field .entry.radio .option input:checked + label, form .field-collection .field .entry.checkbox .option input:checked + label {
  color: #4c53b2;
}
form .field-collection .field .entry.radio .option label, form .field-collection .field .entry.checkbox .option label {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 20px;
  color: #17193a;
}
form .field-collection .field.required h3:after, form .field-collection .field.pseudo-required h3:after {
  content: "(required)";
  margin-left: 0.5em;
  font-family: "Averia Sans Libre", sans-serif;
  font-size: 14px;
  color: red;
}
form .field-collection .field:nth-of-type(odd) {
  transform: translateX(-10px) rotateZ(-0.5deg);
}
form .field-collection .field:nth-of-type(even) {
  transform: translateX(10px) rotateZ(0.5deg);
}
form .hideaway {
  display: none !important;
}

header {
  justify-self: center;
  grid-area: 1/1/2/4;
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 100%;
}
header nav {
  display: grid;
  grid-template-columns: minmax(120px, 540px) auto;
  grid-column-gap: 10px;
}
header nav h1 {
  grid-area: 1/1/2/2;
  display: block;
  margin-left: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
header nav h1 a {
  display: block;
  opacity: 1;
  font-size: 0;
}
header nav h1 a img {
  width: 100%;
}
header nav #main-menu {
  align-self: center;
  justify-self: end;
  grid-area: 1/2/2/3;
  z-index: 1000;
  margin-right: 10px;
  font-family: "Rock Salt", sans-serif;
  font-size: 15px;
  text-align: right;
  white-space: nowrap;
  list-style: none;
}
header nav #main-menu a.current {
  color: #7b490c;
}
header nav #main-menu a.current:hover {
  color: #cc924b;
}
header nav #main-menu li {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  cursor: default;
  color: #c57a1e;
}
header nav #main-menu li#menu-header {
  display: none;
}
header nav #main-menu li ul {
  position: absolute;
  right: -10px;
  transform: scaleY(0);
  z-index: 100;
  display: flex;
  max-height: 0;
  flex-direction: column;
  padding: 10px;
  background: #c9c8b9;
  box-shadow: 10px 10px 0 #3d428e;
  overflow-y: hidden;
  transition: max-height 300ms linear, transform 0s 300ms linear;
}
header nav #main-menu li ul.visible {
  transform: scaleY(1);
  max-height: 220px;
}
header nav #main-menu li ul li {
  white-space: nowrap;
}
header nav #main-menu li:hover ul {
  transform: scaleY(1);
  max-height: 220px;
  transition: max-height 300ms linear;
}
header nav #main-menu li:nth-of-type(odd) {
  transform: rotateZ(2deg);
}
header nav #main-menu li:nth-of-type(even) {
  transform: rotateZ(-3deg);
}

main {
  grid-area: 2/2/3/3;
}
main h1 {
  margin: 0.5em 0 1em 0;
}
main .div1 {
  width: 80%;
  margin: 0 auto 40px;
}
main .div1 h2 {
  text-indent: 2em;
}
main .div1 h3 {
  text-indent: 1em;
}
main .div1 p {
  margin: 0.5em auto;
  text-align: justify;
}
main .div1 p:nth-of-type(odd) {
  transform: translateX(-20px) rotateZ(-0.5deg);
}
main .div1 p:nth-of-type(even) {
  transform: translateX(20px) rotateZ(0.5deg);
}

footer {
  grid-area: 3/2/4/3;
  display: flex;
  justify-content: center;
  align-content: flex-end;
}
footer p {
  display: inline;
  font-size: 16px;
}

.deco {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("images/graphics/deco-border.png");
  background-repeat: repeat;
  background-size: 250px;
}
.deco .left {
  grid-area: 2/1/4/2;
  background-position: top right;
}
.deco .right {
  grid-area: 2/3/4/4;
  background-position: top left;
}

@media only screen and (max-width: 900px) {
  body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr 30px;
    grid-column-gap: 0;
    grid-row-gap: 0;
    padding: 10px 0;
    overflow-x: hidden;
  }
  header {
    max-width: none;
  }
  header nav {
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
  }
  header nav h1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
    margin: 0 10px;
  }
  header nav h1 a img {
    width: 100%;
    height: auto;
  }
  header nav #main-menu {
    justify-self: flex-start;
    grid-area: 2/1/3/2;
    display: flex;
    width: 100%;
    max-height: 50px;
    flex-direction: column;
    margin-right: 0;
    padding: 10px 0 10px 20px;
    box-shadow: 0 0 0 #3d428e;
    overflow-y: hidden;
    transition: max-height 200ms linear, box-shadow 200ms linear;
  }
  header nav #main-menu:hover {
    max-height: 700px;
    box-shadow: 0 10px 0 #3d428e;
  }
  header nav #main-menu li {
    margin-left: 0;
    text-align: left;
  }
  header nav #main-menu li#menu-header {
    display: block;
    max-height: 40px;
    padding-right: 20px;
    text-align: right;
    transition: max-height 200ms linear;
  }
  header nav #main-menu li:nth-of-type(odd) {
    transform: rotateZ(0.5deg);
  }
  header nav #main-menu li:nth-of-type(even) {
    transform: rotateZ(-0.5deg);
  }
  header nav #main-menu li .menu-title {
    display: none;
  }
  header nav #main-menu li .submenu {
    position: relative;
    right: auto;
    transform: scaleY(1) !important;
    max-height: none;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    overflow-y: visible;
  }
  header nav #main-menu li .submenu li:before {
    color: #cc924b;
  }
  header nav #main-menu li .submenu.galleries:before {
    content: "Galleries > ";
  }
  header nav #main-menu li .submenu.commissions:before {
    content: "Commissions > ";
  }
  header nav #main-menu li .submenu.quotes:before {
    content: "Quote Requests > ";
  }
  main {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  main:hover {
    transform: translate(0);
  }
  main h1 {
    font-size: 40px;
  }
  main .div1.info {
    padding: 0 10px;
  }
  main .div1.form {
    width: 90%;
  }
  main .div1.form form .field-collection field h3 {
    margin-left: 1em;
    font-size: 22px;
    text-align: left;
  }
  main .div1.form form .field-collection field p {
    transform: none;
    font-size: 18px;
  }
  main .div1.form form .field-collection field .entry.radio .option, main .div1.form form .field-collection field .entry.checkbox .option {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  main .div1.form form .field-collection field .entry.radio .option input, main .div1.form form .field-collection field .entry.checkbox .option input {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
  main .div1.form form .field-collection field .entry.radio .option label, main .div1.form form .field-collection field .entry.checkbox .option label {
    font-size: 20px;
  }
  main .div1 h2 {
    text-align: center;
    text-indent: 0;
  }
  main .div1 h3 {
    text-align: center;
    text-indent: 0;
  }
  main .div1 p {
    text-align: center;
  }
  footer {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .deco {
    z-index: -10;
    opacity: 0.1;
  }
}
main form .field-collection .field:has(#adult-yes:checked) ~ #age-verification-field {
  display: block !important;
}
main form .field-collection .field:has(#adult-yes:checked) ~ #age-verification-field ~ #diddle-doggo-field {
  display: block !important;
}
main form .field-collection .field:has(#copyright-no:checked) ~ #owner-contacts-field {
  display: block !important;
}
main form .field-collection .field:has(#copyright-fan:checked) ~ #fanart-disclaimer-field {
  display: block !important;
}

/*# sourceMappingURL=illustration-quote.css.map */
