/* The gallery overlay */
#galleryOverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 100000;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  display: none;

  -moz-transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

/* This class will trigger the animation */
#galleryOverlay.visible {
  opacity: 1;
}

#gallerySlider {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  -moz-transition: left 0.4s ease;
  -webkit-transition: left 0.4s ease;
  transition: left 0.4s ease;
}

#gallerySlider .placeholder {
  background: url("../images/preloader.gif") no-repeat center center;
  height: 100%;
  line-height: 1px;
  text-align: center;
  width: 100%;
  display: inline-block;
}

/* The before element moves the
 * image halfway from the top */
#gallerySlider .placeholder:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#gallerySlider .placeholder img {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
}

#gallerySlider.rightSpring {
  -moz-animation: rightSpring 0.3s;
  -webkit-animation: rightSpring 0.3s;
}

#gallerySlider.leftSpring {
  -moz-animation: leftSpring 0.3s;
  -webkit-animation: leftSpring 0.3s;
}

/* Firefox Keyframe Animations */

@-moz-keyframes rightSpring {
  0% {
    margin-left: 0px;
  }

  50% {
    margin-left: -30px;
  }

  100% {
    margin-left: 0px;
  }
}

@-moz-keyframes leftSpring {
  0% {
    margin-left: 0px;
  }

  50% {
    margin-left: 30px;
  }

  100% {
    margin-left: 0px;
  }
}

/* Safari and Chrome Keyframe Animations */

@-webkit-keyframes rightSpring {
  0% {
    margin-left: 0px;
  }

  50% {
    margin-left: -30px;
  }

  100% {
    margin-left: 0px;
  }
}

@-webkit-keyframes leftSpring {
  0% {
    margin-left: 0px;
  }

  50% {
    margin-left: 30px;
  }

  100% {
    margin-left: 0px;
  }
}

/* Arrows */

#prevArrow,
#nextArrow {
  border: none;
  text-decoration: none;
  background: url('../images/arrows.png') no-repeat;
  opacity: 0.5;
  cursor: pointer;
  position: absolute;
  width: 43px;
  height: 58px;

  top: 50%;
  margin-top: -29px;

  -moz-transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

#prevArrow:hover,
#nextArrow:hover {
  opacity: 1;
}

#prevArrow {
  background-position: left top;
  left: 40px;
}

#nextArrow {
  background-position: right top;
  right: 40px;
}


/* FLUIDBOX */
@-webkit-keyframes a {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateX(0) rotateY(0);
    transform: translate(-50%, -50%) rotateX(0) rotateY(0)
  }

  50% {
    -webkit-transform: translate(-50%, -50%) rotateX(-180deg) rotateY(0);
    transform: translate(-50%, -50%) rotateX(-180deg) rotateY(0)
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotateX(-180deg) rotateY(-180deg);
    transform: translate(-50%, -50%) rotateX(-180deg) rotateY(-180deg)
  }
}

@keyframes a {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateX(0) rotateY(0);
    transform: translate(-50%, -50%) rotateX(0) rotateY(0)
  }

  50% {
    -webkit-transform: translate(-50%, -50%) rotateX(-180deg) rotateY(0);
    transform: translate(-50%, -50%) rotateX(-180deg) rotateY(0)
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotateX(-180deg) rotateY(-180deg);
    transform: translate(-50%, -50%) rotateX(-180deg) rotateY(-180deg)
  }
}

.fluidbox {
  outline: none
}

.fluidbox__overlay {
  opacity: 0.7;
  cursor: pointer;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: -100%;
  left: 0;
  bottom: -100%;
  right: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out
}

.fluidbox--opened .fluidbox__overlay {
  pointer-events: auto
}

.fluidbox__wrap {
  background-position: center center;
  background-size: cover;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out
}

.fluidbox--closed .fluidbox__thumb,
.fluidbox__thumb {
  -webkit-transition: opacity 0s ease-in-out 0s;
  transition: opacity 0s ease-in-out 0s
}

.fluidbox__ghost {
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  -webkit-transition: opacity 0s 0s, -webkit-transform .5s 0s;
  transition: opacity 0s 0s, -webkit-transform .5s 0s;
  transition: opacity 0s 0s, transform .5s 0s;
  transition: opacity 0s 0s, transform .5s 0s, -webkit-transform .5s 0s
}

.fluidbox--opened .fluidbox__ghost {
  cursor: pointer;
  cursor: zoom-out
}

.fluidbox--closed .fluidbox__ghost {
  -webkit-transition: opacity 0s .5s, -webkit-transform .5s 0s;
  transition: opacity 0s .5s, -webkit-transform .5s 0s;
  transition: opacity 0s .5s, transform .5s 0s;
  transition: opacity 0s .5s, transform .5s 0s, -webkit-transform .5s 0s
}

.fluidbox__loader {
  opacity: 0;
  -webkit-perspective: 200px;
  perspective: 200px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0
}

.fluidbox__loader:before {
  background-color: hsla(0, 0%, 100%, .85);
  content: '';
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20%;
  padding-bottom: 20%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s
}

.fluidbox--loading .fluidbox__loader {
  opacity: 1;
  -webkit-transition: opacity .5s ease-in-out .5s;
  transition: opacity .5s ease-in-out .5s
}

.fluidbox--loading .fluidbox__loader:before {
  -webkit-animation: a 1s 0s infinite ease-in-out forwards;
  animation: a 1s 0s infinite ease-in-out forwards
}

/* FLEX MASONRY */
.flex-mason {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-mason .item {
  position: relative;
  width: 33%;
}

.zooom img {
  width: 100%;
  display: block;
  border-bottom: 5px solid #EEE;
  -webkit-transition: all .2s !important;
  transition: all .2s !important;
}



@media (max-width: 768px) {
  .flex-mason {
    height: auto;
  }

  .flex-mason .item {
    width: 50%;
  }
}


/* MAIN STYLES
================ */

body {
  position: relative;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  letter-spacing: 0px;
}

section1,
article1 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.nav-push {
  margin-top: -55px;
  padding-top: 55px;
}

@media(min-width:768px) {
  .nav-push {
    margin-top: -70px;
    padding-top: 70px;
  }
}


/* Equal Height Columns */
.row {
  overflow: hidden;
}

.choicesPayment .row {
  overflow: inherit;
  margin-left: 0;
  margin-right: 0;
}

.choicesPayment #year,
.choicesPayment #month {
  margin-left: 5%;
}

.row.overflow {
  overflow: visible;
}

.row.no-overflow {
  overflow: hidden;
}

.main-content {
  /* No article white line fix */
  margin-top: -1px;
  padding: 40px 0px;
}

[class*="full-height"] {
  margin-bottom: -99999px;
  padding-bottom: 99999px;
}

[class*="col-"].snug {
  padding-left: 0px;
  padding-right: 0px;
}

/* .aside-left {border-right:1px solid #F1F1F1;}
.aside-right{border-left:1px solid #F1F1F1;} */


/* Headings */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
  font-weight: 400;
  line-height: 1;
  color: #777
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small {
  font-size: 60%
}

.h4,
.h5,
.h6,
h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px
}

.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
  font-size: 70%
}

.h1,
h1 {
  font-size: 36px
}

.h2,
h2 {
  font-size: 30px
}

.h3,
h3 {
  font-size: 24px
}

.h4,
h4 {
  font-size: 18px
}

.h5,
h5 {
  font-size: 14px
}

.h6,
h6 {
  font-size: 12px
}


/* Section Padding */
.padded-xl {
  padding: 120px 0px;
}

.padded-lg {
  padding: 100px 0px;
}

.padded-md {
  padding: 80px 0px;
}

.padded-sm {
  padding: 60px 0px;
}

/* Module Padding */
.mod-pad-xl {
  padding: 120px;
}

.mod-pad-lg {
  padding: 100px;
}

.mod-pad-md {
  padding: 80px;
}

.mod-pad-sm {
  padding: 60px;
}


/* Section Spacing */
.spacer-xl {
  margin: 120px 0px;
}

.spacer-lg {
  margin: 100px 0px;
}

.spacer-md {
  margin: 80px 0px;
}

.spacer-sm {
  margin: 60px 0px;
}

/* Module Spacing */
.mod-shift-xl {
  margin: 120px;
}

.mod-shift-lg {
  margin: 100px;
}

.mod-shift-md {
  margin: 80px;
}

.mod-shift-sm {
  margin: 60px;
}

.mod-shift-xs {
  margin: 40px;
}




/* Added Padding */
.blocks .custom,
.no-pad .custom {
  padding-bottom: 0px;
}

@media (max-width:1199px) {
  .padded-xl {
    padding: 110px 0px;
  }

  .padded-lg {
    padding: 90px 0px;
  }

  .padded-md {
    padding: 70px 0px;
  }

  .padded-sm {
    padding: 50px 0px;
  }

  .mod-pad-xl {
    padding: 70px;
  }

  .mod-pad-lg {
    padding: 60px;
  }

  .mod-pad-md {
    padding: 50px;
  }

  .mod-pad-sm {
    padding: 40px;
  }

  .spacer-xl {
    margin: 110px 0px;
  }

  .spacer-lg {
    margin: 90px 0px;
  }

  .spacer-md {
    margin: 70px 0px;
  }

  .spacer-sm {
    margin: 50px 0px;
  }

  .mod-shift-xl {
    margin: 90px;
  }

  .mod-shift-lg {
    margin: 70px;
  }

  .mod-shift-md {
    margin: 50px;
  }

  .mod-shift-sm {
    margin: 30px;
  }

  .mod-shift-xs {
    margin: 10px;
  }
}

@media (max-width:980px) {
  .padded-xl {
    padding: 100px 0px;
  }

  .padded-lg {
    padding: 80px 0px;
  }

  .padded-md {
    padding: 60px 0px;
  }

  .padded-sm {
    padding: 40px 0px;
  }

  .mod-pad-xl {
    padding: 60px;
  }

  .mod-pad-lg {
    padding: 50px;
  }

  .mod-pad-md {
    padding: 40px;
  }

  .mod-pad-sm {
    padding: 30px;
  }

  .spacer-xl {
    margin: 100px 0px;
  }

  .spacer-lg {
    margin: 80px 0px;
  }

  .spacer-md {
    margin: 60px 0px;
  }

  .spacer-sm {
    margin: 40px 0px;
  }

  .mod-shift-xl {
    margin: 100px;
  }

  .mod-shift-lg {
    margin: 80px;
  }

  .mod-shift-md {
    margin: 60px;
  }

  .mod-shift-sm {
    margin: 40px;
  }

  .mod-shift-xs {
    margin: 20px;
  }

  .h1,
  h1 {
    font-size: 34px
  }

  .h2,
  h2 {
    font-size: 28px
  }

  .h3,
  h3 {
    font-size: 22px
  }

  .h4,
  h4 {
    font-size: 16px
  }

  .h5,
  h5 {
    font-size: 12px
  }

  .h6,
  h6 {
    font-size: 10px
  }
}

@media (max-width:768px) {
  .padded-xl {
    padding: 90px 0px;
  }

  .padded-lg {
    padding: 70px 0px;
  }

  .padded-md {
    padding: 50px 0px;
  }

  .padded-sm {
    padding: 30px 0px;
  }

  .mod-pad-xl {
    padding: 50px;
  }

  .mod-pad-lg {
    padding: 40px;
  }

  .mod-pad-md {
    padding: 30px;
  }

  .mod-pad-sm {
    padding: 20px;
  }

  .spacer-xl {
    margin: 90px 0px;
  }

  .spacer-lg {
    margin: 70px 0px;
  }

  .spacer-md {
    margin: 50px 0px;
  }

  .spacer-sm {
    margin: 30px 0px;
  }

  .mod-shift-xl {
    margin: 90px;
  }

  .mod-shift-lg {
    margin: 70px;
  }

  .mod-shift-md {
    margin: 50px;
  }

  .mod-shift-sm {
    margin: 30px;
  }

  .mod-shift-xs {
    margin: 10px;
  }

  .h1,
  h1 {
    font-size: 32px
  }

  .h2,
  h2 {
    font-size: 26px
  }

  .h3,
  h3 {
    font-size: 20px
  }

  .h4,
  h4 {
    font-size: 14px
  }

  .h5,
  h5 {
    font-size: 10px
  }

  .h6,
  h6 {
    font-size: 8px
  }

  .aside-right,
  .aside-left {
    margin-top: 40px;
  }
}

@media (max-width:480px) {
  .padded-xl {
    padding: 90px 0px;
  }

  .padded-lg {
    padding: 70px 0px;
  }

  .padded-md {
    padding: 50px 0px;
  }

  .padded-sm {
    padding: 30px 0px;
  }

  .mod-pad-xl {
    padding: 50px;
  }

  .mod-pad-lg {
    padding: 40px;
  }

  .mod-pad-md {
    padding: 30px;
  }

  .mod-pad-sm {
    padding: 20px;
  }

  .spacer-xl {
    margin: 90px 0px;
  }

  .spacer-lg {
    margin: 70px 0px;
  }

  .spacer-md {
    margin: 50px 0px;
  }

  .spacer-sm {
    margin: 30px 0px;
  }

  .mod-shift-xl {
    margin: 90px;
  }

  .mod-shift-lg {
    margin: 70px;
  }

  .mod-shift-md {
    margin: 50px;
  }

  .mod-shift-sm {
    margin: 30px;
  }

  .mod-shift-xs {
    margin: 10px;
  }

  .h1,
  h1 {
    font-size: 30px
  }

  .h2,
  h2 {
    font-size: 24px
  }

  .h3,
  h3 {
    font-size: 18px
  }

  .h4,
  h4 {
    font-size: 12px
  }

  .h5,
  h5 {
    font-size: 8px
  }

  .h6,
  h6 {
    font-size: 6px
  }
}


.page-header {
  border: 0px none;
}

.heading {
  font-size: 20px;
}

.subheading {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 60px;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.black-text,
.black-text a,
.black-text a:visited,
.black-text a:focus {
  color: #272727;
}

p {
  letter-spacing: 0px;
  line-height: 28px;
}

.custom p {
  margin: 0px;
}

.custom .btn {
  margin-bottom: 0px;
}

a {
  outline: none !important;
}

hr {
  width: 50%;
  max-width: 300px;
}




.section-title {
  text-align: center;
  padding-bottom: 32px;
}

.mod-title {
  margin-top: 10px;
  margin-bottom: 30px;
}

.medium-icon {
  font-size: 32px !important;
}

.search button.btn {
  margin: 0px;
}

.search input[type="search"] {
  border: 2px solid #DDDDDD;
  height: 48px;
}

.search input[type="search"]:focus {
  border-color: #AAAAAA;
}



/* Article Typeography */
.item-page .item-body p {
  margin-bottom: 15px;
}

.item-page .item-body img {
  max-width: 100%;
}

.item-page .item-image img {
  max-width: 100%;
  width: 100%;
}

p.img_caption {
  margin-bottom: 0px;
  padding: 5px 15px;
  font-style: italic;
  background-color: #fafafa;
  font-weight: 400;
  font-size: 12px;
}

.item-page .item-body h1 {
  margin: 60px 0px 20px;
}

.item-page .item-body h2 {
  margin: 50px 0px 20px;
}

.item-page .item-body h3 {
  margin: 45px 0px 20px;
}

.item-page .item-body h4 {
  margin: 40px 0px 20px;
}

.item-page .item-body h5 {
  margin: 35px 0px 20px;
}

.item-page .item-body h6 {
  margin: 30px 0px 20px;
}

.item-page .item-body ul,
.item-page .item-body ol {
  margin: 30px 0px;
}

.item-page .item-body ul li ul,
.item-page .item-body ol li ol {
  margin: 20px 0px;
}



#copyright p {
  margin-top: 7px;
  font-size: 16px;
  line-height: 2.5;
}

.copyright-container {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #212121;
}

#copyright .copyright-container .license p {
  font-size: 10px;
  font-weight: 300;
  line-height: 14px;
  color: #777;
}

.copyright-container img {
  width: 100%;
  max-width: 100%;
}

.license {}


.mmlogos {
  text-align: center;
}

.media-logos {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  text-align: center;
}

.media-logos li {
  display: inline-block;
  max-width: 27%;
  margin: 0% 1%;
}

.media-logos li img {
  width: 100%;
  max-width: 100%;
}

/* Globals
===================== */
.wow:first-child {
  /*visibility: hidden;*/
}

.wow {
  /*visibility: hidden;*/
}

.threedee {
  text-shadow:
    0 1px 0 #ccc,
    0 2px 0 #c9c9c9,
    0 3px 0 #bbb,
    0 4px 0 #b9b9b9,
    0 5px 0 #aaa,
    0 6px 1px rgba(0, 0, 0, .1),
    0 0 5px rgba(0, 0, 0, .1),
    0 1px 3px rgba(0, 0, 0, .3),
    0 3px 5px rgba(0, 0, 0, .2),
    0 5px 10px rgba(0, 0, 0, .25),
    0 10px 10px rgba(0, 0, 0, .2),
    0 20px 20px rgba(0, 0, 0, .15);
}


.items-more {
  display: none;
}

/* Buttons
===================== */
.btn,
.btn-default {
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  padding: 10px 33px 10px 34px;
  margin: 20px 0px;
  border: 2px solid #444444;
  border-radius: 0px;
  color: #444444;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@media (max-width:768px) {

  .btn,
  .btn-default {
    font-size: 13px;
    line-height: 20px;
    padding: 7px 20px 7px 21px;
  }
}

.btn.btn-primary {
  background-color: transparent;
  border-color: #B4D2D4;
  color: #B4D2D4;
}

.btn.btn-light {
  background-color: transparent;
  border-color: #f9f9f9;
  color: #f9f9f9;
}

.btn.btn-dark {
  background-color: transparent;
  border-color: #444444;
  color: #444444;
}

.btn:hover,
.btn-default:hover,
.btn.btn-primary:hover {
  text-decoration: none;
  background: #B4D2D4;
  border-color: #B4D2D4;
  color: #ffffff;
}



.btn.btn-light:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #444444;
}

.btn.btn-dark:hover {
  background-color: #444444;
  border-color: #444444;
  color: #f9f9f9;
}


/* Lists Style */
[class*="list-"] ul {
  list-style-type: none;
  padding-left: 2em;
}

[class*="list-"] ul li {
  line-height: 120%;
  font-size: 100%;
  margin-bottom: 15px;
}

[class*="list-"] ul li ul li {
  margin-bottom: 10px;
  font-size: 90%;
  line-height: 110%;
}

.list-featured li:before {
  font-family: 'FontAwesome';
  content: "\f10c";
  display: inline-block;
  margin-left: -2em;
  width: 2em;
  color: #00a0b8;
}

.list-featured li ul li:before {
  font-size: 80%;
  color: #75C8E8;
}

.list-disc li:before {
  font-family: 'FontAwesome';
  content: "\f111";
  display: inline-block;
  margin-left: -2em;
  width: 2em;
  color: #DDDDDD;
}

.list-disc li ul li:before {
  font-size: 80%;
  color: #BBBBBB;
}

/* Generic lists */
.list-alphabet ul,
.list-alphabet ul li {
  list-style-type: lower-alpha !important;
}

.list-lowerroman ul,
.list-lowerroman ul li {
  list-style-type: lower-roman !important;
}

.list-upperroman ul,
.list-upperroman ul li {
  list-style-type: upper-roman !important;
}

.list-number ul,
.list-number ul li {
  list-style-type: decimal !important;
}

.list-zero-number ul,
.list-zero-number ul li {
  list-style-type: decimal-leading-zero !important;
}



/* WELLS macros */

.well {
  border: 0px none;
  border-bottom: 3ps solid;
  border-radius: 0px;
  padding: 20px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 2px 0px rgba(205, 205, 205, 0.6);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 2px 0px rgba(205, 205, 205, 0.6));
  margin: 20px 0px 30px;
}

.well h1,
.well h2,
.well h3 {
  margin-top: 20px !important;
  margin-bottom: 30px !important;
}

.well h4,
.well h5,
.well h6 {
  margin-top: 10px !important;
  margin-bottom: 20px !important;
}

.well.color1 {
  border-color: #B4D2D4;
}

.well.color2 {
  border-color: #dce4e6;
}

.well.color3 {
  border-color: #2B2B2B;
}

.well.dark {
  border-color: #373737;
}

.well.light {
  border-color: #dce4e6;
}

.well.white {
  border-color: #B4D2D4;
}

.well p {
  margin: 15px 0px;
}



/* Pannels macros */
.panel {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.panel-default>.panel-heading {
  background-color: #333333;
}

.panel-primary>.panel-heading {
  background-color: #00a0b8;
}

.panel-success>.panel-heading {
  background-color: #5cb85c;
}

.panel-info>.panel-heading {
  background-color: #00a0b8;
}

.panel-warning>.panel-heading {
  background-color: #f0ad4e;
}

.panel-danger>.panel-heading {
  background-color: #f0ad4e;
}



/*
  navigation section
===================== */
.navbar * {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.navbar {
  border: none;
  margin: 0 !important;
  padding: 0;
  border-radius: 0px;
}

.navbar .navbar-nav {
  margin: 0px -15px;
}

.navbar .navbar-nav li .separator {
  cursor: default;
}

.navbar .navbar-nav li a,
.navbar .navbar-nav li .separator {
  background-color: transparent;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 40px;
  padding: 15px;
  display: inline-block;
  position: relative;
}


.context-menu .navbar-nav li a,
.context-menu .navbar-nav li a:focus,
.context-menu .navbar-nav li .separator {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 40px;
  height: 40px;
  padding: 0px 20px;
  display: block;
}

.context-menu .navbar-nav li a:hover,
.context-menu .navbar-nav li .separator:hover,
.context-menu .navbar-nav>.active>.separator,
.context-menu .navbar-nav>.active>a,
.context-menu .navbar-nav>.active>a:hover,
.context-menu .navbar-nav>.active>a:focus,
.context-menu .navbar-nav>.current>.separator,
.context-menu .navbar-nav>.current>a,
.context-menu .navbar-nav>.current>a:hover,
.context-menu .navbar-nav>.current>a:focus {
  color: #FFFFFF;
  background-color: #00a0b8;
}

.navbar .navbar-nav>li:after {
  position: absolute;
  bottom: 0px;
  display: block;
  width: 100%;
  height: 0px;
  content: "";
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}


.navbar .navbar-nav>li:hover:after,
.navbar .navbar-nav>li.current:after,
.navbar .navbar-nav>li.active:after,
.navbar .navbar-nav>li.open:after {
  height: 7px;
}


.navbar .navbar-toggle {
  border: none;
  padding-top: 10px;
}

.navbar .navbar-toggle .icon-bar {
  background: #B4D2D4;
  border-color: transparent;
}

.navbar .navbar-toggle:hover,
.navbar .navbar-toggle:focus {
  background-color: transparent
}



.navbar .navbar-nav>li:hover>.dropit {
  -webkit-animation: dropit 0.2s forwards;
  -moz-animation: dropit 0.2s forwards;
  -o-animation: dropit 0.2s forwards;
  animation: dropit 0.2s forwards;
}

.navbar .navbar-nav>li.open:hover>.dropit {
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}

@-webkit-@keyframes dropit {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(2px);
  }
}

@-moz-@keyframes dropit {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(2px);
  }
}

@-o-@keyframes dropit {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(2px);
  }
}

@keyframes dropit {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(2px);
  }
}

/* Menu Drop Down */
.dropit,
.dropit * {
  -webkit-transition-duration: 0.15s;
  -moz-transition-duration: 0.15s;
  -ms-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}

.dropit {
  display: inline-block;
  width: 40px;
  height: 45px;
  margin-left: -10px;
  position: relative;
  line-height: 30px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}


.open .dropit {
  color: #FFFFFF;
}

.dropdown-menu {
  display: block;
  max-height: 0px;
  border-radius: 0px;
  float: none;
  border: 0px none;
  background-color: #B4D2D4;
  overflow: hidden;
  margin: 0px auto;
  padding: 0px;
  text-align: center;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  -webkit-transition: max-height 0.4s linear;
  -moz-transition: max-height 0.4s linear;
  -o-transition: max-height 0.4s linear;
  transition: max-height 0.4s linear;
}


.open>.dropdown-menu {
  max-height: 80px;
  height: auto;
  -webkit-transition: max-height 0.4s linear;
  -moz-transition: max-height 0.4s linear;
  -o-transition: max-height 0.4s linear;
  transition: max-height 0.4s linear;
}

.navbar-nav .dropdown-menu li {
  display: inline-block;
}

.navbar-nav .dropdown-menu>a,
.navbar .navbar-nav li .dropdown-menu li a {
  padding: 10px 15px;
  color: #FFFFFF;
}

.navbar-nav .open .dropdown-menu>a:after {
  display: none !important;
}

.navbar .navbar-nav .dropdown-menu>.active>a,
.navbar .navbar-nav .dropdown-menu>.active>a:hover,
.navbar .navbar-nav .dropdown-menu>.active>a:focus,
.navbar .navbar-nav .dropdown-menu>.current>a,
.navbar .navbar-nav .dropdown-menu>.current>a:hover,
.navbar .navbar-nav .dropdown-menu>.current>a:focus,
.navbar .navbar-nav li .dropdown-menu li a:hover,
.navbar .navbar-nav li .dropdown-menu li a:focus,
.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
  color: #171717;
  background-color: transparent;
}

/* @media (min-width:991px){
	.dropit {
		display:none;
	}
} */



/*
  Set new breakpoint for Mobile Menu 991px */

@media (max-width: 991px) {
  .navbar-header {
    float: none;
  }

  .navbar-left,
  .navbar-right {
    float: none !important;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-collapse {
    border-top: 1px solid transparent;
    /*box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); */
  }

  .navbar-fixed-top {
    /* top: 0;
		border-width: 0 0 1px; */
  }

  .navbar-collapse.collapse {
    display: none !important;
  }

  .navbar-nav {
    float: none !important;
    /* margin-top: 7.5px; */
  }

  .navbar-nav>li {
    float: none;
  }

  .navbar .navbar-nav li:after {
    display: none !important;
  }

  .navbar-nav>li>a {
    /*  padding-top: 10px;
		padding-bottom: 10px; */
  }

  .collapse.in {
    display: block !important;
  }

  .dropit {
    display: block;
    width: 60px;
    height: 50px;
    border-left: 0px solid #222222;
    position: absolute;
    right: 0px;
    top: 0px;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    color: #4D4D4D;
  }

  .dropit:hover,
  .open .dropit {
    background-color: #222222;
  }

  .navbar .navbar-nav>li:hover>.dropit,
  .navbar .navbar-nav>li.open:hover>.dropit {
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    animation: none;
  }

  .navbar-nav .dropdown-menu,
  .navbar-nav .open .dropdown-menu {
    background-color: #222222;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    margin: 0px auto;
    padding: 0px 15px;
    text-align: left;
    left: 0px;
    right: 0px;
  }

  .open>.dropdown-menu {
    max-height: 300px;
    height: auto;
  }

  .navbar-nav li {
    border-bottom: 1px solid #222222;
  }

  .navbar-nav .dropdown-menu li {
    display: block;
  }

  .navbar .navbar-nav li a,
  .navbar .navbar-nav li .separator {
    padding: 5px 15px;
    display: block;
  }

  .navbar-nav .dropdown-menu>a,
  .navbar .navbar-nav li .dropdown-menu li a {
    padding: 10px 15px;
    display: block;
    color: #777777;
    line-height: 20px;
  }

  .navbar .navbar-nav .dropdown-menu>.active>a,
  .navbar .navbar-nav .dropdown-menu>.active>a:hover,
  .navbar .navbar-nav .dropdown-menu>.active>a:focus,
  .navbar .navbar-nav .dropdown-menu>.current>a,
  .navbar .navbar-nav .dropdown-menu>.current>a:hover,
  .navbar .navbar-nav .dropdown-menu>.current>a:focus,
  .navbar .navbar-nav li .dropdown-menu li a:hover,
  .navbar .navbar-nav li .dropdown-menu li a:focus,
  .dropdown-menu>.active>a,
  .dropdown-menu>.active>a:focus,
  .dropdown-menu>.active>a:hover {
    color: #FFFFFF;
    background-color: transparent;
  }
}




/* Mobile menu animation */
.nav-toggle {
  width: 30px;
  height: 30px;
  position: relative;
  margin: 18px 20px 0px 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.nav-toggle {}

.nav-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.nav-toggle span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

.nav-toggle span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

.nav-toggle span:nth-child(1),
.nav-toggle span:nth-child(2) {
  top: 0px;
}

.nav-toggle span:nth-child(3),
.nav-toggle span:nth-child(4) {
  top: 9px;
}

.nav-toggle span:nth-child(5),
.nav-toggle span:nth-child(6) {
  top: 18px;
}

.nav-toggle.open span:nth-child(1),
.nav-toggle.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-toggle.open span:nth-child(2),
.nav-toggle.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-toggle.open span:nth-child(1) {
  left: 2px;
  top: 4px;
}

.nav-toggle.open span:nth-child(2) {
  left: calc(50% - 3px);
  top: 4px;
}

.nav-toggle.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

.nav-toggle.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

.nav-toggle.open span:nth-child(5) {
  left: 2px;
  top: 14px;
}

.nav-toggle.open span:nth-child(6) {
  left: calc(50% - 3px);
  top: 14px;
}

.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse {
  max-height: 440px;
}

/***** NAVBAR HEADROOM */
.navbar--fixed {
  position: fixed;
  right: 0px;
  left: 0px;
  top: 0px;
  z-index: 100;
}

.headroom {
  will-change: transform;
  transition: transform 200ms linear;
}

.headroom--pinned {
  transform: translateY(0%);
}

.headroom--unpinned {
  transform: translateY(-100%);
}


/***** FOOTER MENU */
.footer-menu {
  text-align: center;
  margin: 15px auto;
}

.footer-menu .menu li {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-menu .menu span,
.footer-menu .menu li a,
.footer-menu .menu li a:visited,
.footer-menu .menu li a:active {
  padding: 5px 15px;
  color: #727272;
  background-color: none;
}

.footer-menu .menu span:hover,
.footer-menu .menu>li>a:hover,
.footer-menu .menu>li>a:focus,
.footer-menu .menu span:visited:hover,
.footer-menu .menu li a:visited:hover {
  cursor: pointer;
  color: #272727;
  background-color: transparent;
}

.footer-menu .dropit {
  display: none;
}

/***** SVG LOGO */

/* SVG */
.svg-logo {
  display: block;
}

.no-svg .svg-logo {
  display: none;
}

.svg-logo .white {
  fill: #15809D;
}

.svg-logo .blue {
  fill: #FFFFFF;
}

/* no SVG fallback */
.logofallback {
  display: none;
}

.no-svg .logofallback {
  display: block;
}

.no-svg .logo.white {
  opacity: 1;
}

.no-svg .logo.color {
  opacity: 0;
}

/* SVG */
.opened .svg-logo .white {
  fill: #FFFFFF;
}

.opened .svg-logo .blue {
  fill: #15809D;
}

/* no SVG fallback */
.no-svg .logo.white {
  opacity: 0;
}

.no-svg .logo.color {
  opacity: 1;
}


/***** MAIN LOGO */
.logo {
  max-width: 200px;
}

.mandoon-logo img,
.footer-logo .footerlogo {
  display: block;
  max-width: 100%;
}

.mandoon-logo,
.footer-logo {
  display: block;
  padding: 10px 20px 10px 0px;
}


/* Context menu */
.fixed {
  position: fixed;
  top: 71px;
  /* update js in index.php if this changes */
  z-index: 987;
}

.push {
  margin-bottom: 39px;
}

.context-menu {
  width: 100%;
  background-color: transparent;
  border: 1px solid #f0f0f0;
  border-bottom-width: 3px;
  border-top-width: 3px;
  border-radius: 7px;
  padding: 20px 10px;
  margin-top: 20px;
}

.context-menu .page-header {
  margin: 0px 0px 20px;
  padding: 0px 0px 20px 15px;
  border-bottom: 1px solid #f0f0f0;
}

.context-menu .nav>li>a {
  color: #999;
  padding: 15px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.context-menu .nav>li>a:focus,
.context-menu .nav>li>a:hover,
.context-menu .nav>li.current>a {
  background-color: transparent;
  text-decoration: none;
  color: #272727;
}

@media (max-width:991px) {
  .push {
    margin-bottom: 0px;
  }
}

/*
  Page titles
  =================== */

.mainheading-wrapper {
  background-size: cover;
  margin: 0px -15px;
}


/*
  slider section
===================== */
#slider {
  height: 980px;
  padding-top: 0px;
  text-align: center;
}

#slider .container-fluid,
#slider .row,
#slider .slider-cap {
  height: 100%;
}

.slider-cap {
  display: table;
  text-align: center;
  width: 100%;
}

.slider-cap .custom {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  padding: 0px;
  margin: 0px;
}

.slider-cap h4 {
  max-width: 600px;
  margin: 0px auto;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFF;
}

#slider .btn {
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 0;
  color: #ffffff;
  font-weight: bold;
  padding: 12px 42px;
  margin: 40px 4px;
  transition: all 0.4s ease-in;
}

#slider .btn:hover {
  border-color: #B4D2D4;
  background-color: #B4D2D4;
}

#slider .btn-danger {
  border-color: transparent;
}


/*
  feature section
===================== */
#feature .col-md-12 {
  padding-top: 30px;
  padding-bottom: 40px;
}

#feature h3 {
  font-size: 16px;
}

/* Bar titles */
.block-title {
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin: 0px -15px;
  line-height: 80px;
}

.block-title.dark {
  color: #FFF !important;
}

.title-block-module .custom {
  padding: 0px;
  margin: 0px -15px;
}

.item-page .item-image {
  margin-top: 20px;
  margin-bottom: 30px;
  /* border-bottom-width: 5px;
	border-bottom-style: solid; */
}



/*
  Homepage Page Menus
  =================== */
#list-menu * {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#list-menu li {
  border-bottom: 1px solid;
}

#list-menu li:last-child {
  border-bottom: none;
}

#list-menu li a,
#list-menu li a:visited,
#list-menu li span.separator {
  display: block;
  padding: 0px;
  color: inherit;
  font-size: 14px;
  line-height: 65px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

#list-menu li a:hover,
#list-menu li a:visited:hover,
#list-menu li span.separator:hover {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}

.white #list-menu li {
  border-color: #f1f1f1;
  color: #2b2b2b;
}

.dark #list-menu li {
  border-color: #353535;
}

.color1 #list-menu li {
  border-color: #1f90ad;
  color: #FFF;
}

.white #list-menu li:hover {
  background-color: #fafafa;
  text-indent: 10px;
}

.light #list-menu li:hover {
  background-color: #eeeeee;
  text-indent: 10px;
}

.dark #list-menu li:hover {
  background-color: #353535;
  text-indent: 10px;
}

.color1 #list-menu li:hover {
  background-color: #1f90ad;
  text-indent: 10px;
}


@media (max-width:768px) {
  .sub-list.mod-pad-md {
    padding: 0px !important;
  }

  .block-title {
    line-height: 65px;
  }

  #list-menu li a,
  #list-menu li a:visited,
  #list-menu li span.separator {
    line-height: 55px;
    text-align: center;
  }

  .white #list-menu li:hover {
    background-color: #fafafa;
    text-indent: 0px;
  }

  .light #list-menu li:hover {
    background-color: #eeeeee;
    text-indent: 0px;
  }

  .dark #list-menu li:hover {
    background-color: #353535;
    text-indent: 0px;
  }

  .color1 #list-menu li:hover {
    background-color: #1f90ad;
    text-indent: 0px;
  }
}

@media (max-width:480px) {
  .block-title {
    line-height: 65px;
    font-size: 20px;
  }
}




/* Top Contact Info */

.top-contact>.custom {
  padding-bottom: 0px;
}

.top-contact-info {
  margin: 0px;
  padding: 0px 20px;
  list-style-type: none;
  font-family: inherit;
}

.top-contact-info h4 {
  margin-top: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.top-contact-info li {
  border-bottom: 1px solid #1f90ad;
  padding: 10px 0px;
}

.top-contact-info li:first-child {
  padding: 0px;
}

.top-contact-info li:first-child,
.top-contact-info li:last-child {
  border: 0px none;
}

.top-contact-info icon {}

.top-contact-info li a {
  color: #FFFFFF;
  line-height: 34px;
  display: block;
}

.top-contact-info li a:hover {
  text-decoration: none;
  color: #FFF;
}

.top-contact-info li a:hover icon {
  color: #1f90ad;
}


/* Notice */
.notice>.custom {
  background: no-repeat 105% center;
}

.welcome-title {
  display: block;
  margin: 0px auto;
  padding: 60px 10px 30px;
  max-width: 900px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 300;
}

.welcome-text {
  display: block;
  margin: 0px auto;
  padding: 10px 10px 60px;
  max-width: 1200px;
  letter-spacing: 1px;
  font-weight: 300;
  opacity: 0.6;
}


/*
  services section
===================== */
.services-horiz {
  display: block;
  padding: 40px;
  overflow: visible;
}

.service-item {
  background-color: #FFF;
  box-shadow: 0 3px 5px rgba(10, 140, 170, 0.1), 0 20px 30px rgba(10, 140, 170, 0.3);
  color: #999999;
  margin: 0px 20px;
}

.service-padd {
  padding: 40px 40px 100px;
  text-align: center;
  height: 100%;
  position: relative;
}

.service-padd .newsflash-title {
  border-bottom: 3px solid #B4D2D4;
  color: #272727;
  margin-bottom: 40px;
  margin-top: 0px;
  padding-bottom: 30px;
  text-transform: uppercase;
}

.service-item .btn-quote {
  position: absolute;
  left: 0px;
  bottom: 0px;
  margin: 0px;
  padding: 25px;
  background-color: #f9f9f9;
  border: 0px none;
  border-top: 1px solid #f0f0f0;
  font-family: "Montserrat", "Arial";
  text-transform: uppercase;
}

.service-item .btn-quote.readmore {
  border-left: 1px solid #f0f0f0;
}

.service-item .btn-quote:hover {
  background-color: #B4D2D4;
  border-color: #B4D2D4;
}




/* FEATURED WINES */
.featured-wine-container *,
.wines .item-image img {
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.featured-wines .padding {
  padding: 30px 0px 40px;
}

.featured-wines {
  padding-top: 40px;
  padding-bottom: 50px;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.swipe-padding {
  padding: 0px 2px;
}

.featured-wine-container {
  position: relative;
  overflow: hidden;
}

.featured-wine-img {
  text-align: center;
}

.featured-wine-img img,
.wines .item-image img {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  z-index: 2;
}

.featured-wine-img img {
  opacity: 0.6;
}

.blackout {
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 1px;
  z-index: 1;
}

.featured-wine-info {
  /*position: absolute;
	bottom: -80px;*/
  text-align: center;
  width: 100%;
  opacity: 0;
  z-index: 3;
}

.featured-wine-info a:hover {
  text-decoration: none;
}

.featured-wine-title {
  background-color: rgba(0, 0, 0, 0);
  text-align: center;
  padding: 10px;
  font-size: 1em;
  line-height: 1.2em;
  color: #444444;
  margin: 0px;
}

.featured-wine-intro {
  display: none;
}

.featured-wine-container:hover .featured-wine-info {
  bottom: 0px;
  opacity: 1;
  transition-delay: 0.05s;
}

.featured-wine-container:hover .featured-wine-title {
  background-color: rgba(0, 0, 0, 0);
}

.featured-wine-title:hover {
  color: #272727;
  text-decoration: none;
}

.featured-wine-container:hover .featured-wine-img img,
.wines .item-image:hover img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  transition-duration: 0.3s;
}

.featured-wine-container:hover .featured-wine-img .blackout {
  background-color: rgba(0, 0, 0, 0.05);
  height: 100%;
  bottom: 0px;
  transition-duration: 0.5s;
}

.owl-theme .owl-controls .owl-page span {
  background-color: transparent;
  border: 1px solid #CCC;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background-color: #272727;
}

@media (max-width:678px) {
  .featured-wine-container .featured-wine-info {
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0);
    opacity: 1;
    margin-top: -40px;
  }

  .featured-wine-container .featured-wine-title {
    font-size: 1em;
    line-height: 1.25em;
  }

  .featured-wine-container .featured-wine-img {
    margin-top: -30px;
  }

  .featured-wine-container .featured-wine-img img {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 1;
  }

  .featured-wine-container:hover .featured-wine-img img {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 1;
  }
}




/********** OUR WINES */

.wines .item-image {
  text-align: center;
}

.wines .item-image img {
  width: auto !important;
  max-width: 100%;
}

.wines .item-title {
  text-align: center;
  font-size: 18px;
}

.wines #main-content {
  background: url(../../../images/crest-bg.png) no-repeat fixed -20% 30px #FFF;
  padding: 90px 0px;
}

.wine-badge {
  float: right;
  margin: 44px 0px 0px 20px;
}

.wine-header-block {
  overflow: hidden;
}

.wine-notice {
  font-size: 1.1em;
}

.wine-badge ul,
.wine-awards ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.wine-badge ul li,
.wine-awards ul li,
.wine-awards ul li img {
  width: 70px;
  height: 70px;
  display: inline;
  display: -moz-inline-stack;
}

.wine-badge img {
  max-width: 240px;
}

.wine-header-block {
  padding: 18px 0 18px;
  margin: 30px 0px;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}

.wine-heading {
  text-transform: uppercase;
  padding: 0px;
  margin: 0px;
}

h3.wine-location {
  text-transform: lowercase;
  padding: 0px;
  margin: 0px;
}

.wines .wine-heading {
  font-size: 4em;
  line-height: 0.8em;
}

h3.wine-location {
  font-size: 2em;
  line-height: 1em;
}

.wine-awards {
  margin: 0px;
  display: inline-block;
  width: auto;
}

.wine-awards .gallery li {
  margin-right: -34px;
}

.wine-awards .gallery li:last-child {
  margin-right: 0px;
}

.wine-awards .gallery li:last-child:after {
  content: n;
}

.wine-awards111 .gallery li:nth-child(2n) img {
  opacity: 0.99;
  margin-top: 12px;
}

.awards-list {
  color: #999;
  font-weight: 300;
  font-size: 0.8em;
  line-height: 1.5em;
  margin-top: 20px;
}

.awards-list ul {
  margin: 0px;
  padding: 0px;
}

.awards-list ul,
.awards-list li {
  list-style-type: none;
}

.wine-blurb {
  margin-top: 30px;
}

.buy-btn {
  text-align: right;
  margin: 20px 0px;
}

@media (max-width: 1199px) {
  .wines .wine-heading {
    font-size: 3em;
    line-height: 0.8em;
  }

  h3.wine-location {
    font-size: 1.6em;
    line-height: 1em;
  }
}

@media (max-width: 959px) {
  .wine-badge {
    float: none;
    margin: 10px 0px 0px 0px;
  }

  .wine-header-block {
    overflow: auto;
  }

  .wines .wine-heading {
    font-size: 2.6em;
    line-height: 0.8em;
  }

  h3.wine-location {
    font-size: 1.6em;
    line-height: 1em;
  }
}

@media (max-width: 768px) {
  .wine-image {
    text-align: center;
  }

  .wine-badge {
    float: none;
    margin: 10px auto 0px;
    text-align: center;
  }

  .wine-header-block {
    margin: 20px 0px;
    padding: 20px 0px 10px;
    text-align: center;
  }

  .wine-awards {
    margin: 0px auto;
    text-align: center;
  }

  .wines .wine-heading {
    font-size: 2.4em;
    line-height: 0.8em;
  }

  h3.wine-location {
    font-size: 1.6em;
    line-height: 1em;
  }

  .wine-awards {
    text-align: center;
    margin: 0px auto;
  }

  .wine-badge ul li,
  .wine-awards ul li,
  .wine-awards ul li img {
    width: 60px;
    height: 60px;
  }

  .wine-awards .gallery li {
    margin-right: -24px;
  }

  .buy-btn {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .wines .wine-heading {
    font-size: 2em;
    line-height: 0.8em;
  }

  h3.wine-location {
    font-size: 1.7em;
    line-height: 1em;
  }

  .wine-badge ul li,
  .wine-awards ul li,
  .wine-awards ul li img {
    width: 50px;
    height: 50px;
  }

  .wine-awards .gallery li {
    margin-right: -27px;
  }
}




/*
  The Colony Landing Page
============================ */
.landing .main-content {
  padding-top: 70px;
}

.experiences-img {
  pointer-events: none !important;
}

.featured-item * {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.featured-item {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.block-img {
  overflow: hidden;
}

.block_content {
  position: absolute;
  z-index: 2;
  bottom: 0px;
  width: 100%;
  height: 100px;
  padding: 20px 25px;
}

.featured-item .block_content h4.featured-title,
.featured-item .block_content h4.featured-title a {
  color: #FFF;
  padding: 0px;
  margin: 0px;
  text-transform: uppercase;
  line-height: 80px;
}

.featured-item .item_introtext {
  transform: translateY(150px);
  opacity: 0;
  color: #DDD;
}

.featured-item:hover .block_content {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.featured-item:hover h4.featured-title,
.featured-item:hover h4.featured-title a {
  text-decoration: none;
}

.featured-item:hover .item_introtext {
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition-duration: 0.25s;
  -moz-transition-duration: 0.25s;
  -ms-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
}


/* Featured Items with FOLLOW effects */
.follower-item {
  position: relative;
}

.follower-item a {
  overflow: hidden;
}

.follower-item a,
.follower-item a .follow-img img {
  display: block;
  position: relative;
}

.content-follow {
  position: absolute;
  display: block;
  width: 94%;
  height: 94%;
  margin: 3%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.follow-title {
  position: absolute;
  z-index: 3;
  top: 3%;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
  text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.4);
}

.follow-intro {
  transform: translateY(18%);
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 25px;
  color: #DDD;
}

.follower-item a:hover,
.follower-item a:hover * {
  text-decoration: none !important;
}


@media(max-width:991px) {
  .landing .main-content {
    padding-top: 65px;
  }

  .experiences-img {
    margin: -120px 0px;
  }
}

@media (max-width:768px) {
  .landing .main-content {
    padding-top: 50px;
  }

  .experiences-img {
    margin: -80px 0px -140px;
  }

  .block_content {
    bottom: 0px;
    width: 100%;
    height: auto;
    padding: 10px 5px;
    background-color: rgba(0, 0, 0, 0.35);
  }

  .featured-item:hover .block_content {
    height: auto;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .featured-item .item_introtext,
  .follow-intro {
    transform: translateY(0px);
    opacity: 0;
    color: #DDD;
    display: none;
  }

  .featured-item .block_content h4.featured-title,
  .featured-item .block_content h4.featured-title a {
    line-height: inherit;
  }

  .follow-title {
    position: absolute;
    z-index: 3;
    bottom: 0px;
    top: auto;
    line-height: inherit;
    margin: 0px !important;
    padding: 10px 5px;
    width: 100%;
    text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.4);
    background-color: rgba(0, 0, 0, 0.35);
  }

  .content-follow {
    display: none !important;
    width: 0px !important;
    height: 0px !important;
  }
}



/* ABOUT PAGES */
.item-body .title {
  border-bottom: 4px solid #b4d2d4;
  line-height: 40px;
  font-size: 30px;
  display: inline-block;
  min-width: 25%;
}

.item-page .item-body .about-title {
  margin-top: 5px;
}

.fleft {
  float: left;
  max-width: 35%;
  margin: 0px 40px 20px 0px;
}

.fright {
  float: left;
  max-width: 35%;
  margin: 0px 0px 20px 40px;
}

.clear {
  clear: both;
}



/*
   EVENTS PAGE
   =========== */



/*
   PAST EVENTS PAGE
   ================ */
.past-events .content-follow {
  width: 100%;
  height: 100%;
  margin: 0px;
  opacity: 0.8;
}

.past-events .content-follow::after {
  content: "SEE DETAILS";
  position: absolute;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  transform: translateY(-50%);
  top: 50%;
  color: #344458;
  font-weight: 700;
  font-family: "Montserrat", Arial;
}



/*
  contact section
===================== */


/*
  Newsletter Subscription
============================ */
.subscribe .newsletter [class*='col-'] {
  padding-left: 3px;
  padding-right: 3px;
}

.newsletter {
  padding: 4px 0px;
}

.subscribe .text,
.subscribe .control-group,
.subscribe .sub-btn {
  display: inline-block;
}

.subscribe .first,
.subscribe .third {
  display: none;
}

.subscribe .text {
  font-size: 10px;
  text-transform: uppercase;
  padding-right: 15px;
}

.subscribe .control-label {
  display: none;
}

.subscribe .newsletter input {
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  background-color: #242424;
  color: #767676;
  border: 0px;
  padding-left: 7px;
  padding-right: 7px;
}

.subscribe .newsletter input:focus {
  color: #888888;
  background-color: #343434;
}

.subscribe .newsletter .btn-sub {
  font-size: 10px;
  text-transform: uppercase;
  height: 30px;
  line-height: 0px;
  padding: 0px 10px;
  margin: 0px;
  border: 0px;
  color: #767676;
  background-color: #343434;
}

.subscribe .newsletter .btn-sub:hover {
  background-color: #B4D2D4;
  color: #FFFFFF;
}


/* Page Social Icons */
.social-button {
  padding: 10px 15px;
  font-size: 18px;
  color: #757575;
}

a.social-button:hover {
  background-color: transparent !important;
  color: #000;
}


/*
  footer section
===================== */
footer {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 7px;
}

footer p {
  padding-top: 20px;
}

.social-icon {
  padding: 0;
  margin: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  padding: 10px;
}

.social-icon li a {
  border: 1px solid #dce4e6;
  border-radius: 50%;
  color: #dce4e6;
  font-size: 18px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease-in;
}

.social-icon li a:hover {
  background: #dce4e6;
  color: #2b2b2b;
}

#footer .footer-info .blok-link {
  display: block;
  width: 100%;
  padding: 0px;
  margin: 0px;
  color: #dce4e6;
}

#footer .footer-info .blok-link h4 {
  margin: 0px;
  padding: 20px 0px 15px;
  color: #697F8A;
}

#footer .footer-info .blok-link p {
  margin: 0px;
  padding: 0px 0px 20px;
}

#footer .footer-info .blok-link:hover,
#footer .footer-info .blok-link:hover p,
#footer .footer-info .blok-link:hover h4 {
  color: #FFFFFF;
}

#footer .footer-info .blok-link:hover {
  background-color: #405661;
}


/* FORM STYLES */
.snug .ba-form {
  padding: 0px;
}

.ba-form * {
  -webkit-transition: all 0.2s ease-out !important;
  -moz-transition: all 0.2s ease-out !important;
  -ms-transition: all 0.2s ease-out !important;
  -o-transition: all 0.2s ease-out !important;
  transition: all 0.2s ease-out !important;
}

.tool {
  position: relative !important;
  margin-bottom: 10px !important;
}

.question-form input,
.question-form textarea {}

.question-form input:focus,
.question-form textarea:focus {
  outline: none !important;
}

.question-form .ba-form input.used,
.question-form .ba-form input:focus,
.question-form .ba-form textarea.used,
.question-form .ba-form textarea:focus {
  border-color: rgba(255, 255, 255, 0) !important;
  background-color: rgba(255, 255, 255, 0.18) !important;
}


/* Copyright */
#copyright {
  padding: 40px 0px;
}

.copyright {
  font-size: 10px;
  text-transform: uppercase;
  color: #676767;
}

.copyright,
.subscribe {
  padding-top: 14px;
}


/* BACK TO TOP */
#back-top {
  position: fixed;
  right: -5px;
  bottom: 25px;
  border-radius: 50%;
  z-index: 678876;
}

#back-top a {
  -webkit-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  -moz-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  -ms-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  -o-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -ms-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -o-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);

  padding: 12px 16px;
  display: block;
  border-radius: 50%;
  font-size: 10px;
  line-height: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: #B4D2D4;
}

#back-top a:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  -ms-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  -o-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  padding: 12px 16px;
  color: #FFF;
  text-decoration: none;
}



/* COLORS */
.color1 {
  background-color: #B4D2D4;
  color: #FFFFFF !important;
}

.color2 {
  background-color: #dce4e6;
  color: #2b2b2b !important;
}

.color3 {
  background-color: #25c9c0;
  color: #FFFFFF !important;
}

.dark {
  background-color: #2B2B2B;
  color: #AAAAAA !important;
}

.light {
  background-color: #F9F9F9;
  color: #555555 !important;
}

.white {
  background-color: #FFFFFF;
  color: #555555 !important;
}

.color1 h1,
.color1 h2,
.color1 h3,
.color1 h4,
.color1 h5,
.color1 h6,
.color1 p {
  color: #FFFFFF !important;
}

.color2 h1,
.color2 h2,
.color2 h3,
.color2 h4,
.color2 h5,
.color2 h6,
.color2 p {
  color: #2b2b2b !important;
}

.color3 h1,
.color3 h2,
.color3 h3,
.color3 h4,
.color3 h5,
.color2 h6,
.color3 p {
  color: #FFFFFF !important;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark p {
  color: #AAAAAA !important;
}

.light h1,
.light h2,
.light h3,
.light h4,
.light h5,
.light h6,
.light p,
.white h1,
.white h2,
.white h3,
.white h4,
.white h5,
.white h6,
.white p {
  color: #2b2b2b !important;
}


h1.mod-title.blue,
h2.mod-title.blue,
h3.mod-title.blue,
h4.mod-title.blue {
  color: #B4D2D4 !important;
}

.valign {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}


/* Feature Box Text macro */
.mod-box {
  margin: 40px 0px;
  padding: 80px;
}

.mod-box .btn {
  margin-bottom: 0px;
}

/* Featured Boxes */
.feat-box {
  text-align: center;
}

.feat-logo>img {
  width: 100%;
  max-width: 100%;
}

.custom .mod-box.feat-box p.feat-text {
  color: #000000 !important;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.feat-btn {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.feat-btn.btn-white,
.feat-btn.btn-white:visited,
.feat-btn.btn-white:focus {
  border: 1px solid #FFF;
  color: #FFF;
}

.feat-btn.btn-black,
.feat-btn.btn-black:visited,
.feat-btn.btn-black:focus {
  border: 1px solid #000;
  color: #000;
}

.feat-btn.btn-white:hover,
.feat-btn.btn-white:visited:hover,
.feat-btn.btn-white:focus:hover {
  color: #000000;
  border-color: #000000;
}

.feat-btn.btn-black:hover,
.feat-btn.btn-black:visited:hover,
.feat-btn.btn-black:focus:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}






/*
   MACROS
   ================== */
.bottom .container>.row {
  overflow: visible;
}

.bottom {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.bottom .blocks {
  position: relative;
  bottom: 0px;
  margin-top: 60px;
  margin-bottom: -130px;
}

.blocks p {
  line-height: 16px;
}

.blocks a,
.blocks a:visited {
  color: #384e59;
  text-decoration: none;
}

.blocks a:hover,
.blocks a:visited:hover {
  text-decoration: underline;
}

.blocks .block {
  padding: 30px 10px 40px;
  display: block;
  text-align: center;
}

.bottom .blocks .block h3 {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  padding-bottom: 12px;
  color: #FFF;

}

.blocks .block i.fa {
  display: block;
  margin: 10px auto 20px;
  color: #ffffff;
  font-size: 58px !important;
}


/* [heading sub] */
.heading-main {
  font-size: 40px;
  text-transform: uppercase;
  display: block;
  color: #272727;
}

.heading-main small {
  font-size: 70%;
  text-transform: lowercase;
  color: #BBBBBB;
  display: block;
  margin: 15px 0px 0px;
}

.visit-shop p.sub {
  line-height: 18px;
  color: #777;
  margin-top: 15px !important;
}

.macurl {
  display: inline-block;
}

.macurl:hover,
.macurl:focus {
  text-decoration: none;
}

.macurl:hover .heading-main {
  color: #b4d1d3;
  text-decoration: none;
}


/* OPENING TIMES MODULE */
.opening-times {
  font-size: 14px;
}

.opening-times .table {
  margin-bottom: 0px;
}

.opening-times .no-border {
  border-top: 0px;
}

.opening-times a {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.opening-times a h2,
.opening-times a h3,
.opening-times a h4,
.opening-times a h5,
.opening-times a h6 {
  margin: 25px 0px;
}

.list-group-item {
  border-color: #EEEEEE;
  background-color: #fbfbfc;
}

.list-group-item:first-child {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  border-top-width: 3px;
}

.list-group-item:last-child {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  border-bottom-width: 3px;
}



/* Block Links */
.blok-link * {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.blok-link:hover {
  text-decoration: none;
}

.blok-link:hover .well {
  background-color: #FCFCFC;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 4px 4px rgba(205, 205, 205, 0.3);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 4px 4px rgba(205, 205, 205, 0.3);
  -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 4px 4px rgba(205, 205, 205, 0.3);
  -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 4px 4px rgba(205, 205, 205, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 4px 4px rgba(205, 205, 205, 0.3);
}

.blok-link:hover h4 {
  color: #00a0b8;
}

.blok-link img {
  transform: scale(0.95);
}

.blok-link:hover .well img {
  transform: scale(1);
}

/* PAGE LINK BLOCKS */
.blok-container {
  padding: 0px;
  margin: 0px;
  list-style: none;

  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;

  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.blok-item {
  background: #f1f1f1;
  padding: 50px 10px;
  margin: 2px;
  color: #474747;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  -o-flex: 1 1 auto;
  flex: 1 1 auto;

  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.blok-item {
  text-decoration: none;
}

.blok-item:hover {
  text-decoration: none;
}

li.blok-item:hover {
  cursor: default;
}

.award-count .blok-item {
  border-radius: 5px;
  overflow: hidden;
}

.award-count .blok-item strong {
  font-size: 140%;
  display: block;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.award-count .blok-item:hover strong {
  color: #FFF;
  -webkit-transform: translateY(-10px) scale(1.8);
  -moz-transform: translateY(-10px) scale(1.8);
  -ms-transform: translateY(-10px) scale(1.8);
  -o-transform: translateY(-10px) scale(1.8);
  transform: translateY(-10px) scale(1.8);
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
}

@media (max-width:768px) {
  .award-count .blok-item:hover strong {
    -webkit-transform: translateY(-7px) scale(1.5);
    -moz-transform: translateY(-7px) scale(1.5);
    -ms-transform: translateY(-7px) scale(1.5);
    -o-transform: translateY(-7px) scale(1.5);
    transform: translateY(-7px) scale(1.5);
  }
}


/* BEER & CIDER */
.media-container {
  padding: 10px 0px;
  margin: 10px 0px;
  border-bottom: 1px solid #EEE;
}

.brewery .media-container .media-title {
  margin-top: 20px;
}

.brewery .media-container .media-img {
  text-align: center;
  -webkit-filter: saturate(0);
  -moz-filter: saturate(0);
  -ms-filter: saturate(0);
  -o-filter: saturate(0);
  filter: saturate(0);
  -webkit-transition: filter 0.2s linear;
  -moz-transition: filter 0.2s linear;
  -ms-transition: filter 0.2s linear;
  -o-transition: filter 0.2s linear;
  transition: filter 0.2s linear;
}

.brewery .media-container:hover .media-img {
  -webkit-filter: saturate(1);
  -moz-filter: saturate(1);
  -ms-filter: saturate(1);
  -o-filter: saturate(1);
  filter: saturate(1);
}



/* FAQS Accordion */
#lawn-faq h5 {
  margin: 0px;
}

#lawn-faq .panel {
  border-radius: 0px;
  margin-bottom: 2px;
}

#lawn-faq .panel-default>.panel-heading {
  background-image: none;
  background-color: #FAFAFA;
  color: #575757;
}

#lawn-faq {
  counter-reset: section;
}

#lawn-faq .panel-heading:before {
  counter-increment: section;
  content: counter(section);
  position: absolute;
  left: 16px;
  width: 48px;
  height: 46px;
  line-height: 46px;
  border-radius: 0px;
  background-color: #FFF;
  border: 0px;
  margin-top: 0px;
  text-align: center;
  color: #777;
  border-right: 1px solid #e6e6e6;
}

#lawn-faq .panel-heading {
  border-radius: 0px;
  padding: 0px 0px 0px 70px;
}

#lawn-faq .panel-title a {
  display: block;
  padding: 15px 0px;
}

#lawn-faq .panel:hover .panel-heading {
  background-color: #f5f5f5;
  color: #000;
}

#lawn-faq .panel:hover .panel-heading:before {
  color: #000;
}

#lawn-faq .panel-title a:hover,
#lawn-faq .panel-title a:focus,
#lawn-faq .panel-title a:active {
  text-decoration: none;
}

#lawn-faq .panel-body.answer {
  padding: 15px 25px;
}


/*
  responsive mobile
===================== */
@media (min-width:1200px) {
  #footer .footer-info .socials:last-child {
    border-left: 1px solid #405661;
  }
}

@media (max-width:1199px) {
  #footer .footer-info .socials:last-child {
    border-top: 1px solid #405661;
  }

  .top-contact-info {
    margin: 0px;
    padding: 0px 40px;
    list-style-type: none;
  }

  .top-contact-info li a {
    font-size: 21px;
  }

  /* Services */
  .services-horiz {
    padding: 40px 24px;
  }

  .service-item {
    margin: 30px 0px;
  }

  .service-padd {
    padding: 40px 25px 100px;
  }

  .mod-box {
    margin: 20px 0px;
    padding: 70px;
  }
}

@media (max-width: 991px) {

  .navbar .navbar-nav li a,
  .navbar .navbar-nav li .separator {
    font-size: 12px;
  }

  #slider {
    height: 800px;
  }

  .slider-cap h4 {
    max-width: 80%;
  }

  .top-contact-info {
    padding: 20px 15px;
  }

  /* Services */
  .services-horiz {
    padding: 40px 0px;
  }

  .service-item {
    margin: 30px 0px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }

  .service-padd {
    padding: 40px 30px 90px;
  }

  .mod-box {
    margin: 30px 0px;
    padding: 60px;
  }
}


@media (max-width: 768px) {
  .navbar .navbar-brand {
    line-height: 18px;
  }

  .logo {
    max-width: 150px;
  }

  #slider {
    height: 700px;
    background-size: cover !important;
    background-position: center center !important;
  }

  .slider-cap h4 {
    max-width: 96%;
    font-size: 16px;
    line-height: 20px;
  }

  .top-contact-info {
    padding: 10px 10px 0px;
  }

  .top-contact-info li a {
    color: #FFFFFF;
    line-height: 32px;
    font-size: 20px;
    text-align: center;
  }

  .top-contact-info h4 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .social-icon li {
    padding: 15px 7px;
  }

  .valign {
    position: relative;
    top: 0%;
    transform: translateY(0%);
  }

  /* Services */
  .services-horiz {
    padding: 40px 20px;
  }

  .service-item {
    margin: 30px 0px;
  }

  .service-padd .newsflash-title {
    margin-bottom: 0px;
    border-bottom: 0px none;
  }

  .service-padd {
    padding: 40px 30px 54px;
  }

  .service-item .intro-text {
    display: none;
  }

  .feat-logo>img {
    width: 70%;
    max-width: 70%;
  }

  .bottom {
    background-position: right 50px !important;
  }

  .heading-main {
    font-size: 30px;
  }

  .heading-main small {
    font-size: 60%;
    margin: 5px 0px 0px;
  }

  .macurl {
    display: block;
    text-align: center;
  }

  .padded-xl.visit-shop {
    padding: 10px 0px;
  }

  .visit-shop .custom .padded-xl {
    padding: 60px 0px 280px;
  }

  .mod-box {
    margin: 0px;
    padding: 60px;
  }

  .beer .media-container .media-img img {
    max-width: 60%;
  }

  .beer .media-container .media-img {
    -webkit-filter: saturate(1);
    -moz-filter: saturate(1);
    -ms-filter: saturate(1);
    -o-filter: saturate(1);
    filter: saturate(1);
  }

  #lawn-faq .panel-heading:before {
    content: "";
    display: none;
  }

  #lawn-faq .panel-heading {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  #slider {
    height: 500px;
    background-size: cover !important;
    background-position: center center !important;
  }

  #slider h1 {
    font-size: 46px;
    letter-spacing: 0px;
  }

  #slider h3 {
    font-size: 22px;
    letter-spacing: 0px;
  }

  .social-icon li {
    padding: 15px 3px;
  }

  .mod-box {
    margin: 0px;
    padding: 40px 20px;
  }

  .feat-logo>img {
    width: 90%;
    max-width: 90%;
  }
}