/**
* www.mclouisbreweries.com
*/
:root {
  --primary: #7a1028;
  --primary-dark: #5d0c1f;
  --primary-light: #a32042;

  --text-dark: #444444;
  --white: #ffffff;

  --shadow: 0 4px 15px rgba(122, 16, 40, 0.15);
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
}
a {
  text-decoration: none;
  color: var(--primary);
  transition: 0.3s ease;
}

a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: linear-gradient(135deg, #7a1028, #a32042);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: linear-gradient(135deg, #5d0c1f, #7a1028);
  transform: translateY(-3px);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fbfbfb;
  font-size: 15px;
  height: 40px;
  padding: 0;
}
#topbar .contact-info a {
  line-height: 0;
  color: #444444;
  transition: 0.3s;
}
#topbar .contact-info a:hover {
  color: var(--primary);
}
#topbar .contact-info i {
  color: var(--primary);
  line-height: 0;
  margin-right: 5px;
}
#topbar .contact-info .phone-icon {
  margin-left: 15px;
}
#topbar .social-links a {
  color: #6f6f6f;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}
#topbar .social-links a:hover {
  color: var(--primary);
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 190px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#header.header-scrolled {
  box-shadow: var(--shadow);
}


/* Main header container */
#header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Push navbar to right */
.navbar {
    padding: 0;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
}
/* Logo + company wrapper */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: -70px;
  text-decoration: none;
}

/* Push navigation away from company name */
#header .navbar {
  margin-left: 160px;
}
/* Logo image bigger */
.company-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
}


/* Company name area */
.company-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* McLOUIS */
.company-main {
  font-size: 35px;
  font-weight: 900;
  color: #7a1028;
  font-family: "Raleway", sans-serif;
  line-height: 1;
  white-space: nowrap;
}


/* DISTILLERIES & BREWERIES one line */
.company-sub {
  font-size: 15px;
  font-weight: 700;
  color: #444;
  letter-spacing: 2px;
  margin-top: 8px;
  white-space: nowrap;
}


/* Navigation */
.navbar a,
.navbar a:focus {

  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;

}


/* Distributor button */
.navbar .getstarted {

  text-transform: uppercase;
  font-weight: 800;

}


/* Remove automatic uppercase from company */
.company-title,
.company-main,
.company-sub {
  text-transform: none !important;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 18px;
  font-weight: 700;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--primary);
}
.navbar .getstarted,
.navbar .getstarted:focus {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light)
  );
  color: #fff;
  padding: 10px 28px;
  margin-left: 30px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(122, 16, 40, 0.25);
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  transform: translateY(-3px);
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary)
  );
  color: #fff;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
 box-shadow: 0 10px 30px rgba(122, 16, 40, 0.15);
border-radius: 12px;
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #5cb874;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--primary);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(93, 12, 31, 0.92);
  backdrop-filter: blur(6px);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(122, 16, 40, 0.20);
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--primary);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0 6px 20px rgba(122, 16, 40, 0.15);
  border-radius: 10px;
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--primary);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 85vh;
  min-height: 750px;
  /*background-color: rgba(9, 9, 9, 0.8);*/
  overflow: hidden;
  position: relative;
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.08) 35%,
      rgba(0,0,0,0.30) 100%
    );

  z-index: 1;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50px;
  right: 50px;
}
#hero .container {
  text-align: right;
  max-width: 650px;
  margin-left: auto;
  margin-right: 5%;
  position: relative;
  z-index: 5;
}
#hero h2 {
  color: #ffffff;
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;

  text-shadow:
    0 3px 10px rgba(0,0,0,0.7),
    0 6px 30px rgba(0,0,0,0.5);
}

#hero h3 {
  color: #f5f5f5 !important;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 8px;

  text-shadow:
    0 2px 8px rgba(0,0,0,0.6);
}




#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(122, 16, 40, 0.75);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: var(--primary);
  transform: scale(1.1);
  color: #fff;
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--primary);
}
#hero .btn-get-started {

  background: linear-gradient(
      135deg,
      #c59b39,
      #f2d57a
  );

  color: #111;
  font-weight: 700;

  padding: 15px 40px;

  border-radius: 50px;

  margin-top: 20px;

  box-shadow:
      0 10px 25px rgba(0,0,0,0.25);

  transition: 0.3s;
}

#hero .btn-get-started:hover {
  transform: translateY(-3px);
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary)
  );
  color: #fff;
}
@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .carousel-container {
    top: 66px;
  }
}
@media (max-width: 768px) {
  #hero h2 {
  font-size: 36px;
}
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

@media (max-width:768px){

  #hero{
      height: 70vh;
      min-height: 600px;
  }

  #hero .container{
      text-align:center;
      margin:0 auto;
      padding:0 20px;
  }

  #hero h2{
      font-size:42px;
  }

  #hero h3{
      font-size:18px;
  }
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #faf7f8;
}

.section-title {
  text-align: center;
  padding-bottom: 25px;
}
.section-title h2 {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
  color: var(--primary);
}
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary); /* Maroon */
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 20px 0;
}
.featured-services .icon-box {
  padding: 20px;
}
.featured-services .icon-box-bg {
  background-image: linear-gradient(0deg, #222222 0%, #2f2f2f 50%, #222222 100%);
}
.featured-services .icon {
  margin-bottom: 15px;
}
.featured-services .icon i {
  color: var(--primary);
  font-size: 42px;
}
.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.featured-services .title a {
  color: #222222;
  transition: 0.3s;
}
.featured-services .icon-box:hover .title a {
  color: var(--primary);
}
.featured-services .description {
  line-height: 24px;
  font-size: 14px;
}
.featured-services .icon-box {
  border-radius: 14px;
  transition: all 0.3s ease;
}

.featured-services .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(122, 16, 40, 0.15);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
}
.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary);
}
.about .content p:last-child {
  margin-bottom: 0;
}

/* ABOUT FEATURES */
.about-features{
  margin-top: 15px;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 0;
  font-size:15px;
  font-weight:500;
  color:#444;
  border-bottom:1px solid #f0f0f0;
}

.feature-item i{
  color:#7a1028;
  font-size:18px;
}

/* BUTTONS */
.about-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn-about-primary{
  background:linear-gradient(135deg,#7a1028,#a32042);
  color:#fff;
  padding:10px 22px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s ease;
  display:inline-block;
}

.btn-about-primary:hover{
  transform:translateY(-3px);
  color:#fff;
}

.btn-about-outline{
  border:2px solid #7a1028;
  color:#7a1028;
  padding:10px 22px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s ease;
  display:inline-block;
}

.btn-about-outline:hover{
  background:#7a1028;
  color:#fff;
  transform:translateY(-3px);
}
/*=================================================
# WHY CHOOSE MCLOUIS
=================================================*/

.why-us-enhanced{
    padding:100px 0;
    background:#faf8f8;
}

/* Section Title */
.why-us-enhanced .section-title h2{
    color:var(--primary);
    font-size:40px;
    font-weight:900;
    letter-spacing:1px;
}

.why-us-enhanced .section-title h3{
    font-size:22px;
    font-weight:600;
    color:#555;
    margin-top:10px;
}

/* Card */
.why-card{
    position:relative;
    height:380px;
    border-radius:22px;
    overflow:hidden;

    background-size:cover;
    background-position:center;

    transition:all .45s ease;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.08);
}

/* Zoom background */
.why-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    background-position: center top;
}

/* Dark premium overlay */
.why-card .overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.90) 5%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.15) 100%
    );
}

/* Icon */
.icon-badge{
    position:absolute;
    top:25px;
    right:25px;

    width:65px;
    height:65px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
      linear-gradient(
      135deg,
      #d4af37,
      #f2d57a
      );

    z-index:5;

    box-shadow:
      0 10px 25px rgba(212,175,55,.35);

    transition:.4s;
}

.icon-badge i{
    color:#111;
    font-size:26px;
}

.why-card:hover .icon-badge{
    transform:scale(1.08) rotate(10deg);
}

/* Content Box */
.glass-box{
    position:absolute;
    left:30px;
    right:30px;
    bottom:30px;

    z-index:5;
}

/* Number */
.num{
    display:inline-block;

    color:#d4af37;

    font-size:14px;
    font-weight:800;

    letter-spacing:3px;

    margin-bottom:10px;
}

/* Heading */
.glass-box h4{
    color:#fff;

    font-size:26px;
    font-weight:800;

    margin-bottom:12px;

    text-transform:uppercase;
}

/* Description */
.glass-box p{
    color:rgba(255,255,255,0.92);

    font-size:15px;
    line-height:1.8;

    margin:0;
}

/* Gold Accent Line */
.why-card::after{
    content:"";

    position:absolute;
    bottom:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
      90deg,
      #d4af37,
      #f2d57a
    );

    z-index:10;
}

/* Hover Text Animation */
.glass-box{
    transition:.4s;
}

.why-card:hover .glass-box{
    transform:translateY(-8px);
}

/* Responsive */
@media(max-width:991px){

    .why-card{
        height:340px;
    }

    .glass-box h4{
        font-size:22px;
    }
}

@media(max-width:767px){

    .why-us-enhanced{
        padding:70px 0;
    }

    .why-card{
        height:320px;
    }

    .why-us-enhanced .section-title h2{
        font-size:30px;
    }

    .why-us-enhanced .section-title h3{
        font-size:18px;
    }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}
.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}
.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f2ecee;
}
.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.services .icon-box h4 a {
  color: #222222;
  transition: 0.3s ease;
}
.services .icon-box:hover h4 a {
  color: var(--primary);
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}
.services .iconbox-blue i {
  color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
  color: #fff;
}
.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}
.services .iconbox-orange i {
  color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
  color: #fff;
}
.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}
.services .iconbox-pink i {
  color: #e80368;
}
.services .iconbox-pink:hover .icon i {
  color: #fff;
}
.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}
.services .iconbox-yellow i {
  color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
  color: #fff;
}
.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}
.services .iconbox-red i {
  color: #ff5828;
}
.services .iconbox-red:hover .icon i {
  color: #fff;
}
.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}
.services .iconbox-teal i {
  color: #11dbcf;
}
.services .iconbox-teal:hover .icon i {
  color: #fff;
}
.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}
.services .icon-box {
  border-radius: 16px;
  transition: all 0.3s ease;
}

.services .icon-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(122, 16, 40, 0.15);
}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary)
  );
  padding: 80px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s ease;
  margin: 10px;
  border: 2px solid rgba(255,255,255,0.8);
  color: #fff;
}
.cta .cta-btn:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}
@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}
@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light)
  );
  box-shadow: 0 6px 15px rgba(122, 16, 40, 0.2);
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: linear-gradient(
   180deg,
    rgba(93, 12, 31, 0.2),
    rgba(122, 16, 40, 0.85)
  );
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
  transform: scale(1.2);
}
.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.08);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.portfolio .portfolio-wrap .portfolio-info p {
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5cb874;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5cb874;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #800020;
  border-bottom: 3px solid #800020;
  border-radius: 12px;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .info i {
  font-size: 20px;
  color: #800020;
  float: left;
  width: 44px;
  height: 44px;
  background: #f8e9ed;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222222;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555555;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: #800020;
  transform: translateY(-3px);
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #800020;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #800020;
  border-bottom: 3px solid #800020;
  border-radius: 12px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #800020;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #800020;
  box-shadow: 0 0 0 0.2rem rgba(128,0,32,0.15);
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: linear-gradient(135deg, #800020, #a52a2a);
  border: none;
  padding: 12px 28px;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.3);
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8f4f5;
  min-height: 40px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 66px;
  }
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #800020;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #800020;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: linear-gradient(135deg, #2d0a12, #4a0014);
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 40px 0;
}
#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}
#footer p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}
#footer .social-links {
  margin: 0 0 40px 0;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #800020, #a52a2a);
  color: #fff;
  margin-right: 6px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  transition: all 0.3s ease;
}
#footer .social-links a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(128,0,32,0.35);
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  margin: 0 0 5px 0;
}
#footer .credits {
  font-size: 13px;
}
#footer h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #c27b8a;
  margin: 12px auto 0;
  border-radius: 50px;
}
.brewery-video {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
}

