* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  padding-top: 80px;
  overflow-x: hidden;
}

.product_container {
  width: 100vw;
}

.product_hero {
  width: 100%;
  height: 80vh;
  position: relative;
}

.product_hero img {
  width: 100%;
  height: 100%;
  filter: brightness(80%);
}

.product_hero h2 {
  font-size: 2rem;
  position: absolute;
  top: 40%;
  left: 10rem;
  color: #fff;
  text-decoration: underline;
  animation: drop-in 800ms ease 500ms backwards;
}

.product_hero h2 span {
  text-decoration: none;
  color: #ccff01;
  font-size: 3rem;
}

@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translate(0px);
  }
}

.product_body {
  width: 100vw;
  padding: 2rem 10rem;
}

.p_body_title h2 {
  font-size: 1.75rem;
  margin: 1rem 0;
}

.p_body_title p {
  font-size: 1rem;
}

.p_body_image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.p_body_image .image_tab {
  width: 50%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.p_body_image .image_tab img {
  width: 75%;
  height: 100%;
  border-radius: 20px;
  /* border: 2px solid black; */
  box-shadow: 5px 5px 20px #252525;
}

.p_body_image .description_tab {
  width: 50%;
  padding: 2rem;
  display: inline-flex;
  flex-direction: column;
}

.p_body_image .description_tab h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.p_body_info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.p_body_info_text {
  margin: 2rem 0;
  width: 28%;
  border-radius: 10px 50px 0 30px;
  padding: 12px;
  /* height: 150px; */
  background: linear-gradient(145deg, #cacaca, #f0f0f0);
  box-shadow: 5px 5px 10px #00417e, -15px -15px 30px #ffffff;
}


@media (max-width: 991px) {

  .product_container {
      width: 100vw;
      margin-top: 0;
  }

  .product_hero {
      width: 100%;
      height: 30vh;
      position: relative;
      margin-top: 0;
  }

  .product_hero h2 {
      font-size: 1.2rem;
      left: 1rem;
  }

  .product_hero h2 span {
      font-size: 1.5rem;
  }

  .p_body_image {
    display: flex;
  }
  
  .p_body_image .image_tab {
    width: 100%;
    padding: 1rem;
    display: flex;
  }
  
  .p_body_image .image_tab img {
    width: 100%;
  }
  
  .p_body_image .description_tab {
    width: 100%;
    padding: 1rem;
  }
  
  .p_body_image .description_tab h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .product_body {
      width: 100vw;
      padding: 2rem 1rem;
  }


  .p_body_photo img {
      border-radius: 10px;
      padding: 10px;
      background: linear-gradient(to right, #000, #010021);
      width: 85px;
      height: 85px;
  }

  .p_body_info {
      flex-direction: column;
  }

  .p_body_info_text {
      margin: 0.5rem 0;
      width: 100%;
      border-radius: 10px 50px 0 30px;
      padding: 12px;
      height: 150px;
  }

  .p_body_info_text h3 {
      font-size: 1.5rem;
  }

  .p_body_info_text p {
      font-size: 1rem;
  }

}