@import url("https://fonts.googleapis.com/css2?family=gold+Rose:wght@300..700&family=Space+Grotesk:wght@300..700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Space Grotesk", serif;
  text-transform: capitalize !important;
  color: #000;
}

html,
body {
  scroll-behavior: smooth !important;
}

html::-webkit-scrollbar {
  /* display: none; */
  max-width: 5px;
}

html::-webkit-scrollbar-track {
  background-color: rgb(255, 255, 255);
}

html::-webkit-scrollbar-thumb {
  background-color: #000000;
}

@media screen and (max-width: 1200px) {
  html::-webkit-scrollbar {
    display: none;
  }
}


/* ================= */

/* =========================== */
/* Preloader */
.preloader {
  position: fixed;
  z-index: 100000000 !important;
  background-color: white;
  min-width: 100%;
  max-width: 100%;
  overflow: hidden;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}

.preloader img {
  max-height: 10rem;
  animation: imgload 3s ease infinite;
}

@keyframes imgload {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.7);
  }
}

.preloader-fade {
  opacity: 0;
  z-index: -10000 !important;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}


@media screen and (max-width: 1200px) {
  .preloader img {
    max-height: 5rem;
  }
}

/* ================= */
/* nav */

.nav {
  min-height: 5rem;
  max-height: 5rem;
  width: 100%;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  z-index: 1000 !important;
  border-bottom: 1px solid gainsboro;
}

nav .right a {
  margin-left: 0.25rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgb(0, 0, 0);
}

.nav .right a:hover {
  background-color: #E69064;
  font-weight: 900;
}

nav * {
  color: rgb(0, 0, 0);
}

nav .left {
  display: flex;
  align-items: center;
  justify-content: center;
}

nav .left img {
  max-height: 3.5rem;
  /* border: 1px solid #E69064; */
}

nav a {
  text-decoration: none;
}

/* Hamburger styles */
.hamburger {
  display: none;
  font-size: 1.25rem;
  cursor: pointer;
}

.hamburger.close {
  content: "×";
  font-size: 2rem !important;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .right {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 5rem;
    right: 0;
    background-color: #ffffff;
    width: 100%;
    height: calc(100vh - 5rem);
    justify-content: start;
    align-items: center;
    z-index: 1000;
    padding: 4%;
  }

  .nav {
    overflow: visible;
  }

  .right.show {
    display: flex;
    opacity: 1;
    background-color: #ffffff;
    z-index: 1000 !important;
  }

  .hamburger.close {
    font-size: 3rem !important;
  }

  .right a {
    margin: 0.5rem 0;
    max-width: 100%;
    min-width: 100%;
    text-align: center;
  }

  nav .right a {
    margin-left: 0;
  }

  .hamburger {
    display: block;
  }
}

/* ================ */

.section-01 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  max-height: 70vh;
  max-width: 92%;
  overflow: hidden;
  padding: 5rem 30%;
  flex-direction: column;
  margin: 6rem auto 0;
  background: linear-gradient(360deg, black, rgba(0, 0, 0, .5)),
    url(./assets/06.jpeg) no-repeat 50% 50%;
  background-size: cover;
  border-radius: 0rem;
  transition: all background-size ease !important;
}

.section-01 * {
  color: white;
  text-align: center;
}

.section-01 h2 {
  font-size: 3.25rem;
  line-height: 1;
  text-transform: uppercase !important;
}

.section-01 h2 span {
  color: #E69064;
  font-size: 3.25rem;
  line-height: 1;
  text-transform: uppercase !important;
}

.section-01 h6 {
  font-size: 1.5rem;
  text-transform: uppercase !important;
  margin: 2rem 0;
}

.section-01 a {
  background-color: white;
  color: black;
  text-decoration: none;
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 900 !important;
  border-radius: .25rem;
  text-transform: uppercase !important;
}

.global-main {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.8), transparent),
    url(./assets/07.png) no-repeat 50% 50%;
  background-size: cover;
}

#parallax {
  background: linear-gradient(180deg, rgb(0, 0, 0, .8), rgba(0, 0, 0, .9)),
    url(./assets/10.jpg) no-repeat 50% 50%;
  background-size: cover;
}

@media screen and (max-width: 1200px) {
  .section-01 {
    padding: 5rem 10%;
  }
}

@media screen and (max-width: 800px) {
  .section-01 {
    padding: 2rem;
    max-height: calc(100vh - 6.25rem);
    min-height: calc(100vh - 6.25rem);
    margin-top: 5.5rem;
  }

  .section-01 h2,
  .section-01 h2 span {
    font-size: 2rem;
    line-height: 1.2;
  }

  .section-01 h6 {
    font-size: 1.2rem;
  }

  .section-01 a {
    font-size: 1rem;
    padding: .75rem 1.5rem;
  }

  #parallax {
    background: linear-gradient(180deg, rgb(0, 0, 0, .85), rgba(0, 0, 0, .9)),
      url(./assets/10.jpg) no-repeat 80% 50%;
    background-size: cover;
  }
}


/* ================== */

.pioneer {
  display: flex;
  background-color: gainsboro;
  padding: 5rem 20%;
  justify-content: space-between;
}

.pioneer .pioneer-left {
  max-width: 60%;
  min-width: 60%;
}

.pioneer-right {
  max-width: 35%;
  margin-left: 5%;
  min-width: 35%;
}

.pioneer img {
  min-width: 100%;
  max-width: 100%;
  border-radius: 0rem;
  border: 3px solid rgb(255, 255, 255);
}

.pioneer-left h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.pioneer-left p {
  font-size: 1.25rem;
  line-height: 2;
}

.pioneer-left p:nth-child(2) {
  margin-bottom: 2rem !important;
}

.pioneer-left p span {
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 2;
  text-shadow: 1px -1px black;
}


@media screen and (max-width: 1600px) {
  .pioneer {
    padding: 5rem 5%;
  }
}


@media screen and (max-width: 800px) {
  .pioneer {
    padding: 3rem 4%;
    flex-direction: column;
  }

  .pioneer .pioneer-left {
    max-width: 100%;
    min-width: 100%;
    padding-bottom: 10vh;
  }

  .pioneer-left h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .pioneer-left p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    padding: 0 5%;
  }

  .pioneer .pioneer-right {
    max-width: 100%;
    margin-left: 0%;
    min-width: 100%;
  }
}

/* ================ */

.section-02 {
  max-width: 92%;
  margin: 0 auto;
}

.section-02 .colors {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.section-02 .colors div {
  min-height: 0.5rem;
  min-width: 33%;
  max-width: 33%;
  background-color: brown;
}

.section-02 .colors div:nth-child(3) {
  background-color: goldenrod;
}

.section-02 .colors div:nth-child(2) {
  background-color: burlywood;
}

.section-02 .path {
  font-size: 3rem;
  text-align: center;
  margin: 5rem 0 1rem;
  font-weight: 500;
}

.cards-success {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-height: max-content;
}

.cards-success-div {
  max-width: 32.5%;
  min-width: 32.5%;
  overflow: hidden;
  max-height: 50rem;
  min-height: 40rem;
  /* padding: 1rem 1rem 1.5rem; */
  /* border: 1px solid gainsboro; */
}

.cards-success-div img {
  max-width: 100%;
  min-width: 100%;
  max-height: 30rem;
  min-height: 30rem;
  object-fit: cover;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.cards-success-div-img {
  max-width: 100%;
  min-width: 100%;
  max-height: 30rem;
  min-height: 30rem;
  overflow: hidden;
  border: 1px solid gainsboro;
  margin-bottom: 1rem;
}

.cards-success-div:hover .cards-success-div-img {
  border: 1px solid #E69064;
}

.cards-success-div:hover img {
  transform: scale(1.5);
  transition: transform 0.5s ease;
}

.cards-success-div h2 {
  font-size: 2rem;
}

.cards-success-div p {
  margin: 1rem 0 3rem;
  font-size: 1.2rem;
}

.cards-success-div>a {
  border: 1px solid black;
  text-decoration: none;
  padding: 0.75rem 1.15rem;
  display: block;
  text-align: center;
  max-width: max-content;
}

.cards-success-div>a:hover {
  background-color: #000;
  color: white;
}

@media screen and (max-width: 1000px) {
  .section-02 .path {
    font-size: 1.75rem;
    font-weight: 900;
    margin: 3rem 0 1rem;
  }

  .section-02 .colors div {
    min-height: 0.25rem;
  }

  .cards-success {
    flex-wrap: wrap;
    overflow: hidden;
  }

  .cards-success-div {
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 4rem;
  }

  .cards-success-div:last-child {
    margin-bottom: 0;
  }

  .cards-success-div h2 {
    font-size: 1.75rem;
  }

  .cards-success-div p {
    margin: 0.5rem 0 1rem;
    font-size: 1rem;
  }

  .cards-success-div>a {
    padding: 0.5rem 1rem;
  }
}

/* ================ */

.section-03 {
  max-width: 100%;
  margin: 4rem auto;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid gainsboro;
  padding: 0 4%;
  padding-top: 4rem;
  background-color: whitesmoke;
  padding-bottom: 4rem;
  border-bottom: 1px solid gainsboro;
}

.section-03 .s03-left {
  min-width: 50%;
  max-width: 50%;
  overflow: hidden;
  min-height: 40rem;
  max-height: 40rem;
}

.section-03 .s03-left img {
  object-fit: cover !important;
  max-width: 100%;
  min-width: 100%;
  border-radius: 0rem;
}

.section-03 .s03-right {
  padding-left: 5%;
}

.section-03 .s03-right h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: end;
  /* background: -webkit-linear-gradient(40deg, #ef3340, #009739, #454545);
  background: linear-gradient(40deg, #ef3340, #009739, #454545);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  max-width: max-content;
  line-height: 1;
}

.section-03 .s03-right h4 {
  line-height: 2;
  font-size: 1.25rem;
  text-align: justify;
  font-weight: 200;
}

@media screen and (max-width: 1600px) {
  .section-03 .s03-right h4 {
    font-size: 1rem;
  }

  .section-03 .s03-left {
    min-height: 20rem;
  }
}

@media screen and (max-width: 1000px) {
  .section-03 {
    flex-wrap: wrap;
  }

  .section-03 .s03-left {
    min-width: 100%;
    max-width: 100%;
    min-height: 10rem;
    max-height: 40rem;
    margin-bottom: 2rem;
  }

  .section-03 .s03-right {
    padding-left: 0%;
  }

  .section-03 .s03-right h2 {
    font-size: 1.75rem;
  }

  .section-03 .s03-right h4 {
    line-height: 1.7;
    font-size: 1rem;
  }
}

/* ======================= */
/* ==================== */
/* Slider */

.swiper01 {
  margin: 5rem 4%;
  max-width: 92%;
  position: relative;
  padding-bottom: 15rem;
}

.swiper01 * {
  z-index: 50 !important;
}

.swiper01 h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: left;
  opacity: 0;
}

.swiper01 h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.swiper01 .swiper-controls {
  position: absolute;
  right: 0%;
  top: 0;
  min-width: 8rem;
  max-width: 25vw;
  display: flex;
  justify-content: space-between;
  /* background-color: gold; */
  min-height: 3rem;
}

.swiper01 .swiper-button-prev {
  margin-right: 5%;
}

.swiper01 .ss01 {
  background: linear-gradient(360deg, black, rgba(0, 0, 0, .8)),
    url("https://media.istockphoto.com/id/1279278493/photo/pile-of-scrap-copper-rod.jpg?s=612x612&w=0&k=20&c=qCjqjA-q588qiOoAgBI2B2auR1NOqvHmZEquQUEK_Ng=") no-repeat 50% 50%;
  background-size: cover;
}

.swiper01 .ss02 {
  background: linear-gradient(360deg, black, rgba(0, 0, 0, .8)),
    url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRbTaspWe3xJyMXo6zkXU4mZ_qCuo_bFsyNb8-RReBFB8PJ4-Y4ualuu6SmNnAgGT2ffDw") no-repeat 50% 50%;
  background-size: cover;
}

.swiper01 .ss03 {
  background: linear-gradient(360deg, black, rgba(0, 0, 0, .8)),
    url("https://www.apizee.com/scripts/files/6699061c978c83.45756020/relation-client-industrie--3.webp") no-repeat 50% 50%;
  background-size: cover;
}


.swiper01 .ss04 {
  background: linear-gradient(360deg, black, rgba(0, 0, 0, .8)),
    url("https://indiancompanies.in/wp-content/uploads/2020/09/Top-Copper-Companies-in-India-scaled.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.swiper01 .ss05 {
  background: linear-gradient(360deg, black, rgba(0, 0, 0, .8)),
    url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSZi7HqYBwCt7Ck6oSKTZsZhoVwAt2ffchWfQ&s") no-repeat 50% 50%;
  background-size: cover;
}

.swiper01 .swiper-button-next:after,
.swiper01 .swiper-button-prev:after {
  color: white;
  font-size: 16px;
}

.swiper01 .swiper-button-next,
.swiper01 .swiper-button-prev {
  background-color: black;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
}

.swiper01 .swiper-slide {
  min-height: 30rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  color: white;
  font-size: 3rem;
  padding: 2rem;
  border-radius: 2rem;
  opacity: .75;
  filter: grayscale(100);
  background-color: black;
  /* background-color: yellow; */
}

.swiper01 .swiper-slide * {
  color: white;
  line-height: 1.25;
}

/* .swiper01 .swiper-pagination {
  background-color: gold;
} */

.swiper01 .swiper-pagination .swiper-pagination-bullet {
  background-color: black;
  opacity: 0.1;
  transition: all 0.25s ease;
}

.swiper01 .swiper-pagination .swiper-pagination-bullet-active {
  width: 100px;
  opacity: 1;
  border-radius: 1rem;
  transition: all 0.5s ease;
}

.swiper01 .swiper-slide-active {
  opacity: 1;
  filter: grayscale(0);
}

.swiper01 .swiper-slide-active h2 {
  opacity: 1;
}


.swiper01 .swiper-wrapper {
  padding-bottom: 10vh;
}

@media screen and (max-width: 1200px) {
  .swiper01 h2 {
    font-size: 1.2rem;
    line-height: 1.5 !important;
    padding-right: 0%;
  }

  .swiper01 {
    padding-bottom: 5rem !important;
  }

  .swiper01 .swiper-controls {
    min-width: 7rem;
    transform: scale(0.8);
    top: -.25rem;
    right: -0.85rem;
  }

  .swiper01 .swiper-wrapper {
    padding-top: 3rem;
    padding-bottom: 0vh !important;
  }

  .swiper01 h3 {
    font-size: 1.5rem;

  }
}

/* =================== */

/* ======================= */

.form-main form {
  display: flex;
  flex-direction: column;
  max-width: 40%;
  min-width: 40%;
  justify-content: center;
  margin: 0 !important;
  border: 1px solid white;
  padding: 2rem;
  border-radius: 1rem;
}

.form-main {
  background-size: cover !important;
  background: linear-gradient(120deg,
      rgba(0, 0, 0, 0.9) 10%,
      rgba(0, 0, 0, 0.9)),
    url("./assets/06.jpeg") no-repeat fixed 50% 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5rem 0 0;
  padding: 5rem 4%;
  position: relative;
  /* border: 1px solid #E69064; */
}

.form-main form * {
  font-size: 1.25rem;
  color: rgb(0, 0, 0);
}

.form-main form input,
.form-main form textarea {
  padding: 0.5rem;
  text-transform: uppercase !important;
}

.form-main form textarea {
  min-height: 10rem;
  max-height: 10rem;
  text-transform: uppercase !important;
}

.form-main form label {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: white;
}

.lets-form {
  /* position: absolute; */
  /* background-color: #E69064; */
  min-width: 60%;
  max-width: 60%;
  padding-left: 5%;
  align-self: center;
}

.lets-form * {
  text-align: end;
  color: white;
}

.lets-form h3 {
  font-size: 5rem;
}

.lets-form h4 {
  font-size: 3rem;
}

.form-main form label:first-child {
  margin-top: 0;
}

.form-main form button {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #000;
  color: white;
  border: 1px solid white;
  font-weight: 900 !important;
}

@media screen and (max-width: 1200px) {
  .form-main form {
    display: flex;
    flex-direction: column;
    max-width: 92%;
    min-width: 92%;
    margin: 2rem auto;
    padding: 1rem;
    border-radius: 0;
  }

  .form-main {
    flex-direction: column-reverse;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }

  .lets-form {
    min-width: 100%;
    max-width: 100%;
    padding: 0 4%;
    margin-bottom: 3rem;
  }

  .lets-form * {
    text-align: center;
  }

  .lets-form h3 {
    font-size: 2.5rem;
  }

  .lets-form h4 {
    font-size: 1.25rem;
  }

  .form-main form * {
    font-size: 1rem;
  }
}

/* ===================== */

.footer {
  text-align: center;
  padding: 1rem 4%;
  background-color: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .icons-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icons-foot a {
  text-decoration: none;
  margin-left: 2rem;
}

.icons-foot a i {
  font-size: 5rem !important;
}

@media screen and (max-width: 1200px) {
  .icons-foot a {
    margin-left: 0rem;
  }

  .footer {
    flex-direction: column;
    padding: 1.5rem 4%;
    border-top: 5px solid #E69064;
  }

  .footer .icons-foot {
    justify-content: space-between;
    min-width: 60%;
    margin-top: .5rem;
  }
}

/* ========================== */

.about-us-02 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 92%;
  margin: 5rem auto;
}

.about-us-02-a h2 {
  font-size: 2rem;
  line-height: 1.2;
  background: -webkit-linear-gradient(120deg, #0018ef, #f76531);
  background: linear-gradient(120deg, #0018ef, #f76531);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900 !important;
  margin-bottom: 2rem;
}

.about-us-02 .about-us-02-a {
  max-width: 40%;
  min-width: 40%;
  padding-right: 5%;
}

.about-us-02-a img {
  max-width: 8rem;
  margin-top: 2rem;
}

.about-us-02-a h6 {
  font-size: 1.25rem;
  line-height: 2;
  text-align: justify;
}


.about-us-02-b {
  max-width: 60%;
  min-width: 60%;
  overflow: hidden;
}

.about-us-02-b iframe {
  min-width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 16/9;
}

@media screen and (max-width: 1200px) {
  .about-us-02 {
    max-width: 92%;
    margin: 2rem auto;
    flex-direction: column-reverse;
  }

  .about-us-02-b,
  .about-us-02-a {
    max-width: 100% !important;
    min-width: 100% !important;
    padding: 0 !important;
  }

  .about-us-02-a {
    margin-top: 2rem;
  }

  .about-us-02-a h6 {
    font-size: 1rem;
    line-height: 2;
  }

  .about-us-02-a h2 {
    font-size: 1.75rem;
  }
}

/* ======================== */

.about-us-03 {
  display: flex;
  align-items: center;
  background-color: #000;
  padding: 3rem 10%;
  max-width: 100%;
  overflow: hidden;
  justify-content: space-between;
}

.about-us-03 * {
  color: white;
  text-align: center;
}

.about-us-03 div {
  padding: 0 5%;
}

.about-us-03 h2 {
  font-size: 1.5rem;
}

.about-us-03 h3 {
  font-size: 4.5rem;
  background: -webkit-linear-gradient(120deg, #efd900, #f76531);
  background: linear-gradient(120deg, #efd900, #f76531);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900 !important;
}

@media screen and (max-width: 1200px) {
  .about-us-03 {
    /* flex-direction: column; */
    padding: 1rem 4%;
    flex-wrap: wrap;
  }

  .about-us-03 div {
    padding: 1rem;
    margin-bottom: 0.5rem;
    max-width: 49%;
    border: 1px solid white;
  }

  /* .about-us-03 div:last-child {
    margin: 0;
  } */

  .about-us-03 h4 {
    padding-right: 10%;
  }

  .about-us-03 h3 {
    font-size: 3rem;
  }
}


/* ==================== */

.products-cards {
  max-width: 92%;
  margin: 5rem auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  flex-wrap: wrap;
}

.products-cards-div {
  max-width: 24%;
  min-width: 24%;
  margin: .15rem 0;
  border: 1px solid gainsboro;
  padding: 1.25rem;
  overflow: hidden;
  border-radius: 1rem;
  align-self: stretch;
}

.products-cards-heading {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-top: 5rem;
  margin-bottom: -3rem;
}

.products-cards-div img {
  max-width: 100%;
  min-width: 100%;
  margin-bottom: 2rem;
  border-radius: 1rem;
  max-height: 15rem;
  min-height: 15rem;
}

.products-cards ul {
  padding-left: 1rem;
}

.products-cards-div h2 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.products-cards-div p {
  text-align: justify;
  margin-bottom: 2rem;
}

.products-cards-div :is(h4, h5, h6) {
  font-weight: 400;
  color: #E69064;
  margin-bottom: 1rem;
}

.products-cards-div :is(h4, h5, h6) span {
  font-weight: 900 !important;
  margin-right: .5rem;
  color: black;
}

.products-cards-div:hover {
  background-color: gainsboro;
}

.products-cards:hover .products-cards-div:not(:hover) {
  filter: blur(5px);
}



@media screen and (max-width: 1200px) {
  .products-cards-div {
    max-width: 100%;
    min-width: 100%;
    margin: .5rem 0;
  }

  .products-cards-div h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .products-cards {
    margin: 2rem auto;
  }

  .products-cards:hover .products-cards-div:not(:hover) {
    filter: blur(0px);
  }

  .products-cards-heading {
    margin-bottom: -1rem;
  }

}


/* ==================== */

.product-live-price {
  background-color: #000;
  min-height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  overflow: hidden;
}

.product-live-price * {
  color: white;
}

.product-live-price h2 {
  font-size: 5rem;
  background: -webkit-linear-gradient(120deg, #efd900, #f76531);
  background: linear-gradient(120deg, #efd900, #f76531);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900 !important;
  animation: blinking .7s ease-in-out infinite;
  opacity: 1;
}

@keyframes blinking {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

.product-live-price h3 {
  font-size: 1.5rem;
}

.product-live-price p {
  opacity: .5;
}

@media screen and (max-width: 1200px) {
  .product-live-price h2 {
    font-size: 3rem;
  }

  .product-live-price {
    min-height: 10rem;
    padding: 2rem 4%;
    border-left: .5rem solid #E69064;
    border-right: .5rem solid #E69064;
  }
}


/* ============================== */

.section-012 {
  padding: 5rem 10%;
  background-color: black;
  /* border-top: 1px solid white; */
  max-width: 100%;
  position: relative;
  background-color: white;
}

/* Entire section */
.section-012-selecting-tabs {
  display: flex;
  overflow: hidden;
  min-height: 50vh;
  padding: 0;
  /* background-color: #E69064; */
  justify-content: space-between;
}

/* Buttons Entire container */
.section-012-selecting-tabs .tab-buttons {
  display: flex;
  flex-direction: column;
  width: 20%;
  position: sticky;
  top: 0;
  padding: 0;
  min-height: 50vh;
  /* background-color: #E69064; */
  align-self: stretch;
}


/* Individual Tab Buttons */
.section-012-selecting-tabs .tab-button {
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #000000;
  background-color: white;
  border: 1px solid black;
  margin-bottom: .5rem;

}

/* Individual Tab Buttons when active */
.section-012-selecting-tabs .tab-button.active,
.section-012-selecting-tabs .tab-button.hover,
.section-012-selecting-tabs .tab-button.focus {
  color: white !important;
  background-color: #000000;
  border: 1px solid white;
}

.section-012-selecting-tabs .tab-button.active span,
.section-012-selecting-tabs .tab-button.hover span,
.section-012-selecting-tabs .tab-button.focus span {
  color: white !important;
}


/* Right side image container entire */
.section-012-contents {
  padding: 0 0 0 0%;
  width: 79.5%;
  height: max-content;
}

/* Individual Image section => 3 sections there */
.section-012-content-div {
  transition: all 400ms cubic-bezier(.4, 0, .2, 1);
  opacity: 0;
  max-height: 0;
  pointer-events: none;
  overflow: hidden !important;
  transform: translateY(200px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(400px, auto);
  grid-gap: 10px;
}

.section-012-content-div img {
  object-fit: cover;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-width: 100%;
  border: 1px solid white;
}

.section-012-content-div.active {
  opacity: 1;
  max-height: fit-content;
  transition: all 400ms cubic-bezier(.4, 0, .2, 1);
  transform: translateY(0px);
}


@media screen and (max-width: 1200px) {
  .section-012-selecting-tabs {
    flex-direction: column;
  }

  .section-012 {
    padding: 5%;
    margin-bottom: 1rem;
  }

  .section-012-selecting-tabs .tab-buttons {
    width: 100%;
    margin-bottom: 0rem;
    min-height: 10vh;
  }

  .section-012-contents {
    padding: 0;
    width: 100%;
    height: max-content;
    overflow-x: scroll;
  }

  .section-012-content-div {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: minmax(100px, auto);
    grid-gap: 10px;
  }
}


/* ======================== */

/* Marquee animation */
@keyframes marquee {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

.inr-usd {
  max-width: 100%;
  overflow: hidden;
  background-color: #000;
  border-top: 2px solid rgb(217, 255, 0);
  border-bottom: 5px solid rgb(217, 255, 0);
  /* display: inline-block; */
}

.inr-usd-container {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: marquee 70s linear infinite;
  white-space: nowrap;
}


.inr-usd p {
  margin: 0 2%;
}


.inr-usd p * {
  font-size: 2rem !important;
  color: white;
}


@media screen and (max-width: 800px) {
  .inr-usd p * {
    font-size: 1.5rem !important;
  }
}
