
/*BOOTSTRAP OVERRIDES*/
div.item.active {
max-height: 240px;
}
div.item.active img {
overflow-y: hidden;
}
.hero-banner {
  overflow:hidden;
  max-height:400px;
}
.container {
 max-width: 922px;
}
body {
 font-family: 'Open Sans', Sans Serif;
 color: #272525;
 font-size: 16px;
 line-height: 26px;
}
a, a:active, a:focus, a:visited, a:hover {
 color: #272525;
 text-decoration: underline;
}
 a:hover {
text-decoration:none;
}
.btn, .btn-default {
 border-radius: 0;
 cursor: pointer;
 font-size: 14px;
 padding: 10px 30px;
 text-align: center;
 text-decoration: none;
 text-transform: uppercase;
 background-color: #8b8b8b;
 border: 1px solid #8b8b8b;
 color: #ffffff;
}
.btn:hover, .btn-default:hover {
 color: #ffffff;
 background-color: #000000;
 border: 1px solid #000000;
}
h1, h2, h3, h4, h5, h6, h7 {
 text-align: center;
 line-height: 1.15em;
 margin: 0px;
font-family: 'Balthazar', 'Helvetica-Neue Light', Serif;
text-transform:uppercase;
}
h1, h2, h3 {
 margin: 10px;
color:#751308;
}
h1 {
 font-size: 36px;
margin-top:28px;
}
h3 {
 font-size: 25px;
}
h4 {
 line-height: 1.2;
 margin-bottom: 17px;
}
p {
 padding-left: 10px;
 padding-right: 10px;
}
.alert-danger{
margin-top:20px;
}
/*CUSTOM CLASSES*/
.top-nav {
 background-color: #fff;
 padding: 20px;
 color: #000;
 text-align: center;
 top: 0px;
 position: fixed;
 right: 0;
 left: 0;
 z-index: 1050;
}
.logo {
 width: 100%;
 max-width: 130px;
}
.enjoy-responsibly {
 width: 80px;
 padding-top: 15px;
}
.social-icon {
 width: 40px;
 margin: 15px;
}
.nav-links {
 padding-top: 20px;
}
.menu-link, .menu-link:active, .menu-link:focus, .menu-link:visited, .menu-link:hover {
 color: #272525;
 text-decoration: none;
text-transform:uppercase;
font-family: 'Balthazar', 'Helvetica-Neue Light', Serif;
font-size: 20px;
}
.menu-link:hover {
text-decoration:none;
text-shadow: 0 0 0.3px #000;
padding-bottom:10px;
border-bottom: 3px solid #272525;
}
.footer-link, .footer-link:active, .footer-link:focus, .footer-link:visited, .footer-link:hover, footer-title {
 color: #ffffff;
 text-decoration: none;
}
.footer-link:hover {
text-decoration:none;
}
.body-content {
 position: relative;
 top: 140px;
 z-index: 1;
}
.bottle-shot {
 height: 250px;
 margin: 0 auto;
 padding: 15px;
 border: 0;
}
.read-more {
 cursor: pointer;
}
.paragraph-lead {
font-weight: bold;
}
/*just for building
      div{
      border:0.25px solid;
      }*/
@media (min-width:768px) {
.body-content {
 top: 180px;
}
.bottle-shot {
 height: 300px;
}
p {
 padding-left: 10px;
 padding-right: 10px;
}
}
.bottom-nav {
 padding: 20px;
 background-color: #272525;
 color: #dad3ca;
 text-align: center;
 right: 0;
 left: 0;
 z-index: 1050;
 max-width: 100%;
 width: 100%;
 margin-top: 20px;
}
/* KYLES AWESOME CSS FOR COLUMNS AND READ MORES */ 
{
 box-sizing: border-box;
}
/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.33%;
    padding: 0px;
}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
.column {
    width: 100%;
}
}
/* READ MORE BUTTON CSS */ 
.read-more-state {
    display: none;
}
.read-more-target {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: 0s ease;
    text-align: justify;
    font-family: 'Montserrat', 'Helvetica-Neue Light', sans-serif;
    line-height: 22px;
    color: #000000;
}
.read-more-state:checked ~ .read-more-wrap .read-more-target {
    opacity: 1;
    max-height: 999em;
    text-align: justify;
    font-family: 'Montserrat', 'Helvetica-Neue Light', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}
.read-more-state ~ .read-more-trigger:before {
    content: 'Read more';
}
.read-more-state:checked ~ .read-more-trigger:before {
    content: 'Read less';
}
.read-more-trigger {
    cursor: pointer;
    display: inline-block;
    padding: 0 .5em;
    color: #666;
    font-size: .9em;
    line-height: 2;
    border: 1px solid #ddd;
    border-radius: .25em;
}
