.vanilla-zoom {
  width: 100%;
  /*display: flex;*/
}

.vanilla-zoom .sidebar {
  /*flex-basis: 30%;*/
  width: 100%;
  display: flex;
  /*flex-direction: column;*/
}

.vanilla-zoom .sidebar img.small-preview {
  width: 60px;
  margin-right: 5px;
  cursor: pointer;
  opacity: .5;
}

.vanilla-zoom .sidebar img.small-preview.active, .vanilla-zoom .sidebar img.small-preview:hover {
  opacity: 1;
}

.vanilla-zoom .sidebar img.small-preview:last-child {
  margin-right: 0;
}

.vanilla-zoom .zoomed-image {
  width: 100%;
  height: 300px;
  flex: 1;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  margin-bottom: 5px;
}

@media (min-width: 992px) {
  .logo {
    display: none;
  }
}

.logo {
}

@media (min-width: 992px) {
  .navbar-nav {
    margin: auto !important;
  }
}

.nav-item {
  align-items: center;
  display: flex;
}

.nav-link {
  margin: auto;
}

.clean-block.hero {
  /*margin-top: 150px;*/
  padding: 15px !important;
}

.navbar {
  padding: 0px;
}

.nav-item {
}

.nav-item {
  padding: 10px !important;
}

:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #FFE3E5;
  --bs-secondary: #B99D57;
  --bs-success: #198754;
  --bs-info: #3b99e0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 255, 227, 229;
  --bs-secondary-rgb: 185, 157, 87;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 59, 153, 224;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: "Montserrat", sans-serif;
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

li {
  /*list-style-type: circle;*/
}

.custom-heading1 {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  flex-direction: column;
  margin-bottom: 24px;
  min-height: 73px;
  overflow: hidden;
}

.custom-heading1-background-text {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 90px;
  top: -27px;
}

.custom-heading1-main-text {
  z-index: 999;
  margin: 0px !important;
  height: inherit;
}

.page-footer ul {
}

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 400px;
  border: none;
  perspective: 1000px;
  max-width: 267px;
  margin: auto;
}

/* This container is needed to position the front and back side */

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */

.flip-card-front {
  color: black;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.flip-card-front .card-body {
  height: 100%;
  width: 100%;
}

.flip-card-front .card-body .product-description {
  background: rgba(255, 255, 255, 0.578);
}

/* Style the back side */

.flip-card-back {
  transform: rotateY(180deg);
  overflow: scroll;
  border: 1px solid;
}

.flip-card-back h1 {
  font-size: 24px;
}

