@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

:root {
  --primary: #f5f5f5;
  --text: #212529;
  --secondary: rgb(0, 0, 0);
  /* --secondary: #003775; */
  --accent: #ff4400f0;
  --a1: #ff4400e4;
  /* --accent: #2D7FAE; */
}
.head {
  display: flex;
  text-wrap: nowrap;
  justify-content: center;
  margin-top: 2vw;
}
.heading {
  text-align: center;
  width: fit-content;
  border-bottom: 2px solid var(--accent);
  margin: 3vw 0;
  font-weight: 400;
  font-size: 3.2vw;
}

.baner {
  position: relative;
  background-image: url("https://img.freepik.com/free-photo/engineers-with-hard-hats-working-nuclear-power-plant_23-2150957670.jpg?t=st=1716008668~exp=1716012268~hmac=7daf2f4ca3dfbdcfe7ae84587b227bb4f74edfcfb19c31ea2b418516d64744f0&w=1060");
  width: 100vw;
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5vw;
  justify-content: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  h1 {
    color: var(--primary);
    font-size: 7vw;
    text-align: center;
    z-index: 2;
    span {
      color: var(--accent);
    }
  }
  p{
    z-index: 100;
    width: 50vw;
    color: var(--primary);
  }
}
.baner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  filter: blur(15px);
  height: 70vh;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0.41);
  z-index: 1;
}
.app {
  overflow-x: hidden;
}
.container {
  padding: 2vw 0;
}
.pd{
  display: flex;
  justify-content: center;
}
.prod-description{
   width: 75%;
   text-align: center;
   display: flex;
   text-transform: uppercase;
   justify-content: center;
   font-size: 18px;
}
.prod2 {
  .prodbox {
    padding: 0 4vw;
    justify-content: center;
    display: flex;
    /* gap: 0.5vw; */
    .card {
      scale: 0.82;
      padding: 0 0 1vw 0;
      position: relative;
      width: 23vw;
      height: 85vh;
      border: 1px solid rgba(132, 129, 129, 0.681);
      border-radius: 2px;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
      box-shadow: 0 10px 6px -6px #777;
      img {
        width: 100%;
        height: 19vw;
        object-fit: cover;
      }
      h3 {
        padding: 0.5vw;
        margin-top: 1.5vw;
        border-radius: 5px;
        font-size: 1.15vw;
        /* border: 1px solid rgba(184, 109, 81, 0.496); */
        text-align: center;
        max-width: 80%;
      }
      p {
        position: absolute;
        top: 24vw;
        left: 1vw;
        text-align: left;
        padding: 1vw;
        color: rgb(38, 33, 33);
        /* padding: 1.5vw; */
      }
    }
  }
}

@media screen and (max-width : 650px) {
  .baner{
     height: 55vh;
      h1{
        font-size: 12vw;
      }
  }
  .baner::before{
     height: 55vh;
  }
  .heading {
    font-size: 6vw;
  }
  .prod-description{
    padding: 10px 0;
    font-size: 10px;
  }
  .prodbox {
      flex-direction: column;
      align-items: center;
      .card{
         min-width: 75vw;
         min-height: 109vh !important;
         img{
           min-width: 10vw;
           min-height: 55vh;
           object-fit: contain;
         }
         h3{
           margin-top: 2vw;
           font-size: 4.5vw !important;
         }
         p{
          padding: 0 10vw;
           position: relative;
           top: 120vw !important;
         }
      }
  }
}
