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

a {
  text-decoration: none;
}

@font-face {
  font-family: Os;
  src: url('../fonts/outfit-semibold.ttf');
}

@font-face {
  font-family: Or;
  src: url('../fonts/outfit-regular.ttf');
}

@font-face {
  font-family: Ob;
  src: url('../fonts/outfit-bold.ttf');
}

@font-face {
  font-family: Om;
  src: url('../fonts/outfit-medium.ttf');
}


body {
  color: black;
  background-size: contain;
  background-repeat: no-repeat;
  background: #ced4da;
}

footer {
  background-color: #dee2e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  font-family: Or;
  text-align: center;
}

.loaderOverlay {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1000;
}

.loader {
  width: 220px;
  height: 50px;
  /* aspect-ratio: 1.154;
  color: red;
  display: grid;
  animation: l38-0 6s infinite linear; */
  background: url(../picture/logo1.png) no-repeat;
  background-size: contain;
}
/* .loader:before,
.loader:after {
  content: "";
  grid-area: 1/1;
}

.loader:before {
  clip-path: polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%);
  background: conic-gradient(from -30deg,#0000 60deg,currentColor 0);
}

.loader:after {
  background: conic-gradient(from -30deg,currentColor 60deg,#0000 0);
  animation: l38 0.5s infinite alternate;
} */


@keyframes l38-0 {
  0%,16.66%     {transform: rotate(0deg)}
  16.67%,33.33% {transform: rotate(60deg)}
  33.34%,50%    {transform: rotate(120deg)}
  50.1%,66.66%  {transform: rotate(180deg)}
  66.67%,83.33% {transform: rotate(240deg)}
  83.34%,100%   {transform: rotate(300deg)}
}
@keyframes l38 {
  100%  {transform: translateY(-20px)}
}

.footerTop {
  display: flex;
  /* width: 90%; */
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 200px;
  padding: 50px;
  border-bottom: 2px solid black;
}

.footerBottom {
  margin-bottom: 40px;
}

.footerBottom p {
  line-height: 1.5;
}

.socialHandles {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.socialHandles a {
  text-decoration: none;
  outline: none;
  color: black;
  cursor: pointer;
  transition: all 0.2s;
}

.socialHandles a:hover {
  opacity: 60%;
}

.socialHandles i {
  font-size: 30px;
}

.fContact p {
  width: 250px;
  text-align: left;
}

.fContact {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

#map {
  height: 300px;
  width: 100%;
}

.footerC {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fContact a {
  font-family: Or;
  color: black;
}

.footerB {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}


.footerA {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.footerA p {
  width: 250px;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
}

.footerA img {
  width: 80px;
}

.overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 99;
}


.navbar {
  z-index: 200;
  text-transform: uppercase;
  /* background-color: #1a1a1a; */
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100px;
  padding: 20px 40px 20px 40px;
  top: 0;
  left:0;
  right:0;
  margin: 0 auto 0 auto;
  text-align: center;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.5s, border-radius 0.5s, width 0.5s, box-shadow 0.5s, background 0.3s;
}

.scrolled {
  /* transform: translateY(30%); */
  z-index: 200;
  background-color: #e6e6e6;
  /* width: 95%; */
  /* border-radius: 50px; */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); */
  transition: transform 0.5s, border-radius 0.5s, width 0.5s, box-shadow 0.5s, background 0.5s;
}

.navbar a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 12px;
  line-height: 25px;
  transition: color 0.5s;
  font-family: Or;
  letter-spacing: 2px;
}

.navbar-right a {
  text-decoration: none;
  color: white;
  background-image: linear-gradient(#dd0000,#dd0000);
  background-size: 0 2px, auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  transition: all .3s ease-out;
}

.navbar-right a:hover {
  background-size: 50% 2px, auto;
  color: rgba(255,255,255,0.5);
}

.navbar-right a.active {
  background-size: 50% 2px, auto;
}


.scrolled a {
  color: black;
}

.scrolled a:hover {
  color: rgba(0,0,0,0.5);
}

.hLink {
  color: black;
}

.navbar .logo {
  width: 60px;
  margin-top: 5px;
  transition: 0.4s;
  cursor: pointer;
}

.navbar-left {
  text-align: center;
  transition: flex 0.3s;
}

.navbar-right a {
  margin: 0 10px;
}

.navbar-menu {
  display: none;
  z-index: 400;
  padding-right: 20px;
}

.navbar-menu i {
  transition: opacity 0.3s;
}

.navbar-menu i:hover {
  cursor: pointer;
  opacity: 90%;
}

.nav {
  z-index: 100;
  text-transform: uppercase;
  overflow: hidden;
  background-color: #e6e6e6;
  position: fixed;
  width: 250px;
  /* top: 100px; */
  height: 100vh;
  padding: 100px 20px 20px 20px;
  left:0;
  margin: 0 auto 0 auto;
  text-align: center;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;

}



.nav a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 12px;
  line-height: 25px;
  transition: color 0.5s;
  font-family: Or;
  letter-spacing: 2px;
}

.nav a {
  text-decoration: none;
  color: black;
  background-image: linear-gradient(#dd0000,#dd0000);
  background-size: 0 2px, auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  transition: all .3s ease-out;
}

.nav a:hover {
  background-size: 50% 2px, auto;
  color: grey;
}

.nav a.active {
  background-size: 50% 2px, auto;
}


.home {
  min-height: 100vh;
  background: url('../images/parts.png') no-repeat center center, rgba(0, 0, 0, 0.4);
  background-blend-mode: soft-light;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 0 50px 0 50px;
}

.frontPage {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 0 50px 0 50px;
  gap: 30px;
}


.frontHeader {
  font-family: Or;
  text-transform: uppercase;
  font-size: 50px;
  max-width: 800px;
  color: white;
}

.frontPara {
  font-family: Or;
  font-size: 17px;
  max-width: 550px;
  text-align: left;
  color: white;
  line-height: 1.5;
}

.frontButtons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.oneButton {
  background: none;
  font-family: Or;
  padding: 10px 20px 10px 20px;
  border: 2px solid #dd0000;
  color: white;
  cursor: pointer;
  font-size: 15px;
}

.about {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 100px 0 100px 0;
}

.features {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 100px 0 100px 0;
  flex-wrap: wrap;
}

.process {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 100px 0 100px 0;
  flex-wrap: wrap;
  background: url('../images/bg.png') no-repeat center center, rgba(230, 230, 230, 1);
  background-blend-mode: soft-light;
  background-size: cover;
  background-position: center center;
}

.processContainer {
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
}


.processContainer img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}


.detailSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.pHead {
  font-family: Or;
  font-size: 40px;
  padding: 0 40px 0 40px;
  text-align: center;
  color: black;
  text-transform: uppercase;
  letter-spacing: 5px;

}

.pHead span {
  color: #dd0000;
  font-family: Ob;
}

.pPara {
  font-family: Or;
  font-size: 17px;
  padding: 0 40px 0 40px;
  max-width: 800px;
  color: black;
  line-height: 30px;
}

.pPara span {
  font-family: Om;
}

.brandLogosDiv {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  padding: 0 40px 0 40px;
  flex-wrap: wrap;
}

.brandLogosDiv img {
  height: 40px;
  opacity: 50%;
}

.products {
  padding: 60px 0 60px 0;
}

.productsContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.productCard img {
  position: absolute;
  object-fit: cover;
  width: 200px;
  height: auto;
  bottom: -50px;
  right: -20px;
  transition: width 0.3s;
}

.productCard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  width: 368px;
  height: 200px;
  transition: font-size 0.3s;
  background: url('../images/texture.jpg') no-repeat center center, rgba(235, 33, 33, 0.7);
  background-blend-mode: darken;
  background-size: cover;
  background-position: center center;
  padding: 30px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.productCard p {
  color: white;
  font-size: 20px;
  text-align: left;
  text-transform: uppercase;
  font-family: Or;
  letter-spacing: 1px;
  transition: font-size 0.3s;
}

.productCard p span {
  font-size: 25px;
  font-family: Os;
  transition: font-size 0.3s;
}

.productCard:hover p {
  font-size: 23px;
}

.productCard:hover span {
  font-size: 29px;
}

.productCard:hover img {
  width: 220px;
}

.pixCard {
    border: 3px solid red;
    border-top: none;
    border-left: none;
    padding: 20px;
    width: 600px;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    overflow: hidden;
    position: relative;
}


.pixCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.dsAbout {
  align-items: flex-start;
}

.introMessage {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: url('../images/custombgx3.svg') no-repeat center center;
  background-size: cover;
  background-position: center center;
}

.imHeadAlt {
  font-family: Or;
  font-size: 40px;
  text-align: left;
  color: black;
  max-width: 600px;
  position: relative;
  font-weight: normal;
}

.imHeadAlt span {
  font-family: Om;
  font-size: 55px;
}

.imHeadAlt i {
  font-style: normal;
  position: absolute;
  top: -20px;
  font-family: Om;
  font-size: 125px;
  transform: rotate(15deg);
}

.imHead {
  font-family: Or;
  font-size: 35px;
  text-align: left;
  line-height: 1.5;
  color: white;
  /* text-transform: uppercase; */
  /* letter-spacing: 5px; */
  max-width: 600px;
}

.imHead span {
  font-family: Om;
  font-size: 45px;
}

.imPara {
  font-family: Or;
  font-size: 17px;
  text-align: left;
  max-width: 800px;
  color: white;
  line-height: 30px;
}

.imButtonX {
  background: none;
  font-family: Or;
  padding: 10px 20px 10px 20px;
  border: 2px solid white;
  color: white;
  cursor: pointer;
  font-size: 20px;
}

.imButton {
  background: none;
  font-family: Or;
  padding: 10px 20px 10px 20px;
  border: 2px solid #dd0000;
  color: black;
  cursor: pointer;
  font-size: 15px;
}

.imDetailSection {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  font-family: Or;
}

.imImageSection {
  width: 550px;
  margin-left: -120px;
  height: 600px;
  overflow: hidden;
}

.imImageSection img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.imageShowcase {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  background: url('../fonts/lines.svg') no-repeat center center, rgba(255, 255, 255,1);
  background-size: cover;
  background-position: center center;
}

.imCol img {
  width: 560px;
  object-fit: contain;
}

.imCol {
  width: 560px;
  display: flex;
  flex-direction: column;
}

.imxDes {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  background-color: white;
}

.idHead {
  font-family: Or;
  font-size: 22px;
  text-align: left;
  color: black;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.5;
}

.idHead span {
  color: #dd0000;
}

.idPara {
  font-family: Or;
  font-size: 15px;
  text-align: left;
  color: black;
  line-height: 30px;
}

.weoneBrand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: rgba(244, 196, 48,0.8);
  background: url('../fonts/lines.svg') no-repeat center center, rgba(244, 196, 48,0.8);
  background-size: cover;
  background-position: center center;
  gap: 50px;
  padding: 40px;
}

.wbHead {
  font-family: Or;
  font-size: 35px;
  text-align: right;
  color: black;
  text-transform: uppercase;
  letter-spacing: 5px;
  max-width: 600px;
}

.wbHead img {
  width: 200px;
  margin-right: -20px;
}

.wbPara {
  font-family: Or;
  font-size: 17px;
  text-align: right;
  max-width: 450px;
  color: black;
  line-height: 30px;
}

.wbButton {
  background: none;
  font-family: Or;
  padding: 10px 20px 10px 20px;
  border: 2px solid #dd0000;
  color: black;
  cursor: pointer;
  font-size: 15px;
}

.wbDetailSection {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
  font-family: Or;
}

.wbImageSection {
  /* width: 550px; */
  height: 550px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* overflow: hidden; */
}

.wbImageSection img {
  /* width: 100%; */
  height: 400px;
  object-fit: contain;
}


@media (max-width: 1300px) {
  .about {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .home {
    align-items: center;
  }

  .frontHeader {
    text-align: center;
  }

  .frontPara {
    text-align: center;
  }

  .about .pPara {
    text-align: center;
    padding: 0 40px 0 40px;
  }

  .brandLogosDiv {
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
  }

  .about .dsAbout {
    align-items: center;
  }
  .navbar-right {
    display: none;
  }
  .navbar-menu {
    display: block;
  }


  .weoneBrand {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 50px 40px 50px 40px;
  }
  .wbDetailSection {
    align-items: center;
  }
  .wbImageSection {
    height: 300px;
  }
  .wbImageSection img {
    height: 300px;
  }
  .wbHead {
    text-align: center;
    font-size: 25px;
  }
  .wbPara {
    text-align: center;
    max-width: 700px;
  }
}


@media (max-width: 992px) {
  .imageShowcase {
    flex-direction: column;
    align-items: center;
  }

  .introMessage {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    padding: 50px 40px 50px 40px;
  }
  .imDetailSection {
    align-items: center;
    padding: 40px 0 40px 0;
  }

  .imImageSection {
    width: 500px;
    height: 500px;
    margin-left: 0;
    border-bottom: 4px solid white;
  }

  .imHeadAlt {
    margin-left: -30px;

  }

  .imHead {
    text-align: center;
    font-size: 40px;
  }

  .imPara {
    text-align: center;
  }
  .imxDes{
    padding: 40px 10px 40px 10px;
    align-items: center;
  }

  .idHead {
    text-align: center;
  }

  .idPara {
    text-align: center;
  }

  .footerTop {
    gap: 50px;
  }
}


@media (max-width: 768px) {
  .about {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footerTop {
    gap: 50px;
  }
  .pixCard {
    width: 500px;
  }
  .frontHeader {
    font-size: 30px;
  }
  .dsAbout {
    align-items: center;
    gap: 40px;
  }
  .pPara {
      padding: 0 30px 0 30px;
  }
  .pHead {
    font-size: 30px;
  }
  .dsAbout .pHead {
    margin-top: 70px;
  }
  .wbImageSection {
    height: 200px;
  }
  .wbImageSection img {
    height: 200px;
  }
  .engine {
    position: absolute;
    transform: translate(-220px, -250px);
  }
  .engine  img {
    width: 150px;
  }

  .footerTop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
  }

  .imCol img {
    width: 400px;
    object-fit: contain;
  }

  .imCol {
    width: 400px;
    display: flex;
    flex-direction: column;
  }

  .processContainer img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
  .process {
    gap: 20px;
  }
  .processContainer {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .about {
    gap: 10px;
  }

  .footerTop {
    gap: 50px;
  }

  .pixCard {
    width: 400px;
  }
  .frontHeader {
    font-size: 30px;
  }

  .introMessage {
    padding: 40px 0 40px 0;
  }

  .imImageSection {
    width: 400px;
    height: 400px;
  }

  .imHeadAlt {
    font-size: 35px;
  }

  .imHeadAlt span {
    font-size: 48px;
  }

  .imHeadAlt i {
    top: -30px;
  }

  .imHead {
    font-size: 30px;
  }

  .imHead span {
    font-size: 35px;
  }


  .wbImageSection {
    height: 170px;
  }
  .wbImageSection img {
    height: 170px;
  }

  .imCol img {
    width: 360px;
    object-fit: contain;
  }

  .imCol {
    width: 360px;
    display: flex;
    flex-direction: column;
  }

  .idHead {
    font-size: 20px;
  }

}
