* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background-color: #333;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

.title-span {
  letter-spacing: 5px;
  color: gold;
}

header nav a.active {
  border-bottom: 1px solid gold;
  color: white;
}

header nav a:hover {
  color: white;
}

section {
  background-color: #145;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.header-container .nav-logo {
  margin-left: 50px;
  font-size: 24px;
  color: #fff;
}
.header-container .nav-logo .logo-text {
  text-decoration: none;
  color: #fff;
}
.header-container nav {
  margin-right: 50px;
}
.header-container nav a {
  margin: 30px;
  text-decoration: none;
  text-transform: uppercase;
  color: lightgrey;
  transition: 0.3s;
  font-size: 18px;
}

.home-head {
  background-image: url(../img/workgloves_big.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.home-head .head-cover {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.home-head .head-cover .head-cover-text {
  display: flex;
  justify-content: center;
  width: 100%;
  color: #fff;
  font-size: 78px;
}
.home-head .head-cover .see-more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.home-head .head-cover .see-more .check-more {
  width: 180px;
  height: 50px;
  margin-top: 30px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  border-radius: 20px;
  color: lightgray;
  transition: 0.5s;
}
.home-head .head-cover .see-more .check-more:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.section-title {
  display: flex;
  justify-content: center;
  margin-top: 0;
  padding: 25px;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 20px;
  box-shadow: 5px 5px 15px black;
}

.go-down {
  font-size: 60px;
  color: #fff;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.products-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  background-color: #333;
}
.products-container .products-title {
  width: 100%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid gold;
  height: 100px;
}
.products-container .products-card-container {
  width: 100%;
  height: 80%;
}/*# sourceMappingURL=style.css.map */