@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  /* font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, apple color emoji, segoe ui emoji, Segoe UI Symbol, noto color emoji; */

  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #fafafa;
}

h1 {
  font-weight: bold;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 999;
}

.normal-header li {
  position: relative;
}

.normal-header li::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: pink;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.normal-header li:hover::after {
  width: 100%;
  left: 0;
}

.mobile-header {
  display: none;
}

.mobile-header .navbar {
  /* background-color: rgba(255, 255, 255, 0.3); */
  /* backdrop-filter: saturate(180%) blur(50px); */
}

header .logo img {
  mix-blend-mode: screen;
  margin: 0px 50px;
}

header ul {
  padding: 0;
}

.normal-header div {
  display: flex;
  border-radius: 30px;
}

header ul li {
  list-style: none;
  margin-left: 20px;
}

header ul li a {
  color: white;
  text-decoration: none;
  padding: 6px 30px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
}

.sec {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.sec:nth-child(1) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../assets/images/lake-1802337.jpg);
  background-size: cover;
  /* position: relative; */
}

.sec:nth-child(2) {
}

.sec:nth-child(3) {
  /* background-image: url(../assets/images/gradients-5485047.jpg); */
  background-size: cover;
  display: flex;
  flex-direction: column;
  /* background-color: rgb(247, 247, 247); */
  background-color: #fafafa;
}

.sec:nth-child(4) {
  background-color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.sec:nth-child(5) {
}

.sec:nth-child(5) section {
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: #eee;
}

body section #bottle {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  transform: translateY(10rem);
}

.products {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 50px;
  width: 100%;
}

.products h1 {
  margin-top: 25px;
  padding-top: 25px;
  color: white;
}

.products img {
  max-height: 50%;
  max-width: 10%;
}

.caption {
  width: 50%;
  padding: 30px;
  border-radius: 50px;
  backdrop-filter: saturate(180%) blur(5px);
  -webkit-backdrop-filter: saturate(180%) blur(5px);
}

.caption h5 {
  color: pink;
}

.caption p {
  color: white;
  margin: 0;
}

.information .container {
  margin: 50px 0px;
}

.information ul {
  background-color: white;
  border-radius: 15px;
}

.information ul li {
  font-size: 14px;
  padding: 0px 30px;
  list-style: none;
}

.details .name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.details .job {
  font-size: 12px;
  font-weight: 400;
  color: #333;
}

.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.about-us-banner {
  border-radius: 50px;
  backdrop-filter: saturate(100%) blur(5px);
  -webkit-backdrop-filter: saturate(100%) blur(5px);
  padding: 20px;
  min-width: 600px;
  margin: 0 auto;
}

.about-us p{
    font-size: 12pt;
    line-height: calc(12pt*1.618);
}

.about-us h3{
    font-size: calc(12pt*1.618);
}

.mobile-about-us {
  display: none;
}

.mobile-about-us p{
    font-size: 12pt;
    line-height: calc(12pt*1.618);
}

.mobile-about-us h3{
    font-size: calc(12pt*1.618);
}

.card {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  min-height: 500px;
  background-color: transparent;
  border: none;
}

@media screen and (max-width: 768px) {
  .about-us-banner {
    min-width: 200px;
    margin: 0 auto;
  }

  .mobile-about-us {
    display: block;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-us {
    display: none;
  }
}

@media only screen and (max-width: 1000px) {
  .mobile-header {
    display: block;
  }

  .normal-header {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  /* header {
        padding: 20px 0px;
    } */

  header ul li a {
    padding: 6px 10px;
  }
}
