.shadow-type1 {
  -moz-box-shadow: 1px 1px 3px #4E6075;
  -webkit-box-shadow: 1px 1px 3px #4E6075;
  box-shadow: 1px 1px 3px #4E6075;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
/* color scheme x
 based on https://color.adobe.com/library/b25afd7e-c17b-4205-8b30-214ba7831e41/theme/3acf6a73-dbd2-4429-bfe7-1453c51fff43/
 */
* {
  margin: 0;
  padding: 0;
}

body {
  font-size: 1.4em;
  color: #000000;
  font-family: "Raleway", Helvetica, Arial, sans-serif, Helvetica, Arial, sans-serif;
  background-image: url("/images/bg.jpg");
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

article a {
  color: #0c9307;
  font-weight: bold;
}

header {
  background-position: right -125px;
  background-repeat: no-repeat;
  display: block;
}

@media (min-width: 768px) and (max-width: 990px) {
  header {
    background-size: 100% auto;
    background-position: 120px -265px;
  }
}
@media (min-width: 991px) {
  header {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
  }
}
#mainContentHolder {
  padding-top: 20px;
}

#mainContent img {
  max-width: 100%;
  height: auto;
}

#top-info {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 0.8em;
}

.siteAdd {
  color: #ffffff;
  text-align: right;
}

.sitePhone {
  font-weight: bold;
  font-size: 0.9em;
  text-align: right;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  color: #95ad22;
}

.sitePhone a {
  color: #95ad22;
}

@media only screen and (max-width: 768px) {
  .sitePhone {
    font-weight: bold;
    font-size: 1.4em;
    text-align: center;
    padding-bottom: 10px;
  }
  .siteAdd {
    padding-top: 10px;
    text-align: center;
  }
}
header .glyphicon {
  font-size: 1em;
}

#billboardHolder {
  background: #95ad22;
}

h1, h2, h3 {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  color: darkslategray;
}

article h1 {
  font-size: 1.5em;
  margin-top: 0.3em;
  margin-bottom: 0.7em;
  margin-left: 0;
  border-bottom: solid #aec91f 0.1em;
}

article h2 {
  font-size: 1.3em;
  margin-left: 0.3em;
  margin-bottom: 21px;
}

article h3 {
  font-size: 1.1em;
  margin-left: 0.5em;
  margin-bottom: 21px;
}

@media (min-width: 769px) {
  article h1 {
    font-size: 1.8em;
  }
  article h2 {
    font-size: 1.5em;
  }
  article h3 {
    font-size: 1.3em;
  }
}
article p {
  font-size: 1.2em;
  margin-left: 1em;
  margin-right: 1em;
}

article dl {
  margin-left: 30px;
  display: block;
  overflow: hidden;
}

article dd {
  margin-left: 9px;
}

article ul, article ol {
  margin-left: 4em;
}

article ul li, article ol li {
  margin-bottom: 0.5em;
}

.childRollItem {
  text-align: center;
  position: relative;
  color: #BBBDC8;
  padding-bottom: 8px;
  margin-bottom: 1.5em;
  background-color: #0c9307;
  /*+box-shadow: 1px 1px 3px #4E6075;*/
  -moz-box-shadow: 1px 1px 3px #4E6075;
  -webkit-box-shadow: 1px 1px 3px #4E6075;
  box-shadow: 1px 1px 3px #4E6075;
}

.childRollItemThumb {
  display: block;
  overflow: hidden;
}

.childRollItemThumb a {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.childRollItemTitle {
  padding-top: 0.4em;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: center; /* align horizontal */
  align-items: center; /* align vertical */
}

.childRollItemTitle a {
  color: #aec91f;
}

.childRollItemDesc {
  margin-left: 10px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-right: 10px;
  font-size: 0.9em;
}

.childRollItemFooter {
  text-align: center;
}

.hidden {
  display: none;
}

/*Headers*/
/*Forms*/
/**/
/*OTHER*/
article table li {
  margin-left: 20px;
}

article table {
  font-size: 1em;
}

article table thead td {
  text-align: center;
  font-weight: bold;
  color: #6B6B6B;
  background: #E8E8E8;
}

#logo {
  text-align: center;
  position: relative;
}

#logo img {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  #logo img {
    width: 90%;
    margin: auto;
  }
}
.tag-line {
  display: block;
  animation-duration: 1s; /* the duration of the animation */
  animation-timing-function: ease-out; /* how the animation will behave */
  animation-delay: 0s; /* how long to delay the animation from starting */
  animation-iteration-count: 1; /* how many times the animation will play */
  animation-name: slideInFromLeft; /* the name of the animation we defined above */
  text-align: center;
  font-size: 1.3em;
}

@media (min-width: 769px) {
  .tag-line {
    text-align: center;
    margin-top: -1em;
    padding-bottom: 1em;
  }
}
#billboard {
  position: relative;
  padding: 0px;
  background: #95ad22;
  background-image: url("/images/billboard_bg.jpg");
}

#slideShow {
  max-width: 1024px;
  margin: auto;
}

@media (min-width: 769px) {
  #billboard {
    margin: auto;
    margin-bottom: 1em;
  }
}
.blogRollItemTitle {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-size: 1.3em;
  font-weight: bold;
}

.blogRollItemDate {
  margin-left: 0.5em;
  font-size: 0.7em;
  font-style: italic;
}

.calendarWidgetViewAll, .widget .blogViewAll, .widget .widget-view-all {
  text-align: right;
  font-size: 0.8em;
}

.calendarRollItemTitle {
  font-size: 1.3em;
  font-weight: bold;
}

.calendarRollItemDate {
  background-color: #95ad22;
  color: #ffffff;
  display: inline-block;
  padding: 0px 25px 0px 25px;
  margin-left: 1em;
}

.calendarRollItemDesc {
  width: 80%;
  margin: 0em 1em 0em 1em;
}

noscript div {
  background-color: #FFDF3A;
  width: 100%;
  color: #8F0101;
  padding: 10px;
  font-size: medium;
  position: relative;
}

/*WIDGETS*/
.widget .widgetTitle, .widget .widget-title {
  color: #f88a12;
  margin: 0;
  padding: 1px 5px 2px;
}

.widget {
  font-size: 0.9em;
  position: relative;
  color: #f88a12;
  margin-bottom: 12px;
  padding: 0 0 5px;
}

.widgetTitle {
  font-size: 1.4em;
}

#testimonialsWidget {
  margin-top: 20px;
}

#testimonialsWidget .widget-item-title {
  font-size: 1.1em;
  font-weight: bold;
}

#testimonialsWidget .widget-item-description {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}

.widget p {
  margin-left: 15px;
  margin-top: 5px;
}

.widget .readAll a {
  text-decoration: none;
}

.testimonialRollItem {
  margin: 1em;
}

.testimonialRollItemTitle {
  font-weight: bold;
  color: #f88a12;
}

.testimonialRollItemDate {
  font-size: 0.8em;
  display: none;
}

.testimonialRollItemDesc {
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  font-size: 0.9em;
  margin-left: 10px;
  margin-bottom: 10px;
}

.socialNetwork {
  float: right;
  padding: 2px 2px 10px 2px;
  padding: 2px 2px 10px 2px;
}

.socialNetwork {
  list-style: none;
}

ul.socialNetworks {
  list-style: none;
  margin-right: 10px;
  margin-bottom: 5px;
  display: inline;
}

.socialNetwork img {
  /*+box-shadow: 1px 1px 3px #656565;*/
  -moz-box-shadow: 1px 1px 3px #656565;
  -webkit-box-shadow: 1px 1px 3px #656565;
  box-shadow: 1px 1px 3px #656565;
  /*+border-radius: 2px;*/
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  border-radius: 2px;
}

#siteTag {
  font: 0.7em/1em sans-serif;
  color: #606060;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 3px;
  padding-bottom: 5px;
  margin: auto 5px 5px auto;
}

#siteTag a {
  color: #9A9A9A;
}

#leftBar {
  margin-top: 30px;
}

.label.label-danger p {
  display: inline;
}

#about blockquote {
  width: 70%;
  margin: auto auto 40px auto;
  background: rgba(236, 239, 241, 0.819);
}

.clearAll {
  clear: both;
}

#gallery {
  margin: 0;
  padding: 0;
}

#gallery ul {
  text-align: center;
  margin: 0 !important;
  padding: 0 !important;
}

#gallery ul li {
  display: inline-block !important;
  margin: 0;
  max-width: 250px;
  /*+placement: ;*/
  position: relative;
  left: 0;
  top: 0;
}

.personnel-item {
  display: block;
  overflow: hidden;
  background-color: #ffffff;
  -moz-box-shadow: 1px 1px 3px #4E6075;
  -webkit-box-shadow: 1px 1px 3px #4E6075;
  box-shadow: 1px 1px 3px #4E6075;
  font-size: 1em;
  margin: 15px 0 15px 0;
}

.personnel-item p {
  font-size: 0.9em;
}

.personnel-item-title {
  display: block;
  position: relative;
  padding-top: 5px;
  margin: 0px 10px 2px 10px;
  border-bottom: solid thin #aec91f;
  font-size: 1.3em;
  font-weight: bold;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
}

.personnel-item-image img {
  width: 40%;
  float: left;
  margin: 10px;
}

.personnel-item-contact {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 15px;
}

footer {
  overflow: hidden;
  text-align: center;
  display: block;
  background: #000000;
  padding-top: 13px;
}

.navbar-brand img {
  display: none;
}

footer p {
  padding-right: 5px;
  padding-left: 5px;
  color: #8D8D8D;
  font-size: small;
}

footer a {
  padding-left: 3px;
  padding-right: 3px;
  color: #FDFDFD;
  font-size: 0.8em;
}

ul#footerMenu {
  list-style: none inside none;
  margin: 0;
  padding: 0;
}

.siteMsg {
  font-size: small;
  padding: 5px;
  border: 1px solid #EFA5A5;
  border-radius: 5px;
  width: 90%;
  margin: 10px auto;
}

.siteMsg p {
  margin-bottom: 5px;
}

.cbLabel {
  font-size: small;
}

.special:hover {
  background: #FFFFFF;
}

#nav ul ul {
  padding-top: 5px;
}

#splash {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: #FFFFFF;
  z-index: 999999999999999;
  visibility: hidden;
}

.boxTitle {
  position: absolute;
  left: 5px;
  top: 3px;
}

.footer-providers img {
  max-height: 35px;
  -webkit-filter: grayscale(100%); /* Chrome, Safari, Opera */
  filter: grayscale(100%);
  margin-left: 5px;
  margin-right: 5px;
}

.responsive-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 60px;
  margin-bottom: 35px;
  overflow: hidden;
}

.responsive-iframe iframe, .responsive-iframe object, .responsive-iframe embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vcenter {
  display: inline-block;
  vertical-align: middle;
  float: none;
}

.form-group .control-label {
  margin: 0;
  font-size: 0.8em;
}

.btn-cust {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  text-align: center;
  border: solid medium #ffffff;
  box-shadow: inset 0 0 0 0 #0c9307;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  transition: all ease 0.8s;
  border-radius: 2px;
}

.btn-cust:hover {
  color: #ffffff;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: inset 0 0 0 22px #0c9307;
}

@media (min-width: 769px) {
  .page-section {
    padding-top: 15px;
  }
}
#billboard .galleria-info-description {
  margin-top: 10%;
}

.navbar-collapse {
  max-height: auto;
  overflow-x: auto;
}

.well {
  border-color: #aec91f;
}

.criteria-state-value {
  font-weight: bold;
}

#gc-details {
  font-size: 0.8em;
}

#gc-details p {
  margin-bottom: 1em;
}

.submitButton {
  text-align: center;
}

.bs-callout {
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #eee;
  border-left-width: 5px;
  border-radius: 3px;
}

.bs-callout h4 {
  margin-top: 0;
  margin-bottom: 5px;
}

.bs-callout p:last-child {
  margin-bottom: 0;
}

.bs-callout code {
  border-radius: 3px;
}

.bs-callout + .bs-callout {
  margin-top: -5px;
}

.bs-callout-default {
  border-left-color: #777;
}

.bs-callout-default h4 {
  color: #777;
}

.bs-callout-primary {
  border-left-color: #428bca;
}

.bs-callout-primary h4 {
  color: #428bca;
}

.bs-callout-success {
  border-left-color: #5cb85c;
}

.bs-callout-success h4 {
  color: #5cb85c;
}

.bs-callout-danger {
  border-left-color: #d9534f;
}

.bs-callout-danger h4 {
  color: #d9534f;
}

.bs-callout-warning {
  border-left-color: #f0ad4e;
}

.bs-callout-warning h4 {
  color: #f0ad4e;
}

.bs-callout-info {
  border-left-color: #5bc0de;
}

.bs-callout-info h4 {
  color: #5bc0de;
}

.btn-primary {
  color: #ffffff;
  background-color: #0c9307;
  border-color: #95ad22;
  background-image: linear-gradient(#0c9307, #0c9307 3%, #95ad22);
}

span.metaDescTag {
  font-size: 0.7em;
  float: none;
  position: relative;
}

#badgeLinks {
  text-align: left;
  padding-left: 10px;
}

@media only screen and (max-width: 768px) {
  #badgeLinks {
    text-align: center;
    padding: 0;
  }
}
#badgeLinks img {
  height: 50px;
  padding-bottom: 3px;
}

.ws_bullets img {
  width: 85px;
  height: 48px;
}

#fbPluginHolder {
  display: block;
  margin-top: 2em;
}

#wine-list {
  background-image: url("/images/bgbl.gif");
  background-repeat: repeat;
}

#visit-us {
  background-image: url("/images/bggr.png");
  background-repeat: repeat;
}

@media only screen and (min-width: 768px) {
  .is-table-row {
    display: table;
  }
  .is-table-row [class*=col-] {
    float: none;
    display: table-cell;
    vertical-align: top;
  }
}
.included-page {
  margin-top: 3em;
}

.print-images {
  display: none;
}

#main-contact {
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  font-weight: bold;
  font-size: 1.3em;
  z-index: 9;
}

.shadow-type1 {
  -moz-box-shadow: 1px 1px 3px #4E6075;
  -webkit-box-shadow: 1px 1px 3px #4E6075;
  box-shadow: 1px 1px 3px #4E6075;
}

#listRoll_pages.cards .listRollItem .btn {
  color: #ffffff;
  border-color: #ffffff;
}

#listRoll_pages.cards .btn-cust:hover {
  color: #0c9307;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: inset 0 0 0 22px #0c9307;
}

@media screen and (min-width: 768px) {
  #listRoll_pages.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align: center;
    align-items: center;
  }
  #listRoll_pages.cards .listRollItem {
    flex-basis: 50%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    color: #5b5f71;
    background-color: #0c9307;
    overflow: hidden;
  }
}
@media screen and (min-width: 960px) {
  #listRoll_pages.cards .listRollItem {
    flex-basis: 33.333334%;
  }
}
@media screen and (min-width: 1200px) {
  #listRoll_pages.cards .listRollItem {
    flex-basis: 25%;
  }
}
@media screen and (max-width: 768px) {
  #listRoll_pages.cards .listRollItem {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: flex-start;
    text-align: center;
    color: #5b5f71;
    background-color: #0c9307;
    overflow: hidden;
  }
}
#listRoll_pages.cards .listRollItemThumb {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#listRoll_pages.cards .listRollItemThumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#listRoll_pages.cards .listRollItemTitle {
  background-color: rgba(12, 147, 7, 0.6);
  font-family: "Raleway", Helvetica, Arial, sans-serif;
  max-width: 95%;
  margin-top: 2em;
  padding: 0.4em;
  font-size: 1.1em;
  font-weight: 600;
  text-align: left;
  z-index: 5;
  opacity: 1;
  transition: 0.5s ease;
}

#listRoll_pages.cards .listRollItemFooter {
  z-index: 2;
  text-align: center;
  opacity: 1;
  transition: 0.5s ease;
}

#listRoll_pages.cards .listRollItem:hover > .listRollItemTitle {
  background-color: #f88a12;
  margin-top: 0px;
}

#listRoll_pages.cards .listRollItem:hover > .listRollItemTitle a {
  color: #000000;
}

#listRoll_pages.cards .listRollItem:hover > .listRollItemFooter {
  opacity: 0;
}

#listRoll_pages.cards .listRollItem a {
  color: #ffffff;
  text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.1), 1px 1px 1px rgba(0, 0, 0, 0.5);
}

#listRoll_pages.cards .listRollItemTitle a {
  border: none;
}

#listRoll_pages.cards .listRollItemDesc {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.8em;
  font-weight: 500;
  padding: 1em;
  height: 100%;
  background: #0c9307;
  color: #ffffff;
  opacity: 0;
  transition: 0.5s ease;
  -webkit-transform: rotateY(90deg);
  -moz-transform: rotateY(90deg);
  -o-transform: rotateY(90deg);
  -ms-transform: rotateY(90deg);
  transform: rotateY(90deg);
  transform-style: preserve-3d;
  display: flex;
  vertical-align: center;
  align-items: center; /* align vertical */
  z-index: 3;
}

#listRoll_pages.cards .listRollItemDesc p {
  margin: auto;
  padding: 0px;
}

#listRoll_pages.cards .listRollItem:hover .listRollItemDesc {
  opacity: 0.9;
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  cursor: pointer;
  width: 100%;
}

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