:root {
  --red: #dd2b1c;
  --dark-red: #ae000b;
  --gery: #5b5b5b;
  --bright-grey: #75767a;
  --bright-silver: #9a9b9d;
  --champagne-silver: #d5cec1;

  --copper-bronze: #998375;
  --copper: #b58054;
  --dark-grey: #505153;
  --metallic-blue: #5e8aa3;
  --metallic-bronze: #877560;
  --pearl-brown: #59452c;
  --rich-gold: #b28a4c;
  --silver: #838489;
  --wine-red: #682b2c;
  --jade-green: #a2b9a7;
  --burman-teak: #c27545;
  --novocentopine: #de894f;
  --storm-grey: #60605e;
  --titlis-grey: #c3bbb0;
  --burn-walnut: #d9a67e;
  --palisandra-brown: #7e5030;
  --tuscun-walnut: #c57d4c;
  --aspen-grey: #dad4cf;
  --gris-desire: #595149;
  --turquoise_patina: #bae0d5;
  --corten-steel: #724f38;
  --raw-graphine: #67666d;
  --copper-platina: #5e422e;

  --filter-red: invert(10%) sepia(78%) saturate(6719%) hue-rotate(351deg)
    brightness(105%) contrast(110%);
}

html {
  scroll-behavior: smooth;
}

/* Professional & Clean Hover Effect */
.initial-thumbnail {
  position: relative;
  overflow: hidden;

  background: #f5f5f5;
}

.initial-thumbnail img {
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  display: block;
  width: 100%;
}

/* Subtle zoom + slight opacity change */
.initial-thumbnail img:hover {
  transform: scale(1.03);
  opacity: 0.92;
}

/* Clean overlay that appears on hover */
.initial-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 8px;
}

.initial-thumbnail:hover::before {
  opacity: 1;
}

/* Minimalist zoom icon in corner */
.initial-thumbnail::after {
  content: "🔍";
  position: absolute;
  bottom: 15px;
  right: 15px;

  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
  filter: grayscale(100%);
}

.initial-thumbnail:hover::after {
  opacity: 0.6;
  transform: scale(1);
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

/* Carousel images - smooth transitions */
.carousel-inner img {
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  width: 100%;
}

/* Subtle zoom + opacity on hover */
.carousel-inner img:hover {
  transform: scale(1.03);
}

/* Clean gradient overlay on hover */
.carousel-viewport::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 8px;
}

.carousel-viewport:hover::before {
  opacity: 1;
}

/* Minimalist zoom icon in corner */
.carousel-viewport::after {
  content: "🔍";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;

  margin: auto;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
  font-size: 14px;
  filter: grayscale(100%);
}

.carousel-viewport:hover::after {
  opacity: 0.6;
  transform: scale(1);
}

.carousel-dots {
  display: none;
}

@media screen and (max-width: 480px) {
  .carousel-dots {
    display: flex; /* Make visible only on mobile */
    position: absolute;
    bottom: 10px; /* Adjust distance from bottom */
    left: 50%;
    transform: translateX(-50%);
    z-index: 20; /* Ensure it sits above the image */
    gap: 8px; /* Space between dots */
    pointer-events: auto; /* Allow clicking */
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4); /* Faded white */
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Slight border for visibility on light images */
  }

  /* Active Dot Style */
  .carousel-dot.active {
    background-color: #837373; /* Solid White */
    transform: scale(1.2); /* Slightly larger */
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  }
}

.nav-buttons button:first-child {
  cursor: default;
  pointer-events: none;
}

.txt-hidden {
  display: none;
}
/* reset css */
*,
:after,
:before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}
img {
  width: 100%;
}
ul,
li {
  list-style: none;
  margin: 0;
}
a {
  text-decoration: none !important;
  display: inline-block;
  color: #383838;
  font-size: 16px;
  cursor: pointer;
}
select,
input,
textarea,
button {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}
select:focus,
input:focus,
textarea:focus,
button:focus {
  border: none;
  outline: none;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #fff;
}
textarea {
  resize: none;
}
p {
  color: #4c4e4d;
  font-size: 18px;
  margin: 15px 0;
  text-align: justify;
  line-height: 1.6;
}
.textl {
  text-align: left;
}
.textc {
  text-align: center;
}
.textr {
  text-align: right;
}
/* reset css */

/* fonts */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Futura-Bk";
}
p,
body,
a,
input,
select,
textarea {
  font-family: "Geometr";
}
h1 {
  font-size: 45px;
  text-align: center;
}
h2 {
  font-size: 42px;
  font-weight: 600;
  color: #595b61;
}
h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  padding: 5px 0;
}
h4 {
  font-size: 28px;
  font-weight: 500;
}
h5 {
  font-size: 26px;
}
h6 {
  font-size: 24px;
}
.index-h2,
.inner-h2 {
  color: var(--dark-red);
}

@font-face {
  font-family: "Futura-Bk";
  src: url("../fonts/tt0524m_.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geometr";
  src: url("../fonts/tt0140m_.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
/* fonts */

/* common css */
.wrapper {
  width: 100%;
  overflow: hidden;
  max-width: 100%;
}
.main-fluid-container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}
.fluid-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
.common-wrapper {
  padding: 100px 0;
}
/* common css */

/* Button */
.common-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0 0;
}
.common-btn a,
.common-btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  min-width: 150px;
  width: 100%;
  max-width: fit-content;
}
.common-btn a span,
.common-btn button span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.common-btn a img,
.common-btn button img {
  width: 100%;
  max-width: 20px;
  transform: rotate(-40deg);
  filter: invert(100%) sepia(13%) saturate(7449%) hue-rotate(173deg)
    brightness(113%) contrast(119%);
}
.common-btn a:hover img,
.common-btn button:hover img {
  animation: arrowMove 0.5s ease-in-out;
}
@keyframes arrowMove {
  0% {
    transform: rotate(-40deg) translateX(0);
  }
  50% {
    transform: rotate(-40deg) translateX(10px);
    opacity: 0;
  }
  51% {
    transform: rotate(-40deg) translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: rotate(-40deg) translateX(0);
    opacity: 1;
  }
}

.common-btn.product {
  display: none;
}
/* Button */

/* index page css */

/* Contact Us Now */

/* Checkbox */
.input-wrapper.authorization-wrapper {
  border: none !important;
  width: 100% !important;
  text-align: center;
}
.input-wrapper.authorization-wrapper input {
  width: 20px;
}
.input-wrapper.authorization-wrapper label {
  font-size: 16px !important;
  line-height: 1.4;
  color: #fff;
}
/* Checkbox */

.contact-us-now-inner-wrapper {
  background: #f9f9f9;
  padding: 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 100px;
  border: 2px solid #e6e3e3;
  border-radius: 12px;
}
.contact-us-now-inner-wrapper form .common-btn button {
  margin: 0 0 15px;
}
.ip-contact-us-now-wrapper .user-box input,
.ip-contact-us-now-wrapper .user-box-readonly input,
.ip-contact-us-now-wrapper .user-box-readonly select,
.ip-contact-us-now-wrapper .user-box textarea {
  color: #fff;
  font-size: 18px;
}
.contact-us-now-inner-wrapper .user-box-readonly select option {
  color: #303030;
}
.user-box-readonly label {
  top: -15px !important;
  left: 0px !important;
  font-size: 16px !important;
  color: rgb(244, 67, 54) !important;
}

/* Form */
.index-form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.input-wrapper {
  position: relative;
  margin-bottom: 5px;
  width: 45%;
  border-bottom: 1px solid #fff;
}
.index-form .common-btn button {
  background: #fff;
  color: var(--red);
  border: 1px solid #fff0;
}
/* .index-form .common-btn button:hover {
  background: #fff;
  color: var(--red);
  border: 1px solid #fff;
} */
/* Form */

/* Lable Animation */
.user-box input,
.user-box-readonly input,
.user-box select {
  width: 100%;
  padding: 20px 0 10px 0;
  font-size: 18px;
  border: none;
  outline: none;
  background: transparent;
  position: relative;
  color: #fff;
}
.user-box textarea {
  width: 100%;
  margin: 20px 0 10px 0;
  font-size: 18px;
  border: none;
  outline: none;
  background: transparent;
  position: relative;
  height: 22px;
  color: #fff;
}
.user-box label,
.user-box-readonly label {
  position: absolute;
  top: 0px;
  left: 0;
  padding: 10px 0;
  color: #fff;
  pointer-events: none;
  transition: 0.5s;
}
.user-box-readonly label {
  top: -10px;
}
.banner-details-right .user-box-readonly label {
  color: var(--blue);
  top: -15px;
}
.user-box-readonly select {
  padding: 20px 0 10px;
}
/* input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  transition: background-color 5000s ease-in-out 0s; 
  background-clip: content-box !important;
}
input:-webkit-autofill {
  -webkit-text-fill-color: #fff !important; 
}
input:-webkit-autofill {
  -webkit-text-fill-color: #fff !important; 
} */
.textarea-div {
  width: 100% !important;
}
.user-box input:focus,
.user-box input:not(:placeholder-shown) {
  padding: 20px 0 5px 0;
}
.user-box label,
.user-box-readonly label {
  position: absolute;
  top: 0px;
  left: 0;
  padding: 18px 0;
  color: #fff;
  pointer-events: none;
  transition: 0.5s;
}
/* Lable Animation */
/* Contact Us Now *

/* footer */
.footer-main-wrapper {
  background: #dd2b1c;
  position: relative;
}
.footer-main-wrapper > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  transform: translateY(12px) !important;
}
.footer-main-wrapper > span img {
  width: 100%;
  max-width: 1920px;
}
.footer-top {
  padding: 60px;
}
.footer-image img {
  width: 100%;
  max-width: 150px;
  opacity: 0.2;
}
.footer-top > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 300px;
  padding: 0px;
}
.footer-top > a img {
  width: 100%;
  max-width: 300px;
}
.footer-content p,
.footer-content a,
.footer-content label {
  color: #fff;
  font-size: 16px;
  text-align: left;
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
.footer-content p,
.footer-content ul,
.footer-content form {
  width: 100%;
  max-width: 100%;
}
.footer-links li {
  text-align: center;
  margin: 15px 0;
}
.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px 20px;
  padding: 10px 0;
}
.footer-bottom-wrapper p {
  margin: 0;
  font-size: 12px;
  color: #fff;
  width: 100%;
}
.footer-bottom-wrapper a {
  font-size: 12px;
  color: #fff;
  width: 100%;
  text-align: right;
}
.footer-bottom-wrapper a:hover,
.footer-section a:hover,
.footer-section ul li a.act-link,
.ip-contact-links a:hover {
  color: #f44336;
}
.footer-section a:hover span img,
.ip-contact-links a:hover span img {
  filter: invert(47%) sepia(79%) saturate(4257%) hue-rotate(338deg)
    brightness(94%) contrast(103%);
}
.inner-copy-footer-wrapper {
  background: #3a3a3a;
  position: relative;
}
.footer-bottom-wrapper ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.footer-bottom-wrapper ul li a {
  position: relative;
}
.footer-bottom-wrapper ul li a:hover,
.footer-bottom-wrapper ul li a.act-link {
  color: #f44336;
}
.footer-links li a:hover,
.footer-links li a.act-link {
  color: #131313;
}
.footer-image {
  display: none;
}
.footer-contact {
  max-width: 500px;
  position: relative;
}

.contact-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  color: #fff;
  padding: 40px 0px 0px;
}
.footer-contact h4 {
  font-size: 18px;
  padding: 0 0 10px;
  font-weight: 600;
}
.footer-contact p b {
  font-size: 20px;
  color: #fff;
}
.footer-contact a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
  padding: 0 0 10px;
  }
 .footer-contact a:first-of-type {
  cursor: default;
  pointer-events: none; 
}
.footer-contact a span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.footer-contact a span img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}
.footer-social-links h4 {
  padding: 0 0 20px;
}
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.social-icons span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
}
.social-icons span img {
  width: 100%;
  max-width: 25px;
  filter: invert(15%) sepia(87%) saturate(7431%) hue-rotate(342deg)
    brightness(77%) contrast(144%);
}
#wame {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  max-width: 40px;
}

.footer-contact a:nth-of-type(2) span {
  position: absolute;
  left: 0;
  bottom: 22%;
  transform: translateY(-20%);
}
.footer-contact a:nth-of-type(2),
.footer-contact a:nth-of-type(3) {
  padding-left: 30px;
}

/* footer */

/* go to top */
#to-top {
  cursor: pointer;
  position: fixed;
  bottom: 65px;
  right: 10px;
  width: 60px;
  height: 60px;
  z-index: 2;
  padding: 6px;
  border-radius: 50%;
}
#to-top img {
  width: 100%;
  max-width: 50px;
}
/* go to top */

/* ACM Clads */
.upsides-of-clads-wrapper {
  position: relative;
  margin: 80px 0;
}
.upsides-of-clads-wrapper h2 {
  color: #fff;
  position: relative;
  text-align: center;
  padding: 60px 0 0;
}
.upsides-of-clads-wrapper::before {
  content: "";
  position: absolute;
  background: linear-gradient(to left, #dd2b1c 50%, #3a3a3a 50%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.upsides-of-clads-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
}
.tabs {
  width: 100%;
  max-width: 50%;
  padding: 60px;
}
.tab-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  padding: 10px 30px;
  font-size: 22px;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  color: #fff;
  position: relative;
  z-index: 2;
}
/* .tab-link.active::before,
.tab-link:hover::before {
  content: "";
  position: absolute;
  background: #dd2b1c;
  width: 10000px;
  height: 100%;
  right: -79px;
  z-index: -1;
} */
 .tab-link.active::before, .tab-link:hover::before {
	content: "";
	position: absolute;
	background: #dd2b1c;
	width: 100%;
	height: 100%;
	right: -20px;
	z-index: -1;
	min-width: 733px;
}
.tab-link.active span:last-child,
.tab-link:hover span:last-child {
  background: #fff;
}
.tab-link span:last-child {
  width: 50px;
  height: 50px;
  background: #dd2b1c;
  border-radius: 50%;
  position: absolute;
  right: 0;
}
.tab-link span:last-child img {
  width: 100%;
  max-width: 25px;
  transform: rotate(-45deg);
  transition: 0.5s ease-in-out;
}
.tab-link.active span:last-child img,
.tab-link:hover span:last-child img {
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  filter: invert(15%) sepia(100%) saturate(4101%) hue-rotate(348deg)
    brightness(83%) contrast(118%);
}
.upsides-of-clads h3,
.upsides-of-clads p {
  color: #fff;
}
.tab-link:last-child {
  margin: 0;
}
.tab-link.active span:last-child img,
.tab-link:hover span:last-child img {
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  filter: invert(32%) sepia(28%) saturate(6085%) hue-rotate(345deg)
    brightness(84%) contrast(108%);
}
.tab-link span:last-child img,
.tab-link span:last-child img {
  transform: rotate(-45deg);
}
/* li[data-tab="5"], li[data-tab="6"] {display: none;} */
/* active */
.tab-link.active,
.tab-link:hover {
  color: #fff;
}
.tab-link.active span img,
.tab-link:hover span img {
  filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(77deg)
    brightness(102%) contrast(101%);
}
.tab-link.active span::before,
.tab-link:hover span::before {
  background: #fff;
}
/* active */
.tab-link span,
.tab-link span img {
  width: 100%;
  max-width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.tab-link span img {
  filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(77deg)
    brightness(102%) contrast(101%);
}
.tab-link span:first-child:before {
  content: "";
  position: absolute;
  background: #fff;
  width: 1px;
  height: 100%;
  right: -20px;
  top: 0;
  bottom: 0;
}
.our-services-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.our-services-content-wrapper {
  width: 100%;
  max-width: 50%;
  padding: 60px;
}
/* ACM Clads */

/* acm clads */
.acm-clads-wrapper {
  padding: 80px 0px;
}
.acm-top-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px;
  border-radius: 5px;
  width: 100%;
  max-width: 500px;
  position: relative;
}
.acm-top-wrapper:nth-child(1) span:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
}
.acm-top-wrapper:nth-child(1) span:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
}
.acm-top-wrapper:nth-child(1) span:nth-child(1) img {
  width: 100%;
  max-width: 500px;
}
.acm-top-wrapper:nth-child(1) span:nth-child(1) img {
  width: 100%;
  max-width: 500px;
}
.color {
  color: var(--red);
}
.acm-clads-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.image-nav-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0px;
  padding: 0;
  width: 100%;
}
.image-nav-buttons button {
  width: 100%;
  max-width: 40px;
}
.image-nav-buttons button span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-nav-buttons button img {
  width: 100%;
  max-width: 40px;
  filter: invert(16%) sepia(35%) saturate(7418%) hue-rotate(342deg)
    brightness(99%) contrast(131%);
}
.image-nav-buttons button:first-child img {
  transform: rotate(180deg);
}
.acm-bottom-wrapper {
  width: 100%;
  max-width: 700px;
}
.acm-clads-inner-wrapper:nth-of-type(1) {
  flex-direction: row-reverse;
}
.acm-clads-inner-wrapper:nth-of-type(1) p,
.acm-clads-inner-wrapper:nth-of-type(1) h2 {
  text-align: right;
}
.acm-clads-inner-wrapper:first-of-type {
  padding: 0 0 100px !important;
}

.video {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.video img {
  width: 100%;
  max-width: 40px; 
}

.video.video-playing {
  padding: 10px !important;
}
.versatality-inner .video {
  top: -50px;
}
.close-icon {
  font-size: 26px;
  line-height: 1;
  display: block;
  color: #fff;
  text-shadow: none !important;
}
.versatality-inner .video.video-playing {
  top: 4px !important;
  right: 4px;
}
.video-wrapper {
  position: relative;
}
.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: #000;
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video.video-playing {
  background: var(--gery) !important;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video.video-playing img {
  display: none !important;
}

/* our products */
.cladding-products-wrapper h2 {
  text-align: center;
}
.cladding-products-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 40px 0 0;
  gap: 10px;
}
.cladding-product {
  width: 100%;
  padding: 30px;
  border: 1px solid #e3000f2e;
}
.cladding-product > span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.cladding-product > span img {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: contain;
  object-position: center;
}
.cladding-product > span:first-child {
  color: var(--dark-grey);
  font-size: 100px;
  font-weight: bolder;
  font-family: "Futura-Bk";
}
.cladding-product > span:first-child {
  justify-content: flex-start;
}
.cladding-product > span:nth-child(2) {
  justify-content: center;
}
.product-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.product-name p {
  font-size: 36px;
  font-family: "Futura-Bk";
}
.product-name a {
  width: 100%;
  max-width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-name a img {
  width: 100%;
  max-width: 55px;
  filter: invert(15%) sepia(100%) saturate(4101%) hue-rotate(348deg)
    brightness(83%) contrast(118%);
  transform: rotate(90deg);
  position: relative;
  left: -5px;
}
/* our products */

/* application css */
.application-wrapper {
  padding: 0 0 80px;
}
.application-wrapper h2 {
  padding: 0 0 30px;
  text-align: center;
}
.application-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px 10px;
  flex-wrap: wrap;
}
.application-inner {
  width: 100%;
  max-width: 400px;
}
.application-inner span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.application-inner span img {
  width: 100%;
  max-width: 150px;
  filter: invert(35%) sepia(5%) saturate(525%) hue-rotate(188deg)
    brightness(94%) contrast(85%);
}
.application-inner h3 {
  color: #595b61;
  font-size: 24px;
  text-align: center;
  padding: 10px 0px;
}
/* application css */

/* about css */
.ip-about-us-wrapper {
  padding: 80px 0px;
}
.ip-about-us-wrapper > .fluid-container > h2 {
  display: none;
}
.ip-about-us-inner-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.ip-about-us-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.ip-about-us-inner-wrapper > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 200px;
}
.ip-about-us-inner-wrapper > span img {
  width: 100%;
  max-width: 200px;
}
.ip-about-us-right-wrapper {
  width: 100%;
  max-width: 900px;
}
.ip-about-us-inner-wrapper:nth-of-type(2) {
  flex-direction: row-reverse;
}
.ip-about-us-inner-wrapper:nth-of-type(2) p,
.ip-about-us-inner-wrapper:nth-of-type(2) h2 {
  text-align: right;
}
.ip-about-us-inner-wrapper:first-of-type {
  padding: 0 0 30px !important;
}
.ip-vision-mission-main-wrapper {
  padding: 0px 0 80px;
}
.ip-vision-mission-inner-wrapper > p {
  text-align: center;
}
.vision-mission-main {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 80px;
}
.vision-mission {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: var(--red);
  padding: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.vision-mission::before {
  content: "";
  position: absolute;
  background: #f9f9f9;
  width: 95%;
  height: 95%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}
.vision-mission > span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 15px 0px 0px;
}
.vision-mission > span img {
  width: 100%;
  max-width: 150px;
}
.vision-mission h2,
.vision-mission p {
  text-align: center;
  position: relative;
}
.vision-mission p {
  font-size: 16px;
}
/* about css */

/* acm textures css */
.acm-texture-wrapper {
  padding: 80px 0px;
}
.acm-texture-wrapper > .fluid-container > h2 {
  text-align: center;
  display: none;
  padding: 0 0 20px;
}
.acm-texture-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.acm-texture-inner-wrapper > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
}
.acm-texture-inner-wrapper > span img {
  width: 100%;
  max-width: 600px;
}
.acm-texture-right-wrapper {
  width: 100%;
  max-width: 750px;
}
.acm-images-wrapper {
  margin: 0 0 80px;
}
.acm-images-wrapper h2 {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 20px 0px;
}
.acm-images-inner-wrapper > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  margin: auto;
  padding: 50px 0px 40px;
}
.acm-images-inner-wrapper > span img {
  width: 100%;
  max-width: 300px;
}
.acm-images-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px 30px;
  flex-wrap: wrap;
}
.acm-images-inner span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 180px;
}
.acm-images-inner span img {
  width: 100%;
  max-width: 180px;
}
.acm-images h3 {
  text-align: center;
  color: var(--gery);
  padding: 0px;
}
.acm-images p {
  text-align: center;
  margin: 0px 0px;
  color: var(--gery);
}
.acm-buttons {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 20px 0 0;
}
.acm-buttons button {
  background: var(--red);
  width: 100%;
  max-width: fit-content;
  padding: 8px 16px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.acm-images {
  width: 100%;
  max-width: 180px;
}
.acm-images img {
  width: 100%;
  max-width: 180px;
}
.acm-images br {
  display: none;
}
/* acm textures css */

/* synergy css */
.design-synergy-wrapper {
  padding: 80px 0;
}
.design-synergy-wrapper > .fluid-container > h2 {
  display: none;
  text-align: center;
  padding: 0 0 20px;
}
.design-synergy-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.design-synergy-inner-wrapper > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 380px;
}
.design-synergy-inner-wrapper > span img {
  width: 100%;
  max-width: 350px;
}
.design-synergy-content {
  width: 100%;
  max-width: 1000px;
}
/* synergy css */

/* form css */
.form-wrapper {
  margin: 0 0 80px;
}
.form-inner-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  border: 1px solid #e3000f2e;
  padding: 30px;
}
.form-inner-wrapper p {
  margin: 20px 0;
}
.form-md {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px 30px;
}
.form-group {
  width: 30%;
}
.form-group.full-width {
  width: 65%;
}
.form-group label {
  font-size: 18px;
  color: var(--red);
  margin: 0 0 5px;
}
.form-group p {
  font-size: 16px;
  color: #000000e6;
  margin: 5px 0 0;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  background: #f4f4f4;
}
.form-group textarea {
  min-height: 100px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #000000e6;
}
.checkbox-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.checkbox-group label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}
.checkbox input {
  width: 15px;
}
.checkbox label {
  font-size: 16px;
  color: var(--red);
}
.form-inner-wrapper .common-btn {
  justify-content: center;
  width: 100%;
  max-width: 100%;
}
.form-inner-wrapper .common-btn button {    background: var(--red);
    color: #fff;
    border: 1px solid #fff0;}
    .form-inner-wrapper .common-btn button:hover, .footer-content .index-form .common-btn button:hover{color: var(--gery)}
.form-group.full-width ::placeholder {
  color: #ccc;
  font-size: 16px;
}
.submit-text {
  font-size: 16px;
  color: #141414;
  text-align: center;
  margin: 20px 0 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: var(--red);
    -webkit-text-fill-color: #fff;              
    caret-color: #333;                                        
    transition: background-color 9999s ease-in-out 0s;
}

/* Autofill style ONLY for this form */
#mySynergyForm input:-webkit-autofill,
#mySynergyForm input:-webkit-autofill:hover,
#mySynergyForm input:-webkit-autofill:focus,
#mySynergyForm textarea:-webkit-autofill,
#mySynergyForm select:-webkit-autofill {
    -webkit-box-shadow: #fff; 
    -webkit-text-fill-color: #0f0f0f; /* black text */
    caret-color: #0a0a0a;
    transition: background-color 9999s ease-in-out 0s;
}


/* form css */

/* product css */
.our-products-wrapper {
  padding: 80px 0px 10px;
}
.our-products-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 0 0 70px;
}
.our-products-inner-wrapper > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  padding: 50px;
}
.our-products-inner-wrapper > span img {
  width: 100%;
  max-width: 400px;
}
.our-products-inner {
  width: 100%;
  max-width: 750px;
}
.our-products-inner-wrapper:nth-of-type(2) {
  flex-direction: row-reverse;
}
.our-products-inner-wrapper:nth-of-type(2) h2,
.our-products-inner-wrapper:nth-of-type(2) p {
  text-align: right;
}
.our-products-inner-wrapper:nth-of-type(2) .common-btn {
  justify-content: flex-end;
}
.our-products {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background: var(--red);
  margin: 80px 0px 0;
  padding: 10px 20px;
}
.our-products span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100px;
}
.our-products span img {
  width: 100%;
  max-width: 100px;
  opacity: 0.19;
}
.our-products h2 {
  color: #fff;
}
/* product css */

/* 3d clads css */
.ip-acm-clads-wrapper {
  padding: 80px 0px 0;
}
.acm-clads-wrapper > .fluid-container > h2,
.our-products-wrapper > .fluid-container > h2 {
  display: none;
}
.ip-acm-clads-inner-wrapper h2,
.ip-acm-clads-inner-wrapper p {
  text-align: center;
}
.versatality-wrapper > .fluid-container > h2 {
  text-align: center;
  display: none;
}

.versatality-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.versatality-inner-wrapper:nth-child(3) {
  flex-direction: row-reverse;
  padding: 50px 0px 0px;
}
.versatality-inner:nth-of-type(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
}
.versatality-inner-wrapper:nth-child(3) .versatality-inner {
  max-width: 250px;
  width: 100%;
}

.versatality-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}
/* .versatality-inner-wrapper:nth-child(2) .versatality-inner > span {max-width: 350px;}
    .versatality-inner-wrapper:nth-child(3) .versatality-inner > span {max-width: 200px;} */
.versatality-inner span:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 200px;
}
.versatality-inner span:nth-child(1) img {
  width: 100%;
  max-width: 200px;
}
.versatality-inner span:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 200px;
}
.versatality-inner span:nth-child(2) img {
  width: 100%;
  max-width: 200px;
}
/* .versatality-inner  span:nth-child(3){display: flex; justify-content: center; align-items: center; width: 100%; max-width: 200px;}
    .versatality-inner  span:nth-child(3) img {width: 100%; max-width: 200px;} */
/* .versatality-inner-wrapper:nth-child(2) .versatality-inner > span img {max-width: 350px;}
    .versatality-inner-wrapper:nth-child(3) .versatality-inner > span img {max-width: 200px;} */
.versatality-right-wrapper {
  width: 100%;
  max-width: 700px;
}
.versatality-inner-wrapper:nth-child(3) .versatality-right-wrapper {
  max-width: 900px;
}
/* .versatality-inner-wrapper:nth-child(3) p, .versatality-inner-wrapper:nth-child(3) h2 {text-align: right;} */
.versatality-right-wrapper ul {
  line-height: 1.6;
}
.versatality-right-wrapper ul li {
  font-size: 18px;
  color: #4c4e4d;
}

.versatality-main-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px 10px;
  flex-wrap: wrap;
}
.versatality-main {
  width: 100%;
  max-width: 280px;
  border: 1px solid #e3000f2e;
  padding: 15px 15px 0 15px;
  border-radius: 5px;
}
.versatality-main span {
  font-size: 22px;
  color: var(--red);
}
/* .versatality-main p */
/* 3d clads css */

/* louvers css */
.louvers-wrapper {
  padding: 80px 0px 0px;
}
.louvers-inner-wrapper h2 {
  text-align: center;
}
/* louvers css */

/* fin louvers css */
.fin-louvers-wrapper {
  padding: 80px 0px 0px;
}
.fin-louvers-inner-wrapper h2 {
  text-align: center;
}
/* fin louvers css */

/* resources css */
.resources-wrapper {
  padding: 80px 0px 0px;
}
.resources-inner-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.resources-inner-wrapper h2 {
  text-align: center;
}

.brochure-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 80px 0px;
}
.brochure-inner span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
}
.brochure-inner > span img {
  width: 100%;
  max-width: 300px;
  border: 3px solid #ececec;
}
.brochure-inner .common-btn {
  justify-content: center;
}
.brochure-inner     .common-btn a img{transform: rotate(0deg)}
.brochure-inner .common-btn a:hover img{animation: none;}
.subtext {
  font-size: 28px;
  display: block;
}
.subtext-one {
  font-size: 28px;
  display: inline-block;
}
.act-link {
  color: var(--red) !important;
}
.gallery-wrapper {
  padding: 80px 0;
}
.gallery-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.gallery-inner-wrapper span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
}
.gallery-inner-wrapper span img {
  width: 100%;
  max-width: 400px;
}

.klaado-aeries-inner-wrapper {
  position: relative;
  padding: 50px 0 0;
}
/* .klaado-aeries-inner-wrapper span:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: auto;
  border: 1px solid #e3000f2e;
  padding: 20px;
} */
.klaado-aeries-inner-wrapper span:nth-child(1) img {
  width: 100%;
  max-width: 800px;
}
/* .klaado-aeries-inner-wrapper span:nth-child(1) {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: auto;
  border: 1px solid #e3000f2e;
  padding: 20px;
} */
/* .klaado-aeries-inner-wrapper span:nth-child(1) {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 800px;
	margin: auto;

	top: -2px;
	right: -1px;
} */
 .klaado-aeries-inner-wrapper span:nth-child(1) {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 800px;
	margin: auto;

	top: -1px;
	right: -1px;
	min-height: 464px;
}
.klaado-aeries-inner-wrapper span iframe{
  max-width: 774px !important;
}
.close-icon {
	min-height: 30px !important;
}
.klaado-aeries-inner-wrapper span:nth-child(1) a {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer; z-index: 1;
}
.klaado-aeries-inner-wrapper span:nth-child(1) a img {
  width: 100%;
  max-width: 40px;
  filter: invert(1);
}
.klaado-aeries-inner-wrapper span:nth-child(1) a.video-playing {
	background: var(--gery) !important;
	width: 30px;
	height: 30px;
	padding: 0;
	border-radius: 50%;
	font-size: 20px;
	color: #fff;
	line-height: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0 !important;
	right: 0 !important;
}
.klaado-aeries-inner-wrapper a.video-playing img {
  display: none !important;
}

.quote-container h3 {
  color: #fff;
  padding: 5px 0 20px;
  font-size: 26px;
}
.quote-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.quote-container .rot {
  padding: 20px;
  position: relative;
  width: 90%;
  max-width: 500px;
  background: var(--red);
}
.input-wrapper input {
  width: 100%;
  padding: 10px 0;
}
.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}
.quote-container .index-form .common-btn button {
  font-size: 16px;
}
/* resources css */

/* Inner Banner */
.inner-page-banner-wrapper {
  height: 400px;
  position: relative;
  margin: 0 20px;
    background: var(--red);
}
.inner-page-banner-wrapper .main-fluid-container {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.inner-page-banner-wrapper .main-fluid-container .banner-text {
  position: relative;
  width: 100%;
  max-width: 70%;
}
.banner-text h1 {
  color: #fff;
  line-height: 1;
  text-align: left;
}
.banner-text p {
  color: #fff;
  text-align: left;
}
.banner-text nav ol {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin: 15px 0 0;
}
.banner-text nav ol li {
  color: #fff;
}
.banner-text nav ol li a,
.banner-text nav ol li span {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-text nav ol li span img {
  width: 100%;
  max-width: 20px;
  filter: invert(100%) sepia(0%) saturate(6855%) hue-rotate(129deg)
    brightness(104%) contrast(104%);
  animation: animName 20s linear infinite;
}
@keyframes animName {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.active-breadcrumb {
  border-bottom: 1px solid #ffffffa1;
}
.ip-banner-inner-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 35px;
  overflow: hidden;
}
.ip-banner-inner-wrapper::after {
  content: "";
  position: absolute;
  background: url(../images/klaado-loader-logo.webp) no-repeat center
    center/contain;
  width: 100%;
  height: 100%;
  top: 0;
  right: 40px;
  max-width: 300px;
}
.banner-text-heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.banner-text-heading span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 70px;
}
.banner-text-heading span img {
  width: 100%;
  max-width: 70px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(261deg)
    brightness(102%) contrast(101%);
}
.active-breadcrumb {
  border-bottom: 1px dashed #fff;
  font-size: 18px;
}
/* Inner Banner */

.inner-h3,
.inner-h2 {
  color: var(--red);
}
.inner-h3 span,
.inner-h2 span {
  color: var(--gery);
}

/* Installation */
.installation-wrapper {
  padding: 60px 0;
}
.installation-wrapper h2 {
  text-align: center;
  padding: 0 20px;
}
.installation-process {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  border-bottom: 2px solid #d8d8d8;
  position: relative;
}
.installation-process:nth-child(even) {
  flex-direction: row-reverse;
}
.installation-content {
  width: 100%;
  max-width: 50%;
}
.installation-content li {
  color: #131313;
}
.installation-process:last-child {
  border: none;
}
.installation-process > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
}
.installation-process > span img {
  width: 100%;
  max-width: 500px;
}
.common-ul li {
  position: relative;
  padding: 0 0 0 25px;
  margin: 15px 0;
  line-height: 1.6;
}
.common-ul li:last-child {
  margin: 0;
}
.installation-heading > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 10px;
}
.installation-heading > span img {
  width: 100%;
  max-width: 50px;
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(198deg)
    brightness(107%) contrast(106%);
}
.installation-heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 0 0 20px;
}
.common-ul li::before {
  content: "";
  position: absolute;
  background: var(--red);
  width: 12px;
  height: 12px;
  left: 0;
  top: 7px;
  margin: auto;
  border-radius: 2px;
}
.installation-process:first-child {
  padding-top: 20px;
}
/* Installation */

/* ACM 3D Clads */
.visually-striking-themes-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 60px 50px;
  flex-wrap: wrap;
  padding: 40px 0 0;
}
.visually-striking-theme {
  width: 100%;
  max-width: 360px;
  padding: 20px 20px 50px;
  border: 2px solid #81828521;
  position: relative;
}
.visually-striking-theme > span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.visually-striking-theme > span img {
  width: 100%;
  max-width: 100px;
}
.visually-striking-theme h3 {
  color: var(--bright-grey);
  text-align: center;
  padding: 10px 0;
}
.visually-striking-theme p {
  text-align: center;
  margin: 0;
}
.visually-striking-theme .common-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
  justify-content: center;
}
.visually-striking-themes-wrapper {
  padding: 90px 0px;
}
.visually-striking-themes-wrapper h2 {
  text-align: center;
}
.visually-striking-theme p br {
  display: none;
}
.clads-available-sizes-wrapper {
  padding: 60px 0;
}
.clads-available-sizes-wrapper h2 {
  text-align: center;
  padding: 0 0 40px;
}
.clads-available-sizes-inner-wrapper {
  background: #1e1e1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 30px;
  border-radius: 20px;
}
.clads-available-sizes {
  width: 100%;
  max-width: 300px;
}
.clads-available-sizes span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.clads-available-sizes span img {
  width: 100%;
  max-width: 250px;
  filter: invert(22%) sepia(99%) saturate(6727%) hue-rotate(349deg)
    brightness(85%) contrast(113%);
}
.clads-available-sizes p {
  color: #fff;
  text-align: center;
  margin: 15px 0 5px;
}
/* ACM 3D Clads */

/* Error */
.error-wrapper {
  position: relative;
}
.error-wrapper::before {
  content: "";
  position: absolute;
  background: #000000bf;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.error-wrapper header {
  position: relative;
  background: #ffffffd4;
}
.error-wrapper header.scrolled-header {
  position: fixed;
}
.error-wrapper footer {
  position: relative;
}
.error-wrapper footer .footer-main-wrapper > span img {
  filter: invert(1);
}
.inner-page-banner-wrapper.error {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}
.inner-page-banner-wrapper.error h2,
.inner-page-banner-wrapper.error p {
  color: #fff;
  text-align: center;
}
.inner-page-banner-wrapper.error .common-btn {
  justify-content: center;
}
/* Error */

/* Contact Us */
.ip-contact-wrapper {
  padding: 100px 0;
}
.contact-form {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}
.contact-form > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.contact-form > span::before {
  content: "";
  position: absolute;
  background: #ae000b52;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.contact-form > span img {
  width: 100%;
  max-width: 500px;
  height: 100%;
  object-fit: cover;
}
.contact-form-main {
  background: #1e1e1e;
  padding: 40px 20px;
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
}
.contact-form-main .input-wrapper {
  width: 100%;
}
.contact-form-main h2 {
  color: #fff;
}
.contact-form-main form {
  padding: 35px 0 0;
}
/* Contact Us */

.ip-clads-products-main-wrapper {
  padding: 80px 0 65px;
}
.ip-clads-products-inner-wrapper,
.louvers-inner-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
/* .clads-products-slides {padding: 0 0 100px;} */
.ip-clads-products-inner-wrapper > span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.ip-clads-products-inner-wrapper > span img {
  width: 100%;
  max-width: 80px;
  filter: invert(41%) sepia(0%) saturate(1604%) hue-rotate(218deg)
    brightness(76%) contrast(76%);
}

.finlouvers-image-inner-wrapper {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.finlouvers-image-inner-wrapper img {
  width: 100%;
  max-width: 600px;
}

.clads-product-heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.clads-product-heading span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 30px;
}
.clads-product-heading span img {
  width: 100%;
  max-width: 30px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(261deg)
    brightness(102%) contrast(101%);
}
.clads-product-heading h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
}
.clads-product-heading-main {
  background: var(--red);
  padding: 5px 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.clads-product-no-of-slides h3 {
  width: 180px;
  padding: 0;
  font-weight: 100;
  text-align: center;
  color: var(--red);
}
.clads-product-no-of-slides p {
  margin: 15px 0 0;
  text-align: center !important;
}
.clads-product-no-of-slides p span:last-child {
  opacity: 0.5;
}
.size-variant > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
}
.size-variant > span img {
  width: 100%;
  max-width: 500px;
}
.size-variants-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin: 20px 0;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
}
.size-variant {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 0 0 15px 0;
  border-right: 2px solid #c9c9c9;
  position: relative;
}
.size-variant:last-child {
  border: none;
}
.colour-variant {
  position: relative;
  width: 100%;
  max-width: 30px;
  cursor: pointer;
}
/* .size-variant-images {height: 300px;overflow: hidden;} */
.colour-variant span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: aqua;
  border-radius: 50%;
}
.colour-variant p {
  position: absolute;
  top: -48px;
  font-size: 13px;
  text-wrap: nowrap;
  opacity: 0;
  background: #f1f1f1;
  padding: 5px;
  z-index: -1;
}
.colour-variant:hover p {
  opacity: 1;
  z-index: 1;
}
.colour-variants-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 21px 6px;
  width: 100%;
  flex-wrap: wrap;
  margin: auto;
  background: #fff;
  width: 100%;
  max-width: 95%;
  margin: auto;
  padding: 20px;
  border: 1px solid #c9c9c9;
  border-radius: 7px;
}
.size-variant-main {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.size-variant-images span {
  justify-content: center;
  align-items: center;
  width: 100%;
}
.full-view a {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  top: 30px;
  left: 30px;
  color: var(--red);
  display: none;
}
.size-variant-images span:not(:first-child) {
  display: none;
}
.full-view a span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 70px;
	
}
.full-view a span img {
	width: 100%;
	max-width: 60px;
}
.size-variant > p {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: #6f6f6d;
  padding: 20px 0px;
  line-height: 1;
  margin: 0;
}
.clads-product-no-of-slides {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 260px;
  margin: 30px auto 0;
}
.clads-product-no-of-slides button span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -22px;
}
.clads-product-no-of-slides button span img {
  width: 100%;
  max-width: 40px;
  filter: invert(22%) sepia(52%) saturate(4666%) hue-rotate(352deg)
    brightness(125%) contrast(104%);
}
.clads-product-no-of-slides button:nth-child(1) span img {
  transform: rotate(180deg);
}
.clads-number-wrapper h3 {
  color: #fff;
  text-align: right;
  padding: 0px;
}
.clads-number-wrapper {
  width: 100%;
  max-width: 250px;
}
.clads-product {
  text-align: end;
}

.size-variant-slides-main.owl-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 95%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 0px;
}
.size-variant-slides-main.owl-carousel .owl-nav button {
  position: relative;
  width: 100%;
  max-width: 50px;
  height: 50px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.size-variant-slides-main.owl-carousel .owl-nav button::before {
  content: "";
  position: absolute;
  background: url(../images/icons/arrow-nav.webp) no-repeat center
    center/contain;
  width: 100%;
  max-width: 30px;
  height: 30px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(261deg)
    brightness(102%) contrast(101%);
}
.size-variant-slides-main.owl-carousel .owl-nav button span {
  display: none;
}
.size-variant-slides-main.owl-carousel .owl-nav button.owl-prev::before {
  transform: scaleX(-1);
}

.ip-banner-inner-wrapper::before {
  display: none;
}
.ip-banner-inner-wrapper::after {
  background: url(./images/banners/marvels-icon.webp) no-repeat center
    center/contain;
  opacity: 1;
}
.clads-products-slides-inner-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: auto;
}
/* .initial-thumbnail {position: relative; display: block; width: 100%; text-align: center; z-index: 1; overflow: visible;}
    .initial-thumbnail>img {width: 100%; height: auto; object-fit: cover; display: flex; justify-content: center; align-items: center;} */
.initial-thumbnail {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9 !important;
}
.initial-thumbnail > img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
@keyframes floatUpDown {
  0% {
    transform: translate(-50%, -50%) translateX(0);
  }
  100% {
    transform: translate(-50%, -50%) translateX(-10px);
  }
}
.size-variant-main:not(.revealed) .size-variant {
  display: none;
}
.size-variant-main.revealed .initial-thumbnail {
  display: none;
}
.size-variants-wrapper {
  position: relative;
  overflow: visible !important;
  z-index: 10;
}
.clads-product-no-of-slides.down-nav {
  padding: 0px;
}
/* .initial-thumbnail {position: relative; display: flex; justify-content: center; align-items: center;} */
.initial-thumbnail-button button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 8;
}
.initial-thumbnail-button button:nth-child(2) {
  left: -49px;
}
.initial-thumbnail-button button:nth-child(2) img {
  transform: rotate(180deg);
}
.initial-thumbnail-button button:nth-child(3) {
  right: -60px;
}
.initial-thumbnail-button button img {
  width: 40px;
  height: 40px;
  filter: invert(11%) sepia(99%) saturate(6112%) hue-rotate(352deg)
    brightness(86%) contrast(108%);
}
.initial-thumbnail-button button:nth-child(1) {
  right: -49px;
}
@media screen and (max-width: 480px) {
  .carousel-prev,
  .carousel-next {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
  .carousel-viewport {
    width: 100%;
    overflow: hidden;
    touch-action: pan-x;
    cursor: grab;
  }
  .carousel-viewport:active {
    cursor: grabbing;
  }
  .carousel-inner {
    transition: transform 0.3s ease;
    will-change: transform;
  }
}

.nav-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: var(--red);
}
.nav-buttons button {
  padding: 13px 20px;
  position: relative;
  font-family: "Futura-Bk";
}
.nav-buttons button:nth-child(2) {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.nav-buttons button:nth-child(2) img {
  width: 23px;
  height: 23px;
}
.nav-buttons button:nth-child(1) {
  color: #fff;
}
.nav-buttons span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-buttons span img {
  width: 100%;
  max-width: 20px;
  filter: invert(1);
}
.nav-buttons button:nth-child(1)::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: #ffffff;
  width: 40px;
  height: calc(100% + 5px);
}
.nav-buttons button:nth-child(1)::before {
  clip-path: polygon(46% 0, 100% 50%, 46% 100%, 16% 100%, 72% 50%, 16% 0%);
  left: unset;
  right: -25px;
}

/* Chethan Css */

.size-variant-slides-main {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}
/* .carousel-viewport { width: 100%; height: 100%; overflow: hidden;} */
.carousel-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 600px;
  margin: auto;
  min-height: 377px;
}
.carousel-inner {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease;
}
.carousel-inner img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 5px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.carousel-prev {
  left: 40px;
}
.carousel-next {
  right: 40px;
}
.carousel-prev img,
.carousel-next img {
  width: 20px;
  height: 20px;
  filter: invert(100%);
}
.carousel-prev img {
  transform: scaleX(-1);
}
.size-variant-images .size-variant-slides-main {
  display: none;
}
.size-variant-images .size-variant-slides-main.active {
  display: block;
}
.size-variant-main {
  display: none;
  flex-direction: row;
}
.size-variant-main[style*="flex"] {
  display: flex;
}
/* Chethan Css */

/* Sitemap Css */
.sitemap-wrapper {
  padding: 60px 0;
}
.sitemap-content {
  width: 100%;
  max-width: 50%;
}
.sitemap-content .common-ul {
  margin-left: 30px;
}
.sitemap-content a:hover {
  color: #e3000f;
}
.sitemap-content .common-ul .child-common-ul {
  margin-left: 30px;
}
/* Sitemap Css */

/* Our Products Page */
.our-productss-wrapper {
  padding: 80px 0;
}
.acm-productss h2 {
  text-align: center;
}
.our-productss-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
.our-productss-inner-wrapper {
  width: 100%;
  max-width: 600px;
}
.acm-productss {
  width: 100%;
  max-width: 600px;
  padding: 20px 0px 0px;
}
.our-productss-inner-wrapper > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 360px;
  position: relative;
  padding: 0px;
  margin: auto;
}
.our-productss-inner-wrapper > span img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  filter: invert(22%) sepia(99%) saturate(6727%) hue-rotate(349deg)
    brightness(85%) contrast(113%);
}
/* Our Products Page */

/* down nav */
.down-nav {
  padding: 0 40px;
}
.coming-soon {
  text-align: center;
  padding: 60px 20px;
  font-size: 3rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 1px;
}
.coming-soon p {
  display: inline-block;
  padding: 20px 40px;
  font-size: 50px;
}

.nav-buttons button:first-child {
  display: flex;
  text-align: left;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.grecaptcha-badge {
  display: none !important;
}
.pswp__ui--fit .pswp__caption, .pswp__ui--fit .pswp__top-bar {
	background-color: var(--red) !important;
}
.pswp__caption__center, .pswp__counter, .pswp__button--arrow--left::before, .pswp__button--arrow--right::before {
	filter: invert(100%) brightness(200%); text-align: center;

}


 .pswp__item,
    .pswp__img,
    .pswp__zoom-wrap {
      background: #ffffff !important;
    }

  

