* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
  width: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #f7f7f7;
  overflow: hidden;
}
*::selection {
  color: white;
  background-color: black;
}
body::-webkit-scrollbar {
  display: block;
  width: 8px;
}
#nav {
  width: 100%;
  position: fixed;
  z-index: 99;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px;
}

#nav #nav-part2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

#links {
  padding: 10px;
}

#nav-part1 {
  height: 82px;
  overflow: hidden;
}

#nav-part1 svg {
  display: block;
}

#nav-part2 #links a {
  text-transform: uppercase;

  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  margin: 0 20px;
}

#icons {
  padding: 10px;
  border-radius: 50px;
  background-color: #f7f7f7;
}

#nav-part2 #icons i {
  font-size: 18px;
  margin: 0 20px;
  font-weight: 100;
}
#cursor {
  height: 270px;
  width: 270px;
  position: fixed;
  background-color: rgb(228, 47, 47);
  border-radius: 50%;
  z-index: 9;
  opacity: 0;
  scale: 0;
  pointer-events: none;
  filter: blur(5px);
}
#page1 {
  min-height: 100vh;
  width: 100%;
  /* background-color: aquamarine; */
  padding: 17vw 1vw 1vw 1vw;
}
#page1 h1 {
  font-size: 17vw;
  font-weight: 800;
  line-height: 13vw;
  letter-spacing: -12px;
}
.image-container {
  height: 110vh;
  width: 100%;
  padding: 2vw 2vw 1vw 1vw;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bottom-sec {
  height: 65vh;
  width: 100%;
  /* background-color: red; */
  display: flex;
  flex-direction: column;
  padding: 8vw;
  align-items: center;
}
#page1 .bottom-sec h1 {
  font-size: 4.5vw;
  letter-spacing: 0px;
  line-height: 11vw;
}
#page1 .bottom-sec p {
  font-size: 1.2vw;
  font-weight: 400;
}
#page1 .bottom-sec h4 {
  font-size: 1vw;
  font-weight: 400;
  padding-top: 2vw;
  letter-spacing: 0.5px;
  padding-bottom: 1vw;
  border-bottom: 1.5px solid black;
  cursor: pointer;
}
#page1 .bottom-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid;
  margin-left: 1vw;
  margin-right: 2vw;
}
#page1 .bottom-line h5 {
  font-weight: 500;
  text-transform: uppercase;
}
#main #page2 {
  min-height: 100vh;
  width: 100%;
  color: black;
  overflow-y: hidden;
  /* background-color: aquamarine; */
}
#page2 .card-container {
  height: 100vh;
  width: 100%;
  /* background-color: blue; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vw 8vw 2vw;
}
.cards {
  height: 100%;
  width: 33%;
  /* background-color: red; */
}
.cards img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#page2 .bottom-container {
  height: 75vh;
  width: 100%;
  /* background-color: rebeccapurple; */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-right: 2vw;
  padding-left: 3vw;
}
.bottom-container > h2 {
  width: 70%;
  font-size: 4.5vw;
  text-transform: uppercase;
  line-height: 4.3vw;
  letter-spacing: 1px;
  font-weight: 800;
}
.bottom-container .b-right {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 40%;
  padding: 0.5vw 7vw 2vw 7vw;
}
.bottom-container .b-right p {
  font-size: 1.3vw;
}
.bottom-container .b-right h5 {
  width: fit-content;
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 1vw;
  border-bottom: 1.5px solid black;
  cursor: pointer;
}
#main #page3 {
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 9;
  /* background-color: burlywood; */
}
#page3 .prod-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.prod-container .prod-card {
  height: 100vh;
  width: 45%;
  /* background-color: rebeccapurple; */
  margin-bottom: 2vw;
  margin-top: 1vw;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.prod-container .prod-card img {
  height: 80%;
  width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 98;
}
.prod-container .prod-card p {
  padding: 2vw 3vw 0 3vw;
  text-transform: uppercase;
}
.prod-container .prod-card p:nth-last-child(1) {
  padding-top: 0.5vw;
  font-size: 1vw;
}
#page3 .bottom-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid;
  margin-left: 1vw;
  margin-right: 2vw;
  margin-bottom: 3vw;
}
#page3 .bottom-line h5 {
  font-weight: 500;
  text-transform: uppercase;
}
#main #page4 {
  height: 100vh;
  width: 100%;
  display: flex;
  margin-bottom: 8vw;
}
.pg4-left {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 40%;
  padding: 0.5vw 6vw 2vw 2vw;
}
.pg4-left h1 {
  text-transform: uppercase;
  font-weight: 800;
}
.pg4-left p {
  font-size: 1.3vw;
}
.pg4-left h5 {
  width: fit-content;
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 1vw;
  border-bottom: 1.5px solid black;
  cursor: pointer;
}
.pg4-right {
  height: 100vh;
  width: 75%;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  padding: 0 3vw;
  padding-right: 5vw;
  margin-right: 2vw;
}
#page4 .pg4-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#main #footer {
  min-height: 100vh;
  width: 100%;
  /* background-color: red; */
}
.f-top {
  height: 10vh;
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid black;
  justify-content: space-between;
  margin: 0vw 4vw 0 2vw;
}
.f-top h2 {
  width: 60%;
  font-size: 3vw;
  text-transform: uppercase;
  line-height: -1px;
}
.f-top p {
  font-size: 3vw;
  margin-right: 4vw;
}
.f-bottom {
  min-height: 100vh;
  width: 100%;
}
.f-bottom #b-top {
  height: 100vh;
  width: 100%;
  /* background-color: red; */
  display: flex;
  justify-content: space-between;
  padding: 15vw 2vw;
}
#b-top .connect {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  gap: 5px;
}
#b-top .connect a {
  text-decoration: none;
  color: black;
  font-size: 1vw;
}
#b-top .connect a:hover
{
    color: rgb(75, 67, 83) !important;
}
#b-top .connect h3 {
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.484);
  font-size: 0.9vw;
  margin-bottom: 2vw;
}
#b-top #b-mid {
  display: block;
  text-align: center;
  text-transform: capitalize;
}
#b-top #b-mid > img {
  height: 90%;
}
#b-top #b-mid .tags {
  margin-top: 7vw;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 30px;
}
#b-top #b-mid .tags a
{
    color: rgba(0, 0, 0, 0.377);
    font-weight: 500;
}
#b-top #b-mid .tags a:nth-child(1){
    cursor: text;
}
#b-top #b-mid a
{
  text-decoration: none;
  color: rgba(0, 0, 0, 0);
  font-size: 1vw;
}
#b-top #b-mid a:hover
{
    color: rgb(75, 67, 83) !important;
}
#b-top .nitty {
  display: flex;
  gap: 5px;
  flex-direction: column;
  text-transform: uppercase;
}
#b-top .nitty h3 {
  color: rgba(0, 0, 0, 0.484);
  font-size: 0.9vw;
  margin-bottom: 2vw;
}

#b-top .nitty a {
  text-decoration: none;
  color: black;
  text-align: end;
  font-weight: 500;
  font-size: 1vw;
}
.nitty a:hover
{
    color: rgb(75, 67, 83) !important;
}
.f-bottom #b-bottom {
  height: 30vh;
  width: 100%;
  text-align: center;
}
.f-bottom #b-bottom p {
  text-align: center;
  font-size: 1.1vw;
  font-weight: 400;
}
