* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #000;
}
.tv-logo {
  height: 75px;
  width: 75px;
}

/*TBQ BRAND*/
.container-tbq {
  display: flex;
  align-items: center;
}
.tbq {
  padding-left: 130px;

  width: 100%;
  height: 100%;
}
/* BBQ__CTR */
.bbq__ctr {
  width: auto;
  height: 100vh;
}
.container__product__description__grill {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100vh;

  padding-left: 25px;
  padding-right: 25px;
  background: black;
  text-align: center;
  font-size: 200px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}
.grill_span {
  text-align: center;
  display: block;
  background: url("./img_products/bbq__ctr/fire-burn.gif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: fire 0.2s linear infinite;
}

.noco__img {
  padding-left: 25px;
  width: auto;
  height: 500px;
}
/*TBQ LOGO*/
.tbq_brand {
  text-align: center;
  width: auto;
  position: relative;
  animation-name: tbq-logo;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
}
@keyframes tbq-logo {
  from {
    top: -700px;
    opacity: 0.2;
  }
  to {
    top: -0px;
    opacity: 1;
  }
}
.bbq__ctr__slide {
  text-align: center;
  width: auto;
  position: relative;
}
/*img in slider*/
.img__in__slider {
  padding-left: 25px;
  text-align: center;
  width: auto;
  position: relative;
  animation-name: img-slider;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
}

/*img in*/
@keyframes img-slider {
  from {
    left: -700px;
    opacity: 0.2;
  }
  to {
    left: 0px;
    opacity: 1;
  }
}
@-webkit-keyframes img-slider {
  from {
    top: -700px;
    opacity: 0.2;
  }
  to {
    top: 0px;
    opacity: 1;
  }
}

.slider__body {
  font-family: fantasy;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.container__img__position {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.container__slidse {
  display: flex;
  align-items: center;
}
/*trailer_valet img sizing*/
.trailer_valet {
  border-radius: 25px;
  width: 600px;
  height: 700px;
}
.valet_desctiption {
  background-color: #ffcb05;
  border-radius: 25px;
  text-align: center;
  margin-left: 200px;
  margin-right: 200px;
}

.product__description {
  color: black;
  text-align: center;
  font-size: 65px;
  margin: 0px;
  padding: 5px;
}
.container__product__description {
  font-size: 65px;
  margin-left: 250px;
  /*animation*/
  position: relative;
  animation-name: product-description;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
}
@keyframes product-description {
  from {
    right: -100%;
    opacity: 0.2;
  }
  to {
    right: 0%;
    opacity: 1;
  }
}
@-webkit-keyframes product-description {
  from {
    right: -100%;
    opacity: 0.2;
  }
  to {
    right: 0%;
    opacity: 1;
  }
}
.product__description__position {
  width: auto;
  height: auto;
  display: flex;
  text-align: center;
}

.qr {
  width: 200px;
  height: 200px;
}

.price {
  margin: 0;
  margin: -200px;
  margin-top: 340px;
}
.price_div {
  padding-left: 5px;
  padding-right: 5px;
  border: #040446 solid 1px;
  color: white;
  border-radius: 50px;
  width: auto;
  height: 160px;
  font-size: 100px;
  z-index: 1;
  background-color: gray;
  /*animation*/
  animation-name: price-slide;
  position: relative;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
}

@keyframes price-slide {
  from {
    top: -1200px;
    opacity: 0.2;
  }
  to {
    top: 0px;
    opacity: 1;
  }
}
@-webkit-keyframes price-slide {
  from {
    top: -700px;
    opacity: 0.2;
  }
  to {
    top: 0px;
    opacity: 1;
  }
}

/*rotate or add space*/
.space {
  padding-left: 25px;
}
.for_rotate {
  padding-left: 25px;
  transform: rotate(30deg);
}

/*footer*/
.container_footer {
  padding: 25px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    -45deg,
    #423270,
    #df2929,
    #e73c3c,
    #d4152f,
    #423270
  );
  background-size: 400% 400%;
  animation: gradient 25s ease infinite;
  height: auto;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.footer_text {
  text-align: center;
  color: white;
  width: 33%;
  font-size: 45px;
}
.footer_logo {
  width: 60%;
}
