* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Constantia", serif;
  src: url(./Constantia\ Font.ttf);
}

body {
  font-family: "Constantia", serif;
  background-color: #f4f3ee;
  color: #646464;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5625;
}

a,
a:hover {
  color: #000;
  text-decoration: none;
  transition: 0.2s;
}

li {
  list-style: none;
}

/* <------------------------------------------------- Navbar -------------------------------------------------> */

.container-fluid {
  padding: 0 50px 0 50px;
}

.navbar {
  height: 80px;
  background: transparent;
  transition: box-shadow 0.3s ease, background-color 0.3s ease,
    opacity 0.3s ease;
  opacity: 1;
}

.page-scrolled {
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.1);
  background-color: #f4f3ee;
  opacity: 1;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar.fade-out {
  background-color: #f4f3ee;
  animation: fadeOut 0.5s ease-in-out;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.navbar-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.navbar-logo {
  height: 32px;
  margin-top: 7px;
  width: 152px;
}

.navbar-toggler {
  border: none;
  outline: none;
  z-index: 1050;
}

.navbar-toggler-icon {
  width: 2rem;
  height: 2rem;
  outline: none;
  border: none;
}

.offcanvas {
  width: 100%;
  max-width: 100%;
}

.offcanvas.offcanvas-end {
  width: 100%;
}

.offcanvas-body {
  height: 100%;
  padding: 0%;
  overflow: hidden;
}

.offcanvas-left {
  flex: 1;
  background-color: #cbe1e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.offcanvas-right img {
  max-width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar-menu-links {
  scrollbar-width: thin;
  scrollbar-color: #fff #102b26;
  max-height: calc(100% - 100px);
  overflow-y: auto;
}

.navbar-menu a {
  font-size: 24px;
  color: #102b26;
  display: inline-block;
  letter-spacing: 0.1em;
  line-height: 1;
}

.navbar-menu-social a {
  background-color: #102b26;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  transition: 0.4s;
  margin: 0 5px;
}

.navbar-menu-social a:hover {
  background-color: #ceb293;
}

.navbar-menu a:hover {
  color: #1d443c;
}

.nav-link {
  padding: 0 0 20px 0;
}

.offcanvas-right {
  position: relative; /* Ensure children are positioned absolutely */
}

.menu-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 130px 100px 130px 100px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden; /* Hide by default */
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.menu-img.active {
  /* display: block; */
  opacity: 1;
  visibility: visible;
}

.offcanvas-right {
  flex: 1;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* <------------------------------------------------- Hero ------------------------------------------------->  */

.hero {
  width: 100%;
  background-image: url("https://www.tenjakuwhisky.co.uk/wp-content/themes/tenjaku/img/svg/illustration-vertical-stroke-pink.svg"),
    url("https://www.tenjakuwhisky.co.uk/wp-content/themes/tenjaku/img/svg/illustration-scribe-pink.svg"),
    url("https://www.tenjakuwhisky.co.uk/wp-content/themes/tenjaku/img/svg/blossom-branch.svg");
  background-repeat: no-repeat;
  background-position: right, center, bottom left;
  background-size: 50% 100%, 420px, 550px;
}

.hero-col-left {
  width: 550px;
}

.hero-col-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 450px;
  max-height: 720px;
}

.hero-col-right-img {
  width: 100%;
  height: 100%;
  background-image: url("https://www.tenjakuwhisky.co.uk/wp-content/uploads/2021/11/600x800_01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-right-img {
  position: absolute;
  height: calc(100% + 50px);
  top: -25px;
  left: 0%;
  transform: translateX(-50%);
}

.hero-right-img img {
  height: 100%;
  width: auto;
}

.hero-award {
  position: absolute;
  bottom: 0;
  left: 0;
}

.hero-award img {
  max-width: 95px;
  transform: translateX(33.333%) translateY(50%);
}

.hero-mobile-display {
  display: none;
}

/* <------------------------------------------------- Two Columns -------------------------------------------------> */

.row .first-two-colums {
  margin-left: 0;
  margin-right: 0;
}

section.section-lg {
  padding-top: 150px;
  padding-bottom: 150px;
}

.carousel.fade {
  opacity: 1;
}

.carousel {
  width: 500px;
}

.bg-cover {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}

.cover {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cover-position {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.carousel-slide-container {
  position: relative;
  width: 500px;
  height: 312.72px;
  overflow: hidden;
}

.carousel-inner123 {
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.carousel-item123 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
}

.carousel-item123.active {
  opacity: 1;
}

.carousel-image123 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-indicators123 {
  /* position: absolute; */
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.indicator123 {
  background-color: #000;
  border: none;
  opacity: 1;
  height: 10px;
  width: 10px;
  border-radius: 0;
  transform: rotate(45deg);
  transform-origin: center;
  margin: 0 5px;
}

.indicator123.active {
  background-color: transparent;
  border: 2px solid #000;
  height: 10px;
  width: 10px;
  transform: rotate(45deg);
  transform-origin: center;
  margin: 0 5px;
}

/* <------------------------------------------------- slider -------------------------------------------------> */

.slider-section {
  padding: 0;
}

.slider {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 21px;
  text-align: center;
  font-weight: 400;
  padding: 10px;
}

.indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.indicator {
  cursor: pointer;
  opacity: 1;
}

.slider-bird-img {
  top: -110px;
  right: 50px;
  pointer-events: none;
  z-index: 3;
}

/* <------------------------------------------------- Two Columns ------------------------------------------------->  */

.bg-green {
  background-color: #12443b;
}
.bg-overlay {
  opacity: 0.9;
}
.cover {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-index-1 {
  z-index: 1;
}

.two-columns {
  padding-left: 25px;
  padding-right: 25px;
}

.illustration-vertical-stroke-01 {
  height: calc(100% + 200px);
  top: -100px;
  bottom: -100px;
  left: 0;
  transform: translateX(-52%);
  z-index: 1;
  pointer-events: none;
}

/* <------------------------------------------------- Blog-Section -------------------------------------------------> */

.ml-1 {
  margin-left: 0.8rem;
}

.ml-3 {
  margin-left: 1rem;
}

.link-underlined {
  border-bottom: 2px solid #000;
  font-weight: 400;
  padding-bottom: 5px;
  transition: 0.4s;
}

.font-constantia {
  color: #000;
  font-family: "Constantia", serif;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.row-panels {
  margin-bottom: -50px;
}

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

.img-hover-zoom {
  transition: 0.4s;
  transform: scale(1);
}

.img-hover-zoom:hover {
  transform: scale(1.04);
}

.btn {
  position: relative;
  border: none;
  border-left: none;
  font-size: 13px;
  padding: 20px 30px 18px;
  background-image: url("https://www.tenjakuwhisky.co.uk/wp-content/themes/tenjaku/img/bg-gold.png");
  background-position: center;
  background-size: cover;
  border-radius: 0;
  color: #000;
  font-family: "Constantia", serif;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
  transition: none;
}

.btn:hover::before {
  animation: shine 1s ease-out;
}

.btn:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background-color: #000;
  right: 100%;
  bottom: 14px;
  left: 40px;
  transition: 0.3s ease-in-out;
}

.btn:hover:after {
  right: 30px;
  left: 30px;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

/* <------------------------------------------------- Mail-Section -------------------------------------------------> */

section {
  padding-top: 75px;
  padding-bottom: 75px;
}

.bg-blue-light {
  background-color: #cbe1e1;
}

.row {
  margin-left: -5px;
  margin-right: -5px;
}

.mail-section-h2 {
  font-size: 35px;
  letter-spacing: 0.28rem;
  color: #000;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.mail-section-p {
  margin-bottom: 1.5rem;
}

.mail-section-input {
  background: #f4f3ee;
  border: 2px solid #707070;
  border-right: none;
  height: 55px;
  padding: 0 1rem;
  outline: none;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.bg-blue-light .row {
  padding: 0;
}

.mail-section-btn {
  position: relative;
  border: 2px solid #707070;
  border-left: none;
  font-size: 13px;
  padding: 20px 30px 18px;
  background-image: url("https://www.tenjakuwhisky.co.uk/wp-content/themes/tenjaku/img/bg-gold.png");
  background-position: center;
  background-size: cover;
  border-radius: 0;
  color: #000;
  font-family: "Constantia", serif;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.mail-section-btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
  transition: none;
}

.mail-section-btn:hover::before {
  animation: shine 1s ease-out;
}

.mail-section-btn:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background-color: #000;
  right: 100%;
  bottom: 14px;
  left: 40px;
  transition: 0.3s ease-in-out;
}

.mail-section-btn:hover:after {
  right: 30px;
  left: 30px;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

/* <------------------------------------------------- Form -------------------------------------------------> */

.search-form {
  border: 1px solid #102b26;
}

.form-controler {
  background-color: transparent;
  border: none;
  border-radius: 0;
  color: #646464;
  outline: none;
  display: block;
  width: 100%;
  padding: 20px 25px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.search-form .btn {
  height: 100%;
  width: 60px;
  background-image: url("https://www.tenjakuwhisky.co.uk/wp-content/themes/tenjaku/img/bg-btn-gold.jpg");
}

.col-auto {
  padding: 0 5px;
}

.illustration-blossom-branch.flipped {
  top: 25%;
  right: 0;
  left: auto;
  bottom: auto;
  width: 450px;
}

.mt-fuji {
  top: 0;
  left: 50px;
  pointer-events: none;
  width: 425px;
}

/* <------------------------------------------------- Stockist -------------------------------------------------> */

.illustration-scribe-top-left {
  pointer-events: none;
  top: -25px;
  left: 50px;
  width: 540px;
}

/* <------------------------------------------------- cocktail -------------------------------------------------> */

.cocktail-title {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

.ingredients > div {
  border-bottom: 1px solid #707070;
  margin-bottom: 15px;
  padding-bottom: 12px;
}

/* <------------------------------------------------- Ingredients -------------------------------------------------> */

.illustration-scribe-hero {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 540px;
  pointer-events: none;
}

.list-method {
  padding-left: 1rem;
}

.list-method li {
  margin-bottom: 1rem;
  list-style: decimal;
}

/* <------------------------------------------------- contact form -------------------------------------------------> */

.form-control:focus {
  box-shadow: none !important;
  background-color: transparent !important;
  color: #646464;
  border-color: #707070;
  box-shadow: none;
}

.form-check-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

.form-group {
  margin-bottom: 3rem;
}

label {
  display: inline-block;
}

form label {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.form-control {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #707070;
  border-radius: 0;
  color: #646464;
  font-size: 18px;
  font-weight: 300;
  padding: 0 0 1rem;
}

.form-control::placeholder {
  font-size: 14px;
  color: #979797;
}

.form-check-input {
  margin: 4px 10px 0 0;
  position: relative;
}

.form-check label {
  color: #979797;
  font-family: "runda", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

textarea {
  resize: none;
}

.navbar-toggler:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

/* <------------------------------------------------- privacy-policy -------------------------------------------------> */

.page-inner {
  padding: 85px 100px;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
}
/* <------------------------------------------------- News -------------------------------------------------> */

.feat-post-scribe {
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
}

.col-md-5 {
  padding-left: 25px;
  /* padding-right: 25px; */
}

/* ---------------------------------------------------------------------------------------------------- */
.showcase {
  display: flex;
  height: 100vh;
}

.row.row-panels {
  margin-bottom: -50px;
}

.col-panel {
  margin-bottom: 50px;
}

.product-showcase-left,
.product-showcase-right {
  position: relative;
}

.product-showcase-right h1 {
  font-size: 24px;
  margin-top: 1rem;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.showcase-serves-panel {
  background-color: #f4f3ee;
}

.showcase-icons {
  gap: 70px;
}

.serves-grid .col-panel-xs {
  padding: 0.5rem;
}

.illustration-blossom-branch.top-right {
  top: 25px;
  right: 0;
  bottom: auto;
  left: auto;
  width: 550px;
}

.row-showcase {
  height: 100%;
}

.col-showcase.product-showcase-left {
  flex: 0 0 40%;
  max-width: 40%;
}

.col-showcase.product-showcase-right {
  flex: 0 0 60%;
  max-width: 60%;
}

.showcase-serves-panel {
  opacity: 0;
  pointer-events: none;
}

.showcase-serves-panel.show {
  opacity: 1;
  pointer-events: auto;
  transition: 1s ease-in-out;
}

.showcase-serves-panel > div {
  margin-left: 100px;
  width: 425px;
}

.col-showcase.product-showcase-right > div {
  padding-left: 15%;
  padding-right: 50px;
}

.showcase h1,
.showcase h2 {
  letter-spacing: 0.28rem;
}

.video-overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

.showcase-bottle {
  height: 80vh;
  top: 50%;
  left: 40%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  width: auto;
}

.showcase-bottle-mob {
  max-width: 25%;
}

.mr-xl-5 {
  margin-right: 5rem;
}

.btn-showcase-toggle {
  position: relative;
  text-align: center;
}

.btn-showcase-toggle h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn-showcase-toggle p {
  margin-bottom: 1.5rem;
}

.btn-showcase-toggle .serves-grid img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.btn-showcase-toggle .serves-grid img:hover {
  transform: scale(1.05);
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.text-gap {
  gap: 15px;
}

.bg-switch {
  background-color: #cbe1e1;
}

/* <------------------------------------------------- Footer -------------------------------------------------> */

footer {
  padding: 50px;
}

.footer-logo {
  width: 152px;
}

.font-constantia {
  color: #000;
  font-family: "Constantia", serif;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.row-footer-links {
  margin-top: 40px;
  margin-bottom: 40px;
}

.row-footer-links a {
  font-size: 12px;
}

.footer-social a {
  background-color: #102b26;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  transition: 0.4s;
  margin: 0 5px;
}

.footer-social a:hover {
  background-color: #ceb293;
}

.footer-scribe {
  margin-bottom: 30px;
  width: 64px;
}

.footer-bottom {
  font-size: 12px;
  padding: 11px 50px;
}

.row-footer-links a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
  padding-bottom: 7px;
}

.row-footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-image: url("https://www.tenjakuwhisky.co.uk/wp-content/themes/tenjaku/img/bg-gold.png");
  background-size: cover;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.row-footer-links a:hover::after {
  transform: scaleX(1);
}

/* <------------------------------------------------- Media screen 1999px -------------------------------------------------> */

@media (max-width: 1699px) {
  body {
    font-size: 16px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 35px;
    color: #000;
    font-family: "Constantia", serif;
    font-weight: 400;
    letter-spacing: 0.28rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 24px;
    letter-spacing: 0.1rem;
  }

  h3 {
    font-size: 24px;
    letter-spacing: 0.1rem;
  }

  h4 {
    font-size: 21px;
    letter-spacing: 0.1rem;
  }

  .page-scrolled {
    height: 56px;
  }

  .hero-col-left {
    width: 500px;
  }

  .hero-mobile-display {
    display: none;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .hero-left-sky-lark {
    top: -100px;
    right: -75px;
    width: 150px;
  }

  .hero-tab-none {
    display: none;
  }

  .contained-column {
    width: 500px;
  }

  section.section-lg {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .illustration-vertical-stroke-01 {
    height: calc(100% + 150px);
    top: -75px;
    bottom: -75px;
  }

  .illustration-stork {
    width: 300px;
  }

  .slider-bird-img {
    width: 300px;
  }

  .illustration-sky-lark-over-banner {
    right: 5px;
    bottom: -75px;
    width: 200px;
  }

  .illustration-sky-lark-over-text {
    width: 140px;
    top: -90%;
    right: -15%;
  }

  .top-padding {
    height: 105px;
  }

  .illustration-stork-over-banner {
    right: 10px;
    bottom: -60px;
    width: 325px;
  }

  .illustration-blossom-branch.flipped {
    width: 350px;
  }

  .mt-fuji {
    width: 350px;
  }

  .form-control {
    height: 60px;
  }

  .illustration-scribe-top-left {
    width: 420px;
    top: 0;
  }

  form label {
    font-size: 21px;
  }

  .form-control {
    font-size: 16px;
  }

  .page-inner {
    padding: 65px 75px;
  }

  .showcase-bottle {
    height: 70vh;
    max-height: 550px;
  }

  .showcase-serves-panel > div {
    margin-left: 50px;
    width: 100%;
  }

  .serves-grid {
    max-width: 330px;
  }

  .col-showcase.product-showcase-right > div {
    padding-left: 10%;
    padding-right: 25px;
  }

  .illustration-blossom-branch.top-right {
    width: 450px;
  }

  .illustration-scribe-hero {
    width: 420px;
  }

  .illustration-blossom-branch {
    bottom: -75px;
    left: -70px;
    width: 550px;
  }

  .z-index-minus-1{
    z-index: -1;
  }
}

/* <------------------------------------------------- Media screen 991px -------------------------------------------------> */

@media (max-width: 991px) {
  .slider-bird-img {
    width: 200px;
    right: 25px;
    top: -75px;
  }

  .menu-img {
    margin: 75px;
  }

  .third-blog {
    display: none;
  }

  .hero-mobile-display {
    display: none;
  }

  .hero {
    background-position: right, center, bottom left;
    background-size: 50%, 400px, 450px;
  }

  .hero-tab-none {
    display: block;
  }

  .hero-left-sky-lark {
    top: -75px;
    right: -70px;
    width: 120px;
  }

  .hero-section {
    padding: 0;
    gap: 85px;
  }

  h1 {
    font-size: 24px;
    letter-spacing: 0.2rem;
  }

  .hero-col-left {
    padding-left: 25px;
    width: 350px;
  }

  .hero-col-right {
    max-width: 300px;
    max-height: 400px;
  }

  .hero-right-img {
    top: -10px;
    height: calc(100% + 30px);
  }

  .hero-award {
    bottom: -5px;
    left: 20px;
  }

  .hero-award img {
    max-width: 60px;
  }

  .illustration-sky-lark-over-banner {
    right: 10px;
    bottom: -50px;
    width: 150px;
  }

  .illustration-sky-lark-over-text {
    top: -15%;
    right: -65%;
  }

  .illustration-stork-over-banner {
    bottom: -50px;
    width: 250px;
  }

  .illustration-blossom-branch.flipped {
    width: 250px;
  }

  .illustration-scribe-top-left {
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
  }

  .illustration-blossom-branch.top-right {
    top: -75px;
    width: 350px;
  }

  .illustration-scribe-hero.cocktail-scribe {
    width: 100%;
    top: 50%;
    right: 0;
    left: 0;
    bottom: auto;
    transform: translateX(0) translateY(-50%);
  }

  .page-inner {
    padding: 45px 50px;
  }

  .showcase-serves-panel > div {
    margin-left: 0;
  }

  .showcase-serves-panel {
    background-color: #cbe1e1;
  }

  .col-showcase.product-showcase-left {
    flex: 0 0 100%;
    max-width: 100%;
    height: 100vh;
  }

  .product-showcase-left {
    margin-top: 100px;
  }

  .col-showcase.product-showcase-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-showcase.product-showcase-right > div {
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
  }

  .showcase-icons {
    gap: 60px;
  }

  .mr-xl-5 {
    margin-right: 0;
  }

  .bg-switch {
    background-color: transparent;
  }

  .grid-position {
    text-align: center;
  }

  .serves-grid {
    margin: auto;
    max-width: 600px;
  }
}

/* <------------------------------------------------- Media screen 575px -------------------------------------------------> */

@media (max-width: 575px) {
  body {
    font-size: 14px;
  }

  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  h1,
  h2,
  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 24px;
    color: #000;
  }

  .hero-display-none {
    display: none;
  }

  .hero-mobile-display {
    display: block;
  }

  .offcanvas-right {
    display: none;
  }

  .page-scrolled {
    height: 70px;
  }

  .third-blog {
    display: block;
  }

  .carousel-slide-container {
    position: relative;
    width: 330px;
    height: 312.72px;
    overflow: hidden;
  }

  .contained-column {
    width: 330px;
  }

  .illustration-vertical-stroke-01 {
    height: calc(100% + 150px);
    top: -75px;
    bottom: -75px;
    z-index: 0;
  }

  .slide .text {
    width: calc(100% - 50px);
    font-size: 18px;
  }

  .slider-bird-img {
    right: 12.5px;
    top: -65px;
    width: 175px;
  }

  .hero-col-left {
    width: 100%;
    padding: 15px;
    margin-top: 40px;
  }

  .hero-col-right {
    width: 100%;
    max-height: 400px;
    height: 370px;
  }

  .hero-col-right-img {
    width: 340px;
    height: 368px;
    background-size: cover;
  }

  .hero-right-img {
    top: -14px;
    left: -40px;
    transform: none;
  }

  .hero-award {
    bottom: -35px;
    left: 40px;
    display: block;
  }

  .hero-award img {
    max-width: 70px;
    transform: none;
  }

  h1 {
    text-align: center;
    font-size: 1.5rem;
  }

  .hero {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .illustration-sky-lark-over-banner {
    right: 0px;
    bottom: -50px;
    width: 125px;
  }

  .illustration-sky-lark-over-text {
    width: 100px;
    top: -15%;
    right: -55%;
  }

  .illustration-stork-over-banner {
    right: 0px;
    bottom: -25px;
    width: 175px;
  }

  .illustration-scribe-top-left {
    width: 90%;
  }

  .illustration-blossom-branch {
    bottom: -42px;
    left: -30px;
    width: 275px;
  }

  .text-xl-left {
    text-align: center;
  }

  .feat-post-scribe {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    transform: none;
    height: 100%;
  }

  .page-inner {
    padding: 30px 35px;
  }

  .page-inner h1 {
    text-align: start;
  }
}

@media screen and (max-width: 575px) {
  .col-showcase.product-showcase-right > div {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 50px;
  }

  .showcase-icons img {
    width: 30px;
  }

  .text-md-left {
    text-align: center;
  }

  .showcase-icons {
    gap: 7px;
  }

  .col-showcase.product-showcase-left,
  .col-showcase.product-showcase-right {
    flex-direction: column;
    max-width: 100%;
  }

  .col-showcase.left {
    height: 100%;
  }

  .showcase-bottle-mob {
    max-width: 33.333333%;
  }

  .mr-xl-5 {
    margin-right: 0px;
  }

  /* .col-panel {
    margin-bottom: -40px;
  } */

  .showcase-character .row-panels {
    gap: 70px;
  }
}
