:root {
  --white: #fff;
  --black: #000;
  --theme-color: #00b8bd;
}
html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background: #000;
  overflow-x: hidden;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1366px;
}

p {
  font-size: 16px;
  color: #828282;
  line-height: 2;
}

section {
  padding: 8rem 0 6rem;
  position: relative;
}

@font-face {
  font-family: "Impacted";
  src: url("../fonts/impacted.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Poppins", sans-serif;
}

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

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
button:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

figure {
  margin: 0;
}

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

.navbar-brand img {
  transition: 0.3s ease-in-out;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  margin: 0;
  padding: 0.5rem 2.5rem;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 50px;
}
.navbar-nav .nav-item .nav-link {
  font-size: 18px;
  font-weight: 6 00;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0px;
  transition: transform, 0.3s ease-in-out;
  background-color: var(--white);
  transform-origin: center;
  transform: scaleX(0);
}
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-color);
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}
.form-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.5rem 1rem;
}
.form-inline a {
  color: var(--white);
  font-size: 1.5rem;
  position: relative;
}
.form-inline a:hover {
  color: var(--theme-color);
}
.form-inline a span {
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  line-height: 20px;
  font-size: 12px;
  text-align: center;
  position: absolute;
  top: -10px;
  left: 5px;
}
.main-slider {
  position: relative;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--white);
}
.animateHeading {
  font-family: "Impacted";
  font-size: 8.1875rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  position: relative;
  text-transform: uppercase;
}
.secHeading {
  text-transform: capitalize;
  font-size: 5.3125rem;
  font-weight: 400;
  line-height: 1;
  position: relative;
  margin-bottom: 1.5rem;
  font-family: "Impacted";
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  display: inline-block;
}
.animateHeading::before,
.secHeading::before {
  content: attr(animatedValue);
  position: absolute;
  color: var(--theme-color);
  animation: fill-animation 3s ease-in-out infinite;
}
.secHeading::after {
  content: "";
  background-color: var(--theme-color);
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -0.75rem;
}
@keyframes fill-animation {
  0%,
  100% {
    clip-path: polygon(
      0% 45%,
      16% 44%,
      33% 50%,
      54% 60%,
      70% 61%,
      84% 59%,
      100% 52%,
      100% 100%,
      0% 100%
    );
  }

  50% {
    clip-path: polygon(
      0% 60%,
      15% 65%,
      34% 66%,
      51% 62%,
      67% 50%,
      84% 45%,
      100% 46%,
      100% 100%,
      0% 100%
    );
  }
}
.socialList {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  left: 10rem;
  gap: 1.5rem;
  z-index: 1;
}
.socialList span {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  font-weight: normal;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  transform: scale(-1);
}
.socialList li a {
  font-size: 16px;
  color: var(--white);
}
.socialList li a:hover {
  color: var(--theme-color);
}
.socialList .line {
  width: 1px;
  background-color: var(--white);
  height: 150px;
  margin: 0 auto;
}
.themeBtn {
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  background-color: transparent;
  display: inline-block;
  padding: 1.25em 2em;
  border: 1px solid var(--theme-color);
  text-transform: uppercase;
  margin: 0.5rem 0;
  transition: all 0.3s ease-in-out;
}
.themeBtn:hover {
  background-color: var(--theme-color);
  backdrop-filter: blur(5px);
  color: var(--white);
}
.main-slider .themeBtn {
  background-color: var(--theme-color);
  color: var(--white);
}
.main-slider .themeBtn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: var(--white);
}
/* About Section */
.aboutSec {
  background: url(../images/aboutBg.png) center/cover no-repeat;
  padding-bottom: 0;
}

.subHeading {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
}
.aboutContent {
  max-width: 475px;
  padding: 2rem;
  background: #080808;
  margin-left: auto;
  position: relative;
  top: -18rem;
  margin-right: -4rem;
  z-index: 1;
}
.aboutImg {
  position: relative;
  z-index: 1;
}
.aboutImg::before {
  content: "";
  width: 476px;
  height: 448px;
  border: 10px solid var(--theme-color);
  position: absolute;
  right: -3rem;
  top: -4rem;
  z-index: -1;
}
/* Featured Section */
.featuredSec {
  position: relative;
  background: url(../images/featuredBg.png) center/cover no-repeat;
}
.featuredSec .featuredBg {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}
.featuredSec .secHeading {
  font-size: 8.1875rem;
}
.featuredSec .secHeading::before {
  color: #e6b582;
}

.coffeeImg {
  background-color: #311d0a;
  border-radius: 50%;
  max-width: 737px;
  max-height: 737px;
  position: relative;
}
.coffeeImg img {
  /* max-width: 575px; */
  display: block;
  margin: 0 auto;
  position: relative;
  top: -5rem;
  right: -4rem;
  z-index: 1;
}
.coffeeColor {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.coffeeColor .btn {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: 0 0 0px 5px rgba(255, 255, 255, 0.3);
}
.coffeeColor .btn:nth-child(1) {
  background-color: #bf9a85;
}
.coffeeColor .btn:nth-child(2) {
  background-color: #b58c70;
}
.coffeeColor .btn:nth-child(3) {
  background-color: #8f540e;
}
.coffeeColor .btn:nth-child(4) {
  background-color: #59070e;
}

/* .coffeeSec */
.coffeeCard {
  background-color: #090909;
  border: 1px solid #262626;
  transform: scale(0.9);
  position: relative;
  transition: 0.3s ease-in-out;
  margin: 4rem 0;
}
.coffeeCard .imgBox {
  height: 350px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.coffeeCard .content {
  padding: 1.5rem;
}
.coffeeCard .content h3 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  font-family: "Impacted";
  position: relative;
  margin-bottom: 1rem;
}
.coffeeCard .content h3::after {
  content: "";
  background-color: var(--theme-color);
  height: 2px;
  width: 150px;
  position: absolute;
  left: 0;
  bottom: -0.5rem;
}
.coffeeCard .rating {
  display: block;
  margin-bottom: 0.75rem;
  color: #ffcc00;
}
.coffeeCard .content .contentRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coffeeCard .content h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 1;
}
.coffeeCard .content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  max-width: 125px;
}
.coffeeCard .content p span {
  color: var(--theme-color);
}
.coffeeCard .title {
  color: var(--white);
  font-size: 2rem;
  position: absolute;
  top: 2rem;
  left: 2rem;
}
.coffeeCard .title:hover {
  color: var(--theme-color);
}
.coffeeCard .title span {
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  line-height: 20px;
  font-size: 12px;
  text-align: center;
  position: absolute;
  top: -10px;
  left: 8px;
}
.slick-next::before,
.slick-prev::before {
  display: none;
}
.slick-next,
.slick-prev {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
}
.slick-next:hover,
.slick-prev:hover {
  color: var(--white);
}
.slick-next {
  right: -4rem;
}
.slick-prev {
  left: -4rem;
}
.coffeeCard.slick-slide.slick-current.slick-active.slick-center {
  transform: scale(1.125);
  z-index: 1;
  border-color: var(--theme-color);
}

.beerSec {
  background: url(../images/beerBg.png) center/cover no-repeat;
}
.beerSec .featuredBg {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
}
.beerSec .secHeading {
  font-size: 8.1875rem;
}
.beerSec .secHeading::before {
  color: #deae1f;
}

.beerImg {
  background-color: #4e4604;
  border-radius: 50%;
  max-width: 737px;
  max-height: 737px;
  position: relative;
}
.beerImg img {
  /* max-width: 575px; */
  display: block;
  margin: 0 auto;
  position: relative;
  top: -5rem;
  left: -2rem;
  z-index: 1;
}
.beerColor {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.beerColor .btn {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  box-shadow: 0 0 0px 5px rgba(255, 255, 255, 0.3);
}
.beerColor .btn:nth-child(1) {
  background-color: #fed503;
}
.beerColor .btn:nth-child(2) {
  background-color: #f5af03;
}
.beerColor .btn:nth-child(3) {
  background-color: #f6b003;
}
.beerColor .btn:nth-child(4) {
  background-color: #7b5106;
}

.beerCard .content .contentRow {
  align-items: flex-end;
}
.beerCard .content p {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #828282;
  max-width: 206px;
  margin-bottom: 4rem;
}
.beerCard .imgBox img {
  margin-bottom: -2rem;
}

/* Testimonial Section */
.testimonialSec {
  background: url(../images/testimonialBg.png) center/cover no-repeat;
}
.testimonialImg {
  position: relative;
}
.testimonialImg::before {
  content: "";
  width: 476px;
  height: 448px;
  border: 10px solid var(--theme-color);
  position: absolute;
  right: -3rem;
  top: 0;
  z-index: -1;
}

.testimonial01 {
  position: relative;
  margin-top: -5rem;
}
.testimonial02 {
  position: relative;
  margin-left: auto;
  display: block;
  margin-right: -8rem;
  margin-top: -5rem;
}
.testimonialCard {
  text-align: center;
}
.testimonialCard img {
  max-width: 196px;
  margin: 0 auto;
  max-height: 196px;
  border: 5px solid var(--theme-color);
}
.testimonialCard h3 {
  color: var(--theme-color);
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1;
}
.testimonialCard p {
  font-style: italic;
  margin: 1rem 0;
}
.testimonialCard .rating {
  color: #ffcc00;
  font-size: 16px;
}
.testimonialCard i.fa-quote-left,
.testimonialCard i.fa-quote-right {
  color: var(--theme-color);
  opacity: 0.3;
  display: block;
  text-align: left;
  font-size: 1.5rem;
}
.testimonialCard i.fa-quote-right {
  margin-left: auto;
  text-align: right;
}

/* news Letter Sec */
.newsLtrSec {
  background-color: #0a0a0a;
  padding: 0;
}

.newsLtrForm {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  height: 85px;
  border: 1px solid var(--theme-color);
  background: #090909;
  box-shadow: 0px 3px 6px #00000029;
  opacity: 1;
}
.newsLtrForm input {
  background-color: transparent;
  border: none;
  width: calc(100% - 60px);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  padding-left: 2rem;
}
.newsLtrForm input::placeholder {
  opacity: 0.3;
}
.newsLtrForm input:focus {
  outline: none;
  background-color: transparent;
}
.newsLtrForm button {
  background-color: transparent;
  color: var(--theme-color);
  line-height: 50px;
  text-align: center;
  font-size: 2rem;
  height: 60px;
  width: 70px;
  border: none;
}

footer {
  background: url(../images/footerBg.png) center/cover no-repeat;
  padding-top: 22rem;
  padding-bottom: 12rem;
  position: relative;
}

footer h4 {
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 2.5rem;
  color: #fff;
}
footer p {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  margin: 2rem 0 0;
}
footer .links,
footer .contInfo {
  display: flex;
  flex-flow: column wrap;
  gap: 1.5rem 0;
  margin: 0;
}

footer .links li a {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
  color: #828282;
  font-size: 18px;
}
footer .contInfo li a {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  gap: 0 1rem;
}
footer .contInfo li span {
  color: #828282;
  font-size: 1.125rem;
  font-weight: 600;
  width: calc(100% - 3.5rem);
}

footer .links li a:hover,
footer .links li a:focus {
  color: var(--theme-color);
}
.infoLinks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
}
.infoLinks li a {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  justify-content: flex-start;
  color: #828282;
  font-size: 1.125rem;
}

.copyRight {
  padding: 1em 0;
  margin-top: 3em;
}
.copyRight p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.socialIo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  max-width: 175px;
}
.socialIo li a {
  height: 50px;
  width: 50px;
  font-size: 3.125rem;
  display: block;
  color: #828282;
}
.socialIo li a:hover {
  color: var(--theme-color);
}

.sliderImg {
  animation: tada infinite 3s;
}

.scroll-down {
  display: inline-flex;
  flex-flow: row-reverse;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  font-size: 14px;
  z-index: 1000;
  line-height: 20px;
  position: absolute;
  bottom: 125px;
  left: 50%;
  animation: tada infinite 2s;
  gap: 0 0.5rem;
}

.scroll-down span {
  position: relative;
  top: 0;
  width: 20px;
  height: 35px;
  border: 1px solid var(--white);
  border-radius: 50px;
  box-sizing: border-box;
  transition: 0.3s ease-in-out;
}

.scroll-down span::before {
  position: absolute;
  top: 8px;
  left: 12px;
  content: "";
  width: 4px;
  height: 8px;
  margin-left: -5px;
  background-color: var(--theme-color);
  border-radius: 50px;
}
.scroll-down:hover span {
  background-color: var(--theme-color);
}
.scroll-down:hover span::before {
  background-color: var(--white);
}
