@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  padding-top: 80px;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.other_product_container {
  width: 100vw;
  padding-top: 0;
  margin-top: 0;
}

.other_product_hero {
  width: 100%;
  height: 80vh;
  position: relative;
  padding-top: 0;
  margin-top: 0;
}

.other_product_hero img {
  width: 100%;
  height: 100%;
  filter: brightness(80%);
}

.other_product_hero h2 {
  font-size: 2rem;
  position: absolute;
  top: 40%;
  left: 10rem;
  color: #fff;
  text-decoration: underline;
  animation: drop-in 800ms ease 500ms backwards;
}

.other_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);
  }
}

.other_products_section {
  width: 100vw;
  padding: 2rem 10rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.other_products_section .product_part {
  display: flex;
  height: 40vh;
  width: 48%;
  overflow: hidden;
  margin: 1rem 0;
  border-radius: 6px;
  background: linear-gradient(to right, #295a88, #202020);
  box-shadow: 5px 5px 10px #00417e;
}


.other_products_section .product_part img {
  height: 100%;
  width: 50%;
}
.other_products_section .product_part  .product_info{
width: 60%;
  }
.other_products_section .product_part h3{
  color: #ccff01;
  text-decoration: underline;
  padding: 0.5rem 1rem;

}
.other_products_section .product_part p {
  color: #fff;
  padding: 0.5rem 1rem;
}

@media (max-width: 991px) {
  .other_product_hero {
    width: 100%;
    height: 30vh;
    position: relative;
  }

  .other_product_hero h2 {
    font-size: 1.2rem;
    left: 1rem;
  }

  .other_product_hero h2 span {
    font-size: 1.5rem;
  }

  .other_products_section {
    padding: 2rem 1rem;
    /* flex-direction: column; */
  }

  .other_products_section .product_part {
    width: 100%;
    display: flex;
    height: 30vh;
    /* flex-direction: column; */
  }

  .other_products_section .product_part img {
    width: 40%;
  }
  .other_products_section .product_part .product_info{
    padding: 0.25rem;
  }
  .other_products_section .product_part .product_info h3 {
    font-size: 1rem;
    padding: 0.25rem 1rem;
  }

  .other_products_section .product_part .product_info p {
    font-size: 0.8rem;
    padding: 0.25rem 1rem;
  }

}