body {
  padding: 0;
  margin: 0;
}
body header .home-header img {
  width: 1440px;
  height: 750px;
  position: relative;
}
body header .home-header .home-menu {
  position: absolute;
  right: 0;
  top: 5px;
}
body header .home-header nav a {
  text-decoration: none;
  color: inherit;
}
body header .top-boder {
  margin-top: 250px;
  border-bottom: 4px solid #000000;
  width: 1000px;
}
body main .products {
  padding: 150px 100px 0px 100px;
}
body main .products .products-box {
  display: flex;
}
body main .products .products-box .products-item .products-item-txt {
  margin: 0px 100px 0px 50px;
}
body main .products .products-box .products-item .products-button {
  margin-top: 50px;
  margin-left: 80px;
  font-size: 20px;
}
body main .products .products-box .products-item img {
  width: 630px;
  height: 550px;
}
body main .products2 {
  background-color: #d1d4d4;
  height: 850px;
  position: relative;
}
body main .products2 .products2-box {
  margin-top: 100px;
  width: 500px;
  height: 550px;
  background-color: #242c34;
  position: absolute;
  top: 50px;
  left: 150px;
}
body main .products2 .products2-box .products-item {
  padding: 40px;
  color: #fff;
}
body main .products2 .products2-box .products-item .products-button2 {
  font-size: 18px;
}
body main .about {
  height: 650px;
}
body main .about .about-container {
  display: flex;
  justify-content: center;
  margin-top: 200px;
}
body main .about .about-container .about-box {
  background-color: #242c34;
  width: 350px;
  height: 400px;
}
body main .about .about-container .about-box:not(:last-child) {
  margin-right: 40px;
}
body footer {
  height: 500px;
}
body footer .footer-border {
  border-top: 4px solid #000000;
  width: 1000px; /* Set the desired width */
  min-height: 0; /* Allow the border to have zero height */
  position: absolute;
  right: 0;
}
body footer .footer-box {
  display: flex;
  padding-top: 100px;
  max-width: 1180px;
  margin: auto;
}
body footer .footer-box .footer-logo {
  width: 100%;
}
body footer .footer-box .footer-logo img {
  width: 100%;
}
body footer .footer-box .contact {
  position: relative;
  width: 100%;
}
body footer .footer-box .contact .contact-text {
  position: absolute;
  bottom: 150px;
}
body footer .footer-box .contact .contact-info {
  position: absolute;
  bottom: 0px;
}
body footer .footer-box .index {
  position: relative;
  width: 100%;
}
body footer .footer-box .index ul {
  list-style: none;
  padding: 0;
  position: absolute;
  bottom: 0px;
}
body footer .footer-box .index li:not(:last-child) {
  padding-bottom: 15px;
}
body footer .footer-box .form {
  width: 100%;
  position: relative;
}
body footer .footer-box .form .form-txt {
  position: absolute;
  bottom: 150px;
}
body footer .footer-box .form .form-box {
  position: absolute;
  bottom: 0px;
}

/* Header*/
.header {
  padding-top: 40px;
  height: 70px;
}
.header .header-logo {
  float: left;
  margin: 0px 0px 0px 50px;
}
.header .header-logo img {
  width: 80px;
  height: 45px;
}
.header .header-navi {
  float: right;
  margin: 0px 50px 0px 0px;
}
.header .header-navi nav a {
  text-decoration: none;
  color: inherit;
}

.main-title {
  padding: 0px 600px 0px 100px;
}
.main-title h1 {
  font-family: "Arial Black";
  font-size: 100px;
  margin: 0;
}
.main-title h4 {
  font-family: "Arial Black";
  font-size: 40px;
  margin: 30px 0;
}

.menu-body {
  padding: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.burger {
  --opacity: 1;
  --rotate: 0;
  --translate: .5rem;
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.burger:hover {
  background-color: #eee;
}
.burger.is-active {
  --opacity: 0;
  --rotate: 135deg;
  --translate: 0;
}
.burger span {
  display: block;
  width: 70%;
  height: 2px;
  background-color: #000000;
  grid-area: 1/1/-1/-1;
  transition: opacity 0.4s ease, rotate 0.4s ease, translate 0.4s ease;
}
.burger span:nth-child(1) {
  opacity: var(--opacity);
}
.burger span:nth-child(2) {
  translate: 0 calc(var(--translate) * -1);
  rotate: var(--rotate);
}
.burger span:nth-child(3) {
  translate: 0 var(--translate);
  rotate: calc(var(--rotate) * -1);
}

.menu {
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.menu.is-active {
  opacity: 1;
  pointer-events: all;
}
/*# sourceMappingURL=style.css.map */