* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins','Open Sans', sans-serif;
  position: relative;
  max-width: 100%;
}

.header {
  height: 80vh;
  scroll-snap-align: start;
}

@media (max-width: 1200px) {
  .header {
    position: relative;
  }
}

.header .nav-toggle-open-button {
  display: none;
  background-color: #16161A;
  color: white;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 5px solid black;
  position: absolute;
  top: 5%;
  right: 5%;
}

@media (max-width: 1200px) {
  .header .nav-toggle-open-button {
    display: block;
  }
}

.header .nav {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.3s ease;
}

@media (max-width: 1200px) {
  .header .nav {
    height: 100vh;
    width: 100vw;
    background-color: white !important;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    right: -100%;
    top: 0;
    z-index: 1000;
    transition: 0.5s;
    height: 100vh;
  }
}

.header .nav .nav-toggle-close-button {
  background-color: #EFA606;
  color: black;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  width: 100%;
  height: 50px;
  text-align: right;
  padding-right: 20px;
  border-radius: 0px;
  border: none;
  display: none;
}

@media (max-width: 1200px) {
  .header .nav .nav-toggle-close-button {
    display: block;
  }
}

.header .nav .nav-logo {
  margin-left: 50px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .header .nav .nav-logo {
    margin-left: 0;
    margin-top: 2vh;
    margin-bottom: 2vh;
    display: none;
  }
}

.header .nav .nav-logo .nav-logo-img {
  margin: 0;
  padding: 0;
  height: 70px;
  object-fit: cover;
}

.header .nav .nav-logo-2 {
  margin-left: 50px;
  cursor: pointer;
  display: none;
}

@media (max-width: 1200px) {
  .header .nav .nav-logo-2 {
    margin-left: 0;
    margin-bottom: 6vh;
    margin-top: auto;
    display: block;
  }
}

.header .nav .nav-logo-2 .nav-logo-img {
  margin: 0;
  padding: 0;
  height: 60%;
  object-fit: cover;
}

.header .nav .nav-links {
  background-color: white;
  border-radius: 100px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);
}

@media (max-width: 1200px) {
  .header .nav .nav-links {
    border-radius: 0px;
    width: 100%;
  }
}

.header .nav .nav-links ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 5px 30px;
}

@media (max-width: 1200px) {
  .header .nav .nav-links ul {
    flex-direction: column;
  }
}

.header .nav .nav-links ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 1200px) {
  .header .nav .nav-links ul li {
    width: 100%;
  }
}

.header .nav .nav-links ul li ::after {
  content: '';
  width: 0%;
  height: 1px;
  background-color: #16161A;
  background-color: rgba(22, 22, 26, 0.8);
  display: block;
  margin: auto;
  transition: 0.5s;
  border-radius: 10px;
}

.header .nav .nav-links ul li a {
  text-decoration: none;
  font-weight: 500;
  color: black;
  font-size: 0.86rem;
  padding: 10px 20px;
  text-transform: lowercase;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .header .nav .nav-links ul li a {
    width: 100%;
    text-align: center;
  }
}

.header .nav .nav-links ul li:hover ::after {
  width: 100%;
}

.header .nav .nav-links ul li:hover .nav-links-dropdown {
  display: flex;
}

@media (max-width: 1200px) {
  .header .nav .nav-links ul li .nav-products {
    pointer-events: none;
  }
}

.header .nav .nav-links ul li .nav-links-dropdown {
  position: absolute;
  z-index: 1000;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  top: 100%;
  left: 0;
  background-color: white;
  width: 100%;
  width: 136px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.07);
}

@media (max-width: 1200px) {
  .header .nav .nav-links ul li .nav-links-dropdown {
    left: 50%;
    transform: translateX(-50%);
  }
}

.header .nav .nav-links ul li .nav-links-dropdown .nav-links-dropdown-option {
  width: 96px;
  background-color: white;
}

.header .nav .nav-links ul li .nav-links-dropdown .nav-links-dropdown-option:hover {
  background-color: #e4e4e4;
}

.header .nav .nav-links ul li .nav-links-dropdown :last-child {
  border-radius: 0 0 10px 10px;
}

.header .nav .nav-links ul .nav-links-active:hover ::after {
  display: none;
}

.header .nav .nav-freezedry-button {
  margin-right: 50px;
  background-color: #16161A;
  color: #19DCFF;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 10px 50px;
  border-radius: 100px;
  border: 5px solid black;
  transition: 0.5s;
  text-transform: capitalize;
}

.header .nav .nav-freezedry-button:hover {
  text-shadow: 0 0 1px #19DCFF, 0 0 2px #19DCFF, 0 0 5px #19DCFF, 0 0 10px #19DCFF, 0 0 30px #19DCFF, 0 0 60px #19DCFF;
}

@media (max-width: 1200px) {
  .header .nav .nav-freezedry-button {
    margin: 0;
    margin-top: 20px;
    padding: 10px 0px;
    border-radius: 10px;
    width: 80vw;
    text-align: center;
    text-transform: uppercase;
  }
}

.header .nav .nav-products-button {
  margin-right: 50px;
  background-color: #16161A;
  color: #EFA606;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 10px 50px;
  border-radius: 100px;
  border: 5px solid black;
  transition: 0.5s;
  text-transform: capitalize;
}

.header .nav .nav-products-button:hover {
  text-shadow: 0 0 1px #EFA606, 0 0 2px #EFA606, 0 0 5px #EFA606, 0 0 10px #EFA606, 0 0 30px #EFA606, 0 0 60px #EFA606;
}

@media (max-width: 1200px) {
  .header .nav .nav-products-button {
    margin: 0;
    margin-top: 20px;
    padding: 10px 0px;
    border-radius: 10px;
    width: 80vw;
    text-align: center;
    text-transform: uppercase;
  }
}

.header .background-poster {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  min-height: 700px;
}

@media (max-width: 1200px) {
  .header .background-poster {
    display: block;
  }
}

.header .background-video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  height: 100vh;
  width: 100vw;
  min-height: 700px;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .header .background-video {
    display: none;
  }
}

.header .featuresImage-container {
  width: 100vw;
  height: 60vh;
  max-height: 600px;
}

.header .featuresImage-container .featureImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header .feature-logo-box {
  position: absolute;
  top: 28%;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.header .feature-logo-box .feature-logo {
  width: 20%;
}

@media (min-width: 2000px) {
  .header .feature-logo-box .feature-logo {
    width: 17%;
  }
}

@media (max-width: 1200px) {
  .header .feature-logo-box .feature-logo {
    width: 35%;
  }
}

@media (max-width: 640px) {
  .header .feature-logo-box .feature-logo {
    width: 60%;
  }
}

.header h1 {
  position: absolute;
  bottom: 50%;
  text-align: center;
  font-weight: 700;
  font-family: 'Alegreya Sans', sans-serif;
  color: #2A2D37;
  top: 62%;
  left: 10%;
  right: 10%;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 5rem;
  text-transform: capitalize;
  white-space: pre-line;
  letter-spacing: -6px;
  line-height: 95%;
  color: #323340;
}

@media (max-width: 1200px) {
  .header h1 {
    font-size: 4rem;
    letter-spacing: -4px;
    top: 55%;
  }
}

@media (max-width: 640px) {
  .header h1 {
    font-size: 3rem;
    letter-spacing: -2px;
    top: 55%;
  }
}

@media (max-width: 290px) {
  .header h1 {
    font-size: 2rem;
    letter-spacing: -2px;
  }
}

.header .checkout-box {
  position: absolute;
  bottom: -12%;
  left: 20%;
  right: 20%;
  text-align: center;
  font-size: 1.0rem;
  text-transform: capitalize;
  font-weight: 600;
  font-family: 'Alegreya Sans', sans-serif;
  color: #2A2D37;
}

.header .checkout-box .arrow-icon {
  width: 50px;
  transition: 1.5s;
  cursor: pointer;
  box-shadow: -2px -2px 10px rgba(255, 255, 255, 0.85), 2px 2px 4px rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

.header .checkout-box .arrow-icon:hover {
  transform: rotate(360deg);
}

.header .checkout-box .checkout-label {
  margin-top: 10px;
}

.hero {
  margin-left: auto;
  margin-right: auto;
  width: 100vw;
  height: 30vh;
  max-height: 600px;
}

@media (max-width: 1200px) {
  .hero {
    margin-top: -100px;
  }
}

.hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-container {
  scroll-snap-align: start;
  height: 200px;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #F6F6F6;
  display: none;
}

.title-container .title-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
}

.title-container .title-left h1 {
  margin-left: -20px;
  font-size: 2.86rem;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Alegreya Sans', sans-serif;
}

.intro {
  scroll-snap-align: start;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 20vh;
  background-color: #FFFBF5;
}

.intro .yellow-box {
  width: 100vw;
  max-width: 1600px;
  height: 600px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0px 0px;
  position: relative;
}

@media (max-width: 640px) {
  .intro .yellow-box {
    height: auto;
    margin-top: 40px;
  }
}

.intro .yellow-box .yellow-box-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0px 70px;
}

@media (max-width: 640px) {
  .intro .yellow-box .yellow-box-container {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
  }
}

.intro .yellow-box .yellow-box-container .yellow-box-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 40%;
}

@media (max-width: 640px) {
  .intro .yellow-box .yellow-box-container .yellow-box-left {
    width: 100%;
  }
}

.intro .yellow-box .yellow-box-container .yellow-box-left .yellow-box-title {
  font-size: 2.86rem;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Alegreya Sans', sans-serif;
  margin-right: 20px;
}

@media (max-width: 640px) {
  .intro .yellow-box .yellow-box-container .yellow-box-left .yellow-box-title {
    font-size: 1.86rem;
    margin-left: 20px;
  }
}

.intro .yellow-box .yellow-box-container .yellow-box-left .learn-more-button {
  margin-top: 40px;
  background-color: #EFA606;
  padding: 10px 30px;
  border-radius: 8px;
  color: white;
  text-transform: lowercase;
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 1.5rem;
  box-shadow: -4px -4px 4px white, 2px 2px 6px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
  font-size: 1.2rem;
}

@media (max-width: 640px) {
  .intro .yellow-box .yellow-box-container .yellow-box-left .learn-more-button {
    margin-top: 20px;
    margin-left: 20px;
  }
}

.intro .yellow-box .yellow-box-container .yellow-box-left .learn-more-button:hover {
  background-color: white;
  color: #EFA606;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.intro .yellow-box .yellow-box-container .yellow-box-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 60%;
}

@media (max-width: 640px) {
  .intro .yellow-box .yellow-box-container .yellow-box-right {
    width: 100%;
  }
}

.intro .yellow-box .yellow-box-container .yellow-box-right .yellow-box-desc {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-left: 20px;
  word-spacing: 4px;
}

@media (max-width: 640px) {
  .intro .yellow-box .yellow-box-container .yellow-box-right .yellow-box-desc {
    font-size: 1.3rem;
    margin: 0;
    margin: 20px;
    font-weight: 300;
    text-align: justify;
  }
}

.intro .yellow-box .yellow-box-bowl {
  position: absolute;
  bottom: -150px;
  right: 50px;
  width: 260px;
  transition: 1.5s;
  display: none;
  cursor: pointer;
}

.intro .yellow-box .yellow-box-bowl:hover {
  transform: rotate(360deg);
}

.ourProducts {
  margin-top: 20vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .ourProducts {
    margin-top: 10vh;
    height: auto;
  }
}

.ourProducts .ourProducts-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ourProducts .ourProducts-top .ourProducts-top-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}

@media (max-width: 640px) {
  .ourProducts .ourProducts-top .ourProducts-top-box {
    width: 100%;
  }
}

.ourProducts .ourProducts-top .ourProducts-top-box .ourProducts-title {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 9.86rem;
  text-transform: capitalize;
  white-space: pre-line;
  letter-spacing: -8px;
  line-height: 80%;
  color: #323340;
}

@media (max-width: 1200px) {
  .ourProducts .ourProducts-top .ourProducts-top-box .ourProducts-title {
    font-size: 5.86rem;
    margin-left: 20px;
  }
}

@media (max-width: 640px) {
  .ourProducts .ourProducts-top .ourProducts-top-box .ourProducts-title {
    font-size: 4.86rem;
    letter-spacing: -4px;
  }
}

@media (max-width: 290px) {
  .ourProducts .ourProducts-top .ourProducts-top-box .ourProducts-title {
    font-size: 3.86rem;
    letter-spacing: -4px;
  }
}

.ourProducts .ourProducts-top .ourProducts-top-box .ourProducts-title-img {
  width: 350px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  box-shadow: 1rem 1.5rem 3.5rem -0.75rem rgba(0, 0, 0, 0.35);
}

@media (max-width: 1200px) {
  .ourProducts .ourProducts-top .ourProducts-top-box .ourProducts-title-img {
    width: 200px;
  }
}

@media (max-width: 640px) {
  .ourProducts .ourProducts-top .ourProducts-top-box .ourProducts-title-img {
    display: none;
  }
}

.ourProducts .ourProducts-bottom {
  width: 100%;
  height: 70vh;
  margin-top: 200px;
}

@media (max-width: 1200px) {
  .ourProducts .ourProducts-bottom {
    margin-top: 100px;
    height: auto;
  }
}

.ourProducts .ourProducts-bottom ul {
  list-style-type: none;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .ourProducts .ourProducts-bottom ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1200px) {
  .ourProducts .ourProducts-bottom ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.ourProducts .ourProducts-bottom ul .ourProducts-fd {
  background-color: black;
  color: #19DCFF;
  text-shadow: 0 0 1px #19DCFF, 0 0 2px #19DCFF, 0 0 10px #19DCFF;
  transition: 0.6s;
  -webkit-text-stroke: 1px black;
}

.ourProducts .ourProducts-bottom ul .ourProducts-fd:hover {
  color: black;
  text-shadow: none;
}

.ourProducts .ourProducts-bottom ul li {
  height: 100%;
  width: 25%;
  border: 1px solid lightgray;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

@media (max-width: 1200px) {
  .ourProducts .ourProducts-bottom ul li {
    width: 49%;
    height: 70vh;
  }
}

.ourProducts .ourProducts-bottom ul li:hover .ourProducts-hover {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  top: 0;
  border-radius: 0 0 0 0;
}

.ourProducts .ourProducts-bottom ul li:hover .ourProducts-active .ourProducts-product-info-box .ourProducts-product-info .ourProducts-product-info-button {
  display: block;
}

.ourProducts .ourProducts-bottom ul li .ourProducts-hover {
  background-color: #EFA606;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  transition: 0.6s;
  border-radius: 0 100% 0 0;
}

.ourProducts .ourProducts-bottom ul li .ourProducts-hover-fd {
  background-color: #19DCFF;
}

.ourProducts .ourProducts-bottom ul li .ourProducts-active {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  transition: 0.6s;
}

@media (max-width: 640px) {
  .ourProducts .ourProducts-bottom ul li .ourProducts-active {
    flex-direction: column;
  }
}

.ourProducts .ourProducts-bottom ul li .ourProducts-active .ourProducts-product-title-box {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .ourProducts .ourProducts-bottom ul li .ourProducts-active .ourProducts-product-title-box {
    justify-content: flex-start;
    width: 100%;
  }
}

.ourProducts .ourProducts-bottom ul li .ourProducts-active .ourProducts-product-title-box .ourProducts-product-title {
  transform: rotate(-90deg);
  transform-origin: left;
  /* Safari */
  -webkit-transform: rotate(-90deg);
  /* Firefox */
  -moz-transform: rotate(-90deg);
  /* IE */
  -ms-transform: rotate(-90deg);
  /* Opera */
  -o-transform: rotate(-90deg);
  /* Internet Explorer */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 800;
  font-size: 3.86rem;
  text-transform: uppercase;
  margin-left: 80px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .ourProducts .ourProducts-bottom ul li .ourProducts-active .ourProducts-product-title-box .ourProducts-product-title {
    margin-left: 70px;
    font-size: 2.5rem;
    margin-bottom: -20px;
    letter-spacing: -3px;
  }
}

@media (max-width: 290px) {
  .ourProducts .ourProducts-bottom ul li .ourProducts-active .ourProducts-product-title-box .ourProducts-product-title {
    font-size: 1.8rem;
    letter-spacing: -1px;
  }
}

.ourProducts .ourProducts-bottom ul li .ourProducts-active .ourProducts-product-info-box {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .ourProducts .ourProducts-bottom ul li .ourProducts-active .ourProducts-product-info-box {
    width: 100%;
    height: 30vh;
  }
}

.ourProducts .ourProducts-bottom ul li .ourProducts-active .ourProducts-product-info-box .ourProducts-product-info-img {
  width: 70%;
  object-fit: contain;
}

@media (max-width: 640px) {
  .ourProducts .ourProducts-bottom ul li .ourProducts-active .ourProducts-product-info-box .ourProducts-product-info-img {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    height: 100px;
  }
}

.ourProducts .ourProducts-bottom ul li .ourProducts-active .ourProducts-product-info-box .ourProducts-product-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 50px;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  white-space: pre-line;
  line-height: 110%;
}

@media (max-width: 640px) {
  .ourProducts .ourProducts-bottom ul li .ourProducts-active .ourProducts-product-info-box .ourProducts-product-info {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    margin-top: 10px;
  }
}

.ourProducts .ourProducts-bottom ul li .ourProducts-active .ourProducts-product-info-box .ourProducts-product-info .ourProducts-product-info-button {
  display: none;
  margin-top: 10px;
  background-color: transparent;
  padding: 5px 20px;
  border-radius: 8px;
  color: black;
  text-transform: lowercase;
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 1rem;
  border: 1px solid black;
  transition: 0.2s;
  animation: ease-in;
}

.ourProducts .ourProducts-bottom ul li .ourProducts-active .ourProducts-product-info-box .ourProducts-product-info .ourProducts-product-info-button:hover {
  background-color: white;
  color: black;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

@media (max-width: 640px) {
  .ourProducts .ourProducts-bottom ul li .ourProducts-active .ourProducts-product-info-box .ourProducts-product-info .ourProducts-product-info-button {
    border-radius: 4px;
    font-size: 0.86rem;
    padding: 3px 20px;
  }
}

.ourServices {
  margin-top: 30vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .ourServices {
    overflow: hidden;
    margin-top: 10vh;
  }
}

@media (max-width: 640px) {
  .ourServices {
    margin-top: 10vh;
    overflow: hidden;
  }
}

.ourServices .ourServices-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ourServices .ourServices-top .ourServices-top-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  position: relative;
}

@media (max-width: 640px) {
  .ourServices .ourServices-top .ourServices-top-box {
    width: 100%;
  }
}

.ourServices .ourServices-top .ourServices-top-box .ourServices-title {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 9.86rem;
  text-transform: capitalize;
  white-space: pre-line;
  letter-spacing: -8px;
  line-height: 80%;
  color: #323340;
}

@media (max-width: 1200px) {
  .ourServices .ourServices-top .ourServices-top-box .ourServices-title {
    font-size: 5.86rem;
    margin-left: 20px;
  }
}

@media (max-width: 640px) {
  .ourServices .ourServices-top .ourServices-top-box .ourServices-title {
    font-size: 4.86rem;
    letter-spacing: -4px;
  }
}

@media (max-width: 290px) {
  .ourServices .ourServices-top .ourServices-top-box .ourServices-title {
    font-size: 3.86rem;
    letter-spacing: -4px;
  }
}

.ourServices .ourServices-top .ourServices-top-box .ourServices-title-img {
  position: absolute;
  width: 40vw;
  top: 0;
  right: -7%;
  max-height: 1200px;
  object-fit: contain;
  z-index: -10;
}

@media (max-width: 1680px) {
  .ourServices .ourServices-top .ourServices-top-box .ourServices-title-img {
    width: 30vw;
    top: 50%;
  }
}

@media (max-width: 1200px) {
  .ourServices .ourServices-top .ourServices-top-box .ourServices-title-img {
    flex-direction: column;
    top: 0%;
    right: -45%;
    width: 60vw;
    overflow: hidden;
  }
}

.ourServices .ourServices-bottom {
  width: 80%;
  margin-top: 200px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .ourServices .ourServices-bottom {
    margin-top: 100px;
    justify-content: center;
  }
}

.ourServices .ourServices-bottom ul {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1700px;
  list-style: none;
}

@media (max-width: 640px) {
  .ourServices .ourServices-bottom ul {
    width: 100%;
  }
}

.ourServices .ourServices-bottom ul li {
  height: 17rem;
  margin-bottom: 90px;
  margin-right: 20px;
}

@media (max-width: 1200px) {
  .ourServices .ourServices-bottom ul li {
    height: auto;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

.ourServices .ourServices-bottom ul li .ourServices-service {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 35px;
  border-radius: 1.1rem;
  max-width: 500px !important;
  border: 0px solid rgba(173, 216, 230, 0.5);
  transition: 0.3s;
}

.ourServices .ourServices-bottom ul li .ourServices-service:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(173, 216, 230, 0.5);
}

.ourServices .ourServices-bottom ul li .ourServices-service .ourServices-icon {
  width: 25px;
}

.ourServices .ourServices-bottom ul li .ourServices-service .ourServices-service-title {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: 'Alegreya Sans', sans-serif;
  margin-top: 12px;
  width: 95%;
}

.ourServices .ourServices-bottom ul li .ourServices-service .ourServices-service-text {
  font-size: 1.3rem;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  text-align: left;
  margin-top: 10px;
}

.ourServices .ourServices-bottom ul .ourServices-logo-box {
  height: 220px;
  width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ourServices .ourServices-bottom ul .ourServices-logo-box .ourServices-logo {
  max-width: 80%;
}

.products {
  scroll-snap-align: start;
  margin-top: 300px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  display: none;
}

.products:hover .products-bg {
  width: 43%;
}

.products .products-bg {
  width: 40%;
  max-width: 800px;
  position: absolute;
  margin-top: 90px;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  transition: 1s;
}

.products .products-title {
  font-size: 2.86rem;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Alegreya Sans', sans-serif;
}

.products .products-box {
  margin-top: 90px;
  width: 80vw;
  max-width: 1790px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

.products .products-box .products-product {
  width: 20%;
  cursor: pointer;
  transition: 0.5s;
}

.products .products-box .products-product:hover {
  margin-top: -20px;
  box-shadow: 0 30px 20px rgba(0, 0, 0, 0.06);
}

.services {
  scroll-snap-align: start;
  margin-top: 300px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services .services-title {
  font-size: 2.86rem;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Alegreya Sans', sans-serif;
}

.services .services-container {
  width: 70vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 90px;
  max-width: 1300px !important;
}

.services .services-container .services-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.services .services-container .services-left .services-service {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px;
  margin-top: 20px;
  border-radius: 10px;
  max-width: 500px !important;
  border: 0px solid rgba(173, 216, 230, 0.5);
  transition: 0.3s;
}

.services .services-container .services-left .services-service:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(173, 216, 230, 0.5);
}

.services .services-container .services-left .services-service .services-icon {
  width: 20px;
}

.services .services-container .services-left .services-service .serives-service-title {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'Alegreya Sans', sans-serif;
  margin-top: 12px;
}

.services .services-container .services-left .services-service .serives-service-text {
  font-size: 1.0rem;
  font-weight: 300;
  font-family: 'Alegreya Sans', sans-serif;
  margin-top: 10px;
}

.services .services-container .services-right {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.services .services-container .services-right .services-img {
  width: 100%;
  max-width: 500px !important;
}

.Comingsoon {
  min-height: 80vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.Comingsoon p {
  font-size: 6.86rem;
}

@media (max-width: 1200px) {
  .Comingsoon p {
    font-size: 3.86rem;
    width: 100%;
    text-align: center;
  }
}

.whatsnew {
  scroll-snap-align: start;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 400px;
  display: none;
}

.whatsnew .blue-box {
  width: 80vw;
  max-width: 1790px;
  height: 500px;
  background-color: #F2FBFC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px 0px;
  border-radius: 20px;
  display: none;
}

.whatsnew .blue-box .blue-box-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0px 70px;
}

.whatsnew .blue-box .blue-box-container .blue-box-left {
  width: 50%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.whatsnew .blue-box .blue-box-container .blue-box-left .blue-box-left-title {
  font-size: 2rem;
  font-weight: 500;
  font-family: 'Alegreya Sans', sans-serif;
  text-transform: uppercase;
}

.whatsnew .blue-box .blue-box-container .blue-box-left .blue-box-left-subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: 'Alegreya Sans', sans-serif;
}

.whatsnew .blue-box .blue-box-container .blue-box-left .blue-box-left-text {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: 'Alegreya Sans', sans-serif;
}

.whatsnew .blue-box .blue-box-container .blue-box-right-img {
  height: 80%;
  width: 30%;
  max-width: 30%;
  max-height: 80%;
  border-radius: 12px;
  object-fit: cover;
}

.berry {
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 15vh;
  display: none;
}

.berry .berry-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 80vw;
}

.berry .berry-container .berry-left {
  width: 30%;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

.berry .berry-container .berry-right {
  width: 30%;
}

.contact {
  scroll-snap-align: start;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.contact .contact-box {
  width: 80vw;
  max-width: 1790px;
  height: 350px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .contact .contact-box {
    height: auto;
  }
}

.contact .contact-box .contact-box-left {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .contact .contact-box .contact-box-left {
    flex-direction: column;
  }
}

.contact .contact-box .contact-box-left .contact-address-box {
  width: 300px;
  height: 100%;
  background-color: #F8F8F8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border-radius: 9px;
}

.contact .contact-box .contact-box-left .contact-address-box .contact-blackLeafLogo {
  width: 40px;
  margin-top: 40px;
  margin-left: 40px;
  display: none;
}

.contact .contact-box .contact-box-left .contact-address-box .contact-address-info {
  margin-bottom: 40px;
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 50px;
}

.contact .contact-box .contact-box-left .contact-address-box .contact-address-info .contact-address-label {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: 'Alegreya Sans', sans-serif;
}

.contact .contact-box .contact-box-left .contact-address-box .contact-address-info .contact-address-address {
  font-size: 1.2rem;
  font-weight: 300;
  font-family: 'Alegreya Sans', sans-serif;
  margin-top: 10px;
}

.contact .contact-box .contact-box-left .contact-contact-box {
  width: 300px;
  height: 100%;
  background-color: #FBF7FF;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border-radius: 9px;
}

@media (max-width: 640px) {
  .contact .contact-box .contact-box-left .contact-contact-box {
    margin-left: 0;
    margin-top: 10px;
  }
}

.contact .contact-box .contact-box-left .contact-contact-box .contact-blackLeafLogo {
  width: 40px;
  margin-top: 40px;
  margin-left: 40px;
  display: none;
}

.contact .contact-box .contact-box-left .contact-contact-box .contact-contact-info {
  margin-bottom: 40px;
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 50px;
}

.contact .contact-box .contact-box-left .contact-contact-box .contact-contact-info .contact-contact-label {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: 'Alegreya Sans', sans-serif;
  margin-bottom: 6px;
}

.contact .contact-box .contact-box-left .contact-contact-box .contact-contact-info .contact-contact-contact {
  font-size: 1.2rem;
  font-weight: 300;
  font-family: 'Alegreya Sans', sans-serif;
  margin-top: 10px;
  text-decoration: none;
  color: #000000;
}

.contact .contact-box .contact-box-left .contact-icon-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
}

.contact .contact-box .contact-box-left .contact-icon-box .contact-icon {
  width: 30px;
  cursor: pointer;
  border-radius: 50%;
  transition: 1s;
  text-decoration: none;
}

.contact .contact-box .contact-box-left .contact-icon-box .contact-icon:hover {
  width: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.contact .contact-box .contact-box-right {
  width: 40%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.contact .contact-box .contact-box-right .contact-secondlogo {
  width: 90%;
}

.contactDark {
  scroll-snap-align: start;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 15vh;
  padding-bottom: 15vh;
  background-color: #20232B;
}

.contactDark .contact-box {
  width: 80vw;
  max-width: 1790px;
  height: 350px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .contactDark .contact-box {
    height: auto;
  }
}

.contactDark .contact-box .contact-box-left {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .contactDark .contact-box .contact-box-left {
    flex-direction: column;
  }
}

.contactDark .contact-box .contact-box-left .contact-address-box {
  width: 300px;
  height: 100%;
  background-color: #292C33;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border-radius: 9px;
  color: white;
  border: 4px solid black;
  box-shadow: -4px -4px 6px rgba(255, 255, 255, 0.2), 4px 4px 6px black;
}

.contactDark .contact-box .contact-box-left .contact-address-box .contact-blackLeafLogo {
  width: 40px;
  margin-top: 40px;
  margin-left: 40px;
  display: none;
}

.contactDark .contact-box .contact-box-left .contact-address-box .contact-address-info {
  margin-bottom: 40px;
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 50px;
}

.contactDark .contact-box .contact-box-left .contact-address-box .contact-address-info .contact-address-label {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: 'Alegreya Sans', sans-serif;
}

.contactDark .contact-box .contact-box-left .contact-address-box .contact-address-info .contact-address-address {
  font-size: 1.2rem;
  font-weight: 300;
  font-family: 'Alegreya Sans', sans-serif;
  margin-top: 10px;
}

.contactDark .contact-box .contact-box-left .contact-contact-box {
  width: 300px;
  height: 100%;
  background-color: #20232B;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border-radius: 9px;
  color: white;
  border: 4px solid black;
  box-shadow: -4px -4px 6px rgba(255, 255, 255, 0.2), 4px 4px 6px black;
}

@media (max-width: 640px) {
  .contactDark .contact-box .contact-box-left .contact-contact-box {
    margin-left: 0;
    margin-top: 10px;
  }
}

.contactDark .contact-box .contact-box-left .contact-contact-box .contact-blackLeafLogo {
  width: 40px;
  margin-top: 40px;
  margin-left: 40px;
  display: none;
}

.contactDark .contact-box .contact-box-left .contact-contact-box .contact-contact-info {
  margin-bottom: 40px;
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 50px;
}

.contactDark .contact-box .contact-box-left .contact-contact-box .contact-contact-info .contact-contact-label {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: 'Alegreya Sans', sans-serif;
  margin-bottom: 6px;
}

.contactDark .contact-box .contact-box-left .contact-contact-box .contact-contact-info .contact-contact-contact {
  font-size: 1.2rem;
  font-weight: 300;
  font-family: 'Alegreya Sans', sans-serif;
  margin-top: 10px;
  text-decoration: none;
  color: white;
}

.contactDark .contact-box .contact-box-left .contact-icon-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
}

.contactDark .contact-box .contact-box-left .contact-icon-box .contact-icon {
  width: 30px;
  cursor: pointer;
  border-radius: 50%;
  transition: 1s;
  text-decoration: none;
}

.contactDark .contact-box .contact-box-left .contact-icon-box .contact-icon:hover {
  width: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.contactDark .contact-box .contact-box-right {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.contactDark .contact-box .contact-box-right .contact-bowl {
  width: 45%;
}

.nav-height {
  height: 100px;
}

.Contact-container {
  margin-top: 12vh;
  min-height: 90vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}

.Contact-container .Contact-box {
  width: 70%;
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .Contact-container .Contact-box {
    flex-direction: column;
    width: 80%;
  }
}

.Contact-container .Contact-box .Contact-box-left {
  width: 60%;
}

@media (max-width: 1200px) {
  .Contact-container .Contact-box .Contact-box-left {
    width: 100%;
  }
}

.Contact-container .Contact-box .Contact-box-left .Contact-box-title {
  margin-top: 20px;
  font-size: 1.86rem;
  font-weight: 700;
  font-family: 'Alegreya Sans', sans-serif;
  text-transform: lowercase;
  color: #132875;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 1200px) {
  .Contact-container .Contact-box .Contact-box-left .Contact-box-title {
    font-size: 1.5rem;
  }
}

.Contact-container .Contact-box .Contact-box-left .Contact-box-title p {
  font-size: 1.86rem;
  font-weight: 700;
  font-family: 'Alegreya Sans', sans-serif;
}

@media (max-width: 1200px) {
  .Contact-container .Contact-box .Contact-box-left .Contact-box-title p {
    font-size: 1.5rem;
  }
}

.Contact-container .Contact-box .Contact-box-left .Contact-box-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.Contact-container .Contact-box .Contact-box-left .Contact-box-form .Contact-box-textfield {
  width: 95%;
  height: 30px;
  border-radius: 5px;
  border: none;
  margin-top: 20px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  padding: 2px 5px 2px 20px;
  color: #2A2D37;
}

.Contact-container .Contact-box .Contact-box-left .Contact-box-form .Contact-box-textfield::placeholder {
  color: #9D9D9E;
}

.Contact-container .Contact-box .Contact-box-left .Contact-box-form .Contact-box-textarea {
  min-width: 95%;
  min-height: 120px;
  border-radius: 5px;
  margin-top: 20px;
  border: none;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  padding: 2px 5px 2px 20px;
  color: #2A2D37;
}

.Contact-container .Contact-box .Contact-box-left .Contact-box-form .Contact-box-textarea::placeholder {
  color: #9D9D9E;
}

.Contact-container .Contact-box .Contact-box-left .Contact-box-form .Contact-box-button {
  width: 80px;
  height: 35px;
  margin-top: 20px;
  background-color: #24a0ed;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

.Contact-container .Contact-box .Contact-box-left .Contact-box-form .Contact-box-button:hover {
  color: #24a0ed;
  background-color: white;
  border: 1px solid  #24a0ed;
}

.Contact-container .Contact-box .Contact-img {
  width: 30%;
  border-radius: 9px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.07);
}

@media (max-width: 1200px) {
  .Contact-container .Contact-box .Contact-img {
    display: none;
  }
}

.semi-banner {
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 10vh;
}

.semi-banner .semi-banner-img {
  width: 85vw;
  border-radius: 1.3rem;
  box-shadow: 0 1.5rem 3rem -0.75rem rgba(0, 0, 0, 0.25);
}

@media (max-width: 1200px) {
  .semi-banner .semi-banner-img {
    width: 100vw;
    border-radius: 0;
    box-shadow: 0 1rem 2rem -0.75rem rgba(0, 0, 0, 0.25);
    display: none;
  }
}

.About {
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 15vh;
}

@media (max-width: 1200px) {
  .About {
    margin-top: 5vh;
  }
}

.About .About-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  width: 80vw;
}

@media (max-width: 1200px) {
  .About .About-container {
    width: 90vw;
    flex-direction: column;
    align-items: center;
  }
}

.About .About-container .About-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 55%;
}

@media (max-width: 1200px) {
  .About .About-container .About-left {
    width: 100%;
  }
}

.About .About-container .About-left .About-title {
  width: 90vw;
  font-size: 3.2rem;
  font-weight: 800;
  font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue";
  text-transform: capitalize;
  font-size: 5.3rem;
  letter-spacing: -100.6;
  color: #323340;
}

@media (max-width: 1200px) {
  .About .About-container .About-left .About-title {
    text-align: left;
    font-size: 3.26rem;
  }
}

.About .About-container .About-left .About-letsmake {
  width: 60%;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

@media (max-width: 1200px) {
  .About .About-container .About-left .About-letsmake {
    margin-top: 5vh;
    margin-bottom: 5vh;
    width: 80%;
  }
}

.About .About-container .About-left .About-text {
  margin-top: 40px;
  width: 90vw;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 27px;
  font-size: 1.2rem;
  word-spacing: 5px;
  font-family: "Open Sans", sans-serif;
  word-spacing: 4px;
}

@media (max-width: 1200px) {
  .About .About-container .About-left .About-text {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .About .About-container .About-left .About-text {
    text-align: justify;
  }
}

.About .About-container .About-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10vh;
  width: 45%;
}

@media (max-width: 640px) {
  .About .About-container .About-right {
    justify-content: center;
    width: 90%;
    margin-top: 9vh;
  }
}

.About .About-container .About-right .About-bowl {
  width: 80%;
}

.About-details {
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 5vh;
}

@media (max-width: 1200px) {
  .About-details {
    margin-top: 0;
  }
}

.About-details .About-details {
  width: 80vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

@media (max-width: 1200px) {
  .About-details .About-details {
    flex-wrap: wrap;
    width: 90vw;
  }
}

@media (max-width: 290px) {
  .About-details .About-details {
    justify-content: center;
  }
}

.About-details .About-details .About-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .About-details .About-details .About-detail {
    margin-bottom: 30px;
  }
}

.About-details .About-details .About-detail .About-detail-img {
  height: 100px;
  width: 100px;
  object-fit: contain;
}

.About-details .About-details .About-detail .About-detail-label {
  font-family: "Alegreya Sans", sans-serif;
  width: 150px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

.About-info-section {
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  margin-top: 7vh;
  margin-bottom: 8vh;
}

@media (max-width: 1200px) {
  .About-info-section {
    margin-top: 5vh;
  }
}

.About-info-section .About-info-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 80vw;
  flex-wrap: wrap;
}

@media (max-width: 1200px) {
  .About-info-section .About-info-container {
    width: 100%;
    flex-direction: column;
  }
}

.About-info-section .About-info-container .About-info-box {
  width: 40vw;
  height: 25vw;
  max-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (max-width: 1200px) {
  .About-info-section .About-info-container .About-info-box {
    width: 90%;
    height: auto;
    max-height: none;
  }
}

.About-info-section .About-info-container .About-info-box .About-info-title {
  font-size: 2.2rem;
  font-weight: 400;
  font-family: 'Alegreya Sans', sans-serif;
  margin-top: 70px;
  margin-left: 90px;
  margin-right: 90px;
}

@media (max-width: 1200px) {
  .About-info-section .About-info-container .About-info-box .About-info-title {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
  }
}

.About-info-section .About-info-container .About-info-box .About-info {
  font-size: 2rem;
  font-family: "Poppins", "Open Sans", sans-serif;
  font-weight: 200;
  font-size: 1.4rem;
  margin-top: 15px;
  margin-bottom: 70px;
  margin-left: 90px;
  margin-right: 90px;
}

@media (max-width: 1200px) {
  .About-info-section .About-info-container .About-info-box .About-info {
    margin-left: 0px;
    margin-right: 0px;
    font-size: 1.5rem;
    font-weight: 300;
  }
}

@media (max-width: 290px) {
  .About-info-section .About-info-container .About-info-box .About-info {
    font-size: 1rem;
  }
}

.About-info-section .noMargin {
  margin-top: 0;
}

.speciality {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.speciality .speciality-container {
  width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.speciality .speciality-container .speciality-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

@media (max-width: 1200px) {
  .speciality .speciality-container .speciality-row {
    flex-direction: column;
  }
}

.speciality .speciality-container .speciality-row .speciality-textbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  width: 500px;
  background-color: #F7F9FB;
  transition: ease-in 0.2s;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
}

.speciality .speciality-container .speciality-row .speciality-textbox:hover {
  background-color: white;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
}

.speciality .speciality-container .speciality-row .speciality-textbox .speciality-title {
  font-size: 2.2rem;
  font-weight: 400;
  font-family: 'Alegreya Sans', sans-serif;
  margin-top: 70px;
  margin-left: 90px;
  margin-right: 90px;
}

@media (max-width: 640px) {
  .speciality .speciality-container .speciality-row .speciality-textbox .speciality-title {
    margin-left: 40px;
    margin-right: 40px;
  }
}

.speciality .speciality-container .speciality-row .speciality-textbox .speciality-info {
  font-size: 1.6rem;
  font-weight: 200;
  font-family: 'Alegreya Sans', sans-serif;
  margin-top: 10px;
  margin-bottom: 70px;
  margin-left: 90px;
  margin-right: 90px;
}

@media (max-width: 640px) {
  .speciality .speciality-container .speciality-row .speciality-textbox .speciality-info {
    margin-left: 40px;
    margin-right: 40px;
  }
}

.speciality .speciality-container .speciality-row .speciality-img {
  width: 500px;
}

.Product {
  width: 100vw;
  margin-top: 10vh;
  margin-bottom: 15vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .Product {
    margin-top: 5vh;
  }
}

.Product .Product-container {
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.Product .Product-container .Product-title {
  font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", "sans serif";
  font-weight: 800;
  font-size: 5.3rem;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .Product .Product-container .Product-title {
    font-size: 4.5rem;
  }
}

@media (max-width: 640px) {
  .Product .Product-container .Product-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 290px) {
  .Product .Product-container .Product-title {
    font-size: 2.5rem;
  }
}

.Product .Product-container .Product-info-container {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .Product .Product-container .Product-info-container {
    flex-direction: column;
  }
}

.Product .Product-container .Product-info-container .Product-info {
  width: 60%;
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  word-spacing: 4px;
}

@media (max-width: 1200px) {
  .Product .Product-container .Product-info-container .Product-info {
    width: 100%;
    font-size: 1.2rem;
    text-align: justify;
  }
}

@media (max-width: 290px) {
  .Product .Product-container .Product-info-container .Product-info {
    font-size: 1rem;
  }
}

.Product .Product-container .Product-info-container .Product-info-logo-box {
  width: 40%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .Product .Product-container .Product-info-container .Product-info-logo-box {
    display: none;
  }
}

.Product .Product-container .Product-info-container .Product-info-logo-box .Product-info-logo {
  width: 50%;
}

.Product .Product-container .Product-more-products-button {
  margin-top: 50px;
  cursor: pointer;
  border: 1px solid black;
  background-color: transparent;
  padding: 5px 20px;
  color: black;
  text-transform: lowercase;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
  border-radius: 5px;
  transition: 0.2s;
}

.Product .Product-container .Product-more-products-button:hover {
  background-color: black;
  color: white;
}

@media (max-width: 1200px) {
  .Product .Product-container .Product-more-products-button {
    font-size: 1.2rem;
  }
}

.Product-process {
  width: 100vw;
  margin-top: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .Product-process {
    margin-top: 5vh;
  }
}

.Product-process .Product-process-container {
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.Product-process .Product-process-container h2 {
  background-color: #FFE5E5;
  padding: 1rem 1.2rem;
  border-radius: 0.5rem;
  font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue";
  font-size: 3.3rem;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .Product-process .Product-process-container h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 290px) {
  .Product-process .Product-process-container h2 {
    font-size: 2.5rem;
  }
}

.Product-process .Product-process-container p {
  width: 80%;
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  word-spacing: 4px;
  margin-top: 2rem;
}

@media (max-width: 1200px) {
  .Product-process .Product-process-container p {
    width: 100%;
    font-size: 1.2rem;
    text-align: justify;
  }
}

@media (max-width: 290px) {
  .Product-process .Product-process-container p {
    font-size: 1rem;
  }
}

.Product-options {
  width: 100vw;
  margin-top: 5rem;
  margin-bottom: 15vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .Product-options {
    margin-top: 5vh;
    margin-bottom: 10vh;
  }
}

.Product-options .Product-options-container {
  width: 90vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (max-width: 1200px) {
  .Product-options .Product-options-container {
    flex-direction: column;
  }
}

.Product-options .Product-options-container .Product-options-left {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .Product-options .Product-options-container .Product-options-left {
    width: 100%;
  }
}

.Product-options .Product-options-container .Product-options-left .Product-options-img {
  width: 65%;
}

@media (max-width: 1200px) {
  .Product-options .Product-options-container .Product-options-left .Product-options-img {
    width: 50%;
  }
}

@media (max-width: 640px) {
  .Product-options .Product-options-container .Product-options-left .Product-options-img {
    width: 65%;
  }
}

.Product-options .Product-options-container .Product-options-right {
  width: 60%;
}

@media (max-width: 1200px) {
  .Product-options .Product-options-container .Product-options-right {
    width: 100%;
  }
}

.Product-options .Product-options-container .Product-options-right p {
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  word-spacing: 4px;
  margin-top: 2rem;
}

@media (max-width: 1200px) {
  .Product-options .Product-options-container .Product-options-right p {
    width: 100%;
    font-size: 1.2rem;
    text-align: justify;
  }
}

@media (max-width: 290px) {
  .Product-options .Product-options-container .Product-options-right p {
    font-size: 1rem;
  }
}

.Product-options .Product-options-container .Product-options-right ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style-type: square;
  margin-left: 20px;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .Product-options .Product-options-container .Product-options-right ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.Product-options .Product-options-container .Product-options-right ul li {
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  word-spacing: 4px;
}

@media (max-width: 640px) {
  .Product-options .Product-options-container .Product-options-right ul li {
    font-size: 1.1rem;
    text-align: justify;
  }
}

@media (max-width: 290px) {
  .Product-options .Product-options-container .Product-options-right ul li {
    font-size: 1rem;
  }
}

.Product-examples {
  width: 100vw;
  margin-top: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10vh;
}

@media (max-width: 1200px) {
  .Product-examples {
    margin-top: 5vh;
  }
}

.Product-examples .Product-examples-container {
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 1200px) {
  .Product-examples .Product-examples-container {
    align-items: center;
  }
}

.Product-examples .Product-examples-container .Product-examples-title-img {
  height: 10vh;
}

.Product-examples .Product-examples-container .Product-examples-box {
  margin-top: 4rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 1200px) {
  .Product-examples .Product-examples-container .Product-examples-box {
    align-items: center;
    justify-content: center;
  }
}

.Product-examples .Product-examples-container .Product-examples-box img {
  width: 264px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin-right: 20px;
  box-shadow: none;
  transition: 0.4s;
}

@media (max-width: 1200px) {
  .Product-examples .Product-examples-container .Product-examples-box img {
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .Product-examples .Product-examples-container .Product-examples-box img {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 290px) {
  .Product-examples .Product-examples-container .Product-examples-box img {
    width: 180px;
  }
}

.Product-examples .Product-examples-container .Product-examples-box img:hover {
  scale: 1.02;
  box-shadow: 0 1rem 3rem -0.75rem rgba(0, 0, 0, 0.15);
}

.Product-content {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10vh;
}

.Product-content .Product-content-container {
  width: 90vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 1200px) {
  .Product-content .Product-content-container {
    flex-direction: column;
  }
}

.Product-content .Product-content-container .Product-content-box {
  width: 44vw;
  height: 35vh;
  min-height: 300px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.17);
  border-radius: 10px;
  background-color: #F7F9FB;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.6s;
}

@media (max-width: 1200px) {
  .Product-content .Product-content-container .Product-content-box {
    width: 90vw;
  }
}

@media (max-width: 290px) {
  .Product-content .Product-content-container .Product-content-box {
    height: 50vh;
  }
}

.Product-content .Product-content-container .Product-content-box:nth-of-type(1) {
  background-color: white;
}

.Product-content .Product-content-container .Product-content-box:nth-of-type(4) {
  background-color: white;
}

.Product-content .Product-content-container .Product-content-box:nth-of-type(5) {
  background-color: white;
}

.Product-content .Product-content-container .Product-content-box:nth-of-type(8) {
  background-color: white;
}

.Product-content .Product-content-container .Product-content-box:hover .Product-content-box-hover {
  display: flex;
  top: -2%;
  border-radius: 5px;
  background-color: white !important;
}

.Product-content .Product-content-container .Product-content-box .Product-content-box-hover {
  background-color: white;
  height: 104%;
  width: 104%;
  position: absolute;
  left: -2%;
  right: -2%;
  top: 100%;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 5;
  transition: 0.6s;
}

.Product-content .Product-content-container .Product-content-box .Product-content-box-hover:nth-of-type(1) {
  background-color: #F7F9FB;
}

.Product-content .Product-content-container .Product-content-box .Product-content-box-hover:nth-of-type(4) {
  background-color: #F7F9FB;
}

.Product-content .Product-content-container .Product-content-box .Product-content-box-hover:nth-of-type(5) {
  background-color: #F7F9FB;
}

.Product-content .Product-content-container .Product-content-box .Product-content-box-hover:nth-of-type(8) {
  background-color: #F7F9FB;
}

.Product-content .Product-content-container .Product-content-box .Product-content-box-hover .Product-content-box-title2 {
  margin-left: 3vw;
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}

@media (max-width: 1200px) {
  .Product-content .Product-content-container .Product-content-box .Product-content-box-hover .Product-content-box-title2 {
    margin-left: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 640px) {
  .Product-content .Product-content-container .Product-content-box .Product-content-box-hover .Product-content-box-title2 {
    margin-left: 20px;
    font-size: 1.2rem;
  }
}

.Product-content .Product-content-container .Product-content-box .Product-content-box-hover ul {
  margin-left: 3vw;
  margin-bottom: 4vh;
  margin-top: 20px;
  list-style-type: square;
}

@media (max-width: 1200px) {
  .Product-content .Product-content-container .Product-content-box .Product-content-box-hover ul {
    margin-left: 40px;
  }
}

@media (max-width: 640px) {
  .Product-content .Product-content-container .Product-content-box .Product-content-box-hover ul {
    margin-left: 20px;
  }
}

.Product-content .Product-content-container .Product-content-box .Product-content-box-hover ul li {
  width: 80%;
  margin-left: 15px;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .Product-content .Product-content-container .Product-content-box .Product-content-box-hover ul li {
    width: 90%;
    margin-left: 10px;
    margin-right: 15px;
    font-size: 0.86rem;
    line-height: 1.2;
    font-weight: 300;
  }
}

.Product-content .Product-content-container .Product-content-box .Product-content-box-hover .Product-content-img2 {
  width: 15%;
  margin-left: 3vw;
  margin-bottom: 20px;
  max-height: 250px;
  object-fit: contain;
}

.Product-content .Product-content-container .Product-content-box .Product-content-img {
  display: block;
  width: 20%;
  margin-left: 50px;
  margin-bottom: 20px;
  opacity: 100;
  border-radius: 10px;
}

@media (max-width: 640px) {
  .Product-content .Product-content-container .Product-content-box .Product-content-img {
    margin-left: 20px;
    width: 30%;
  }
}

.Product-content .Product-content-container .Product-content-box .Product-content-box-title {
  margin-left: 50px;
  margin-bottom: 5vh;
  font-family: "Poppins", "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: -1px;
  font-size: 2rem;
}

@media (max-width: 1200px) {
  .Product-content .Product-content-container .Product-content-box .Product-content-box-title {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .Product-content .Product-content-container .Product-content-box .Product-content-box-title {
    margin-left: 20px;
    font-size: 1.8rem;
  }
}

.Photos {
  width: 100vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
}

@media (max-width: 640px) {
  .Photos {
    display: none;
  }
}

.Photos .Photo {
  width: 50vw;
  object-fit: cover;
  aspect-ratio: 1.337/1;
}

.Whatsnew-header {
  width: 100vw;
  margin-top: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 1200px) {
  .Whatsnew-header {
    margin-top: 4vh;
  }
}

.Whatsnew-header .Whatsnew-header-bg {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40vw;
  height: 8rem;
  background-color: #FBE790;
  display: none;
}

.Whatsnew-header .Whatsnew-title {
  width: 80%;
  text-align: center;
  font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", "sans serif";
  font-size: 5.3rem;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .Whatsnew-header .Whatsnew-title {
    font-size: 4.5rem;
  }
}

@media (max-width: 640px) {
  .Whatsnew-header .Whatsnew-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 290px) {
  .Whatsnew-header .Whatsnew-title {
    font-size: 3.5rem;
  }
}

.Whatsnew-brochures {
  width: 100vw;
  margin-top: 7vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.Whatsnew-brochures .Whatsnew-subtitle {
  width: 80vw;
  text-align: left;
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 2.86rem;
  text-transform: capitalize;
}

@media (max-width: 640px) {
  .Whatsnew-brochures .Whatsnew-subtitle {
    font-size: 2.0rem;
    text-transform: uppercase;
  }
}

.Whatsnew-brochures ul {
  margin-top: 3vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 80vw;
  list-style: none;
}

@media (max-width: 1200px) {
  .Whatsnew-brochures ul {
    margin-top: 4vh;
  }
}

.Whatsnew-brochures ul li {
  width: 18vw;
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (max-width: 1200px) {
  .Whatsnew-brochures ul li {
    width: 80vw;
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.Whatsnew-brochures ul li .Whatsnew-brochure-link {
  position: relative;
  width: 100%;
  text-decoration: none;
}

.Whatsnew-brochures ul li .Whatsnew-brochure-link .Whatsnew-brochure {
  width: 100%;
  aspect-ratio: 1.68 / 1;
  object-fit: cover;
  border: 1px solid lightgray;
}

.Whatsnew-brochures ul li .Whatsnew-brochure-link .Whatsnew-brochures-label-box {
  position: absolute;
  width: 100%;
  height: 18%;
  left: 0;
  bottom: 0;
  background-color: #343434;
  color: white;
  font-style: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-decoration: none;
}

.Whatsnew-brochures ul li .Whatsnew-brochure-link .Whatsnew-brochures-label-box .Whatsnew-brochures-label {
  margin-left: 20px;
}

.gallery {
  padding: 2rem;
  margin-top: 10vh;
}

@media (max-width: 640px) {
  .gallery {
    padding: 0;
  }
}

.gallery .slider-wrapper {
  position: relative;
  max-width: 60rem;
  margin: 0 auto;
}

.gallery .slider-wrapper .slider {
  display: flex;
  aspect-ratio: 16/9;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  box-shadow: 0 1.5rem 3rem -0.75rem rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
}

@media (max-width: 640px) {
  .gallery .slider-wrapper .slider {
    box-shadow: none;
    border-radius: 0;
  }
}

.gallery .slider-wrapper .slider img {
  flex: 1 0 100%;
  scroll-snap-align: start;
  object-fit: cover;
}

.gallery .slider-wrapper .slider-nav {
  display: flex;
  column-gap: 1rem;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.gallery .slider-wrapper .slider-nav a {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.75;
  transition: opacity ease 250ms;
}

.gallery .slider-wrapper .slider-nav a:hover {
  opacity: 1;
}

.Whatsnew-gallery {
  width: 100vw;
  margin-top: 7vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10vh;
}

@media (max-width: 1200px) {
  .Whatsnew-gallery {
    margin-top: 5vh;
  }
}

.Whatsnew-gallery .Whatsnew-subtitle {
  width: 80vw;
  text-align: left;
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 2.86rem;
  text-transform: capitalize;
}

@media (max-width: 640px) {
  .Whatsnew-gallery .Whatsnew-subtitle {
    font-size: 2.0rem;
    text-transform: uppercase;
  }
}

.Whatsnew-gallery ul {
  margin-top: 3vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 80vw;
  list-style: none;
}

.Whatsnew-gallery ul li {
  width: 18vw;
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  .Whatsnew-gallery ul li {
    width: 80vw;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.Whatsnew-gallery ul li .Whatsnew-gallery-img {
  width: 100%;
  aspect-ratio: 1.574 / 1;
  object-fit: cover;
  border: 1px solid lightgray;
}

.FreezeDry {
  background-color: #20232B;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100vw;
  height: 93vh;
}

@media (max-width: 1200px) {
  .FreezeDry {
    flex-direction: column;
    margin-top: -100px;
    height: auto;
  }
}

.FreezeDry .FreezeDry-left {
  height: 93vh;
  width: 50vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .FreezeDry .FreezeDry-left {
    height: 100vh;
    width: 100vw;
  }
}

.FreezeDry .FreezeDry-left .FreezeDry-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 70%;
  transform: translate(0, -20%);
}

@media (max-width: 1200px) {
  .FreezeDry .FreezeDry-left .FreezeDry-left-content {
    max-width: 80%;
    transform: translate(0, 0);
    justify-content: center;
  }
}

.FreezeDry .FreezeDry-left .FreezeDry-left-content .FreezeDry-logo {
  width: 16vw;
}

@media (max-width: 1200px) {
  .FreezeDry .FreezeDry-left .FreezeDry-left-content .FreezeDry-logo {
    width: 30vw;
  }
}

@media (max-width: 640px) {
  .FreezeDry .FreezeDry-left .FreezeDry-left-content .FreezeDry-logo {
    width: 50vw;
  }
}

.FreezeDry .FreezeDry-left .FreezeDry-left-content .FreezeDry-title {
  font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", "sans serif";
  margin: 0;
  padding: 0;
  font-weight: 800;
  font-size: 6.86rem;
  text-transform: uppercase;
  -webkit-text-stroke: 1px black;
  color: #19DCFF;
  text-shadow: 0 0 0px #19DCFF, 0 0 5px #19DCFF, 0 0 10px #1d4046;
  letter-spacing: -1px;
  white-space: nowrap;
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .FreezeDry .FreezeDry-left .FreezeDry-left-content .FreezeDry-title {
    margin-top: 40px;
  }
}

@media (max-width: 640px) {
  .FreezeDry .FreezeDry-left .FreezeDry-left-content .FreezeDry-title {
    margin-top: 20px;
    font-size: 3.86rem;
  }
}

@media (max-width: 290px) {
  .FreezeDry .FreezeDry-left .FreezeDry-left-content .FreezeDry-title {
    font-size: 3rem;
  }
}

.FreezeDry .FreezeDry-left .FreezeDry-left-content .FreezeDry-subtitle {
  margin-top: 20px;
  color: white;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  word-wrap: normal;
}

@media (max-width: 640px) {
  .FreezeDry .FreezeDry-left .FreezeDry-left-content .FreezeDry-subtitle {
    font-size: 2rem;
  }
}

@media (max-width: 290px) {
  .FreezeDry .FreezeDry-left .FreezeDry-left-content .FreezeDry-subtitle {
    font-size: 1.5rem;
  }
}

.FreezeDry .FreezeDry-right {
  height: 93vh;
  background-color: #2B2E39;
  width: 50vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

@media (max-width: 1200px) {
  .FreezeDry .FreezeDry-right {
    height: 100vh;
    width: 100vw;
  }
}

.FreezeDry .FreezeDry-right .FreezeDry-right-top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.FreezeDry .FreezeDry-right .FreezeDry-right-top .FreezeDry-hero-img {
  width: 17vw;
}

@media (max-width: 1200px) {
  .FreezeDry .FreezeDry-right .FreezeDry-right-top .FreezeDry-hero-img {
    width: 50vw;
  }
}

.FreezeDry .FreezeDry-right .FreezeDry-right-top .FreezeDry-right-stroke {
  height: 5px;
  width: 10vw;
  margin-top: 50px;
  background-color: #EFA606;
  border-radius: 10px;
}

@media (max-width: 1200px) {
  .FreezeDry .FreezeDry-right .FreezeDry-right-top .FreezeDry-right-stroke {
    width: 40vw;
  }
}

.FreezeDry .FreezeDry-right .FreezeDry-right-bottom {
  width: 100%;
  height: 20vh;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  color: white;
}

.FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-right-left {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

.FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-right-left .FreezeDry-greenLine {
  width: 1.4vw;
  height: 100%;
  background-color: #48871F;
  transform: translate(-50%, 0);
}

@media (max-width: 1200px) {
  .FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-right-left .FreezeDry-greenLine {
    display: none;
  }
}

.FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-right-left .FreezeDry-right-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: white;
  font-family: 'Alegreya Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0;
  margin: 0;
  line-height: 1;
  margin-left: 20px;
}

.FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-right-left .FreezeDry-right-left-content .FreezeDry-small {
  font-size: 1.8rem;
}

@media (max-width: 640px) {
  .FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-right-left .FreezeDry-right-left-content .FreezeDry-small {
    font-size: 1rem;
  }
}

.FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-right-left .FreezeDry-right-left-content .FreezeDry-medium {
  font-size: 2.5rem;
}

@media (max-width: 640px) {
  .FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-right-left .FreezeDry-right-left-content .FreezeDry-medium {
    font-size: 1.6rem;
  }
}

.FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-right-left .FreezeDry-right-left-content .FreezeDry-large {
  font-size: 3.3rem;
}

@media (max-width: 640px) {
  .FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-right-left .FreezeDry-right-left-content .FreezeDry-large {
    font-size: 2rem;
  }
}

.FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-checkout-box {
  text-align: center;
  font-size: 1.0rem;
  text-transform: capitalize;
  font-weight: 600;
  font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  color: white;
  margin-right: 6vw;
}

@media (max-width: 640px) {
  .FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-checkout-box {
    font-size: 0.6rem;
  }
}

.FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-checkout-box .FreezeDry-arrow-icon {
  width: 70px;
  transition: 1.5s;
  cursor: pointer;
  box-shadow: -2px -2px 10px rgba(255, 255, 255, 0.1), 2px 2px 4px rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

.FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-checkout-box .FreezeDry-arrow-icon:hover {
  transform: rotate(360deg);
}

@media (max-width: 640px) {
  .FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-checkout-box .FreezeDry-arrow-icon {
    width: 50px;
  }
}

.FreezeDry .FreezeDry-right .FreezeDry-right-bottom .FreezeDry-checkout-box .FreezeDry-checkout-label {
  margin-top: 10px;
  letter-spacing: 2px;
}

.FreezeDry-why {
  height: 100vh;
  width: 100vw;
  background-color: #20232B;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.FreezeDry-why .FreezeDry-why-label {
  color: white;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 5.5rem;
  text-transform: uppercase;
  word-wrap: normal;
  margin-top: 15vh;
}

@media (max-width: 1200px) {
  .FreezeDry-why .FreezeDry-why-label {
    font-size: 4.3rem;
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 640px) {
  .FreezeDry-why .FreezeDry-why-label {
    font-size: 3rem;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.FreezeDry-why .FreezeDry-why-ans {
  color: white;
  text-transform: uppercase;
  width: 100%;
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 500;
  word-wrap: none;
  overflow-wrap: none;
  transform: translate(0%, 0);
  max-width: 700px;
  max-height: 250px;
  margin-top: 15vh;
  transform: scale(1.5);
}

@media (max-width: 1200px) {
  .FreezeDry-why .FreezeDry-why-ans {
    transform: scale(0.9);
  }
}

@media (max-width: 640px) {
  .FreezeDry-why .FreezeDry-why-ans {
    transform: scale(0.8);
    margin-top: 50px;
    max-width: none;
    max-height: none;
    width: 80vw !important;
  }
}

@media (max-width: 290px) {
  .FreezeDry-why .FreezeDry-why-ans {
    transform: scale(0.5);
  }
}

.FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-1 {
  position: absolute;
  color: #FF2C2C;
  top: 0;
  left: 1rem;
  font-size: 2.5rem;
}

@media (max-width: 640px) {
  .FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-1 {
    font-size: 2rem;
    left: -2rem;
  }
}

.FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-2 {
  position: absolute;
  color: #F2DC82;
  top: 1rem;
  left: 12rem;
  font-size: 1.6rem;
}

@media (max-width: 640px) {
  .FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-2 {
    font-size: 1.3rem;
    left: 7rem;
  }
}

.FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-3 {
  position: absolute;
  color: #fff;
  top: 2.8rem;
  left: 0rem;
  font-size: 1.2rem;
}

@media (max-width: 640px) {
  .FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-3 {
    font-size: 0.9rem;
  }
}

.FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-4 {
  position: absolute;
  color: #82F2F2;
  top: 2.6rem;
  left: 24rem;
  font-size: 1.86rem;
}

@media (max-width: 640px) {
  .FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-4 {
    font-size: 1rem;
    left: 18rem;
  }
}

.FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-5 {
  position: absolute;
  color: #EA8263;
  top: 4.6rem;
  left: 10rem;
  font-size: 1.4rem;
}

@media (max-width: 640px) {
  .FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-5 {
    font-size: 1.1rem;
    left: -3rem;
  }
}

.FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-6 {
  position: absolute;
  color: #fff;
  top: 6.2rem;
  left: 8rem;
  font-size: 1.66rem;
}

@media (max-width: 640px) {
  .FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-6 {
    font-size: 1.2rem;
    left: 3rem;
  }
}

.FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-7 {
  position: absolute;
  color: #23C8D8;
  top: 6rem;
  left: 13.5rem;
  font-size: 2.86rem;
}

@media (max-width: 640px) {
  .FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-7 {
    font-size: 1.86rem;
    left: 8rem;
  }
}

.FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-8 {
  position: absolute;
  color: #fff;
  top: 7.6rem;
  left: 23rem;
  font-size: 1.4rem;
}

@media (max-width: 640px) {
  .FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-8 {
    font-size: 1rem;
    left: 15rem;
    top: 6rem;
  }
}

.FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-9 {
  position: absolute;
  color: #EA4343;
  top: 8.6rem;
  left: 0rem;
  font-size: 2.6rem;
}

@media (max-width: 640px) {
  .FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-9 {
    font-size: 2rem;
    left: -3rem;
  }
}

.FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-10 {
  position: absolute;
  color: #DDFFC7;
  top: 9.6rem;
  left: 18rem;
  font-size: 1.7rem;
}

@media (max-width: 640px) {
  .FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-10 {
    font-size: 0.9rem;
    left: -2rem;
    top: 11.6rem;
  }
}

.FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-11 {
  position: absolute;
  color: #fff;
  top: 11.6rem;
  left: 12rem;
  font-size: 2rem;
}

@media (max-width: 640px) {
  .FreezeDry-why .FreezeDry-why-ans .FreezeDry-why-ans-11 {
    font-size: 1rem;
    left: 14rem;
    top: 9.6rem;
  }
}

.FreezeDry-why .FreezeDry-why-img {
  position: absolute;
  bottom: 5vh;
  right: 5vw;
  width: 20vw;
}

@media (max-width: 1200px) {
  .FreezeDry-why .FreezeDry-why-img {
    width: 30vw;
  }
}

@media (max-width: 640px) {
  .FreezeDry-why .FreezeDry-why-img {
    width: 40vw;
  }
}

.FreezeDry-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100vw;
  height: 70vh;
  background-color: white;
  box-shadow: 0 6px 10px inset rgba(0, 0, 0, 0.2), 0 -6px 10px inset rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
  .FreezeDry-about {
    height: auto;
    justify-content: center;
  }
}

.FreezeDry-about .FreezeDry-about-logo-box {
  width: 80%;
}

.FreezeDry-about .FreezeDry-about-logo-box .FreezeDry-about-logo {
  width: 10vw;
  margin-top: 10vh;
}

@media (max-width: 1200px) {
  .FreezeDry-about .FreezeDry-about-logo-box .FreezeDry-about-logo {
    width: 40vw;
  }
}

.FreezeDry-about .FreezeDry-about-bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 80%;
  margin-top: 5vh;
}

@media (max-width: 1200px) {
  .FreezeDry-about .FreezeDry-about-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
  }
}

.FreezeDry-about .FreezeDry-about-bottom .FreezeDry-about-text {
  width: 60%;
  font-size: 'Open Sans', sans-serif;
  margin-right: 50px;
  font-size: 1.2rem;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 1200px) {
  .FreezeDry-about .FreezeDry-about-bottom .FreezeDry-about-text {
    width: 90%;
    text-align: justify;
    margin-right: 0;
  }
}

.FreezeDry-about .FreezeDry-about-bottom .FreezeDry-about-right {
  display: flex;
  margin: auto;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 40%;
}

@media (max-width: 1200px) {
  .FreezeDry-about .FreezeDry-about-bottom .FreezeDry-about-right {
    width: 90%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.FreezeDry-about .FreezeDry-about-bottom .FreezeDry-about-right .FreezeDry-about-img {
  width: 450px;
  height: 300px;
  object-fit: cover;
  border: 5px solid black;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);
}

@media (max-width: 1200px) {
  .FreezeDry-about .FreezeDry-about-bottom .FreezeDry-about-right .FreezeDry-about-img {
    width: 80vw;
    height: 50vw;
    border: 1px solid black;
    border-radius: 8px;
  }
}

.FreezeDry-innovation {
  background-color: #20232B;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100vw;
}

.FreezeDry-innovation .FreezeDry-innovation-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 80%;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

@media (max-width: 1200px) {
  .FreezeDry-innovation .FreezeDry-innovation-container {
    flex-direction: column;
  }
}

.FreezeDry-innovation .FreezeDry-innovation-container .FreezeDry-innovation-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 40%;
  height: 100%;
}

@media (max-width: 1200px) {
  .FreezeDry-innovation .FreezeDry-innovation-container .FreezeDry-innovation-left {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.FreezeDry-innovation .FreezeDry-innovation-container .FreezeDry-innovation-left .FreezeDry-innovation-img {
  width: 250px;
}

@media (max-width: 1200px) {
  .FreezeDry-innovation .FreezeDry-innovation-container .FreezeDry-innovation-left .FreezeDry-innovation-img {
    width: 120px;
  }
}

.FreezeDry-innovation .FreezeDry-innovation-container .FreezeDry-innovation-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: white;
}

@media (max-width: 1200px) {
  .FreezeDry-innovation .FreezeDry-innovation-container .FreezeDry-innovation-right {
    width: 100%;
  }
}

.FreezeDry-innovation .FreezeDry-innovation-container .FreezeDry-innovation-right .FreezeDry-innovation-title {
  padding: 0;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 3.5rem;
  text-transform: uppercase;
  word-wrap: normal;
  width: 100%;
}

@media (max-width: 1200px) {
  .FreezeDry-innovation .FreezeDry-innovation-container .FreezeDry-innovation-right .FreezeDry-innovation-title {
    font-size: 2.5rem;
    margin-top: 40px;
  }
}

.FreezeDry-innovation .FreezeDry-innovation-container .FreezeDry-innovation-right .FreezeDry-innovation-text {
  margin-top: 5vh;
  width: 100%;
  font-size: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}

.FreezeDry-display {
  background-color: #20232B;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  color: white;
  position: relative;
}

.FreezeDry-display .FreezeDry-display-text {
  margin-top: 5vh;
  width: 60%;
  font-size: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 4px 4px 2px inset rgba(0, 0, 0, 0.5), -4px -4px 2px inset rgba(255, 255, 255, 0.05);
}

@media (max-width: 1200px) {
  .FreezeDry-display .FreezeDry-display-text {
    font-size: 1.2rem;
    width: 80%;
    margin-top: 2vh;
  }
}

.FreezeDry-display .FreezeDry-display-gallery-bowl {
  position: absolute;
  width: 15vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1200px) {
  .FreezeDry-display .FreezeDry-display-gallery-bowl {
    width: 40vw;
  }
}

.FreezeDry-display .FreezeDry-display-gallery {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 80%;
  height: 70vh;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

@media (max-width: 1200px) {
  .FreezeDry-display .FreezeDry-display-gallery {
    height: 60vh;
  }
}

.FreezeDry-display .FreezeDry-display-gallery .FreezeDry-display-gallery-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}

.FreezeDry-display .FreezeDry-display-gallery .FreezeDry-display-gallery-side .FreezeDry-display-img {
  width: 25vw;
  height: 17vw;
  object-fit: cover;
  border: 5px solid black;
  border-radius: 15px;
  box-shadow: -5px -5px 5px rgba(255, 255, 255, 0.1), 5px 5px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 640px) {
  .FreezeDry-display .FreezeDry-display-gallery .FreezeDry-display-gallery-side .FreezeDry-display-img {
    border: 1px solid black;
    width: 35vw;
    height: 28vw;
  }
}

.footer {
  margin-top: auto;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 300px;
}

@media (max-width: 640px) {
  .footer {
    height: 200px;
  }
}

.footer .footer-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

@media (max-width: 640px) {
  .footer .footer-box {
    justify-content: center;
  }
}

.footer .footer-box ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  list-style: none;
}

@media (max-width: 640px) {
  .footer .footer-box ul {
    display: none;
  }
}

.footer .footer-box ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.footer .footer-box ul li ::after {
  content: '';
  width: 0%;
  height: 1px;
  background-color: #16161A;
  background-color: rgba(22, 22, 26, 0.8);
  display: block;
  margin: auto;
  transition: 0.5s;
  border-radius: 10px;
}

.footer .footer-box ul li:hover ::after {
  width: 100%;
}

.footer .footer-box ul li a {
  text-decoration: none;
  font-weight: 500;
  color: black;
  font-size: 1rem;
  padding: 10px 0px;
  text-transform: lowercase;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .footer .footer-box ul li a {
    font-weight: 300;
    font-size: 0.7rem;
  }
}

.footer .footer-box .footer-logo {
  width: 300px;
}

@media (max-width: 1200px) {
  .footer .footer-box .footer-logo {
    width: 200px;
  }
}

@media (max-width: 640px) {
  .footer .footer-box .footer-logo {
    width: 50%;
  }
}

.footerDark {
  margin-top: auto;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 300px;
  background-color: #20232B;
  color: white;
}

@media (max-width: 640px) {
  .footerDark {
    height: 200px;
  }
}

.footerDark .footerDark-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

@media (max-width: 640px) {
  .footerDark .footerDark-box {
    justify-content: center;
  }
}

.footerDark .footerDark-box ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  list-style: none;
}

@media (max-width: 640px) {
  .footerDark .footerDark-box ul {
    display: none;
  }
}

.footerDark .footerDark-box ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.footerDark .footerDark-box ul li ::after {
  content: '';
  width: 0%;
  height: 1px;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.8);
  display: block;
  margin: auto;
  transition: 0.5s;
  border-radius: 10px;
}

.footerDark .footerDark-box ul li:hover ::after {
  width: 100%;
}

.footerDark .footerDark-box ul li a {
  text-decoration: none;
  font-weight: 500;
  color: white;
  font-size: 1rem;
  padding: 10px 0px;
  text-transform: lowercase;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .footerDark .footerDark-box ul li a {
    font-weight: 300;
    font-size: 0.7rem;
  }
}

.footerDark .footerDark-box .footer-logo {
  width: 300px;
}

@media (max-width: 1200px) {
  .footerDark .footerDark-box .footer-logo {
    width: 200px;
  }
}

@media (max-width: 640px) {
  .footerDark .footerDark-box .footer-logo {
    width: 50%;
  }
}

/*

<section class="ourProducts" id="ourProducts">
        <div class="ourProducts-top">
            <div class="ourProducts-top-box">
                <h2 class="ourProducts-title">Our&NewLine;Products</h2>
                <img class="ourProducts-title-img" alt="Orange Juice" src="./assets/orangeJuice.png"/>
            </div>
        </div>
        <div class="ourProducts-bottom">
            <ul>
                <li>
                    <div class="ourProducts-hover">

                    </div>
                    <div class="ourProducts-active">
                        <div class="ourProducts-product-title-box">
                            <h3 class="ourProducts-product-title">Bakery</h3>
                        </div>
                        <div class="ourProducts-product-info-box">
                            <img class="ourProducts-product-info-img" alt="Bakery Cake" src="./assets/cake2.png"/>
                            <div class="ourProducts-product-info">
                                <p>Machinable&NewLine;Bake Stable&NewLine;Tasteful</p>
                                <a href="bakery.html" class="ourProducts-product-info-button">Learn more</a>
                            </div>
                        </div>
                    </div>
                </li>
                <li>
                    <div class="ourProducts-hover">

                    </div>
                    <div class="ourProducts-active">
                        <div class="ourProducts-product-title-box">
                            <h3 class="ourProducts-product-title">Dairy</h3>
                        </div>
                        <div class="ourProducts-product-info-box">
                            <img class="ourProducts-product-info-img" alt="Dairy" src="./assets/dairy2.png"/>
                            <div class="ourProducts-product-info">
                                <p>Mouthfeel&NewLine;Consistency&NewLine;Full-Flavoured</p>
                                <a href="dairy.html" class="ourProducts-product-info-button">Learn more</a>
                            </div>
                        </div>
                    </div>
                </li>
                <li>
                    <div class="ourProducts-hover">

                    </div>
                    <div class="ourProducts-active">
                        <div class="ourProducts-product-title-box">
                            <h3 class="ourProducts-product-title">Chocolates</h3>
                        </div>
                        <div class="ourProducts-product-info-box">
                            <img class="ourProducts-product-info-img" alt="chocolate bars" src="./assets/chocolate.png"/>
                            <div class="ourProducts-product-info">
                                <p>Delicious&NewLine;Vibrant&NewLine;Rich</p>
                                <a href="products.html" class="ourProducts-product-info-button">Learn more</a>
                            </div>
                        </div>
                    </div>
                </li>
                <li class="ourProducts-fd">
                    <div class="ourProducts-hover ourProducts-hover-fd">

                    </div>
                    <div class="ourProducts-active">
                        <div class="ourProducts-product-title-box">
                            <h3 class="ourProducts-product-title">Freeze Dry</h3>
                        </div>
                        <div class="ourProducts-product-info-box">
                            <img class="ourProducts-product-info-img" alt="logo" src="./assets/logoSil.png"/>
                            <div class="ourProducts-product-info">
                                <p>Chilled&NewLine;Fresh&NewLine;Delightful</p>
                                <a href="products.html" class="ourProducts-product-info-button">Learn more</a>
                            </div>
                        </div>
                    </div>
                </li>
            </ul>
        </div>
    </section>

*/
