* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px dotted red; */
  background-color: #f4f4f4;
  text-align: center;
}

html {
  scroll-behavior: smooth;
}

section {
  min-height: 100vh;
  padding-top: 7vh;
  width: 100vw;
}

/* Hero section css */

#hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url(../images/hero.png) ;
  /* background-image: url(); */
  filter: brightness(70%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  padding-top: 0;
}

.hero-section-logo {
  height: 250px;
  width: 250px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section-logo > img {
  height: 100%;
  background-color: transparent;
  padding: 20px;
}

.hero-section-slogan {
  height: 100px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Italianno", "cursive";
  font-weight: 500;
  font-style: normal;
  font-size: 60px;
  letter-spacing: 10px;
  color: white;
  background-color: transparent;
}

/* Hero section rosponsive design */

@media screen and (max-width: 600px) {
  .hero-section-slogan {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 15%;
  }
}

/* Features and about section css */
#features-and-about {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  /* background-color: #f4f4f4; */
}

.home-section-title {
  font-family: "Istok Web", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  padding: 15px;
  letter-spacing: 2px;
}

.home-title-desc {
  font-family: "Istok Web", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 65vw;
  font-size: 20px;
  letter-spacing: 2px;
  color: #3b3b3b;
}

#features {
  width: 60vw;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

#features > div {
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px;
  flex-direction: column;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  /* border-radius: 50px; */
  transition: all 0.5s;
}

#features > div:hover {
  scale: 1.05;
}

.feature-desc {
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #5d5d5d;
  text-align: center;
  width: 65%;
}

@media screen and (max-width: 600px) {
  #features-and-about {
    padding-top: 10vh;
    gap: 10px;
  }
  .home-title-desc {
    width: 90vw;
    font-size: 15px;
    list-style-position: 1px;
    line-height: 120%;
  }
  .home-section-title {
    font-size: 20px;
  }
  #features {
    width: 100vw;
    flex-direction: column;
    height: fit-content;
    padding: 20px 0px;
  }
  #features > div {
    width: 70%;
    height: 40vh;
  }
}

/* Product section css */
#product-section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}

.proucts-section-slider {
  width: 70vw;
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
}

.slider-img {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 21px;
  width: 110px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: 0.5s ease;
  height: 80%;
  scale: 1.1;
}

.slider-img > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(50%);
  border-radius: 6px;
}


.slider-img > h1 {
  width: 300%;
  font-size: 20px;
  font-weight: 700;
  padding-left: 50px;
  text-align: left;
  text-align: center;
  text-transform: uppercase;
  color: white;
  position: absolute;
  top: 50%;
  letter-spacing: 5px;
  transform: rotate(270deg);
  transition: 0.5s ease;
  background-color: transparent;
}
.details {
  position: absolute;
  bottom: 43px;
  left: 43px;
  background-color: transparent;
}
.details h2 {
  text-align: left;
  line-height: 44px;
  color: white;
  text-transform: uppercase;
  transition: 0.5s ease;
  display: none;
  background-color: transparent;
}
.see-more-container-home {
  background-color: transparent;
  display: flex;
  justify-content: flex-end;
}
.details a {
  color: #1348a4;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s ease;
  display: none;
  font-weight: bold;
  font-size: 15px;
  padding: 10px 25px;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 25px 0px 0px 25px;
}
.details p {
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 2px;
  line-height: 20px;
  color: white;
  text-transform: uppercase;
  transition: 0.5s ease;
  display: none;
  background-color: transparent;
}
.slider-img.active {
  width: 30vw !important;
  height: 100% !important;
}
.slider-img.active h1 {
  display: none;
}
.slider-img.active .details p,
.slider-img.active .details h2,
.slider-img.active .details a {
  display: block;
}

@media screen and (max-width: 600px) {
  .proucts-section-slider {
    width: 100%;
  }
  .slider-img {
    width: 10%;
    height: 40vh;
  }
  .slider-img h1 {
    width: 800%;
    padding: 0;
    font-size: 20px;
  }
  .slider-img.active {
    width: 60vw !important;
    height: 80% !important;
  }
  .details a {
    padding: 5px 15px;
  }
  .details p {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .details {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
    gap: 20px;
  }
}
