h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif !important;
}
/* ================================Banner================================ */
.banner {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  top: 0px;
  height: 56px;
  z-index: 130;
  width: 100%;
  color: rgb(0, 0, 0);
  transition: top 0.5s ease 0s;
  background: #fff;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.banner__content {
  padding: 0px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  text-align: center;
}

.banner__text {
  flex-grow: 1;
  line-height: 1.4;
  margin: 10px 0;
  font-family: "Poppins", sans-serif;
}

.banner__close {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.banner__text,
.banner__close > span {
  color: #000;
}
/* ================================Title================================ */
.maintitle {
  transition: all 0.3s;
  display: flex;
  position: relative;
  flex-direction: row;
  width: 100%;
  background-color: #c41c1c;
  align-items: center;
}
.maintitle.active {
  color: #212428;
  transition: all 0.3s;
  z-index: 10;
  position: fixed;
  background: linear-gradient(
      -45deg,
      rgb(238, 119, 82),
      rgb(231, 60, 126),
      rgb(35, 166, 213),
      rgb(35, 213, 171)
    )
    0% 0% / 400% 400%;
  animation: 15s ease 0s infinite normal none running gradient;
  top: 0;
}
.maintitle h1 {
  font-size: 23px;
  font-weight: 600;
}
.maintitleleft {
  display: flex;
  width: 50%;
  justify-content: center;
}
.maintitleright {
  display: flex;
  width: 50%;
  justify-content: center;
}
/* ================================Product================================ */
.product {
  font-family: "Poppins", sans-serif;
  transition: all 0.3s;
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.productleft {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 70px;
  margin-left: 5%;
}
.productleft img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.productright {
  display: flex;
  flex-direction: column;
  width: 60%;
  padding: 50px;
}
.productright h1 {
  font-size: 50px;
  font-weight: bold;
}
.productright .stat {
  font-weight: 500;
  font-size: 20px;
  margin: 10px 0px;
  display: flex;
  flex-direction: row;
}
.productright .stat span {
  color: #c41c1c;
  margin: 0 10px;
  display: flex;
  align-items: center;
}
.productright .stat i {
  margin: 0 5px;
  font-size: 20px;
}
.sales {
  padding: 10px;
  border-radius: 20px;
  border: 3px solid #c41c1c;
  width: 80%;
}
.button {
  margin: 10px;
}
.button i {
  margin-right: 10px;
}
.button a {
  transition: all 0.3s;
  display: inline-flex;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
  border-radius: 10px;
  -webkit-box-pack: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 20px;
}
a#b1 {
  background-color: #c41c1c;
}
a#b1:hover {
  transition: all 0.3s;
  box-shadow: 0px 0px 2px #fff, 0 0 20px #fff, 0 0 5px #c41c1c;
}
a#b2 {
  color: #212428;
  background-color: #fff;
}
a#b2:hover {
  transition: all 0.3s;
  color: #c41c1c;
  box-shadow: 1px 1px 2px #c41c1c, 0 0 35px #c41c1c, 0 0 5px #212428;
}
.productleftdown {
  margin: 10px 0px;
  width: 80%;
}
.productleftdown button {
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  background: none;
  border-style: none;
  color: #fff;
  font-weight: 500;
}
/* ================================detailmiddle====================================== */
.detailmiddle {
  font-family: "Poppins", sans-serif;
  display: inline-flex;
  flex-direction: row;
  padding: 10px;
  border-radius: 20px;
  border: 3px solid #c41c1c;
  width: 90%;
  margin: 0 6%;
}
.detailmiddle h1 {
  font-weight: 600;
  font-size: 25px;
  border-bottom: 3px solid #c41c1c;
}
.detailmiddle1,
.detailmiddle2,
.detailmiddle3 {
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  width: 33%;
  padding: 15px;
}
.hovertext {
  visibility: hidden;
  width: auto;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  margin-top: 2%;
  right: 3%;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.hover:hover .hovertext {
  visibility: visible;
}
/* ================================History====================================== */
.history {
  font-family: "Poppins", sans-serif;
  display: inline-flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 20px;
  border: 3px solid #c41c1c;
  width: 90%;
  margin: 3% 6%;
}
.history h1 {
  padding-bottom: 10px;
  font-weight: 600;
  font-size: 28px;
  border-bottom: 3px solid #c41c1c;
}
/* ================================more====================================== */
.more {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 10px;
  border: 3px solid #c41c1c;
  width: 90%;
  margin: 0 6%;
}
.more h1 {
  padding-bottom: 10px;
  font-weight: 600;
  font-size: 28px;
  border-bottom: 3px solid #c41c1c;
}
