/* --- general styles --- */
* {
  box-sizing: border-box;
}

html,
body {
  color: black;
  background-color: white;
  font: 400 100%/125% Helvetica, Arial, sans-serif;
  padding: 0;
  margin: 0;
}

body {
  min-width: 320px;
}

h1 {
  font: normal 2.25rem/2.75rem Helvetica, Arial, sans-serif;
  letter-spacing: -0.5px;
  margin: 15px 10px;
}

h2 {
  font: normal 1.75rem/2.5rem Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  margin: 25px 10px;
}

h3 {
  font: normal 1.25rem/1.75rem Helvetica, Arial, sans-serif;
  letter-spacing: -0.5px;
  margin: 15px 10px;
}

h5 {
  font: normal 1.1rem/1.25rem Helvetica, Arial, sans-serif;
  font-variant: normal;
  letter-spacing: 0;
  margin: 10px 10px;
  text-align: center;
}

p,
li {
  font: 1rem/1.25rem Helvetica, Arial, sans-serif;
  letter-spacing: 0.5px;
  margin: 15px 10px;
}

a,
a:active,
a:link,
a:visited {
  color: #004c2f;
  text-decoration: none;
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}

a,
a:active {
  color: #2cfaf0;
}

a:hover,
a:focus {
  outline: 0;
  color: #00c97c;
  text-decoration: underline;
}

a img {
  padding: 0;
  margin: 0;
  display: block;
}

img {
  max-width: 100%;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  /* for IE 11 */
  display: none;
}

select {
  display: block;
  background-color: #f2ffd7;
  background-image: url("/images/select-triangle.svg");
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.75em auto, 100%;
  font: 0.88em Helvetica, Arial, sans-serif;
  padding: 10px 35px 10px 10px;
  border: 1px solid #cccccc;
  border-radius: 2px;
}

input,
textarea {
  border: 3px solid #cccccc;
  font: 0.88em Verdana, sans-serif;
  width: 100%;
  max-width: 100%;
  margin: 4px 0 8px;
  padding: 12px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 2px;
}
input:focus,
textarea:focus {
  outline: 0;
  border: 3px solid #555555;
}

textarea {
  vertical-align: top;
  resize: none;
  field-sizing: content;
  min-height: 12em;
}

::placeholder {
  color: #cccccc;
}

.force-opaque::placeholder {
  opacity: 1;
}

label {
  display: inline-block;
  color: #505050;
  margin: 1em 0 0;
}

.button,
input[type=submit] {
  display: block;
  background: rgb(27, 125, 87);
  background: -moz-linear-gradient(0deg, rgb(27, 125, 87) 0%, rgb(0, 76, 47) 100%);
  background: -webkit-linear-gradient(0deg, rgb(27, 125, 87) 0%, rgb(0, 76, 47) 100%);
  background: linear-gradient(0deg, rgb(27, 125, 87) 0%, rgb(0, 76, 47) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b7d57",endColorstr="#004c2f",GradientType=1);
  border-radius: 3px;
  border: none;
  color: white !important;
  font-size: 1.25em;
  padding: 10px 50px;
  margin: 16px auto 32px;
  width: max-content;
  text-decoration: none;
}

input[type=submit] {
  margin-top: 32px;
}

.button:hover,
input[type=submit]:hover,
.button:focus,
input[type=submit]:focus {
  background: rgb(52, 226, 158);
  background: -moz-linear-gradient(0deg, rgb(52, 226, 158) 0%, rgb(0, 149, 92) 100%);
  background: -webkit-linear-gradient(0deg, rgb(52, 226, 158) 0%, rgb(0, 149, 92) 100%);
  background: linear-gradient(0deg, rgb(52, 226, 158) 0%, rgb(0, 149, 92) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#34e29e",endColorstr="#00955c",GradientType=1);
  border: none;
  text-decoration: none;
}

.button {
  margin-top: 20px;
}

.error {
  font-weight: bold;
  font-size: 90%;
  color: red;
  border: 1px solid red;
  padding: 5px;
}

ul {
  list-style: square;
}

ul.none {
  list-style: none;
}

li {
  margin: 0 0 0.5em 0;
  padding: 0;
}

strong {
  font-weight: bold;
}

em,
cite {
  font-style: italic;
}

.big {
  font-size: 125%;
}

.small {
  font-size: 75%;
}

.grow {
  font-size: 115%;
}

.shrink {
  font-size: 85%;
}

.tiny {
  font-size: 56%;
}

.noshow {
  display: none !important;
}

.nowrap {
  white-space: nowrap;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.aligntop {
  vertical-align: top;
}

.alignbottom {
  vertical-align: bottom;
}

.floatleft {
  float: left;
  margin-right: 20px;
}

.floatright {
  float: right;
  margin-right: 20px;
}

.clear {
  clear: both;
}

.extraspace {
  margin-top: 20px;
  margin-bottom: 20px;
}

.extrabigspace {
  margin-top: 40px;
  margin-bottom: 40px;
}

.spacer {
  padding: 0 4px;
}

.indent {
  text-indent: 1.5em;
}

.middle {
  vertical-align: middle;
}

.baseline {
  vertical-align: baseline;
}

.bottom {
  vertical-align: bottom;
}

.link {
  cursor: pointer;
}

.mb0 {
  margin-bottom: 0;
}

.mt30 {
  margin-top: 30px;
}

/* --- containers --- */
div,
table,
th,
td,
img {
  padding: 0;
  border-width: 0;
  margin: 0;
}

table {
  width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
mark,
nav,
section,
summary,
time {
  display: block;
}

form {
  margin: 25px auto 50px;
  max-width: 800px;
}

iframe {
  border: none;
}

#container {
  text-align: center;
}

/* --- header tweaks --- */
header {
  position: relative;
  text-align: left;
  margin: 0 auto;
  padding: 3.75vh 0 35px;
  width: 95%;
  max-width: 1400px;
  overflow: hidden;
}

#toggle-menu-icon {
  display: none;
  cursor: pointer;
  text-align: center;
  padding: 10px 0 5px;
  width: 100%;
}

.menu-icon-bar1,
.menu-icon-bar2,
.menu-icon-bar3 {
  background-color: #bc412b;
  width: 35px;
  height: 2px;
  margin: 4px auto;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

#logo-col,
#nav-col {
  display: table-cell;
}

#logo-col {
  max-width: 60%;
}

#logo-top {
  width: 100%;
  max-width: 500px;
}

#nav-col {
  text-align: right;
  padding-bottom: 16px;
  vertical-align: bottom;
}

#nav-container {
  display: table;
  width: 100%;
}

#navigation .spacer-img {
  width: 8%;
  height: 1px;
}
#navigation p {
  font-size: 1.4em;
  margin: 0;
  white-space: nowrap;
}
#navigation a {
  color: #004c2f;
  border-bottom: 1px solid white;
  text-decoration: none;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
#navigation a:hover {
  color: #00c97c;
  border-bottom: 1px solid #00c97c;
  text-decoration: none;
}
#navigation a.selected {
  color: #239b3c;
}
#navigation a.selected:hover {
  color: #239b3c;
}

#current a {
  color: #942d1b;
}
#current a.selected {
  color: #bc412b;
}
#current a:hover, #current a.selected:hover {
  color: #bc412b;
  border-bottom: 1px solid #bc412b;
  text-decoration: none;
}

.red {
  color: #bc412b;
}

/* --- main tweaks --- */
#bio-text {
  text-align: left;
}

#category-header {
  position: relative;
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
}

.centerbox {
  margin: 1em auto;
  text-align: center;
  min-height: 400px;
}
.centerbox.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.centerbox > h1:first-child {
  margin-top: 0;
}
.centerbox img {
  -webkit-transition: 0.75s;
  -moz-transition: 0.75s;
  -o-transition: 0.75s;
  transition: 0.75s;
  -webkit-animation: fadeIn 2s; /* Safari, Chrome and Opera > 12.1 */
  animation: fadeIn 2s;
}
.centerbox .now-showing {
  display: inline-block;
  font-size: 1.2em;
  margin: 1.5em auto 1em;
  padding: 15px 20px;
  border: 1px solid black;
}

.constrained {
  margin: 0 auto;
  max-width: 900px;
  width: 95%;
}

.gallery {
  padding-left: 100px;
  padding-right: 100px;
}

.credits li {
  font-size: 0.9em;
}
.credits ul {
  margin-bottom: 1.5em;
}
.credits h1 {
  font-size: 2.5rem;
  line-height: 3rem;
}

.portfolio-entrance,
.portfolio-image {
  display: inline-block;
  position: relative;
  margin: 0 8px 10px;
  width: initial;
}
.portfolio-entrance img,
.portfolio-image img {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  height: 280px;
  width: 350px;
  vertical-align: bottom;
}
.portfolio-entrance::after, .portfolio-entrance:after,
.portfolio-image::after,
.portfolio-image:after {
  content: "";
  clear: both;
  display: table;
}

.portfolio-entrance a,
.portfolio-image a,
.art-image a {
  color: black;
  display: block;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.portfolio-entrance a:hover img, .portfolio-entrance a:hover img, .portfolio-entrance a:hover img,
.portfolio-image a:hover img,
.portfolio-image a:hover img,
.portfolio-image a:hover img,
.art-image a:hover img,
.art-image a:hover img,
.art-image a:hover img {
  color: #942d1b;
  border-bottom: none;
  box-shadow: rgba(0, 0, 0, 0.8) 0px 5px 6px, inset rgba(0, 0, 0, 0.15) 0px -10px 20px;
}
.portfolio-entrance a:hover, .portfolio-entrance a:hover, .portfolio-entrance a:hover,
.portfolio-image a:hover,
.portfolio-image a:hover,
.portfolio-image a:hover,
.art-image a:hover,
.art-image a:hover,
.art-image a:hover {
  text-decoration: none;
}

.caption {
  width: 350px;
  padding-bottom: 0.25em;
}
.caption h1 {
  font-size: 1.8rem;
  line-height: 2rem;
  margin-top: 0.25em;
  margin-bottom: 1.5rem;
}

.art-image {
  margin: 0 auto 10px;
  width: 100%;
  max-width: 667px;
}

.wider .art-image {
  width: 100%;
  max-width: 750px;
}

.art-image img,
.art-image iframe,
video {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  vertical-align: bottom;
  margin: 0.5em 0;
}

.art-image.photography {
  margin: 2.5em auto;
}

.art-image.about {
  max-width: 880px;
}

.details {
  width: 95%;
  margin: 15px auto;
}

.initial-cap {
  font-size: 2rem;
  font-family: cursive;
}

.slash {
  color: #ccc;
  margin: 0 5px;
}

.nospam {
  float: left;
  border: 2px solid white;
  margin-right: 10px;
  margin-bottom: 10px;
}

#toggle-sold-btn {
  position: absolute;
  right: 0;
  bottom: 6px;
  background-color: #eee;
  color: black;
  border: none;
  padding: 6px 12px;
  border-radius: 3px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
#toggle-sold-btn:hover {
  background-color: #71f7c3;
}
#toggle-sold-btn.active {
  background-color: #00c97c;
}

/* --- footer tweaks --- */
footer {
  text-align: left;
  margin: 0 auto;
  padding: 15px 0 50px;
  width: 95%;
  max-width: 1400px;
}
footer p {
  font-size: 0.85em;
  font-family: Helvetica;
  letter-spacing: 0;
  color: #004c2f;
  margin: 0;
  padding: 0;
}
footer a {
  color: #004c2f;
  text-decoration: none;
}
footer a:hover {
  color: #00c97c;
  text-decoration: underline;
}
footer a.selected {
  color: #239b3c;
}

#social-icons {
  float: left;
  height: 20px;
  width: 20px;
  margin-right: 7px;
  margin-top: -2px;
}

#social-icons-phone {
  display: none;
  margin: 15px auto 20px;
}

.icon_ig {
  width: 20px;
  height: 20px;
  fill: #004c2f;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  vertical-align: bottom;
}
.icon_ig:hover {
  fill: #00c97c;
}

.ig_link_container:hover .icon_ig {
  fill: #00c97c;
}

#footer-links {
  float: left;
}

#copyright {
  float: right;
  text-align: right;
}

/* -- other -- */
#contact-btn-low {
  opacity: 0;
}
#contact-btn-low.animateMe {
  opacity: 1;
  -webkit-animation: zoomFadeIn 1s ease; /* Safari, Chrome and Opera > 12.1 */
  animation: zoomFadeIn 1s ease;
}

.showbox {
  margin-bottom: 15px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  padding: 35px;
}

.icon_map {
  fill: #004c2f;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  vertical-align: text-top;
}

.icon_map,
.icon_map use {
  width: 20.46px;
  height: 28px;
}

#icon_back2top {
  fill: #004c2f;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  vertical-align: text-top;
}

#icon_back2top,
#icon_back2top use {
  width: 40px;
  height: 37.68px;
}

#back2top_link_container {
  position: fixed;
  bottom: 90px;
  right: 8px;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
}

.icon_map:hover {
  fill: #00c97c;
}

.map_link_container:hover .icon_map {
  fill: #00c97c;
}

/* -- animation --- */
/* -- zoomFadeIn -- */
@keyframes zoomFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5, 0.5);
  }
  70% {
    transform: scale(1.01, 1.01);
  }
  80% {
    transform: scale(0.95, 0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
/* Firefox < 16 */
@-moz-keyframes zoomFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5, 0.5);
  }
  70% {
    transform: scale(1.01, 1.01);
  }
  80% {
    transform: scale(0.95, 0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes zoomFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5, 0.5);
  }
  70% {
    transform: scale(1.01, 1.01);
  }
  80% {
    transform: scale(0.95, 0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
/* Internet Explorer */
@-ms-keyframes zoomFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5, 0.5);
  }
  70% {
    transform: scale(1.01, 1.01);
  }
  80% {
    transform: scale(0.95, 0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
/* Opera < 12.1 */
@-o-keyframes zoomFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5, 0.5);
  }
  70% {
    transform: scale(1.01, 1.01);
  }
  80% {
    transform: scale(0.95, 0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
/* -- fadeIn -- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Internet Explorer */
@-ms-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Opera < 12.1 */
@-o-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* --- media queries --- */
@media screen and (min-width: 1300px) {
  .no-orphan {
    display: inline-block;
    white-space: nowrap;
  }
  #content {
    width: 90%;
  }
}
/* --- for med tablets & reg screen --- */
@media screen and (min-width: 800px) and (max-width: 1299.98px) {
  footer p {
    font-size: 0.95em;
    line-height: 100%;
  }
}
/* --- for all mobile devices --- */
@media screen and (max-width: 1099.98px) {
  h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}
@media screen and (min-width: 800px) and (max-width: 1099.98px) {
  header {
    text-align: center;
    padding: 0;
  }
  #logo-top {
    width: 80%;
    margin: 30px auto 0;
  }
  #logo-col,
  #nav-col,
  #nav-container {
    display: block;
    max-width: none;
    width: 100%;
  }
  #navigation {
    margin-bottom: 15px;
  }
  #navigation p {
    text-align: center;
    margin: 18px auto 0;
    white-space: normal;
  }
}
@media screen and (min-width: 700px) and (max-width: 1099.98px) {
  .gallery {
    padding-left: 50px;
    padding-right: 50px;
  }
}
/* --- for all mobile devices --- */
@media screen and (max-width: 799.98px) {
  header,
  footer {
    text-align: center;
    padding: 0;
  }
  #logo-top {
    width: 80%;
    margin: 30px auto 10px;
  }
  #logo-col,
  #nav-col,
  #nav-container {
    display: block;
    max-width: none;
    width: 100%;
  }
  #navigation {
    margin-bottom: 15px;
  }
  #navigation p {
    text-align: center;
    margin: 15px auto 0;
    white-space: normal;
  }
  .art-image img,
  .art-image iframe,
  video {
    max-width: 95%;
  }
  footer {
    padding-top: 15px;
  }
  #social-icons {
    float: none;
    display: none;
  }
  #social-icons-phone {
    display: block;
  }
  .icon_ig {
    height: 32px;
    width: 32px;
  }
  #footer-links {
    float: none;
    margin-bottom: 10px;
    text-align: center;
  }
  #copyright {
    float: none;
    font-size: 0.85em;
    text-align: center;
    margin-bottom: 25px;
  }
}
/* --- for small tablets & lg phones --- */
@media screen and (min-width: 550px) and (max-width: 799.98px) {
  footer p {
    font-size: 1.2em;
    line-height: 1.1em;
  }
}
@media screen and (max-width: 699.98px) {
  .portfolio-entrance img,
  .portfolio-image img {
    height: auto;
  }
  .gallery {
    padding-left: 0;
    padding-right: 0;
  }
}
/* --- non phones --- */
@media screen and (min-width: 550px) {
  #back2top_link_container.view {
    background-color: white;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/* --- for most phones --- */
@media screen and (max-width: 549.98px) {
  #container {
    -webkit-transition: 0.75s;
    -moz-transition: 0.75s;
    -o-transition: 0.75s;
    transition: 0.75s;
  }
  #logo-top {
    width: 93%;
  }
  #toggle-menu-icon {
    display: block !important;
  }
  #navigation a {
    display: none;
  }
  #navigation a:hover {
    text-decoration: none;
  }
  #navigation .spacer-img {
    display: none;
  }
  #navigation p {
    font-size: 2em;
    line-height: 1.75em;
    margin-top: 0px;
  }
  #navigation p a:hover {
    background: #f3ffb6;
  }
  #navigation {
    opacity: 0;
    height: 0;
    -webkit-transition: 0.75s;
    -moz-transition: 0.75s;
    -o-transition: 0.75s;
    transition: 0.75s;
  }
  #navigation.change {
    opacity: 1;
    height: auto;
    padding-top: 13px;
  }
  #navigation.change a {
    display: block;
  }
  #nav-col {
    padding-bottom: 15px;
  }
  .current h1 {
    font-size: 2.25rem;
    line-height: 2.75rem;
    border-bottom: 1px solid #333;
    padding-bottom: 25px;
  }
  .address {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .icon_map,
  .icon_map use {
    width: 14.62px;
    height: 20px;
  }
  .showbox {
    box-shadow: none;
    padding: 5px;
    padding-bottom: 45px;
    border-bottom: 1px solid #333;
  }
  .change .menu-icon-bar1 {
    -webkit-transform: rotate(-45deg) translate(-7.5px, 7.5px);
    -ms-transform: rotate(-45deg) translate(-7.5px, 7.5px);
    transform: rotate(-45deg) translate(-7.5px, 7.5px);
  }
  .change .menu-icon-bar2 {
    opacity: 0;
  }
  .change .menu-icon-bar3 {
    -webkit-transform: rotate(45deg) translate(-7.5px, -7.5px);
    -ms-transform: rotate(45deg) translate(-7.5px, -7.5px);
    transform: rotate(45deg) translate(-7.5px, -7.5px);
  }
  .change .menu-icon-bar1,
  .change .menu-icon-bar2,
  .change .menu-icon-bar3 {
    width: 32px;
    margin: 8.2px auto;
  }
  .portfolio-entrance,
  .portfolio-image {
    margin-left: 0;
    margin-right: 0;
  }
  footer p {
    font-size: 1.3em;
    line-height: 1.3em;
  }
}
@media screen and (max-width: 831.98px) {
  .centerbox.flex {
    flex-direction: column;
    align-items: center;
  }
  #toggle-sold-btn {
    position: unset;
    margin-bottom: 15px;
  }
}

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