:root {
  font-synthesis: none;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-rendering: optimizeLegibility;
  font-weight: 100;
  /* ==================================================COLORS */
  --clr-blu3: hsl(219, 89%, 60%);
  --clr-blu3tp: rgba(62, 126, 244, 0.645);
  --clr-blu4: hsl(219, 61%, 37%);
  --clr-blu4tp: rgba(37, 77, 152, 0.645);
  --clr-blu5: hsl(219, 89%, 20%);
  --clr-blu5tp: rgba(6, 37, 96, 0.645);
  --clr-blu5b: rgba(1, 50, 142, 0.6);
  --clr-jlo: #fdc800;
  --clr-B1: #1f4b60;
  --clr-B1tp: #1f4b60aa;
  --clr-B2: #ee9b08;
  --clr-B2tp: #ee9b08aa;
  --clr-B3: #fbdf9d;
  --clr-B3tp: #fbdf9daa;
  --clr-B4: #b95404;
  --clr-B4tp: #b95404aa;
  --clr-B5: #092a3f;
  --clr-B5tp: #092a3faa;
  --wid-mob1: 479px;
  --wid-tab1: 768px;
  /* =================================================== Font Sizes */
  --fs-small: 1rem;
  --fs-medium: 1.5rem;
  --fs-large: 2rem;
  --fs-medium-large: 2.5rem;
  --fs-xlarge: 3rem;
  --fs-xxlarge: 6rem;
  --fs-xxxlarge: 8rem;
  /* ===================================================Font Weight */
  --fw-3: 400;
  --fw-5: 500;
  --fw-7: 700;
  --fw-9: 900;
  /* ===================================================font Family  */
  --ff-main: "Montserrat", Sans-sarif;
  /* ===================================================LINE HEIGHT */
  --lh-default: 125%;
  /* ===================================================RESPONSOVE FONT SIZE  */
  --fs-responsive: clamp(2rem, 5vw, 4rem);
}

/* 
========================================================Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================================================Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
  font-family: "Poppins", sans-serif;
  /* font-family: var(--ff-main); */
}

.overflow {
  overflow: hidden;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  list-style: none;
  display: inline-block;
  padding: 1rem;
}

a {
  text-decoration: none;
}

.no-scrollbar {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scrollbar-color: transparent;
}

.scrollbar::-webkit-scrollbar {
  display: none;
}

/*========================================================== Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* body, html {
    height: 100%;
  } */
/*========================================================== Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.1;
}

/*============================= A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ................................................ */
/* ========================================================MODE DAY NIGHT */
.modeChange {
  background-color: black;
}

/*========================================================= FADE ANIMATION */
.fadeIn_left {
  transform: translateX(100px);
  transition: 1s;
  opacity: 0;
}

.fadeIn_left.show {
  transform: translateX(0px);
  /* transition: ease; */
  opacity: 1;
}

.fadeIn_right {
  transform: translateX(-100px);
  transition: 1s;
  opacity: 0;
}

.fadeIn_right.show {
  transform: translateX(0px);
  /* transition: ease; */
  opacity: 1;
}

/* ==================================================FONT WEIGHT*/
.fw-regular {
  font-weight: var(--fw-3);
}

.fw-semiBold {
  font-weight: var(fw-5);
}

.fw-bold {
  font-weight: var(--fw-7);
}

.fw-xbold {
  font-weight: var(--fw-9);
}

/* ==================================================FONT SIZE */
.fs-heading1 {
  font-size: var(--fs-xlarge);
}

.fs-heading1a {
  font-size: var(--fs-medium-large);
}

.fs-heading2 {
  font-size: var(--fs-large);
}

.fs-heading3 {
  font-size: var(--fs-medium);
}

.margin-normal {
  margin: 1em;
}

.margin-top-bottom-normal {
  margin: 1em 0em;
}

.margin-normal2 {
  margin: 1.5em;
}

.margin-top-bottom-normal2 {
  margin: 1.5em 0em;
}

.margin-normal3 {
  margin: 2em;
}

.margin-top-bottom-normal3 {
  margin: 2em 0em;
}

.padding-normal {
  padding: 1em;
}

.padding-top-bottom {
  padding: 1em 0em;
}

.padding-normal2 {
  padding: 1.5em;
}

.padding-top-bottom2 {
  padding: 1.5em 0em;
}

.padding-normal3 {
  padding: 2em;
}

.padding-top-bottom3 {
  padding: 2em 0em;
}

.fc-white {
  color: white;
}

.fc-black {
  color: black;
}

.clr-blu5 {
  color: var(--clr-blu5);
}

/* ===================================================FONT FAMILY*/
.ff-body {
  font-family: var(--ff-main);
}

.ff-primary {
  font-family: var(--ff-main);
}

.ff-spsecial {
  font-family: var(--ff-main);
}

.blur {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

/* =====================================================GRID COLUMNS */
.grid {
  display: grid;
  /* gap: 1rem; */
}

.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.col-5 {
  grid-template-columns: repeat(5, 1fr);
}

.col-6 {
  grid-template-columns: repeat(6, 1fr);
}

.col-8 {
  grid-template-columns: repeat(8, 1fr);
}

.row-2 {
  /* grid-auto-rows: repeat(2,1fr); */
  grid-template-rows: repeat(2, 1fr);
}

.row-3 {
  grid-template-rows: repeat(3, 1fr);
}

.flex {
  display: flex;
  /* gap: 1rem; */
}

.fd-column {
  flex-direction: column;
}

/* 
  @media only screen and (min-width:50em){
    .col-2 , .col-3, .col-4, .col-5, .col-6{

      grid-auto-flow: column;
      grid-auto-columns: 1fr;
    }
  } */
/* =======================================================ALIGN ITEMS CENTER */
.xy-center {
  justify-content: center;
  align-items: center;
}

.y-center {
  align-items: center;
}

.x-center {
  justify-content: center;
}

/* ========================================================TEXT CENTER */
.txt-center {
  text-align: center;
}

.cta {
  padding: 0.4rem 0.9rem;
  background-color: var(--clr-blu5);
  border-radius: 30px;
  border: none;
  cursor: pointer;
  color: #111;
  cursor: pointer;
}

.cta a {
  color: white;
}

.tCase {
  text-transform: uppercase;
}

/* ===================================================================================DEFAULT CSS END */
/* // HEADER SECTION */
#headerSection {
  width: 100%;
  height: 8rem;
  padding: 0.4rem;
  background-color: #fff;
  position: fixed;
  z-index: 100000001;
}
#headerSection .upperHeader {
  width: 70%;
  margin-left:auto;
  height: 2.4rem;
  padding: 0.6rem 2rem;
  border-bottom: 1px solid;
  color: black;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  letter-spacing: 1.6px;
  top: 0;
}
#headerSection .upperHeader h3 {
  font-size: 16px;
  font-weight: 500;
}
#headerSection .mainHeader {
  width: 100%;
  height: auto;
}
#headerSection .mainHeader .header {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}
#headerSection .mainHeader .header .logo img {
  position: absolute;
  width: 310px;
  top: -30px;
  height: auto;
}
#headerSection .mainHeader .header .menu .nav {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#headerSection .mainHeader .header .menu .nav li {
  list-style: none;
}
#headerSection .mainHeader .header .menu .nav li a {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-decoration: none;
  color: black;
}
#headerSection .mainHeader .header .menu .nav li a:hover {
  color: #fe4f4f;
}
#headerSection .mainHeader .header .menu .nav li button {
  background-color: #ff4f4f;
  border: none;
  padding: 0.6rem 1.2rem;
  color: white;
  font-weight: 500;
}
#headerSection .hamMenu {
  display: none;
}
#headerSection .dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  height: auto;
  padding: 0.5rem;
  background-color: #fff;
}
#headerSection .dropdown-content a {
  padding: 18px 12px;
  text-decoration: none;
  display: block;
  text-align: left;
  animation: rotateMenu 500ms ease-in-out forwards;
  transform-origin: top center;
}
#headerSection .dropdown-content a:hover {
  color: #fe4f4f;
}

@keyframes rotateMenu {
  0% {
    transform: rotateX(-120deg);
  }
  70% {
    transform: rotateX(30deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
#headerSection .dropdown:hover .dropdown-content {
  display: block;
  transform: translateX(0vw);
  transition: transform 0.5s ease-in;
}

@media only screen and (max-width: 1105px) {
  #headerSection {
    height: 8vh;
  }
  #headerSection .upperHeader {
    display: none;
  }
  #headerSection .mainHeader {
    width: 100%;
    max-height: 9vh;
    height: auto;
  }
  #headerSection .mainHeader .header {
    width: 100%;
  }
  #headerSection .mainHeader .header .logo {
    position: relative;
    z-index: 1000000001;
  }
  #headerSection .mainHeader .header .logo img {
    width: 180px;
    height: auto;
    top: 0px;
  }
  #headerSection .mainHeader .header .menu {
    position: absolute;
  }
  #headerSection .mainHeader .header .menu .nav {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    gap: 2rem;
    background-color: white;
    transform: translateX(-50vw);
    transition: transform 0.5s ease-in-out;
  }
  #headerSection .mainHeader .header .menu .nav li {
    list-style: none;
  }
  #headerSection .mainHeader .header .menu .nav li a {
    text-decoration: none;
    color: black;
  }
  #headerSection .mainHeader .header .menu .navShow {
    transform: translateX(0vw);
    transition: transform 0.5s ease-in-out;
  }
  #headerSection .hamMenu {
    display: block;
    position: absolute;
    right: 15px;
    top: 20px;
    cursor: pointer;
    z-index: 10001;
    background-color: transparent;
  }
  #headerSection .hamMenu .lines {
    width: 40px;
    height: 5px;
    background-color: black;
    display: block;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    border-radius: 5px;
  }
  #headerSection .dropbtn {
    height: auto;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: all 0.6s ease-in;
    position: relative;
  }
  #headerSection .dropdown {
    position: relative;
  }
  #headerSection .dropdown .dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    height: auto;
    padding: 0.5rem;
    background-color: white;
  }
  #headerSection .dropdown .dropdown-content a {
    padding: 18px 12px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: 600;
    animation: rotateMenu 500ms ease-in-out forwards;
    transform-origin: bottom center;
  }
  #headerSection .dropdown .dropdown-content a:hover {
    color: white;
  }
  @keyframes rotateMenu {
    0% {
      transform: rotateX(-120deg);
    }
    70% {
      transform: rotateX(30deg);
    }
    100% {
      transform: rotateX(0deg);
    }
  }
  #headerSection .dropdown:hover .dropdown-content {
    display: block;
    transition: transform 0.5s ease-in-out;
  }
}
/* // Hero Section */
.heroSection {
  width: 100%;
  height: 80vh;
  padding-top: 16vh;
}
.heroSection .hero {
  width: 100%;
  height: 65vh;
  background-image: url(./images/banner_2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.heroSection .hero .heroTxt {
  display: none;
}
.heroSection .hero .heroTxt h1 {
  color: red;
  font-size: 5rem;
  font-family: sans-serif;
}
.heroSection .hero .heroTxt h2 {
  color: whitesmoke;
}
.heroSection .hero .heroTxt button {
  background-color: red;
  padding: 1.2rem 2.2rem;
  font-size: 1.6rem;
  color: white;
  border: none;
}

@media only screen and (max-width: 1105px) {
  .heroSection {
    width: 100vw;
    padding-top: 10vh;
    height: 50vh;
  }
  .heroSection .hero {
    width: 100%;
    height: 50vh;
    background-size: contain;
    background-repeat: repeat;
    background-repeat: no-repeat;
  }
}
@media only screen and (max-width: 900px) {
  .heroSection {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    padding-top: 10vh;
  }
  .heroSection .hero {
    width: 100%;
    height: 50vh;
    background-size: contain;
    background-repeat: repeat;
    background-repeat: no-repeat;
  }
  .heroSection .hero .heroTxt h1 {
    color: red;
    font-size: 2rem;
  }
  .heroSection .hero .heroTxt h2 {
    color: whitesmoke;
  }
  .heroSection .hero .heroTxt button {
    background-color: red;
    padding: 1.2rem 2.2rem;
    font-size: 1.6rem;
    color: white;
    border: none;
  }
}
@media only screen and (max-width: 768px) {
  .heroSection {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 10vh;
  }
  .heroSection .hero {
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-repeat: repeat;
    background-repeat: no-repeat;
  }
  .heroSection .hero .heroTxt h1 {
    color: red;
    font-size: 2rem;
  }
  .heroSection .hero .heroTxt h2 {
    color: whitesmoke;
  }
  .heroSection .hero .heroTxt button {
    background-color: red;
    padding: 1.2rem 2.2rem;
    font-size: 1.6rem;
    color: white;
    border: none;
  }
}
@media only screen and (max-width: 540px) {
  .heroSection {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 10vh;
  }
  .heroSection .hero {
    width: 100%;
    height: 20vh;
    min-height: 20vh;
    background-size: cover;
    background-repeat: repeat;
    background-repeat: no-repeat;
  }
}
/************************************************************** eCatalogueSection */
.eCatalogueSection {
  width: 100vw;
  height: auto;
  padding-bottom: 4rem;
}
.eCatalogueSection .eCatalogue {
  text-align: center;
  padding: 1rem;
}
.eCatalogueSection .eCatalogue button {
  padding: 0.8rem 2.2rem;
  background-color: #fe4f4f;
  border: none;
  color: white;
  margin-left: 1rem;
  font-weight: 600;
  cursor: pointer;
}

/* ***************************** VIDEO SECTION */
.video-container {
  width: 100%;
  position: relative;
  background-color: black;
}

#myVideo {
  width: 100%;
  aspect-ratio: 16/9;
}

#muteButton {
  position: absolute;
  bottom: 40px;
  right: 8rem;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  cursor: pointer;
}

@media only screen and (max-width: 800px) {
  .video-container {
    position: relative;
    background-color: black;
    width: 100vw;
    height: auto;
  }
  #myVideo {
    width: 100%;
    height: auto;
  }
  #muteButton {
    position: absolute;
    bottom: 5px;
    right: 0%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
  }
}
/* // ProductsHome Display Section */
.hCarousel {
  width: 100%;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 3rem 0 2rem 0;
  margin: 0;
}

.carousel-container {
  position: relative;
  width: 100vw;
  overflow: hidden;
}

.carousel {
  width: 90%;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* Firefox */
}

/*   Chrome/Safari */
.carousel::-webkit-scrollbar {
  display: none;
}

.product {
  position: relative;
  min-width: 300px;
  width: 300px;
  height: auto;
  margin-right: 0px;
}

.product img {
  width: 100%;
  height: 200px;
  padding: 1rem;
}

.title {
  display: block;
  text-align: center;
}

span {
  font-size: 1.4rem;
  font-weight: 600;
}

.buttons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.473);
}

.product:hover .buttons {
  opacity: 1;
}

button {
  padding: 0.7rem 1.8rem;
  cursor: pointer;
  background-color: rgba(254, 79, 79, 0.7921568627);
  color: white;
  border-radius: 5px;
  border: none;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.4549019608);
  border: 0.5px solid black;
  font-size: 40px;
  cursor: pointer;
}

.left-arrow {
  left: 0;
  color: rgba(254, 79, 79, 0.7921568627);
  z-index: 10001;
  border: none;
}

.right-arrow {
  right: 0;
  color: rgba(254, 79, 79, 0.7921568627);
  z-index: 10001;
  border: none;
}

/* // BUILDER MAKER SECTION */
.aboutSection {
  width: 100%;
  height: auto;
  margin: 4rem 0 1rem 0;
}
.aboutSection h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: var(--fw-7);
  margin: 1rem;
}
.aboutSection .about {
  width: 100%;
  margin: 4rem 0 1rem 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto, 1fr;
  gap: 4rem;
  align-items: center;
  /* .aboutImg {
         width: 100%;
         margin: 0 auto;
         display: flex;
         flex-wrap: no-wrap;
         align-items: center;
         justify-content: center;
         gap: 1rem;


         img {
                width: 10rem;
                height: auto;
         }
  } */
}
.aboutSection .about .aboutTxt {
  width: 80%;
  margin: 2rem auto;
}
.aboutSection .about .aboutTxt h3 {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

/* Sliding images infinite right to left screen end START */
.slider {
  width: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: 90rem;
  animation: scroll 25s linear infinite;
  animation-delay: 0ms;
  white-space: nowrap;
}

.slide {
  width: 300px;
  height: auto;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 768px) {
  .aboutSection {
    margin: 2rem 0;
  }
  .aboutSection .about {
    width: 99%;
    grid-template-columns: 1fr;
    grid-template-rows: auto, 1fr;
  }
  .aboutSection .about .aboutImg {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .aboutSection .about .aboutImg img {
    width: 7rem;
    height: auto;
  }
  .aboutSection .about .aboutTxt {
    width: 90%;
  }
}
/* // Services Section */
.servicesSection {
  width: 100%;
  height: auto;
  margin: 4rem 0;
}
.servicesSection .services {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.servicesSection .services .servicesTxt h3 {
  font-size: 2.2rem;
  color: #fe4f4f;
  font-weight: var(--fw-5);
}
.servicesSection .services .servicesTxt p {
  margin-top: 1rem;
  letter-spacing: 2.2px;
  line-height: 1.3rem;
}
.servicesSection .services .servicesImg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  text-align: center;
}
.servicesSection .services .servicesImg .service {
  padding: 1rem;
}
.servicesSection .services .servicesImg .service img {
  width: 120px;
  height: auto;
}
.servicesSection .services .servicesImg .service h2 {
  font-size: 1.2rem;
  font-weight: var(--fw-7);
}
.servicesSection .services .servicesImg .service1 {
  border-bottom: 0.5px solid #fe4f4f;
  border-right: 0.5px solid #fe4f4f;
}
.servicesSection .services .servicesImg .service2 {
  border-bottom: 0.5px solid #fe4f4f;
}
.servicesSection .services .servicesImg .service3 {
  border-right: 0.5px solid #fe4f4f;
}

@media only screen and (max-width: 768px) {
  .servicesSection {
    overflow: hidden;
    margin: 0 0;
  }
  .servicesSection .services {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .servicesSection .services .servicesTxt {
    padding: 1rem;
    text-align: center;
  }
  .servicesSection .services .servicesImg .service {
    padding: 1rem;
  }
  .servicesSection .services .servicesImg .service img {
    width: 100%;
    max-width: 120px;
  }
}
/* // Certification Section */
.certificationsSection {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 6rem 0;
  font-size: 1.8rem;
  font-weight: 500;
}
.certificationsSection h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #fe4f4f;
}
.certificationsSection .certifications {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.certificationsSection .certifications img {
  width: 100%;
  max-width: 200px;
  max-height: 200px;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .certificationsSection {
    overflow: hidden;
  }
  .certificationsSection p {
    font-size: 1.6rem;
  }
  .certificationsSection h3 {
    font-size: 1.8rem;
  }
  .certificationsSection .certifications img {
    width: 98%;
    height: auto;
  }
}
/* // mid-banner Section MORE REASONS TO CHOOSE US */
.mid-bannerSection {
  width: 100%;
  height: auto;
}
.mid-bannerSection h3 {
  text-align: center;
  color: #fe4f4f;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2rem;
  font-weight: 700;
}
.mid-bannerSection .midBanner {
  width: 90%;
  height: 120vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0.4rem;
}
.mid-bannerSection .midBanner h3 {
  font-size: 1.6rem;
}
.mid-bannerSection .midBanner .comBan {
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mid-bannerSection .midBanner .midBan1 {
  background-image: url(./images/inhouse-testing-lab.webp);
  grid-column: 1/2;
  grid-row: 1/2;
}
.mid-bannerSection .midBanner .midBan2 {
  background-image: url(./images/International-standard-packaging.webp);
  grid-column: 1/2;
  grid-row: 2/3;
}
.mid-bannerSection .midBanner .midBan3 {
  background-image: url(./images/quality-control.webp);
  grid-column: 2/3;
  grid-row: 1/2;
}
.mid-bannerSection .midBanner .midBan4 {
  background-image: url(./images/On-time-delivery.webp);
  grid-column: 2/3;
  grid-row: 2/3;
}
.mid-bannerSection .midBanner .midBan5 {
  background-image: url(./images/img-1.webp);
  grid-column: 1/2;
  grid-row: 3/4;
}
.mid-bannerSection .midBanner .midBan6 {
  background-image: url(./images/img-2.webp);
  grid-column: 2/3;
  grid-row: 3/4;
}
.mid-bannerSection .midBanner .midBannerTxt {
  padding: 1rem;
  width: -moz-max-content;
  width: max-content;
  font-size: 2.8rem;
  background-color: rgba(255, 255, 255, 0.119);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  text-align: end;
}
.mid-bannerSection .midBanner .midBannerTxt h3 {
  color: white;
  filter: drop-shadow(1px 1px 2px rgb(0, 0, 0));
}
.mid-bannerSection .midBanner .midBannerTxt:hover {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.541);
  transition: all 200ms ease-in;
}
.mid-bannerSection .midBanner button {
  padding: 1rem 1.8rem;
  background-color: #ff4f4f;
  border: none;
}

@media only screen and (max-width: 768px) {
  .mid-bannerSection .midBanner {
    width: 99%;
    height: auto;
    margin: 0 auto;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    gap: 0.4rem;
  }
  .mid-bannerSection .midBanner h3 {
    font-size: 1.4rem;
  }
  .mid-bannerSection .midBanner .comBan {
    width: 100%;
    height: 30vh;
  }
  .mid-bannerSection .midBanner .midBan1 {
    background-image: url(./images/inhouse-testing-lab.jpg);
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .mid-bannerSection .midBanner .midBan2 {
    background-image: url(./images/International-standard-packaging.jpg);
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .mid-bannerSection .midBanner .midBan3 {
    background-image: url(./images/quality-control.jpg);
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .mid-bannerSection .midBanner .midBan4 {
    background-image: url(./images/On-time-delivery.jpg);
    grid-column: 1/2;
    grid-row: 4/5;
  }
  .mid-bannerSection .midBanner .midBan5 {
    background-image: url(./images/img-1.webp);
    grid-column: 1/2;
    grid-row: 5/6;
  }
  .mid-bannerSection .midBanner .midBan6 {
    background-image: url(./images/img-2.webp);
    grid-column: 1/2;
    grid-row: 6/7;
  }
  .mid-bannerSection .midBanner .midBannerTxt {
    padding: 1rem;
    width: -moz-max-content;
    width: max-content;
    font-size: 2rem;
    background-color: rgba(255, 255, 255, 0.119);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    text-align: end;
  }
  .mid-bannerSection .midBanner .midBannerTxt h3 {
    color: white;
    filter: drop-shadow(1px 1px 2px rgb(0, 0, 0));
  }
  .mid-bannerSection .midBanner .midBannerTxt:hover {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.541);
    transition: all 200ms ease-in;
  }
  .mid-bannerSection .midBanner button {
    padding: 1rem 1.8rem;
    background-color: #ff4f4f;
    border: none;
  }
}
/* CLIENTS SECTION CLIENTS COMPANY IMAGES */
.clientsSection {
  width: 100%;
  height: auto;
  padding: 4rem 0;
}
.clientsSection h2 {
  text-align: center;
  color: #fe4f4f;
  font-size: 1.6rem;
  font-weight: 600;
}
.clientsSection .clients {
  width: 100%;
  margin: 4rem 0 1rem 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto, 1fr;
  gap: 4rem;
  align-items: center;
}
.clientsSection .clients .aboutImg {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: no-wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.clientsSection .clients .aboutImg img {
  width: 13rem;
  height: auto;
}

/* // ShoeBanner Section */
.shoeBannerSection {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin: 4rem 0;
}
.shoeBannerSection .shoeBanner {
  width: 90%;
  margin: 0 auto;
}
.shoeBannerSection .shoeBanner h2 {
  font-size: 1.8rem;
  color: #fe4f4f;
  font-weight: 700;
  text-align: center;
}
.shoeBannerSection .shoeBanner .shoeBannerImg {
  text-align: center;
  margin: 4rem 0;
}
.shoeBannerSection .shoeBanner .shoeBannerImg img {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.shoeBannerSection .shoeBanner .shoeBannerTxt p {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6rem;
}

@media only screen and (max-width: 768px) {
  .shoeBannerSection {
    width: 100vw;
    overflow: hidden;
  }
  .shoeBannerSection .shoeBanner {
    width: 96%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .shoeBannerSection .shoeBanner h2 {
    text-align: center;
    font-size: 1.6rem;
  }
  .shoeBannerSection .shoeBanner .shoeBannerImg {
    text-align: center;
  }
  .shoeBannerSection .shoeBanner .shoeBannerImg img {
    width: 500px;
    height: auto;
    margin: 1rem auto;
  }
}
/* // specs Section */
.specsSection {
  width: 100%;
  height: 500px;
}
.specsSection .specs {
  width: 90%;
  height: 380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.specsSection .specs .spec1 {
  height: 100%;
  background-color: #fe4f4f;
  color: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.specsSection .specs .spec1 img {
  width: 80px;
}
.specsSection .specs .spec1 h3 {
  font-size: 1.4rem;
  font-weight: var(--fw-7);
  color: black;
  text-transform: uppercase;
}
.specsSection .specs .spec1 p {
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .specsSection {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .specsSection .specs {
    width: 98%;
    height: auto;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .specsSection .specs .spec1 {
    padding: 3rem;
  }
  .specsSection .specs .spec1 h3 {
    font-size: 1.4rem;
    font-weight: var(--fw-7);
    color: black;
    text-transform: uppercase;
  }
  .specsSection .specs .spec1 p {
    font-size: 1.4rem;
  }
}
/* // ShoeSpecSection/ */
.shoeSpecsSection {
  width: 100vw;
  height: auto;
}
.shoeSpecsSection .shoeSpecs {
  width: 100%;
  height: 860px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  padding: 1rem;
  gap: 1rem;
}
.shoeSpecsSection .shoeSpecs .shoeSpecCom {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-origin: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}
.shoeSpecsSection .shoeSpecs .shoeSpecCom h3 {
  background-color: rgba(255, 79, 79, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  padding: 1rem;
}
.shoeSpecsSection .shoeSpecs .shoeSpec1 {
  background-image: url(./images/img-1.png);
}
.shoeSpecsSection .shoeSpecs .shoeSpec2 {
  background-image: url(./images/img-2.png);
}
.shoeSpecsSection .shoeSpecs .shoeSpec3 {
  background-image: url(./images/img-3.png);
}
.shoeSpecsSection .shoeSpecs .shoeSpec4 {
  background-image: url(./images/img-4.png);
}

@media only screen and (max-width: 768px) {
  .shoeSpecsSection {
    width: 100vw;
    height: auto;
    overflow: hidden;
  }
  .shoeSpecsSection .shoeSpecs {
    width: 100%;
    height: 920px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
  .shoeSpecsSection .shoeSpecs .shoeSpecCom {
    font-size: 1.6rem;
  }
  .shoeSpecsSection .shoeSpecs .shoeSpecCom h3 {
    background-color: rgba(255, 79, 79, 0.3176470588);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
}
/* // Testimonials Section STILLL LOOKING FOR SOMETHING SECTION */
.testimonialsSection {
  width: 100%;
  height: auto;
  margin: 4rem 0;
  overflow: hidden;
}
.testimonialsSection .testimonials {
  width: 80%;
  height: auto;
  margin: 0 auto;
}
.testimonialsSection .testimonials .testimonial {
  text-align: center;
}
.testimonialsSection .testimonials .testimonial h4 {
  font-size: 2.8rem;
  font-weight: var(--fw-7);
}
.testimonialsSection .testimonials .testimonial button {
  background-color: #fe4f4f;
  color: white;
  font-size: 1.4rem;
  padding: 0.5rem 1.6rem;
  border: none;
  margin: 1.4rem;
  cursor: pointer;
}

@media only screen and (max-width: 800px) {
  .testimonialsSection {
    width: 100%;
    height: auto;
    margin: 4rem 0;
    overflow: hidden;
  }
  .testimonialsSection .testimonials {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
  .testimonialsSection .testimonials .testimonial {
    text-align: center;
  }
  .testimonialsSection .testimonials .testimonial h4 {
    font-size: 2.4rem;
    font-weight: var(--fw-7);
    line-height: 3rem;
  }
  .testimonialsSection .testimonials .testimonial span {
    color: #fe4f4f;
  }
  .testimonialsSection .testimonials .testimonial button {
    background-color: #fe4f4f;
    color: white;
    font-size: 1.4rem;
    padding: 0.5rem 1.6rem;
    border: none;
    margin: 1.4rem;
    cursor: pointer;
  }
}
.chatWhatsappSection {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 90%;
  top: 80%;
  z-index: 1000001;
}
.chatWhatsappSection .whatsapp-chat-button {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  color: white;
  background-color: #fe4f4f;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
}
.chatWhatsappSection .whatsapp-chat-button img {
  width: 50px;
}
.chatWhatsappSection .whatsapp-chat-button:hover {
  background-color: #128C7E;
}

@media only screen and (max-width: 768px) {
  .chatWhatsappSection {
    width: 100vw;
    height: 100%;
    position: fixed;
    left: 70%;
    top: 90%;
  }
  .chatWhatsappSection .whatsapp-chat-button {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    color: white;
    background-color: #fe4f4f;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
  }
  .chatWhatsappSection .whatsapp-chat-button img {
    width: 35px;
  }
  .chatWhatsappSection .whatsapp-chat-button:hover {
    background-color: #128C7E;
  }
}
/* // Footer Section */
.footerSection {
  width: 100%;
  height: auto;
  background-color: #ff4f4f;
  color: white;
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: darken;
}
.footerSection .footer {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.4fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.footerSection .footer .footerColComm {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.footerSection .footer .footerCol1 img {
  width: 300px;
}
.footerSection .footer .footerCol2 img {
  width: 50px;
}
.footerSection .footer .footerCol2 p {
  font-size: 1.2rem;
  font-weight: var(--fw-7);
}
.footerSection .footer .footerCol3 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footerSection .footer .footerCol3 a {
  color: white;
}
.footerSection .footer .footerCol4 {
  width: 100%;
  align-items: center;
}
.footerSection .footer .footerCol4 .submit {
  background-color: white;
  color: #fe4f4f;
  padding: 0.5rem 1.4rem;
  border: none;
  border-radius: 5px;
}
.footerSection .footer .footerCol4 form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem 0;
}
.footerSection .footer .footerCol4 input {
  width: 100%;
  margin: 0.4rem 0;
  height: 1.6rem;
}
.footerSection .footer .footerCol4 select {
  margin: 0.4rem 0;
  height: 1.6rem;
}
.footerSection .footer .footerCol4 textarea {
  margin: 0.4rem 0;
  height: 2rem;
}
.footerSection .footer .footerCol4 button {
  margin: 1rem 0;
  padding: 0.3rem 1.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .footerSection {
    width: 100%;
    height: auto;
    background-color: #ff4f4f;
    color: white;
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    overflow: hidden;
  }
  .footerSection .footer {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footerSection .footer .footerCol2 img {
    padding: 5px;
  }
}
.lowerFooter {
  width: 100%;
  height: 6vh;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.lowerFooter p {
  color: white;
}

/**************************************************** // ALL PAGES CSS */
.productsSection {
  width: 100%;
  height: auto;
  padding-top: 25vh;
}
.productsSection .productsAllCategory {
  width: 98%;
  margin: 0 auto;
}
.productsSection .productsAllCategory .productsAll {
  width: 100%;
  /* Style for the image and product title */
}
.productsSection .productsAllCategory .productsAll .product-category {
  display: none;
  width: 98%;
  margin: 5rem auto;
  flex: 0 0 20px;
  flex-wrap: wrap;
}
.productsSection .productsAllCategory .productsAll .product {
  margin: 1rem 0rem;
  text-align: center;
  padding: 1rem;
}
.productsSection .productsAllCategory .productsAll .active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.productsSection .productsAllCategory .productsAll .product img {
  width: 280px;
  height: auto;
}
.productsSection .productsAllCategory .productsAll .product:hover {
  transform: scale(1.3);
  transition: transform 0.2s ease-in-out;
}
.productsSection .productsAllCategory .productsAll .product h3 {
  font-size: 1.4rem;
  font-weight: 700;
}
.productsSection .productsAllCategory .productsAll a {
  color: black;
}
.productsSection .productsAllCategory .productsAll a:hover {
  color: blue;
}
.productsSection .productsAllCategory .productsAll button {
  background-color: white;
  color: black;
  font-weight: 700;
  border: 2px solid #fe4f4f;
  padding: 0.8rem 2.2rem;
  border-radius: 5px;
}
.productsSection .productsAllCategory .productsAll button:active,
.productsSection .productsAllCategory .productsAll button:focus {
  background-color: #fe4f4f;
  padding: auto;
  transform: scale(1.6);
  color: white;
}
.productsSection .productsAllCategory .productsAll .cateButtons {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4rem;
}

@media only screen and (max-width: 768px) {
  .productsSection {
    padding-top: 12vh;
  }
  .productsSection .productsAllCategory .productsAll .product-category {
    margin: 3rem auto;
  }
  .productsSection .productsAllCategory .productsAll .product img {
    width: auto;
    height: 15rem;
  }
  .productsSection .productsAllCategory .productsAll .product:hover {
    transform: scale(1.3);
    transition: transform 0.2s ease-in-out;
  }
  .productsSection .productsAllCategory .productsAll .product h3 {
    font-size: 1.4rem;
    font-weight: 700;
  }
  .productsSection .productsAllCategory .productsAll a {
    color: black;
  }
  .productsSection .productsAllCategory .productsAll a:hover {
    color: blue;
  }
  .productsSection .productsAllCategory .productsAll button {
    background-color: white;
    color: black;
    font-weight: 700;
    border: 2px solid #fe4f4f;
    padding: 0.8rem 2.2rem;
    border-radius: 5px;
  }
  .productsSection .productsAllCategory .productsAll button:active,
  .productsSection .productsAllCategory .productsAll button:focus {
    background-color: #fe4f4f;
    padding: auto;
    transform: scale(1.6);
    color: white;
  }
  .productsSection .productsAllCategory .productsAll .cateButtons {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }
}
/* // Single Product Page */
/* Styles for the thumbnail container and showcase */
.showcaseSection {
  width: 98%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  justify-content: center;
  align-items: center;
  padding-top: 25vh;
}
.showcaseSection .showcase-container {
  text-align: center;
  width: 100%;
  /* Prevent overflow */
}
.showcaseSection #main-image {
  display: inline-block;
  margin: 0 auto;
  overflow: hidden;
  /* Ensure overflow is hidden here as well */
  transition: transform 0.3s ease;
}
.showcaseSection #main-image img {
  width: 500px;
  height: 333px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.showcaseSection #main-image img:hover {
  transform: scale(1.2);
  transform-origin: center center;
}
.showcaseSection .thumbnail-container {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
  z-index: 1001;
}
.showcaseSection .thumbnail img {
  width: 90px;
  height: 60px;
  border: 2px solid #666;
  cursor: pointer;
}
.showcaseSection .productSpecs {
  display: grid;
  height: 100%;
  margin-top: 4rem;
}
.showcaseSection .productSpecs .socialIcons img {
  width: 45px;
  height: auto;
}
.showcaseSection .productSpecs .socialIcons h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(88, 88, 88);
  margin-right: 5px;
}
.showcaseSection .productSpecs h2 {
  font-size: 1.8em;
  border-bottom: 1px solid rgb(78, 78, 78);
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 700;
  color: rgb(88, 88, 88);
  text-transform: uppercase;
}
.showcaseSection .productSpecs .sizes h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(88, 88, 88);
}
.showcaseSection .productSpecs .sizes ul {
  margin: 1rem 0;
}
.showcaseSection .productSpecs .sizes ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 0.5px solid rgb(67, 67, 67);
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.showcaseSection .productSpecs button {
  display: block;
  background-color: #fe4f4f;
  color: white;
  padding: 0.6rem 2rem;
  border: none;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .showcaseSection {
    width: 100vw;
    grid-template-columns: 1fr;
  }
  .showcaseSection .showcase-container {
    width: 100vw;
    text-align: center;
    width: 100%;
    /* Prevent overflow */
  }
  .showcaseSection #main-image {
    width: 100vw;
    display: inline-block;
    margin: 0 auto;
    overflow: hidden;
    /* Ensure overflow is hidden here as well */
    transition: transform 0.3s ease;
  }
  .showcaseSection #main-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
  }
  .showcaseSection .thumbnail-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-content: center;
    gap: 1px;
    margin-top: 20px;
    z-index: 1001;
  }
  .showcaseSection .thumbnail img {
    width: 100%;
    height: 3rem;
    border: 2px solid #666;
    cursor: pointer;
  }
  .showcaseSection .productSpecs {
    display: grid;
    height: 100%;
    margin-top: 4rem;
    width: 100%;
  }
  .showcaseSection .productSpecs h2 {
    font-size: 1.8em;
    border-bottom: 1px solid rgb(78, 78, 78);
    height: -moz-fit-content;
    height: fit-content;
    font-weight: 700;
    color: rgb(88, 88, 88);
    text-align: center;
    position: absolute;
    top: 7rem;
    width: 100%;
  }
  .showcaseSection .productSpecs .sizes {
    text-align: center;
  }
  .showcaseSection .productSpecs .sizes h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgb(88, 88, 88);
  }
  .showcaseSection .productSpecs .sizes ul {
    margin: 1rem 0;
  }
  .showcaseSection .productSpecs .sizes ul li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 0.5px solid rgb(67, 67, 67);
    font-size: 1.2rem;
  }
  .showcaseSection .productSpecs .socialIcons {
    text-align: center;
  }
  .showcaseSection .productSpecs .socialIcons h3 {
    margin-bottom: 1rem;
  }
  .showcaseSection .productSpecs .socialIcons img {
    margin-right: 5px;
  }
  .showcaseSection .productSpecs button {
    display: block;
    background-color: #fe4f4f;
    color: white;
    padding: 0.6rem 2rem;
    border: none;
    width: -moz-max-content;
    width: max-content;
    cursor: pointer;
    margin: 10px auto;
  }
}
/* // Hints Section */
.hintsSection {
  width: 100%;
  height: auto;
  margin: 4rem 0;
}
.hintsSection .hintSec {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1rem;
}
.hintsSection .hintSec .specs li {
  font-size: 1.2rem;
  color: #fe4f4f;
  padding: 0.4rem 0;
  font-weight: 700;
}
.hintsSection .hintSec .specs span {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(88, 88, 88);
}
.hintsSection h2 {
  font-size: 1.4rem;
  background-color: #fe4f4f;
  color: white;
  padding: 1rem;
  width: -moz-max-content;
  width: max-content;
  font-weight: 700;
  margin: 1rem 0;
}
.hintsSection .hints {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
}
.hintsSection .hints img {
  width: 100px;
  height: auto;
  padding: 1rem;
  border: 1px solid #fe4f4f;
  margin-right: 5px;
}
.hintsSection .hints h3 {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: rgb(78, 78, 78);
}

@media only screen and (max-width: 768px) {
  .hintsSection {
    width: 100%;
    height: auto;
    margin: 4rem 0;
  }
  .hintsSection .hintSec {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
  }
  .hintsSection .hintSec .specs li {
    font-size: 1rem;
    color: #fe4f4f;
    padding: 0.5rem;
    font-weight: 700;
  }
  .hintsSection .hintSec .specs span {
    font-size: 1rem;
    font-weight: 700;
    color: rgb(88, 88, 88);
  }
  .hintsSection h2 {
    font-size: 1.2rem;
    background-color: #fe4f4f;
    color: white;
    padding: 1rem;
    width: -moz-max-content;
    width: max-content;
    font-weight: 700;
    margin: 1rem 0;
  }
  .hintsSection .hints {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .hintsSection .hints img {
    width: 100px;
    height: auto;
    padding: 1rem;
    border: 1px solid #fe4f4f;
    margin-right: 10px;
  }
  .hintsSection .hints h3 {
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: rgb(78, 78, 78);
  }
}
.populerProductsSection {
  width: 100%;
  margin: 6rem 0;
  height: auto;
  text-align: center;
}
.populerProductsSection h3 {
  font-weight: 700;
  font-size: 2.2rem;
  padding: 1rem;
  color: #fe4f4f;
}
.populerProductsSection h4 {
  font-weight: 700;
  font-size: 1.4rem;
}
.populerProductsSection .populerProducts {
  display: flex;
  justify-content: center;
  width: 100%;
}
.populerProductsSection .populerProducts img {
  width: auto;
  height: 200px;
}

@media only screen and (max-width: 768px) {
  .populerProductsSection {
    width: 100%;
  }
  .populerProductsSection .populerProducts {
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
  }
  .populerProductsSection .populerProducts img {
    width: auto;
    height: 230px;
  }
}
/* // OEM  Services PAGE */
/* // OEM SERVICE SECTION */
.oemBannerSection {
  width: 100%;
  height: auto;
  padding-top: 4rem;
}
.oemBannerSection .oemBanner {
  height: 70vh;
  background-image: url(./images/oem-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: white;
}
.oemBannerSection .oemBanner h1 {
  font-size: 4rem;
  font-weight: 700;
  padding-top: 30vh;
  filter: drop-shadow(3px 3px 3px black);
}
.oemBannerSection .oemBanner p {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1rem 10rem;
  filter: drop-shadow(3px 3px 3px black);
}

.bannerTxtSection {
  width: 100%;
  height: auto;
}
.bannerTxtSection .bannerTxt {
  width: 80%;
  margin: 6rem auto;
  text-align: center;
  line-height: 2rem;
}
.bannerTxtSection .bannerTxt p {
  font-size: 1rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 1rem;
}

@media only screen and (max-width: 768px) {
  .oemBannerSection {
    width: 100%;
    height: auto;
    padding-top: 4rem;
  }
  .oemBannerSection .oemBanner {
    height: 20vh;
    background-image: url(./images/oem-banner.webp);
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
    color: white;
  }
  .oemBannerSection .oemBanner h1,
  .oemBannerSection .oemBanner p {
    display: none;
  }
}
/* // SHIPMENT */
.shipmentSection {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 6rem 0;
}
.shipmentSection h3 {
  font-weight: 600;
  font-size: 2.2rem;
  color: #fe4f4f;
}
.shipmentSection .shipment {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  padding-top: 1.5rem;
}
.shipmentSection .shipment .shipmentImg {
  text-align: center;
}
.shipmentSection .shipment .shipmentImg img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .shipmentSection {
    margin: 6rem 0;
  }
  .shipmentSection h3 {
    font-weight: 600;
    font-size: 2.2rem;
  }
  .shipmentSection .shipment {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 2rem;
    gap: 1rem;
  }
  .shipmentSection .shipment img {
    width: 120px;
    height: auto;
  }
}
/* // We DELIVER SECTION */
.deliverTitle {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 6rem;
}
.deliverTitle h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #fe4f4f;
}
.deliverTitle img {
  width: 65px;
  height: auto;
  padding: 10px;
}

.container {
  width: 100%;
  height: auto;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.content {
  position: relative;
  width: auto;
  max-width: 200px;
  margin: auto;
  overflow: hidden;
}
.content img {
  height: 300px;
  border-radius: 5px;
}

.content .content-overlay {
  background: rgba(0, 0, 0, 0.436);
  position: absolute;
  height: 99%;
  width: 200px;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay {
  opacity: 1;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details h3 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.content-details p {
  color: #fff;
  font-size: 0.8em;
}

.fadeIn-top {
  top: 20%;
}

@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
    height: auto;
    margin: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .content {
    position: relative;
    width: auto;
    max-width: 250px;
    margin: 1rem;
    overflow: hidden;
  }
  .content img {
    width: auto;
    height: 200px;
    border-radius: 5px;
  }
  .content .content-overlay {
    background: rgba(0, 0, 0, 0.436);
    position: absolute;
    height: 99%;
    width: 200px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
  }
  .content:hover .content-overlay {
    opacity: 1;
  }
  .content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out 0s;
  }
  .content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
  }
  .content-details h3 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
  }
  .content-details p {
    color: #fff;
    font-size: 0.8em;
  }
  .fadeIn-top {
    top: 20%;
  }
}
.bottomCtaSection {
  width: 100%;
  height: auto;
  background-color:rgb(43, 43, 43);
}
.bottomCtaSection .bottomCta {
  width: 90%;
  margin: 1rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.bottomCtaSection .bottomCta button {
  background-color: #fe4f4f;
  font-size: 1.6rem;
  color: white;
  border: none;
  padding: 1.2rem 4rem;
  font-weight: 600;
  cursor: pointer;
}

/* // About Page Start******************************************ABOUT PAGE START */
.aboutBannerSection {
  width: 100%;
  height: 80vh;
  padding-top: 12rem;
  background-image: url(./images/img-3.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.aboutBannerSection .aboutBanner {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}
.aboutBannerSection .aboutBanner .aboutBannerTxt {
  width: 100%;
  height: 100%;
  filter: drop-shadow(2px 2px 4px black);
}
.aboutBannerSection .aboutBanner .aboutBannerTxt h1 {
  font-size: 4.2rem;
  font-weight: 600;
  color: #fe4f4f;
}
.aboutBannerSection .aboutBanner .aboutBannerTxt p {
  font-size: 1.6rem;
  color: white;
}
.aboutBannerSection .aboutBanner .empty {
  width: 100%;
  height: 0;
}

@media only screen and (max-width: 768px) {
  .aboutBannerSection {
    background-color: black;
    background-size: contain;
    background-position: center top;
  }
  .aboutBannerSection .aboutBanner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    padding: 1rem;
    height: 100%;
  }
  .aboutBannerSection .aboutBanner .aboutBannerTxt {
    width: 100vw;
    filter: drop-shadow(2px 2px 4px black);
    margin-top: 4rem;
  }
  .aboutBannerSection .aboutBanner .aboutBannerTxt h1 {
    margin: 1rem 0;
    font-size: 2.4rem;
  }
  .aboutBannerSection .aboutBanner .aboutBannerTxt p {
    font-size: 1.6rem;
    color: white;
    line-height: 2rem;
  }
  .aboutBannerSection .aboutBanner .empty {
    width: 100%;
    height: 0;
  }
}
/* // Contact Info Section */
.contInfoSection {
  width: 100vw;
  height: auto;
  background-color: #fe4f4f;
  overflow: hidden;
  padding: 4rem 0;
}
.contInfoSection h2 {
  font-size: 1.8rem;
  color: #fe4f4f;
  padding: 1rem 0;
  font-weight: 600;
}
.contInfoSection .contInfo {
  width: 80%;
  padding: 4rem 0;
  margin: 0rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
}
.contInfoSection .contInfo .contInfoTxt {
  height: 100%;
  color: white;
  font-size: 1.2rem;
}
.contInfoSection .contInfo .contInfoTxt img {
  width: 50px;
  padding: 0.5rem;
}
.contInfoSection .contInfo .contInfoForm {
  width: 100%;
  height: 100%;
}
.contInfoSection .contInfo .contInfoForm h2 {
  color: #fe4f4f;
  font-size: 1.4rem;
  text-align: center;
  padding: 1rem;
}
.contInfoSection .contInfo .contInfoForm p {
  color: white;
  padding: 1rem;
  text-align: center;
}
.contInfoSection .contInfo .contInfoForm form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.contInfoSection .contInfo .contInfoForm form input {
  width: 100%;
  height: 3rem;
  border: 1px solid;
  background-color: white;
  padding: 5px;
}
.contInfoSection .contInfo .contInfoForm form select {
  width: 100%;
  height: 3rem;
  border: 1px solid black;
  background-color: white;
  color: rgb(145, 145, 145);
  padding: 5px;
}
.contInfoSection .contInfo .contInfoForm form select:focus {
  outline: none !important;
  padding: 5px;
  color: #fe4f4f;
}
.contInfoSection .contInfo .contInfoForm form input:focus {
  outline: none !important;
  padding: 5px;
  color: #fe4f4f;
}
.contInfoSection .contInfo .contInfoForm form textarea {
  width: 100%;
  padding: 0.2rem;
  border: none;
  border: 1px solid black;
  color: black;
}
.contInfoSection .contInfo .contInfoForm form textarea:focus {
  outline: none !important;
  padding: 5px;
}
.contInfoSection .contInfo .contInfoForm form ::-moz-placeholder {
  color: black;
  color: #fe4f4f;
  opacity: 0.5;
  padding: 5px;
}
.contInfoSection .contInfo .contInfoForm form ::placeholder {
  color: black;
  color: #fe4f4f;
  opacity: 0.5;
  padding: 5px;
}
.contInfoSection .contInfo .contInfoForm form button {
  width: -moz-max-content;
  width: max-content;
  padding: 0.6rem 3rem;
  border-radius: 5px;
  border: 0.5px solid black;
  background-color: white;
  color: #fe4f4f;
  font-weight: 600;
  filter: drop-shadow(2px 2px 2px rgb(114, 114, 114));
  cursor: pointer;
}
.contInfoSection .contInfo .contInfoForm form p {
  position: absolute;
  font-size: 1.2rem;
  font-weight: 600;
  right: 1.4rem;
  top: 1.4rem;
}

.customerSupportTxt .cSTxt1 {
  display: flex;
  align-items: center;
}

.contactBottomTxt {
  width: 80%;
  margin: 2rem auto;
  height: auto;
}
.contactBottomTxt h3 {
  color: black;
  padding: 1rem;
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  line-height: 2.6rem;
}

.contactSocial img:hover {
  scale: 1.4;
  transition: all 50ms ease-in-out;
}

@media only screen and (max-width: 768px) {
  .customerSupportTxt .cSTxt1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .contactSocial {
    justify-content: center;
  }
  .contactSocial img:hover {
    scale: 1.4;
    transition: all 50ms ease-in-out;
  }
}
@media only screen and (max-width: 768px) {
  .contInfoSection {
    width: 100vw;
    height: auto;
    background-color: #fe4f4f;
    overflow: hidden;
  }
  .contInfoSection .contInfo {
    width: 98%;
    padding: 2rem 0 4rem 0;
    margin: 0rem auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3rem;
  }
  .contInfoSection .contInfo .contInfoTxt {
    height: 100%;
    color: white;
    font-size: 1.2rem;
  }
  .contInfoSection .contInfo .contInfoTxt img {
    width: 50px;
    padding: 0.5rem;
  }
  .contInfoSection .contInfo .contInfoTxt .customSupportTxt {
    text-align: center;
  }
  .contInfoSection .contInfo .contInfoForm {
    width: 100%;
    height: 100%;
  }
  .contInfoSection .contInfo .contInfoForm h2 {
    color: whitesmoke;
    font-size: 1.4rem;
    text-align: center;
    padding: 1rem;
  }
  .contInfoSection .contInfo .contInfoForm form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .contInfoSection .contInfo .contInfoForm form input {
    width: 100%;
    height: 3rem;
    border: 1px solid;
    background-color: white;
    padding: 5px;
  }
  .contInfoSection .contInfo .contInfoForm form select {
    width: 100%;
    height: 3rem;
    border: 1px solid black;
    background-color: white;
    color: rgb(145, 145, 145);
    padding: 5px;
  }
  .contInfoSection .contInfo .contInfoForm form select:focus {
    outline: none !important;
    padding: 5px;
    color: black;
  }
  .contInfoSection .contInfo .contInfoForm form input:focus {
    outline: none !important;
    padding: 5px;
    color: black;
  }
  .contInfoSection .contInfo .contInfoForm form textarea {
    width: 100%;
    padding: 0.2rem;
    border: none;
    border: 1px solid black;
    color: black;
  }
  .contInfoSection .contInfo .contInfoForm form textarea:focus {
    outline: none !important;
    padding: 5px;
  }
  .contInfoSection .contInfo .contInfoForm form ::-moz-placeholder {
    color: black;
    opacity: 0.5;
    padding: 5px;
  }
  .contInfoSection .contInfo .contInfoForm form ::placeholder {
    color: black;
    opacity: 0.5;
    padding: 5px;
  }
  .contInfoSection .contInfo .contInfoForm form button {
    width: -moz-max-content;
    width: max-content;
    padding: 0.6rem 1.3rem;
    border-radius: 5px;
    border: none;
    background-color: white;
    color: #fe4f4f;
  }
  .contInfoSection .contInfo .contInfoForm form p {
    position: absolute;
    font-size: 1.2rem;
    font-weight: 600;
    right: 1.4rem;
    top: 1.4rem;
  }
}
.aboutIntroSection {
  width: 100%;
  height: auto;
  margin: 4rem 0;
}
.aboutIntroSection .aboutIntro {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.aboutIntroSection .aboutIntro .aboutIntroImg img {
  height: 400px;
  width: auto;
}
.aboutIntroSection .aboutIntro .aboutIntroTxt {
  height: auto;
  text-align: center;
  line-height: 1.6rem;
}
.aboutIntroSection .aboutIntro .aboutIntroTxt h2 {
  color: #fe4f4f;
  font-size: 1.6rem;
  font-weight: 600;
}
.aboutIntroSection .aboutIntro .aboutIntroTxt p {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgb(83, 83, 83);
  margin: 1rem 0;
}
.aboutIntroSection .aboutIntro .aboutIntroTxt button {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: none;
  background-color: #fe4f4f;
  color: white;
}

@media only screen and (max-width: 768px) {
  .aboutIntroSection {
    width: 100%;
    height: auto;
    margin: 4rem 0;
  }
  .aboutIntroSection .aboutIntro {
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .aboutIntroSection .aboutIntro .aboutIntroImg img {
    height: 400px;
    width: auto;
  }
  .aboutIntroSection .aboutIntro .aboutIntroTxt {
    height: auto;
    text-align: center;
    line-height: 1.6rem;
  }
  .aboutIntroSection .aboutIntro .aboutIntroTxt h2 {
    color: #fe4f4f;
    font-size: 1.6rem;
    font-weight: 600;
  }
  .aboutIntroSection .aboutIntro .aboutIntroTxt p {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgb(83, 83, 83);
    margin: 1rem 0;
  }
  .aboutIntroSection .aboutIntro .aboutIntroTxt button {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: none;
    background-color: #fe4f4f;
    color: white;
  }
}
/* // RNS TOOLS PAGE************************************** */
.bannerTools {
  position: relative;
  width: 100%;
}
.bannerTools img {
  width: 100vw;
  height: auto;
  max-height: 100vh;
}
.bannerTools button {
  background-color: #fe4f4f;
  padding: 1rem 3rem;
  color: white;
  border: none;
  position: absolute;
  top: 70%;
  left: 45%;
  cursor: pointer;
}

@media only screen and (max-width: 800px) {
  .bannerTools button {
    background-color: #fe4f4f;
    padding: 1rem 3rem;
    color: white;
    border: none;
    position: absolute;
    top: 70%;
    left: 30%;
    cursor: pointer;
  }
}
/* // .rnstoolsBannerSection {
//        width: 100%;
//        height: 100vh;
//        padding-top: 16vh;

//        .rnstoolsBanner {
//               width: 100%;
//               height: 60vh;
//               background-image: url(./images/rns-banner.jpg);
//               background-size: cover;
//               background-repeat: no-repeat;

//               .rnstoolsBannerTxt {
//                      width: 90%;
//                      margin: 0 auto;
//                      height: 100%;
//                      color: whitesmoke;
//                      font-size: 3.4rem;
//                      font-weight: 600;
//                      display: flex;
//                      justify-content: flex-start;
//                      align-items: center;
//               }
//        }
// } */
/* // Video Section */
.rnsvideoSection {
  width: 100%;
  height: auto;
  padding: 7rem 0;
}
.rnsvideoSection #video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: black;
}
.rnsvideoSection video {
  width: 100%;
  height: 85vh;
}
.rnsvideoSection #text-content {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 70%;
  background-color: rgba(0, 0, 0, 0.485);
  padding: 4rem;
}
.rnsvideoSection #text-content h1 {
  font-size: 4rem;
  font-weight: 700;
  /* // color: black; */
}
.rnsvideoSection #text-content h1::first-letter {
  color: Red;
}
.rnsvideoSection #text-content p {
  font-size: 1.4rem;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .rnsvideoSection {
    padding: 4rem 0;
  }
  .rnsvideoSection #video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: black;
  }
  .rnsvideoSection video {
    width: 100%;
    height: auto;
  }
  .rnsvideoSection #text-content {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.485);
    padding: 1rem;
  }
  .rnsvideoSection #text-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    /* // margin-bottom: 1rem; */
  }
  .rnsvideoSection #text-content h1::first-letter {
    color: Red;
  }
  .rnsvideoSection #text-content p {
    display: none;
  }
}
/* // Cutting Disk Banner Section */
.cuttingDiskSection {
  width: 100%;
  height: auto;
}
.cuttingDiskSection .cuttingDisk {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cuttingDiskSection .cuttingDisk .cuttingDiskImg img {
  width: 300px;
  height: auto;
}
.cuttingDiskSection .cuttingDisk .cuttingDiskTxt h3 {
  font-size: 3rem;
  font-weight: 500;
  color: black;
}
.cuttingDiskSection .cuttingDisk .cuttingDiskTxt button {
  font-size: 1.2rem;
  background-color: #fe4f4f;
  border: none;
  padding: 0.8rem 1.6rem;
  color: white;
  margin-top: 2rem;
}

@media only screen and (max-width: 768px) {
  .cuttingDiskSection .cuttingDisk {
    width: 98%;
    flex-direction: column;
    justify-content: center;
  }
  .cuttingDiskSection .cuttingDisk .cuttingDiskImg img {
    width: 250px;
    height: auto;
  }
  .cuttingDiskSection .cuttingDisk .cuttingDiskTxt {
    width: 100%;
    text-align: center;
  }
  .cuttingDiskSection .cuttingDisk .cuttingDiskTxt h3 {
    font-size: 2rem;
    font-weight: 500;
    color: black;
  }
  .cuttingDiskSection .cuttingDisk .cuttingDiskTxt button {
    display: none;
  }
}
/* // All Tools Section */
.toolsTitle {
  width: 80%;
  margin: 6rem auto;
  height: auto;
  background-color: #fe4f4f;
  text-align: center;
  padding: 1rem;
}
.toolsTitle h2 {
  font-size: 1.6rem;
  color: white;
  font-weight: 600;
}

.abrasivesSection {
  width: 100%;
  height: auto;
  margin-bottom: 4rem;
}
.abrasivesSection h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-decoration: underline;
  letter-spacing: 5px;
  color: #fe4f4f;
}
.abrasivesSection .discs {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 2rem;
  /* .cuttingDisc {}

  .grindingDisc {}

  .flapDisc {}

  .fibreSandingDisc {} */
}
.abrasivesSection .discs img {
  width: 100%;
  max-width: 240px;
  min-width: 200px;
  height: auto;
}
.abrasivesSection .discs h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
  color: black;
}

@media only screen and (max-width: 768px) {
  .toolsTitle {
    width: 80%;
    margin: 4rem auto;
  }
  .abrasivesSection {
    width: 100%;
    height: auto;
    margin-bottom: 4rem;
  }
  .abrasivesSection h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-decoration: underline;
    letter-spacing: 5px;
    color: #fe4f4f;
  }
  .abrasivesSection .discs {
    flex-wrap: wrap;
  }
}
/* // Diamond Blades Section  */
/* // .diamondbladesSection {
//        width: 100%;
//        height: auto;

//        h2 {
//               text-align: center;
//               color: black;
//               font-size: 1.8rem;
//               font-weight: 600;
//               margin: 4rem 0;

//        }

//        .diamondBlades {
//               width: 100%;
//               display: flex;
//               text-align: center;
//               justify-content: center;
//               gap: 2rem;

//        }
// } */
/* // Contact Form */
#contForm {
  display: none;
  position: fixed;
  top: 35vh;
  width: 40%;
  height: 40vh;
  z-index: 1000000000011;
}
#contForm .contact-form {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 70vw;
  transform: translate(-100%, -50%);
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: 2px solid #070ff7;
  z-index: 1000000000011;
}
#contForm .contact-form h2 {
  color: #ff4f4f;
  font-size: 1.6rem;
  text-align: center;
}
#contForm .contact-form input {
  width: 100%;
  height: 2.8rem;
  border: 1px solid #070ff7;
  background-color: transparent;
  margin-bottom: 0.5rem;
}
#contForm .contact-form select {
  width: 100%;
  height: 2.8rem;
  border: 1px solid #070ff7;
  background-color: transparent;
  color: black;
  margin-bottom: 0.5rem;
}
#contForm .contact-form input:focus {
  outline: none !important;
  padding: 5px;
}
#contForm .contact-form textarea {
  width: 100%;
  padding: 0.2rem;
  border: none;
  border: 1px solid #070ff7;
  color: black;
}
#contForm .contact-form textarea:focus {
  outline: none !important;
  padding: 5px;
}
#contForm .contact-form ::-moz-placeholder {
  color: red;
  opacity: 0.5;
  padding: 5px;
}
#contForm .contact-form ::placeholder {
  color: red;
  opacity: 0.5;
  padding: 5px;
}
#contForm .contact-form button {
  width: -moz-max-content;
  width: max-content;
  padding: 0.6rem 1.3rem;
  border-radius: 5px;
  border: none;
  background-color: #ff4f4f;
  color: white;
}
#contForm .contact-form p {
  position: absolute;
  font-size: 1.5rem;
  font-weight: 500;
  right: 1.5rem;
  top: 1.5rem;
}

@media only screen and (max-width: 768px) {
  #contForm {
    top: 30vh;
    width: auto;
  }
  #contForm .contact-form {
    width: 100vw;
    top: 50%;
    left: 100vw;
    border-radius: 10px;
    padding: 2rem;
    gap: 1.5rem;
    border: 2px solid #070ff7;
  }
  #contForm .contact-form h2 {
    color: rgb(182, 0, 0);
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
  }
  #contForm .contact-form input {
    width: 100%;
    height: 3rem;
    border: 1px solid #070ff7;
    background-color: transparent;
  }
  #contForm .contact-form select {
    width: 100%;
    height: 3rem;
    border: 1px solid #070ff7;
    background-color: transparent;
    color: black;
  }
  #contForm .contact-form input:focus {
    outline: none !important;
    padding: 5px;
  }
  #contForm .contact-form textarea {
    width: 100%;
    padding: 0.2rem;
    border: none;
    border: 1px solid #070ff7;
    color: black;
  }
  #contForm .contact-form textarea:focus {
    outline: none !important;
    padding: 5px;
  }
  #contForm .contact-form ::-moz-placeholder {
    color: red;
    opacity: 0.5;
    padding: 5px;
  }
  #contForm .contact-form ::placeholder {
    color: red;
    opacity: 0.5;
    padding: 5px;
  }
  #contForm .contact-form button {
    width: -moz-max-content;
    width: max-content;
    padding: 0.6rem 1.3rem;
    border-radius: 5px;
    border: none;
    background-color: #ff4f4f;
    color: white;
  }
  #contForm .contact-form p {
    position: absolute;
    font-size: 1.2rem;
    font-weight: 600;
    right: 1.4rem;
    top: 1.4rem;
  }
}
/* Swiper Pagnitaion Words*/
.swiper-container {
  text-align: center;
}

.swiper-slide {
  font-size: 24px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s, transform 0.5s;
  color: #fe4f4f;
  font-weight: 700;
  font-size: 4rem;
}

/* Swiper Pagnitaion Words*/
/* Dynamicaly changing images at the same place */
.image-container {
  width: 300px;
  /* Set your desired width */
  height: 200px;
  /* Set your desired height */
  overflow: hidden;
}

#dynamic-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* This ensures the image covers the area without stretching */
}

/* Dynamicaly changing images at the same place END */
.image-slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: scroll;
  background-color: white;
  padding: 1.4rem 0;
  margin-top: 3rem;
}
.image-slider h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1rem;
  color: black;
}

.slider-images {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 1rem;
  z-index: -1;
}

.slider-images img {
  width: 360px;
  height: 480px;
  -o-object-fit: contain;
     object-fit: contain;
}

.slider-arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 30px;
}

.left-arrow,
.right-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 150%;
  font-size: 24px;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  transition: background-color 0.3s ease-in-out;
}

.left-arrow:hover,
.right-arrow:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.left-arrow {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.right-arrow {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

@media only screen and (max-width: 789px) {
  .image-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: white;
    padding: 1.4rem 0;
    margin-top: 3rem;
  }
  .image-slider h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem;
    color: black;
  }
  .slider-images {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 0px;
    margin-left: 0px;
  }
  .slider-images img {
    width: 100vw;
    height: 450px;
  }
  .slider-arrows {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 30px;
  }
  .left-arrow,
  .right-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 150%;
    font-size: 24px;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    transition: background-color 0.3s ease-in-out;
  }
  .left-arrow:hover,
  .right-arrow:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .left-arrow {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .right-arrow {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}
.newAdditionSection {
  width: 100%;
  height: auto;
  background-color: rgb(43, 43, 43);
  text-align: center;
  padding: 4rem 0;
  overflow: hidden;
}
.newAdditionSection h2 {
  color: #fe4f4f;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 20rem;
}
.newAdditionSection p {
  color: whitesmoke;
  line-height: 1.4rem;
  padding: 0 10rem;
}
.newAdditionSection .newAdditions {
  width: 100%;
  margin: 0 auto;
  padding: 5rem 0 0 10rem;
  display: flex;
  flex-wrap: nowrap;
  overflow: scroll;
  gap: 5rem;
}
.newAdditionSection .newAdditions .newAddition {
  width: 400px;
  display: flex;
  flex-direction: column;
}
.newAdditionSection .newAdditions .newAddition .newAdditionImg {
  margin-bottom: 2rem;
  width: 260px;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.newAdditionSection .newAdditions .newAddition .newAdditionImg img {
  width: 250px;
  height: 250px;
  z-index: 100001;
}
.newAdditionSection .newAdditions .newAddition .newAdditionImg:before {
  content: "";
  background-image: conic-gradient(transparent 20deg, #fc3838 120deg, transparent 100deg);
  width: 160%;
  height: 160%;
  position: absolute;
  animation: rotate 6s linear infinite reverse;
}
.newAdditionSection .newAdditions .newAddition .newAdditionTxt h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fe4f4f;
  padding: 1rem;
}
.newAdditionSection .newAdditions .newAddition .newAdditionTxt p {
  padding: 0;
}

.newAdditions::-webkit-scrollbar {
  display: none;
}

@keyframes rotate {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.newAboutLastSection {
  background-color: rgb(43, 43, 43);
}
.newAboutLastSection .newAboutLast {
  display: flex;
  text-align: center;
  width: 80%;
  margin-inline: auto;
  padding: 1rem 0 4rem 0;
  gap: 1rem;
}
.newAboutLastSection .newAboutLast .newAboutLastTxt {
  border: 1px solid #fc3838;
  padding: 1rem;
}
.newAboutLastSection .newAboutLast h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fc3838;
}
.newAboutLastSection .newAboutLast p {
  color: whitesmoke;
  margin: 1rem 0;
}

.bottomCta {
  background
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 0 2rem 0;
}/*# sourceMappingURL=style.css.map */