@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
a {
  text-decoration: none;
  color: #303236;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headerss {
  font-size: 28px;
  position: relative;
  padding: 70px 0px;
}
.headerss::before {
  content: "";
  height: 2px;
  width: 70%;
  background-color: #e31e24;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translate(-50%, 0%);
}

header {
  width: 100%;
  position: fixed;
  z-index: 11111;
}
header .upheader {
  width: 100%;
  height: 5vh;
  background-color: #303236;
  padding: 0% 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 15px;
}
header .upheader img {
  height: 18px;
  margin: 0px 12px;
}
header .upheader .firstpart {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.nav {
  width: 100%;
  height: 10vh;
  background-color: white;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.274);
  padding: 0% 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.nav .logoa {
  height: 100%;
}
.nav .logo {
  height: 100%;
  display: flex;
  align-items: center;
}
.nav .logo img {
  height: 90%;
}
.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav ul .active {
  font-weight: 500;
  font-weight: 500;
  background-color: rgb(232, 232, 232);
  padding: 5px 10px;
  border-radius: 5px;
}
.nav ul li {
  cursor: pointer;
  padding: 0px 15px;
  font-weight: 400;
}
.nav ul li:hover {
  color: #e31e24;
  font-weight: 500;
}
.nav .menu {
  display: none;
}
.nav .mobilemenu {
  display: none;
}

.banner {
  width: 100%;
  height: 35.94vw;
  position: relative;
  overflow: hidden;
  margin-top: 15vh;
}
.banner img {
  width: 100%;
  height: auto;
  position: absolute;
}
.banner .direction {
  position: absolute;
  height: 100%;
  width: 100px;
  top: 50%;
  transform: translate(0%, -50%);
  cursor: pointer;
  z-index: 10;
  transition: 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .direction img {
  width: 40px;
  opacity: 0.05;
}
.banner .left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
  left: 0px;
  transition: 0.15s;
}
.banner .left:hover {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}
.banner .left:hover img {
  opacity: 0.25;
}
.banner .right {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
  right: 0px;
  transition: 0.15s;
}
.banner .right:hover {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}
.banner .right:hover img {
  opacity: 0.25;
}

.bannerimages {
  opacity: 0;
  transition: 0.25s;
  scale: 1.3;
}

.bannerimages.active {
  opacity: 1;
  scale: 1;
}

.part-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  width: 60%;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.part-1 .box {
  width: 100%;
  height: 100%;
  padding: 30px;
  text-align: center;
  background-color: #eeeeee;
  border-radius: 15px;
}
.part-1 .box img {
  width: 100px;
  opacity: 0.5;
}
.part-1 .box h3 {
  font-size: 22px;
  margin: 40px 0px;
  position: relative;
}
.part-1 .box h3::before {
  content: "";
  height: 2px;
  width: 70%;
  background-color: #e31e24;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.part-1 .box h3:hover {
  color: #e31e24;
}
.part-1 .box p {
  padding: 0px 30px;
  line-height: 1.5;
}
.part-1 .box p span {
  color: #e31e24;
  cursor: pointer;
}

.aboutus {
  width: 100%;
  height: 33.33vw;
  background-image: url(../Assets/aboutus.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100vw;
}
.aboutus .matter {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #303236;
  color: white;
}
.aboutus .matter h3 {
  font-size: 22px;
  margin: 20px 0px;
  position: relative;
}
.aboutus .matter h3::before {
  content: "";
  height: 2px;
  width: 70%;
  background-color: #e31e24;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.aboutus .matter h3:hover {
  color: #e31e24;
}
.aboutus .matter p {
  font-size: 19px;
  padding: 0px 80px;
  line-height: 1.9;
  text-align: justify;
}

.part-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  color: white;
  width: 100%;
}
.part-2 .box {
  width: 100%;
  height: 100%;
  padding: 30px;
  text-align: center;
  background-color: #eeeeee;
}
.part-2 .box img {
  width: 100px;
}
.part-2 .box h3 {
  font-size: 22px;
  margin: 40px 0px;
  position: relative;
}
.part-2 .box h3::before {
  content: "";
  height: 2px;
  width: 70%;
  background-color: white;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.part-2 .box p {
  padding: 0px 30px;
  line-height: 1.5;
}
.part-2 .box1 {
  background-color: #e31e24;
}
.part-2 .box1 a {
  color: white;
}
.part-2 .box2 {
  background-color: #303236;
}
.part-2 .box2 a {
  color: white;
}
.part-2 .box3 {
  background-color: #d18b21;
}
.part-2 .box3 a {
  color: white;
}
.part-2 .box4 {
  background-color: #22aba6;
}
.part-2 .box4 a {
  color: white;
}

.products {
  width: 100%;
  padding: 0px 10%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 20px;
}
.products .product {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.products .product:hover .matter {
  bottom: 0%;
}
.products .product img {
  width: 100%;
  transition: 0.3s;
}
.products .product:hover img {
  scale: 1.1;
}
.products .product .matter {
  width: 100%;
  height: 40%;
  padding: 20px 40px;
  background-color: rgba(255, 255, 255, 0.774);
  position: absolute;
  bottom: -100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}
.products .product .matter h3 {
  font-size: 22px;
  margin: 30px 0px;
  position: relative;
}
.products .product .matter h3::before {
  content: "";
  height: 2px;
  width: 70%;
  background-color: #e31e24;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.products .product .matter p {
  line-height: 1.5;
}

footer {
  width: 100%;
  background-color: #303236;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-gap: 20px;
  padding: 50px 5%;
  margin-top: 50px;
}
footer .parts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 15px;
  display: flex;
  color: white;
}
footer .parts h3 {
  font-size: 20px;
  margin: 20px 0px;
  position: relative;
}
footer .parts h3::before {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #e31e24;
  position: absolute;
  bottom: -10px;
  left: 0%;
}
footer .parts h3:hover {
  color: #e31e24;
}
footer .parts p {
  line-height: 1.8;
  text-align: justify;
  font-weight: 100;
}
footer .parts p img {
  height: 12px;
  margin-right: 10px;
}
footer .parts ul {
  list-style: none;
}
footer .parts ul li {
  padding: 10px 0px;
  cursor: pointer;
  color: white;
}
footer .parts ul li:hover {
  color: #e31e24;
  font-weight: 500;
}
footer .firstpart {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  margin-top: 20px;
}
footer .firstpart img {
  height: 30px;
  margin-right: 20px;
  opacity: 1;
  transition: 0.2s;
}
footer .firstpart img:hover {
  scale: 1.5;
}

.allright {
  width: 100%;
  background-color: #e31e24;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 10px 0px;
  font-size: 13px;
}

/* about US ---------------------------------------------------------------*/
/*----------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------*/
/*----------------------------------------------------------------------*/
/*----------------------------------------------------------------------*/
.collapsible {
  background-color: rgb(238, 238, 238);
  color: #303236;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0px;
  border-left: 4px solid #303236;
  border-radius: 5px;
}

.colactive, .collapsible:hover {
  background-color: rgb(224, 223, 223);
  border-left: 4px solid #e31e24;
}

.collapsible:after {
  content: "+";
  color: #303236;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.colactive:after {
  content: "−";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}
.content p {
  padding: 10px;
  font-size: 16px;
}

/*----------------------------------------------------------------------*/
/*----------------------------------------------------------------------*/
/*----------------------------------------------------------------------*/
.aboutusmain {
  width: 100%;
  padding: 0px 10%;
  display: flex;
}
.aboutusmain .matt {
  display: flex;
  flex-direction: column;
  width: 60%;
}
.aboutusmain .matt p {
  padding: 0px 0px;
  line-height: 1.6;
  font-size: 18px;
  text-align: justify;
}
.aboutusmain .imgaes {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.aboutusmain .imgaes img {
  width: 60%;
  margin-bottom: 25px;
}

.innovation {
  width: 60%;
}
.innovation p {
  padding: 0px 0px;
  line-height: 1.8;
  font-size: 18px;
  text-align: justify;
}
.innovation span {
  font-weight: 500;
  font-size: 25px;
  color: #e31e24;
}

.imagegallry {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.imagegallry img {
  width: 100%;
  transition: 0.2s;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.15);
}
.imagegallry img:hover {
  scale: 1.5;
}

/* about US End ---------------------------------------------------------------*/
/*----------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------*/
/* repons ---------------------------------*/
@media (max-width: 1540px) {
  .aboutus .matter p {
    font-size: 17px;
    padding: 0px 30px;
    line-height: 1.2;
    margin-bottom: 0px;
    text-align: justify;
  }
}
@media (max-width: 1080px) {
  header .upheader {
    padding: 0% 3%;
  }
  .nav {
    padding: 0% 3%;
    justify-content: center;
  }
  .nav ul {
    display: none;
  }
  .nav .menu {
    display: block;
    height: 15px;
    opacity: 0.5;
    margin-left: auto;
    cursor: pointer;
  }
  .nav .menu img {
    height: 100%;
  }
  .nav .mobilemenu {
    display: none;
    position: absolute;
    right: 0;
    top: 15vh;
    z-index: 555;
    background: white;
    max-width: 350px;
    width: 100%;
    padding: 15px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.137);
  }
  .nav .mobilemenu ul {
    display: block;
  }
  .nav .mobilemenu ul li {
    padding: 20px;
  }
  .aboutus {
    height: auto;
    background-image: url(..../Assets/aboutus.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100vw;
    padding-top: 180px;
  }
  .aboutus .matter {
    width: 100%;
  }
  .aboutus .matter p {
    font-size: 14px;
    padding: 0px 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: justify;
  }
  footer {
    display: grid;
    grid-template-columns: 1fr;
  }
}
/* repons ---------------------------------*/
@media (max-width: 768px) {
  .imagegallry img:hover {
    scale: 1;
  }
  header .upheader {
    width: 100%;
    height: 5vh;
    background-color: #303236;
    padding: 0% 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-size: 13px;
  }
  header .upheader img {
    height: 12px;
    margin: 0px 12px;
    opacity: 0.7;
  }
  header .upheader .firstpart {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
  }
  .banner .direction {
    width: 30px;
    top: 50%;
    transform: translate(0%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .banner .direction img {
    width: 15px;
    opacity: 0.15;
  }
  .banner .left {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
    left: 0px;
    transition: 0.15s;
  }
  .banner .left:hover {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
  }
  .banner .left:hover img {
    opacity: 0.25;
  }
  .banner .right {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
    right: 0px;
    transition: 0.15s;
  }
  .banner .right:hover {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
  }
  .banner .right:hover img {
    opacity: 0.25;
  }
  .innovation {
    width: 90%;
  }
  .innovation p {
    padding: 0px 0px;
    line-height: 1.8;
    font-size: 15px;
    text-align: justify;
    text-transform: capitalize;
  }
  .innovation span {
    font-weight: 500;
    font-size: 25px;
    color: #e31e24;
  }
  .collapsible {
    background-color: rgb(238, 238, 238);
    color: #303236;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 14px;
    font-weight: 700;
    margin: 10px 0px;
    border-left: 4px solid #303236;
    border-radius: 5px;
  }
  .content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
  }
  .content p {
    padding: 12px;
    font-size: 14px;
  }
  .headerss {
    font-size: 20px;
    position: relative;
    padding: 40px 0px;
  }
  .headerss::before {
    bottom: 35px;
  }
  header .upheader {
    padding: 0% 3%;
    justify-content: center;
  }
  header .upheader .secondprt {
    display: none;
  }
  .products {
    width: 100%;
    padding: 0px 10%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
  }
  .products .product .matter {
    width: 100%;
    height: 50%;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.774);
    position: absolute;
    bottom: -100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
  }
  .products .product .matter h3 {
    font-size: 17px;
    margin: 15px 0px;
    position: relative;
  }
  .products .product .matter p {
    font-size: 14px;
    line-height: 1.5;
  }
  .aboutusmain {
    display: flex;
    flex-direction: column;
    padding: 0px 5%;
  }
  .aboutusmain .matt {
    width: 100%;
  }
  .aboutusmain .matt p {
    font-size: 14px;
  }
  .aboutusmain .imgaes {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
  }
}
@media (max-width: 414px) {
  .aboutus {
    padding-top: 130px;
  }
}/*# sourceMappingURL=style.css.map */