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

body,
html {
  font-family: "Roboto", sans-serif;
  height: 100%;
  scroll-behavior: smooth;
}

/* HERO */

.hero {
  height: 100vh;
  max-height: 1440px;
  width: 100%;
  background: url("images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  color: #000;
  padding: 16px;
  height: 100%;
  width: 100%;
}

.hero-content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  gap: 24px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 70px;
  font-weight: 500;
  line-height: 1.1em;
  color: #122c44;
}

.hero p {
  font-size: 18px;
  line-height: 24px;
  max-width: 575px;
  color: #000;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.mobile-hamburger {
  display: none;
}

.navbar-container {
  max-width: 1440px;
  width: 100%;
  padding: 8px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 8;
}

.navbar img {
  height: 48px;
}

.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar ul li {
  display: flex;
}

.navbar ul li a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin: 0;
  transition: all 0.3s ease-out;
}

.navbar ul li a.button-contact {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin: 0;
  transition: all 0.3s ease-out;
  background-color: #122c44;
  padding: 12px 16px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar ul li a img {
  width: 20px;
  height: 20px;
}

.navbar ul li a.button-contact:hover {
  transform: translate(0);
}

.navbar a:hover {
  transform: translate(0, -4px);
}

/* ABOUT */

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 128px 16px 0;
}

.about-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-box {
  width: 50%;
  border: 1px solid #e6e9eb;
  padding: 32px;
}

.about-box.second {
  padding: 0;
  height: 420px;
}

.about h2 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 16px;
}

.about p {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 32px;
}

.about span {
  font-size: 16px;
  font-weight: 400;
  color: #383838;
}

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

.product-information-detail {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 32px 0 16px;
}
.product-information-detail span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 16px;
  width: 100%;
}
.product-information-detail p {
  width: 50%;
  font-size: 16px;
  font-weight: 400;
  color: #383838;
  border-bottom: 1px solid #e6e9eb;
  padding: 16px;
  margin: 0;
}

/* PRODUCT */

.products {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 128px 16px 0;
}

.products-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: normal;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.products h2 {
  font-size: 14px;
  font-weight: 700;
  width: 100%;
}

.products p {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 16px;
  width: 100%;
}

.products .product-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.products .product-list .product-list-item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 3);
  border: 1px solid #e6e9eb;
  padding: 0;
}

.product-list-item-image {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.product-list-item-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-list-item-text {
  display: flex;
  padding: 32px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

.product-list-item-text:hover {
  background-color: #122c44;
  color: #fff;
}

.product-list-item-contact {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  background-color: #122c44;
  padding: 32px;
  font-size: 40px;
  cursor: pointer;
  justify-content: flex-end;
}

.product-list-item-contact:hover {
  background-color: #122c44;
}

.product-list-item-contact img {
  height: 32px;
  width: 32px;
}

/* CONTACT */

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 96px 16px 0;
  margin: 128px 0 0;
  background-color: #000;
  color: #fff;
}

.footer h2 {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 32px;
}

.footer-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form {
  width: 100%;
}

.contact-form input {
  width: 50%;
}

.footer-info {
  width: 100%;
}

.footer form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: calc(50% - 8px);
  gap: 4px;
}

.footer-info-local {
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.footer-info-local li {
  display: flex;
  align-items: center;
  gap: 16px;
  width: calc(100% / 4);
}

.footer-info-local li img {
  height: 64px;
  width: 64px;
}

.footer-info-local li div {
  display: flex;
  flex-direction: column;
}

.footer-info-local li div a {
  color: #fff;
  text-decoration: none;
}

/* CONTACT */

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  font-family: "Manrope", sans-serif;
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  color: #333;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
  border-color: #122c44;
  box-shadow: 0 4px 8px rgba(27, 67, 254, 0.1);
  background-color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
  font-weight: 400;
}

.contact-form button[type="submit"] {
  padding: 12px 16px;
  background-color: #122c44;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
  background-color: #1739d4;
}

hr {
  display: flex;
  border-color: rgba(255, 255, 255, 0.1);
  border-width: 0.5px;
  margin: 32px;
}

@media screen and (max-width: 1024px) {
  .mobile-hamburger {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .mobile-hamburger img {
    height: 32px;
    width: 32px;
    cursor: pointer;
  }
  .menu-list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
  }
  .menu-list #closeIcon {
    position: fixed;
    top: 20px;
    right: 20px;
    height: 20px;
    width: 20px;
  }
  .hero .navbar .menu-list-item a {
    color: #fff;
    font-size: 32px;
    padding: 16px 0;
    display: flex;
  }
  .navbar ul {
    display: none;
  }

  .hero {
    max-height: none;
  }
  .hero h1 {
    font-size: 48px;
  }

  .about {
    padding: 56px 16px 0;
  }
  .about p {
    font-size: 24px;
    margin: 0 0 16px;
  }
  .about-container {
    flex-direction: column;
  }
  .about-box {
    width: 100%;
  }
  .about-box.second {
    height: 350px;
  }

  .products {
    padding: 56px 16px 0;
  }
  .products p {
    font-size: 24px;
    margin: 0 0 16px;
  }
  .products .product-list .product-list-item {
    width: calc(100% / 3);
  }
  .product-list-item-contact {
    font-size: 32px;
  }

  .form-group {
    width: 100%;
  }

  .footer-info-local li {
    width: calc((100% / 3) - 8px);
  }
}

@media screen and (max-width: 768px) {
  .hero p {
    display: none !important;
  }

  .about p {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .products .product-list {
    flex-wrap: wrap;
  }

  .products .product-list .product-list-item {
    width: 100%;
  }

  .footer-info-local {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .footer-info-local li {
    width: 100%;
  }

  .product-information-detail p {
    width: 100%;
    border: none;
  }

  .footer {
    margin: 56px 0 0;
    padding: 56px 16px 0;
  }
}

.animated-arrow {
  display: inline-block;
  position: absolute;
  width: 32px;
  height: 32px;
  border: solid black;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  cursor: pointer;
  animation: bounce 1s infinite;
  text-decoration: none;
  bottom: 48px;
  left: calc(50% - 15px);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(45deg);
  }
}
