@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* font-family: "Prompt", sans-serif; */
/* font-family: "Roboto", sans-serif; */
/* font-family: "Barlow Semi Condensed", sans-serif; */
/* font-family: "Barlow Condensed", sans-serif; */

:root {
  /*** theme colors ***/
  --theme-color: #3a3a3a;
  /*--theme-color-2: #f4c804;*/
  --theme-color-2: #1a8ac7;
  --theme-color-3: #0f0f0f;
  --primary-color: #1a8ac7;
  --secondary-color: #1a8ac7;
}

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

body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Barlow Condensed", sans-serif;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s all;
}

a:hover {
  color: #000;
}

.theme-btn {
  padding: 18px 40px;
  background-color: var(--theme-color-2);
  color: #fff !important;
  border-radius: 5px;
  text-transform: capitalize !important;
  transition: 0.2s all;
  display: inline-block;
}

.theme-btn:hover {
  background: var(--theme-color);
  color: #fff !important;
}

.theme-btn-2 {
  padding: 14px 23px;
  background-color: #fff;
  color: var(--theme-color-2) !important;
  border-radius: 5px;
  text-transform: capitalize !important;
  transition: 0.2s all;
  display: inline-block;
}

.theme-btn-2:hover {
  color: #fff !important;
  background: var(--theme-color-2);
}

.theme-btn-3 {
  padding: 18px 40px;
  background-color: #000;
  color: #fff !important;
  border-radius: 5px;
  text-transform: capitalize !important;
  transition: 0.2s all;
  display: inline-block;
}

.theme-btn-3:hover {
  background: var(--theme-color);
  color: #fff !important;
}

.autoRotate {
  animation: autoShowRotate;
  animation-timeline: view();
}

@keyframes autoShowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.autoMoveY {
  animation: autoMover 3.5s linear infinite;
}

@keyframes autoMoverY {
  50% {
    transform: translateY(-20px);
  }
}

.autoMoveX {
  animation: autoMoverX 3.5s linear infinite;
}

@keyframes autoMoverX {
  50% {
    transform: translateX(-20px);
  }
}

/* Header CSS Start */

header {
  margin-top: 20px;
}

.logo img {
  width: 214px;
  height: 150px;
  object-fit: contain;
}

.navigation {
  width: 66%;
}

.navigation ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  list-style: none;
}

.serv-a {
  position: relative;
  cursor: pointer;
}

.serv-a a {
  padding-bottom: 28px;
}

li.serv-a a i {
  padding-left: 11px;
}

.nav-dropdown {
  position: absolute;
  top: 50px;
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-dropdown ul {
  display: block;
  background-color: var(--theme-color);
}

.nav-dropdown ul li a {
  padding: 10px 20px;
  width: 270px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.serv-a:hover .nav-dropdown {
  visibility: visible;
  opacity: 1;
  clip: inherit;
  -webkit-transform: scaleY(1);
  -khtml-transform: scaleY(1);
  transform: scaleY(1);
}

.top-bar {
  background-color: #000;
  padding: 7px 0;
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 11;
}

.top-bar a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

/*.top-bar a::before {*/
/*  content: "";*/
/*  height: 11px;*/
/*  width: 11px;*/
/*  display: inline-block;*/
/*  background-color: #ffffff;*/
/*  border-radius: 100%;*/
/*  position: relative;*/
/*  margin-right: 10px;*/
/*}*/

.offcanvas,
.offcanvas-btn {
  display: none;
}

a.btn.offcanvas-btn {
  display: none;
}

.closebtn {
  position: absolute;
  right: 20px;
  top: 30px;
  cursor: pointer;
}

.closebtn i {
  color: #000;
  font-size: 30px;
}

.serv-a2 {
  position: relative;
  cursor: pointer;
}

.nav-dropdown2 {
  position: absolute;
  top: 0;
  right: -269px;
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-dropdown2 ul {
  display: block;
  background-color: var(--theme-color);
}

.nav-dropdown2 ul li a {
  padding: 10px 20px;
  width: 270px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.serv-a2:hover .nav-dropdown2 {
  visibility: visible;
  opacity: 1;
  clip: inherit;
  -webkit-transform: scaleY(1);
  -khtml-transform: scaleY(1);
  transform: scaleY(1);
}

.serv-a2 a {
  padding-bottom: 28px;
}

li.serv-a2 a i {
  transform: rotate(-90deg);
  padding: 0;
}

.navigation ul li a {
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}

.navigation ul li a:hover {
  color: var(--theme-color-2);
}

/* Header CSS End */

/* Banner CSS Start */

.banner-swiper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner-section .swiper-slide {
  opacity: 0;
  transition: opacity 1s ease;
}

.banner-section .swiper-slide-active {
  opacity: 1;
}

.banner-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.banner-img::before {
  content: "";
  background-color: rgb(12, 11, 11, 0.1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.main-banner-section .banner-img img {
  object-fit: cover;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  position: relative;
  z-index: 0;
  transform: scale(1);
}

.banner-img img.animate {
  animation: zoomCycle 4s ease-in-out forwards;
}

@keyframes zoomCycle {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.banner-wrap {
  position: absolute;
  top: 38px;
  z-index: 1;
  width: 100%;
}

.head-wrap {
  padding: 15px;
  display: flex;
  align-items: center;
  background: #2020207d;
  border-radius: 15px;
  justify-content: space-between;
  position: relative;
  z-index: 99;
}

.banner-content {
  margin-top: 50px;
  position: relative;
  z-index: 0;
}

.banner-content h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 100px;
  font-weight: 800;
  line-height: 100px;
  margin-bottom: 20px;
}

.banner-content p {
  color: #fff;
  font-size: 19px;
  margin-bottom: 30px;
}

/* Banner CSS End */

/* Inspire CSS Start */

.inspire-section {
  padding: 70px 0 100px;
}

.inspre-left {
  width: 500px;
  height: 500px;
  object-fit: revert;
  margin-left: 100px;
}

.inspre-left .banner-img,
.inspre-left .inspire-swiper {
  height: 100%;
  border-radius: 15px;
}

.inspre-left .banner-img img {
  animation: none;
  animation-fill-mode: unset;
}

.inspre-left .banner-img::before {
  content: unset;
}

.inspire-head {
  margin-left: 100px;
  z-index: 9;
  position: relative;
}

.inspire-head h2 {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  color: #000;
  text-transform: uppercase;
  line-height: normal;
}

.inspire-head h2 span {
  color: var(--theme-color-2);
}

.inspire-right {
  position: relative;
  padding: 50px 0 0 60px;
}

.anim-img {
  position: absolute;
  top: -180px;
  right: 180px;
  width: 178px;
  height: 208px;
  opacity: 0;
  animation: flyInRotate1 1.2s ease-out forwards;
  transform: rotate(320deg) scaleX(-1);
}

@keyframes flyInRotate1 {
  0% {
    transform: rotate(320deg) scaleX(-1);
    opacity: 0;
  }
  100% {
    transform: rotate(185deg) scaleX(-1);
    opacity: 1;
  }
}

.anim-img img {
  width: 100%;
}

.inspire-right h3 {
  text-transform: uppercase;
  color: var(--theme-color-3);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}

.inspire-right p {
  font-size: 18px;
  font-weight: 400;
  color: var(--theme-color);
  opacity: 0.9;
  margin-bottom: 15px;
}

.inspire-section2 .inspire-head h2 {
  font-size: 70px;
  text-align: right;
  line-height: normal;
  margin: 0 auto 25px;
  width: 100%;
}

.inspire-section2 .inspire-head {
  margin-right: 80px;
  margin-left: 0;
  z-index: 9;
}

.inspire-section2 .anim-img {
  top: -120px;
  left: 90px;
  transform: rotate(200deg) scaleX(1);
}

.inspire-section2 {
  padding-top: 0;
}

.inspire-section2 .inspire-right {
  padding-top: 130px;
}

/* Inspire CSS End */

/* Product CSS Start */

.product-section {
  padding-bottom: 50px;
}

.product-head h2 {
  font-size: 70px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}

.product-head h2 span {
  color: var(--theme-color-2);
}

.product-section .nav-tabs {
  width: 100%;
  border: 0;
}

.product-section .nav-tabs .nav-item {
  width: 50%;
}

.product-section .nav-tabs .nav-item .nav-link {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 0.6em 1.5em;
  background: var(--theme-color-2);
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  line-height: normal;
  border: 0;
  border-radius: 0;
}

.product-section .nav-tabs .nav-item .nav-link.active {
  background-color: #000;
}

.product-section .tab-content-inner .nav-tabs {
  justify-content: center;
  margin: 40px 0 45px;
  gap: 20px;
}

.product-section .tab-content-inner .nav-tabs .nav-item {
  width: auto;
}

.product-section .tab-content-inner .nav-tabs .nav-item .nav-link {
  text-transform: capitalize;
  padding: 6px 15px;
  text-decoration: none;
  line-height: normal;
  font-size: 19px;
}

.product-box img {
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.product-box h4 {
  margin: 15px 0 10px;
  text-align: center;
  text-transform: uppercase;
  color: #444444;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 22px;
}

.product-box h5 {
  color: #444444;
  font-size: 19px;
  font-weight: 400;
}

.product-wrap {
  background: #fff none repeat scroll 0 0;
  bottom: -90px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.18);
  left: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  text-align: center;
  transition: all 0.4s ease 0s;
  padding: 7px 15px 20px;
  width: 100%;
}

.product-box:hover .product-wrap {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.product-boxes .row {
  gap: 40px 0;
}

.product-box {
  position: relative;
}

.product-wrap a {
  text-decoration: underline;
}

.product-wrap a:hover {
  color: var(--theme-color-2);
}

.product-wrap h4 a:hover {
  color: var(--theme-color-2);
}

.product-wrap h4 a {
  text-decoration: unset;
  color: #444444;
}

.see-more {
  text-align: center;
  margin-top: 15px;
}

/* Product CSS End */

/* Specialities CSS Start */

section.specialities-section {
  padding: 100px 0;
  background: var(--theme-color-3);
}

.special-head {
  margin-bottom: 80px;
}

.special-head h2 {
  font-size: 70px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  line-height: normal;
}

.special-head h2 span {
  color: var(--theme-color-2);
}

.anim-img2 {
  width: 210px;
  height: 210px;
  transform: rotate(196deg);
  animation: flyInRotate2 1.2s ease-out forwards;
}

@keyframes flyInRotate2 {
  0% {
    transform: rotate(320deg);
    opacity: 0;
  }
  100% {
    transform: rotate(196deg);
    opacity: 1;
  }
}

.anim-img2 img {
  width: 100%;
  filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
}

.special-right img {
  width: 93%;
  height: 520px;
  object-fit: cover;
  border-radius: 10px;
}

.special-right img {
  width: 93%;
  height: 520px;
  object-fit: cover;
  border-radius: 10px;
}

.special-right .banner-img::before {
  content: unset;
}

.special-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.special-wrap h4 {
  font-size: 72px;
  font-weight: 700;
  color: var(--theme-color-2);
  width: 30%;
}

.special-txt h5 {
  font-size: 31px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Barlow Condensed";
  margin-bottom: 10px;
}

.special-txt p {
  color: #e5e5e5;
  font-size: 15px;
}

.special-txt {
  width: 100%;
}

/* Specialities CSS End */

/* Why Choose CSS Start */

section.why-choose-section {
  padding: 100px 0;
}

.why-choose-left img {
  width: 100%;
  border-radius: 10px;
  width: 100%;
  height: 576px;
}

.why-choose-left .banner-img::before {
  content: unset;
}

.why-choose-left h2 {
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  margin-left: 20px;
}

.why-choose-left h2 span {
  color: var(--theme-color-2);
}

.why-choose-left {
  position: sticky;
  padding: 15px 0 100px 60px;
  top: 0;
}

.why-choose-left::before {
  content: "";
  position: absolute;
  top: 0;
  right: 50px;
  width: 3200px;
  height: 100%;
  background-color: #202020;
  z-index: -1;
  border-radius: 10px;
}

.why-choose-box {
  padding: 30px;
  border: 2px solid #d8d8d8;
  border-radius: 10px;
  width: 93%;
  transition: 0.2s all;
}

.why-choose-box h4 {
  color: #000;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-choose-box p {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}

.why-choose-right {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.why-choose-box:hover {
  background: var(--theme-color-2);
}

.why-choose-box:hover h4,
.why-choose-box:hover p {
  color: #fff;
}

/* Why Choose CSS End */

/* Testimonials CSS Start */

.testimonial-section {
  padding-bottom: 50px;
}

.testi-box {
  padding: 60px 30px 50px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
  border: 2px solid #d8d8d8;
  border-radius: 10px;
  width: 92% !important;
}

.testi-box h4 {
  color: #181d23;
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 10px;
}

.testi-box p {
  font-size: 16px;
  text-align: left;
  margin: 0;
}

.testi-right {
  margin-bottom: 60px;
  margin-left: 60px;
}

.testi-right h2 {
  color: #0f0f0f;
  font-weight: 700;
  font-size: 70px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.testi-right h2 span {
  color: var(--theme-color-2);
}

.testimonial-section .row {
  align-items: end;
}

.testimonial-section .slick-dots {
  bottom: -60px;
}

.testimonial-section .slick-dots li button:before {
  width: 9px;
  height: 9px;
  padding: 0;
  margin: 0 5px;
  border-radius: 50%;
  background: #96989b;
  border: 0;
  content: "" !important;
  opacity: 1;
}

.testimonial-section .slick-dots li {
  margin: 0;
}

.testimonial-section .slick-dots li.slick-active button:before {
  background: #575a5f;
  opacity: 1;
}

.testimonial-inner-section {
    padding: 70px 0;
}

.testimonial-inner-section .testi-box {
    margin-bottom: 30px;
}

.testimonial-inner-section .testi-box p {
    height: 100px;
    overflow-y: auto;
}

.testimonial-inner-section .testi-head h2 {
    color: #0f0f0f;
    font-weight: 700;
    font-size: 70px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-inner-section .testi-head h2 span {
    color: var(--theme-color-2);
}

/* Testimonials CSS End */

/* Consultation CSS Start */

.consultation-section {
  padding: 50px 0;
  background-color: var(--theme-color-2);
}

.consultation-section .row {
  align-items: center;
}

.consult-left h3 {
  color: #fff;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  width: 90%;
  margin-bottom: 0;
}

/* Consultation CSS End */

/* Contact CSS Start */

.contact-section {
  padding: 100px 0;
}

.contact-left h2 {
  text-transform: uppercase;
  color: #0f0f0f;
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 70px;
}

.contact-left h2 span {
  color: var(--theme-color-2);
}

.contact-left p {
  font-size: 19px;
  color: #6e6b6b;
  line-height: normal;
  margin-bottom: 35px;
}

.contact-left form input,
.contact-left form textarea {
  background-color: transparent;
  border: 1px solid #69727d;
  color: #1f2124;
  flex-grow: 1;
  max-width: 100%;
  vertical-align: middle;
  width: 100%;
  border-radius: 3px;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
  margin-bottom: 10px;
}

.contact-left {
  width: 90%;
}

.contact-left form button {
  width: 100%;
  border: 0;
  font-weight: 700;
}

.contact-left form textarea {
  height: 96px;
}

.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #b0b0b0;
  margin-bottom: 25px;
  width: 90%;
  padding: 30px;
  border-radius: 10px;
}

.phone-wrap img {
  width: 50px;
  height: 50px;
  margin-bottom: 23px;
  filter: brightness(0) saturate(100%) invert(38%) sepia(100%) saturate(548%)
    hue-rotate(161deg) brightness(97%) contrast(90%);
}

.phone-wrap h5 {
  margin-bottom: 16px;
}

.phone-wrap h5 {
  font-size: 29px;
  font-weight: 600;
  color: #000;
  font-family: "Barlow Condensed";
}

.phone-wrap a {
  color: var(--theme-color);
  font-weight: 400;
  font-size: 16px;
}

/* Contact CSS End */

/* Newsletter CSS Start */

.newsletter-section {
  padding: 60px 0 50px;
  background-color: #202020;
}

.news-left h2 {
  text-transform: uppercase;
  color: #fff;
  font-size: 65px;
  font-weight: 700;
  line-height: 90px;
}

.news-left h2 span {
  color: var(--theme-color-2);
}

.news-anim {
  width: 115px;
  height: 115px;
  position: relative;
  transform: rotate(196deg);
  animation: flyInRotate3 1.2s ease-out forwards;
}

@keyframes flyInRotate3 {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    opacity: 1;
  }
}

.news-anim img {
  width: 100%;
  position: absolute;
  top: -60px;
}

.news-right {
  display: flex;
  align-items: end;
  gap: 50px;
}

.news-wrap {
  width: 65%;
}

.news-wrap h4 {
  color: #fff;
  font-family: "Roboto";
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 20px;
}

.news-wrap form input {
  border: 1px solid #69727d;
  color: #1f2124;
  width: 100%;
  border-radius: 3px;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
  font-size: 15px;
  margin-bottom: 10px;
}

.news-wrap form button {
  width: 100%;
  border: 0;
}

/* Newsletter CSS End */

/* Footer CSS Start */

footer {
  background: #000;
  padding: 10px 0 0;
}

.footer-wrap {
  background: #202020;
  padding: 38px 0;
}

.foot-logo img {
  width: 81%;
}

.col1 h4 {
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.col1 ul li {
  margin-bottom: 14px;
}

.col1 ul li a {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
}

.col1 ul li a:hover {
  color: var(--theme-color-2);
}

.col4 ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.col4 ul li img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(38%) sepia(100%) saturate(548%)
    hue-rotate(161deg) brightness(97%) contrast(90%);
}

.col4 img {
  width: 45%;
}

.copyright p {
  margin-bottom: 0;
  color: #fff;
}

.copyright {
  padding: 10px 0;
  text-align: center;
}

/* Footer CSS End */

/* About Page CSS Start */

.inner-banner-section {
  height: 424px;
  background: #202020;
}

.inner-banner-section .banner-wrap {
  position: unset;
  margin-top: 18px;
  padding-top: 20px;
  height: 100%;
}

.inner-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0;
}

.inner-banner-section .container {
  height: 100%;
}

.inner-banner-content h1 {
  margin: 0;
  font-size: 60px;
  width: 90%;
  text-align: center;
  line-height: 80px;
}

.inner-banner-content h1 span {
  color: var(--theme-color-2);
}

.inspire-about-section .inspire-head h2 {
  font-size: 60px;
}

.inspire-about-section .anim-img {
  top: -210px;
  right: 160px;
}

.inspire-about-section .inspre-left {
  width: 550px;
  height: 710px;
}

.galvanized-section {
  padding: 0 0 20px;
}

.inspire-about-section {
  padding-bottom: 62px;
}

.galvanized-section .inspre-left {
  width: 580px;
  margin: 0;
  height: auto;
}

.galvanized-section .inspre-left img {
  width: 100%;
}

.mounting-section .inspre-left {
  text-align: center;
}

.mounting-section .inspre-left img {
  width: 305px;
  height: 455px;
}

.galvanized-section .row {
  align-items: center;
}

.galvanized-section .inspire-right {
  padding: 0;
}

.sandblasted-section .inspre-left {
  text-align: center;
}

.sandblasted-section .inspre-left img {
  width: 365px;
  height: 365px;
}

.handle-head h3 {
  text-transform: uppercase;
  color: var(--theme-color-3);
  font-size: 32px;
  font-weight: 600;
  margin: 10px 0 60px;
  text-align: center;
}

.galvanized-section .inspre-left video {
  width: 555px;
  height: 313px;
  object-fit: cover;
  object-position: center;
}

.hinges-section .inspre-left {
  text-align: center;
}

.hinges-section .inspre-left img {
  width: 444px !important;
  height: 592px;
}

.drilled-section .inspre-left img {
  width: 305px;
  height: 469px;
}

.drilled-section .inspre-left {
  text-align: center;
}

.galvanized-section ul,
.galvanized-section ol {
  padding-left: 40px;
}

.galvanized-section ul li,
.galvanized-section ol li {
  font-size: 18px;
  font-weight: 400;
  color: var(--theme-color);
  opacity: 0.9;
  margin-bottom: 3px;
}

.astragal-section {
  padding: 0 0 50px 0;
}

.astragal-section .inspre-left img {
  width: 416px;
  height: 416px;
}

.astragal-section .inspre-left {
  text-align: center;
}

.flush-section {
  padding-bottom: 50px;
}

.flush-section .inspre-left img {
  width: 555px;
  height: 740px;
}

.flush-section .inspre-left {
  text-align: center;
}

/* .sweep-section .row {
  align-items: start;
} */

.sweep-section {
  padding-bottom: 50px;
}

.sweep-section .inspre-left img {
  width: 555px;
  height: 416px;
}

.sweep-section .inspre-left {
  text-align: center;
}

.stripping-section .weather-slide-img img {
  width: 500px;
  height: 500px;
  object-fit: contain;
  margin: 0 auto;
}

.stripping-section .slick-prev {
  left: 0;
}

.stripping-section .slick-arrow {
  right: 0;
}

.stripping-section .slick-prev:before {
  content: "";
  background-image: url(../images/arrow-left.svg);
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  display: block;
}

.stripping-section .slick-next:before {
  content: "";
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  display: block;
}

.stripping-section {
  padding-bottom: 50px;
}

.outswing-section .handle-head h3 {
  margin-bottom: 10px;
}

.inspire-wrap {
  margin-bottom: 50px;
}

.inspire-wrap:last-child {
  margin-bottom: 0;
}

.outswing-section {
  padding-bottom: 50px;
}

.roller-section .inspre-left {
  text-align: center;
}

.roller-section .inspre-left img {
  width: 555px;
  height: 740px;
}

p.roller-txt {
  margin-top: 20px;
}

.roller-section {
  padding-bottom: 50px;
}

.welded-section {
  padding-bottom: 50px;
}

.welded-section .inspre-left {
  text-align: center;
}

.welded-section .inspre-left img {
  width: 555px;
  height: 555px;
}

.window-section .inspre-left img {
  width: 444px;
  height: 592px;
}

.window-section .inspre-left {
  text-align: center;
}

.polyurethane-section {
  padding-bottom: 50px;
}

.weather-slider2 .slick-arrow {
  right: 10px;
}

.triple-section {
  padding-bottom: 50px;
}

.customization-section {
  padding-bottom: 50px;
}

.measure-wrap {
  text-align: center;
  margin-bottom: 70px;
}

.measure-wrap h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  color: #000;
  text-transform: uppercase;
  line-height: normal;
}

.measure-wrap h2 span {
  color: var(--theme-color-2);
}

.pivot-section {
  padding-bottom: 50px;
}

.package-img img {
  width: 370px;
  height: 297px;
  object-fit: contain;
}

.measure-wrap .row {
  gap: 19px 0;
}

section.policy-section {
  padding: 50px 0;
}

section.policy-section h2 {
  font-size: 38px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 36px;
}

section.policy-section h2 span {
  color: var(--theme-color-2);
}

.policy-wrap h3 {
  color: #0f0f0f;
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.policy-wrap a {
  color: var(--theme-color-2);
  text-decoration: underline;
}

.policy-wrap ul,
.policy-wrap ol {
  padding-left: 40px;
  margin-bottom: 20px;
}

.policy-wrap ul li,
.policy-wrap ol li {
  color: #000;
  font-size: 17px;
  font-family: "Poppins";
}

.policy-wrap ul li b,
.policy-wrap ol li b {
  font-weight: bolder;
}

.policy-wrap p {
  margin-bottom: 20px;
  font-size: 16px;
  font-family: "Poppins";
  color: #000;
  font-weight: 400;
}

.no-gap p {
  margin-bottom: 1px;
}

.no-gap {
  margin-bottom: 20px;
}

.inner-policy-head {
  margin-bottom: 30px !important;
}

/* About Page CSS End */

/* Product Page CSS Start */

.product-inner-section {
  padding: 80px 0;
}

.product-left {
  display: flex;
  align-items: start;
  position: sticky;
  top: 10px;
}

.product-slider-nav .slick-track {
  display: flex;
  flex-direction: column;
  margin: unset;
  width: 100% !important;
}

.product-slider-nav {
  width: 21%;
}

.product-slider-nav-wrap {
  width: 90% !important;
  height: 180px !important;
  transition: 0.2s all;
  cursor: pointer;
  margin-bottom: 15px;
  object-fit: cover;
}

/*.product-slider-nav .slick-slide {*/
/*    width: 100% !important;*/
/*}*/

.product-slider-nav .slick-slide.slick-current.product-slider-nav-wrap {
  border: 1px solid #000;
  padding: 7px;
  transition: 0.2s all;
}

.product-slider-nav-wrap img {
  width: 100%;
  height: 100%;
}

.product-slider-for {
  width: 79%;
}

.product-slider-for-wrap img {
  width: 100%;
  height: auto;
  object-fit: fill;
}

.product-right h3 {
  color: #0f0f0f;
  font-size: 47px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-right h5 {
  font-size: 25px;
  color: #0f0f0f;
  font-weight: bolder;
  margin-bottom: 20px;
}

.product-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.product-back-wrap {
  border: 1px solid rgba(0, 0, 0, 0.035);
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.01) 0%,
    rgba(0, 0, 0, 0.01) 50%,
    rgba(0, 0, 0, 0.02) 50%,
    rgba(0, 0, 0, 0.01) 100%
  );
  padding: 0 15px;
  margin-bottom: 18px;
}

.product-back-wrap h5 {
  margin: 8px 0 15px 0;
  font-family: "Barlow Condensed";
  font-weight: 600;
  font-size: 21px;
}

.product-wrapper h6 {
  margin: 8px 0 0 0;
  font-size: 15px;
  font-family: "Barlow Condensed";
  font-weight: 500;
  margin-bottom: 4px;
}

.product-wrapper h6 i {
    font-size: 20px;
    padding-left: 10px;
}

.product-wrapper h6 span {
  color: red;
}

.product-wrapper p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #54595f;
}

.product-wrapper select {
  width: 100%;
  padding: 8px 16px;
  outline: none;
  margin-bottom: 10px;
}

.product-wrapper {
  margin-bottom: 15px;
}

.product-showcase-wrap, .product-showcase-wrap label {
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: inline;
}

.honey-operation .product-showcase-wrap {
  width: 70px;
  height: 70px;
}

.product-showcase-wrap.active {
  border: 2px solid #54595f;
  background-color: transparent;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 1.3);
  padding: 1px;
}

.product-showcase-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

div#standard-colors .product-showcase-wrap img, div#straight_standard-colors .product-showcase-wrap img, div#double-standard-colors .product-showcase-wrap img, div#curved_standard-colors .product-showcase-wrap img {
    object-fit: cover;
}

.single-brass-handles, .double-brass-handles, .single-deadbolts, .double-deadbolts {
    display: none;
}
.single-brass-handles.show, .double-brass-handles.show, .single-deadbolts.show, .double-deadbolts.show {
    display: block !important;
}

.product-showcase.glass-finish .product-showcase-wrap img {
    object-fit: cover;
}

.product-showcase {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 33px 0 20px;
  flex-wrap: wrap;
}

.product-showcase.glass-finish {
    gap: 40px;
}

.product-showcase.glass-finish .product-showcase-wrap {
    width: 50px;
    height: 50px;
}

.product-right button {
  padding: 10px 17px;
  border: 0;
}

.product-wrapper-hidden h4 {
  color: #847335;
  font-size: 14px;
  font-family: "Roboto";
  margin-bottom: 0;
}

.product-wrapper-hidden.price {
    display: none;
    border: 1px solid var(--theme-color-3);
    margin-bottom: 0;
    flex-direction: column;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 7px;
    box-shadow: 5px 5px 27px -8px var(--theme-color-3);
    background: var(--theme-color-3);
    width: 50%;
}

.modal-price .product-wrapper-hidden.price {
    width: 100%;
}

.pricer-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pricer-flex button.theme-btn {
    width: 20%;
}
 
#configurator-form button.theme-btn {
    display: block;
}

.product-right input {
  /*width: 100%;*/
  padding: 8px 16px;
  outline: none;
  margin-bottom: 15px;
}

.product-checker {
  display: flex;
  align-items: start;
  gap: 10px;
  margin: 15px 0 20px;
}

.product-checker input {
  margin: 4px 0 0;
  width: auto;
}

.product-checker p {
  margin: 0;
}

.product-showcase-wrap {
  position: relative;
  display: inline-block;
}

.showcase-content {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  z-index: 999;
  width: 320px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  text-align: center;
}

.single-door-swing .showcase-content,
.single-door-swing .showcase-content img,
.double-door-swing .showcase-content,
.double-door-swing .showcase-content img,
.single-iron-handles .showcase-content,
.single-iron-handles .showcase-content img,
.double-iron-handles .showcase-content,
.double-iron-handles .showcase-content img,
.single-iron-deadbolts .showcase-content,
.double-iron-deadbolts .showcase-content,
.single-deadbolts .showcase-content,
.double-deadbolts .showcase-content,
.single-mesh-handle .showcase-content,
.double-mesh-handle .showcase-content,
.single-brass-handles .showcase-content,
.double-brass-handles .showcase-content,
.product-wrapper.mount .showcase-content,
.color-faux-wrap .showcase-content,
.operation-type .showcase-content{
    width: auto;
}

.operation-type .showcase-content img,
.product-wrapper.mount .showcase-content img,
.single-iron-deadbolts .showcase-content img,
.double-iron-deadbolts .showcase-content img,
.single-deadbolts .showcase-content img,
.double-deadbolts .showcase-content img,
.double-mesh-handle .showcase-content img,
.single-mesh-handle .showcase-content img,
.single-brass-handles .showcase-content img,
.double-brass-handles .showcase-content img{
    width: auto;
    height: auto;
}

.track-showcase .showcase-content img {
    width: 350px;
    height: 300px;
}

.color-box .showcase-content {
    width: max-content;
}

.color-box .showcase-content img {
    width: 200px;
    height: 200px;
}

.color-faux-wrap .showcase-content img {
    width: 200px;
    height: 200px;
}

.wrought-iron-stair-railing-and-interior-fence-section .zebra-box {
  height: 280px;
}

.wrought-iron-balcony-fence-section .zebra-box, .wrought-iron-gate-section .zebra-box {
  height: 340px;
}

.wrought-iron-garage-door-section .zebra-box {
  height: 400px;
}

.wrought-iron-pivot-door-section .zebra-box {
  height: 500px;
}

.wrought-iron-fence-section .zebra-box {
  height: 250px;
}

/*.color-wrap .showcase-content {*/
/*  width: auto;*/
/*}*/

div#standard-colors .showcase-content {
  width: 290px;
}

div#price_breakdown h5 {
    color: #fff;
}

div#price_breakdown ul {
    list-style: none;
}

div#price_breakdown ul li, div#price_breakdown p {color: goldenrod;font-size: 14px;}

.product-showcase-wrap:hover .showcase-content {
  opacity: 1;
}

.showcase-content img {
  width: 100%;
  height: 300px;
  object-fit: fill;
  margin: 0 auto 15px;
}

.showcase-content h5 {
  font-size: 15px;
  font-family: "Roboto";
  color: #fff;
  font-weight: 400;
  display: block;
  line-height: 25px;
}

.color-box {
  width: 69px;
  height: 76px;
  box-shadow: var(--wvs-item-box-shadow, 0 0 0 1px #000);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: 0.2s all;
}

.color-box img {
  width: 100%;
  height: 100%;
  padding: 2px;
  object-fit: unset;
}

.color-boxes {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.color-wrap {
  background: #f2f2f2;
  padding: 15px;
}

.color-box::before {
  background-image: url("data:image/svg+xml;utf8,%3Csvg filter='drop-shadow(0px 0px 2px rgb(0 0 0 / .8))' xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 30 30'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M4 16L11 23 27 7'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 60%;
  content: " ";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  display: none;
}

.color-box.selected {
  box-shadow: var(--wvs-selected-item-box-shadow, 0 0 0 2px #000);
}

.color-box.selected::before {
  display: block;
}

.color-box:hover {
  box-shadow: var(--wvs-hover-item-box-shadow, 0 0 0 3px #ddd);
}

.color-wrap p {
  color: #54595f;
  font-weight: 700;
}

.color-wrap a {
  color: #8e8e8e;
  display: inline-block;
  font-size: 13px;
  margin: 10px 0 0;
}

.color-wrap a:hover {
  color: #336;
}

.color-box .showcase-content h5 {
  margin: 0;
}

.product-wrapper-hidden.mount .showcase-content img {
  width: 198px;
  height: 234px;
  margin-bottom: 11px;
}

.product-wrapper-hidden.mount .showcase-content {
  width: 300px;
}

/* Product Page CSS End */

/* Zebra Blinds Page CSS Start */

.zebra-box {
  height: 464px;
  position: relative;
  margin-bottom: 24px;
}

.honey-section .zebra-box {
  height: 200px;
}

.honey-section .zebra-overlay, .honey-section .zebra-wrap {
  background-size: contain;
}

.zebra-overlay {
  background-image: url(../images/zebra-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  padding: 35px;
  color: #fff;
  position: relative;
  z-index: 4;
}

.zebra-overlay::before {
  content: "";
  background-color: #00000038;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.zebra-wrap {
  background-image: url(../images/zebra-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  padding: 35px;
  color: #fff;
  position: absolute;
  z-index: 4;
  transition: transform 0.7s, opacity 0.5s 0.2s;
  opacity: 0;
  transform: scale(0.7);
  top: 0;
}

.zebra-wrap::before {
  content: "";
  background-color: #00000038;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.zebra-wrap-inner h3 {
  color: #ffffff;
  font-size: 49px;
}

.zebra-box:hover .zebra-wrap {
  transition: transform 0.7s, opacity 0.5s;
  opacity: 1;
  transform: scale(1);
}

section.zebra-section {
  padding: 70px 0;
}

section.zebra-section .nav-tabs {
  margin-bottom: 67px;
  justify-content: center;
  gap: 10px;
  border: 0;
}

section.zebra-section .nav-tabs li.nav-item {
  width: 49%;
}

section.honey-section .nav-tabs li.nav-item {
  width: 24%;
}

section.roller-section .nav-tabs li.nav-item {
  width: 32%;
}

section.zebra-section .nav-tabs li.nav-item .nav-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #eaeaeb;
  padding: 18px 27px;
  color: #0f0f0f;
  font-size: 17.6px;
  font-family: Poppins;
  font-weight: bold;
  border-radius: 0;
}

section.zebra-section .nav-tabs li.nav-item .nav-link:hover {
  background: var(--theme-color-2);
}

section.zebra-section .nav-tabs li.nav-item .nav-link.active {
  background: var(--theme-color-2);
}

section.zebra-section .nav-tabs li.nav-item .nav-link img {
  width: 60px;
  height: 60px;
}

.curtains-section .zebra-overlay {
  background-image: url(../images/curtains.png);
}

.curtains-section .zebra-wrap {
  background-image: url(../images/curtains.png);
}

.wrought-section .zebra-overlay {
  background-image: url(../images/wrought1.jpg);
}

.wrought-section .zebra-wrap {
  background-image: url(../images/wrought1.jpg);
}

.zoomLens {
    width: 200px !important;
    height: 200px !important;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #28a745;
}
.input:checked + .slider:before {
    transform: translateX(26px);
}
.error {
    color: red;
    font-size: 0.9em;
}
.color-palette {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.color-options {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}
.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}
.color-swatch:hover {
    transform: scale(1.2);
}
.color-swatch.selected {
    border: 2px solid #000;
}
.color-options-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}
.color-option-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.color-image {
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    transition: transform 0.2s;
    object-fit: cover; /* Maintain aspect ratio */
}
.color-radio:checked + .color-image {
    transform: scale(1.1);
    border: 2px solid #000;
}
.color-label {
    margin-top: 5px;
    font-size: 0.9em;
    text-align: center;
}
.product-slider-nav-wrap img,
.product-slider-for-wrap img {
    object-fit: cover;
    max-width: 100%;
    height: 100%;
}
    .error { color: red; font-size: 0.9em; }
.color-options-list { list-style: none; padding: 0; display: flex; gap: 10px; }
.color-option-item { display: flex; align-items: center; }
.color-label { margin-left: 5px; }
#custom-color-picker { width: 100px; height: 40px; }
    
    .sp-replacer.epo {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #aaa;
    color: #666;
    transition: border-color 0.3s;
    vertical-align: middle;
    width: 3.5rem;
    height: 2rem;
    margin: 0;
    padding: 3px;
    background: none;
}

.epo .sp-preview, .sp-alpha, .sp-thumb-el {
    position: relative;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}

.epo .sp-preview {
    position: relative;
    width: 100%;
    height: 100%;
    float: left;
    z-index: 0;
    border: 0;
    margin: 0;
    padding: 0;
}

.single-transom-design .product-showcase-wrap .showcase-content {width: 360px;}

.latch-wrap .showcase-content img {
  height: auto;
  width: auto;
  display: block;
}

.input-invalid {
    border: 2px solid red !important;
    color: red !important;
}
.input-valid {
    border: 1px solid #dee2e6 !important; /* Default border color */
    color: #212529 !important; /* Default text color */
}

.length-wrap .product-showcase-wrap {
  height: 90px;
  width: 70px;
}
.length-wrap .product-showcase {
  gap: 15px;
}

.color-faux-wrap .color-box {
  width: 12.5%;
  height: 37px;
  border: 1px solid #00000033;
  border-radius: 0;
  box-shadow: none;
}
.color-faux-wrap .product-showcase-wrap.selected::before {
  content: unset;
  border: 1px solid;
}
.color-faux-wrap .product-showcase-wrap.selected {
  border: 1px solid #000;
  box-shadow: 0px 1px 5px 4px;
}
.color-faux-wrap .showcase-content {
  width: auto;
}

.curtain_valance_rods_opener .product-showcase-wrap .showcase-content {
  width: 140px;
  height: auto;
}
.curtain_valance_rods_opener .product-showcase-wrap .showcase-content img {
  width: 100%;
  height: auto;
}

.product-txt {
  margin-bottom: 40px;
}
.product-txt h6 {
  font-weight: 400;
}

.product-txt-lines table {
  background-color: transparent;
  width: 100%;
  margin-block-end: 15px;
  font-size: .9em;
  border-spacing: 0;
  border-collapse: collapse;
}

.product-txt-lines table tbody > tr:nth-child(2n+1) > td, table tbody > tr:nth-child(2n+1) > th {
  background-color: hsla(0,0%,50.2%,.0705882353);
}

.product-txt-lines table td, table th {
  padding: 15px;
  line-height: 1.5;
  vertical-align: top;
  border: 1px solid hsla(0,0%,50.2%,.5019607843);
}

.video-head {
  text-align: center;
  margin: 20px 0 30px;
}
.video-head h2 {
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bolder;
}

.table.shopping-summery {
	background: #fff;
}
.shopping-cart {
	background: #f6f6f6;
	padding: 50px 0;
}
.shopping-summery thead .main-hading{
	padding:0px 50px;
}
.shopping-summery thead {
	background: var(--primary-color);
	color: #fff;
}
.shopping-summery thead tr th {
    border: none;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background: var(--primary-color);
}

.shopping-summery tbody tr {
	border-bottom: 1px solid var(--primary-color);
	margin-top: 20px;
}
.shopping-summery tbody tr img {
	border-radius: 0;
	width: 80px;
	height: 80px;
}
.shopping-summery tbody tr:last-child{
	border:none;
}
.shopping-summery tbody .product-name a {
	font-weight: 600;
	color: #282828;
	font-weight: 600;
	font-size: 17px;
}
.shopping-cart .table p {
	font-size: 14px;
	color: #666;
}
.shopping-summery tbody .product-name a:hover{
	color:var(--primary-color);
}
.shopping-summery tbody .product img {
	max-width: 70px;
	border-radius: 100%;
	max-height: 65px;
	border: 1px solid #e6e6e6;
	padding: 4px;
}
.shopping-summery tbody .product:hover img{
	border-color:var(--primary-color);
	-webkit-transform:rotate(360deg);
	-moz-transform:rotate(360deg);
	transform:rotate(360deg);
}
.shopping-cart .border{
	
}
.shopping-cart .table .remove-icon{
	font-size:16px;
}
.shopping-cart .table td {
	vertical-align: middle;
	border-top: 1px solid #eee;
	padding: 30px;
}
.shopping-summery tbody .price {
	text-align: center;
}
.shopping-summery tbody .price span{}
.shopping-cart tbody .qty .input-group {
	max-width: 175px;
	display: inline-block;
}
.shopping-cart .qty .button {
	display: inline-block;
	position: absolute;
	top: 0;
}
.shopping-cart .qty .button.minus{
	left:0;
	border-radius:0;
	overflow:hidden;
}
.shopping-cart .qty .button.plus {
	right: 0;
	border-radius:0;
	overflow:hidden;
}
.shopping-cart .qty .button .btn {
	padding: 0;
	width: 44px;
	height: 47px;
	line-height: 50px;
	border-radius: 0px;
	background: transparent;
	color: #282828;
	border: none;
	font-size: 12px;
}
.shopping-cart .qty .button .btn:hover{
	color:var(--primary-color);
}
.shopping-cart .qty .input-number {
	border: 1px solid #eceded;
	width: 100%;
	text-align: center;
	height: 47px;
	border-radius:0;
	overflow: hidden;
	padding: 0px 45px;
}
.shopping-summery tbody .total-amount {
	text-align: center;
}
.shopping-summery tbody .total-amount span{}
.shopping-summery tbody .action {
	text-align: center;
}
.shopping-summery tbody .action a:hover{
	color:var(--primary-color);
}
.shopping-cart .total-amount{
	margin-top:50px;
}
.shopping-cart .total-amount .left{}
.shopping-cart .total-amount .left .coupon{}
.shopping-cart .total-amount .left .coupon form{}
.shopping-cart .total-amount .left .coupon form input {
	width: 220px;
	display: inline-block;
	height: 48px;
	color: #333;
	padding: 0px 20px;
	border: none;
	box-shadow: 0px 0px 5px #0000000a;
}
.shopping-cart .total-amount .left .coupon form .btn {
	display: inline-block;
	height: 48px;
	border: navajowhite;
	margin-left: 4px;
	background: transparent;
	color: #333;
	background: #fff;
	box-shadow: 0px 0px 5px #00000012;
}
.shopping-cart .total-amount .left .coupon form .btn:hover{
	background:#fff;
	color:var(--primary-color);
}

.shopping-cart .total-amount .left .coupon form .update-cart-btn {
	background: var(--primary-color) !important;
    color: #FFF !important;
}

.shopping-cart .total-amount .left label{
	font-size:22px;
	font-weight:500;
	color:#333;
}
.shopping-cart .total-amount .left .checkbox {
	text-align: left;
	margin: 0;
	margin-top: 20px;
}
.shopping-cart .total-amount .left .checkbox label {
	font-size: 15px;
	font-weight: 400;
	color: #333;
	position: relative;
	padding-left: 30px;
}
.shopping-cart .total-amount .left .checkbox label:hover{
	cursor:pointer;
}
.shopping-cart .total-amount .left .checkbox label input{
	display:none;
}
.shopping-cart .total-amount .left .checkbox label::before {
	position: absolute;
	content: "";
	left: 0;
	top: 4px;
	width: 16px;
	height: 16px;
	border: 1px solid #555555;
	border-radius: 0px;
}
.shopping-cart .total-amount .left .checkbox label::after {
	position: absolute;
	content: "\f00c";
	font-family: "Fontawesome";
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	line-height: 24px;
	left: 3px;
	top: 0px;
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: block;
	font-size: 11px;
}
.shopping-cart .total-amount .left .checkbox label.checked::after{
	opacity:1;
	visibility:visible;
	transform:scale(1);
}
.shopping-cart .total-amount .left .shipping_methods h4 {
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: 600;
}
.shopping-cart .total-amount .left .shipping_methods label {
	font-size: 15px;
	font-weight: 400;
	color: #333;
	position: relative;
}
.shopping-cart .total-amount .left .shipping_methods label:hover{
	cursor:pointer;
}
.shopping-cart .total-amount .right {
	padding-left: 100px;
}
.shopping-cart .total-amount .right ul{
	
}
.shopping-cart .total-amount .right ul li {
	font-size: 15px;
	font-weight: 400;
	color: #333;
	margin-bottom: 12px;
}
.shopping-cart .total-amount .right ul li.last {
	padding-top: 12px;
	border-top: 1px solid #c8c8c8;
	color: #333;
	font-size: 15px;
	font-weight: 400;
}
.shopping-cart .total-amount .right ul li span{
	display:inline-block;
	float:right;
}
.shopping-cart .total-amount .right .button5 .btn {
    text-align: center;
    border-radius: 0;
    width: 100%;
    margin-top: 10px;
    height: 46px;
    line-height: 30px;
    font-size: 13px;
    color: #fff;
    background: #1a8ac7;
}

.shop.checkout {
	padding: 0;
	background: #fff;
	padding-top: 20px;
	padding-bottom: 50px;
}
.shop.checkout .checkout-form {
	margin-top: 30px;
}
.shop.checkout .checkout-form h2 {
	font-size: 25px;
	color: #333;
	font-weight: 700;
	line-height: 27px;
}
.shop.checkout .checkout-form p {
	font-size: 16px;
	color: #333;
	font-weight: 400;
	margin-top: 12px;
	margin-bottom: 30px;
}

.shop.checkout .form-group {
	margin-bottom: 25px;
}
.shop.checkout .form-group label{
	color:#333;
	position:relative;
}
.shop.checkout .form-group label span {
	color: #ff2c18;
	display: inline-block;
	position: absolute;
	right: -12px;
	top: 4px;
	font-size: 16px;
}
.shop.checkout .form-group input {
	width: 100%;
	height: 45px;
	line-height: 50px;
	padding: 0 20px;
	border-radius: 3px;
	border-radius: 0px;
	color: #333 !important;
	border: none;
	background: #F6F7FB;
}
.shop.checkout .form-group input[type=checkbox]{
	width: auto;
	height: auto;
}
.shop.checkout .form-group select {
	width: 100%;
	height: 45px;
	line-height: 50px;
	padding: 0 20px;
	border-radius: 3px;
	border-radius: 0px;
	color: #333 !important;
	border: none;
	background: #F6F7FB;
}

.shop.checkout .form-group textarea {
	width: 100%;
	line-height: 50px;
	padding: 0 20px;
	border-radius: 3px;
	border-radius: 0px;
	color: #333 !important;
	border: none;
	background: #F6F7FB;
}

.shop.checkout #payment-descriptions{
	width: 100%;
    min-height: 60px;
    line-height: 30px;
    border-radius: 0px;
    color: #333 !important;
    border: none;
    background: #F6F7FB;
    display: block;
    padding: 15px 20px;
    font-size: 14px;
}

.shop.checkout .nice-select {
	width: 100%;
	height: 45px;
	line-height: 50px;
	margin-bottom: 25px;
	background: #F6F7FB;
	border-radius: 0px;
	border:none;
}
.shop.checkout .nice-select .list {
	width: 100%;
	height: 300px;
	overflow: scroll;
}
.shop.checkout .nice-select .list li{}
.shop.checkout .nice-select .list li.option{
	color:#333;
}
.shop.checkout .nice-select .list li.option:hover{
	background:#F6F7FB;
	color:#333;
}
.shop.checkout .form .address input {
	margin-bottom: 15px;
}
.shop.checkout .form .address input:last-child{
	margin:0;
}
.shop.checkout .form .create-account {
	margin: 0;
}
.shop.checkout .form .create-account input {
	width: auto;
	display: inline-block;
	height: auto;
	border-radius: 100%;
	margin-right: 3px;
}
.shop.checkout .form .create-account label {
	display: inline-block;
	margin: 0;
}
.shop.checkout .order-details {
	margin-top: 30px;
	background: #fff;
	padding: 15px 0 30px 0;
	border: 1px solid #eee;
}
.shop.checkout .single-widget {
	margin-bottom: 30px;
}
.shop.checkout .single-widget:last-child{
	margin:0;
}
.shop.checkout .single-widget h2 {
	position:relative;
	font-size: 15px;
	font-weight: 600;
	padding: 10px 30px;
	line-height: 24px;
	text-transform: uppercase;
	color: #333;
	padding-bottom: 5px;
}
.shop.checkout .single-widget h2:before{
	position:absolute;
	content:"";
	left:30px;
	bottom:0;
	height:2px;
	width:50px;
	background:var(--primary-color);
}
.shop.checkout .single-widget .content ul{
	margin-top:30px;
}
.shop.checkout .single-widget .content ul li {
	display: block;
	padding: 0px 30px;
	font-size: 15px;
	font-weight: 400;
	color: #333;
	margin-bottom: 12px;
}
.shop.checkout .single-widget .content ul li span{
	display:inline-block;
	float:right;
}
.shop.checkout .single-widget .content ul li.last {
	padding-top: 12px;
	border-top: 1px solid #ebebeb;
	display: block;
	font-size: 15px;
	font-weight: 400;
	color: #333;
}

.shop.checkout .single-widget .content form {
	margin-top: 20px;
}

.shop.checkout .single-widget .content form input {
	width: 100%;
	display: inline-block;
	height: 48px;
	color: #333;
	padding: 0px 20px;
	border: 1px solid #333;
	box-shadow: 0px 0px 5px #0000000a;
}
.shop.checkout .single-widget .content form .btn {
    width: 100%;
    margin-top:5px;
    height: 46px;
    line-height: 32px;
    text-align: center;
    border-radius: 0;
    text-transform: uppercase;
    color: #fff;
    background: #1a8ac7;
}

.shop.checkout .single-widget .checkbox {
	text-align: left;
	margin: 0;
	padding: 0px 30px;
	margin-top:30px;
}
.shop.checkout .single-widget .checkbox label {
	color: #555555;
	position: relative;
	font-size: 14px;
	padding-left: 20px;
	margin-top: -5px;
	font-weight: 400;
	display: block;
	margin-bottom: 15px;
}
.shop.checkout .single-widget .checkbox label:last-child{
	margin-bottom:0;
}
.shop.checkout .single-widget .checkbox label:hover{
	cursor:pointer;
}
.shop.checkout .single-widget .checkbox label input{
	display:none;
}
.shop.checkout .single-widget .checkbox label::before {
	position: absolute;
	content: "";
	left: 0;
	top: 7px;
	width: 12px;
	height: 12px;
	line-height: 16px;
	border: 1px solid #666;
	border-radius: 100%;
}
.shop.checkout .single-widget .checkbox label::after {
	position: absolute;
	content: "";
	left: 0;
	top: 7px;
	width: 12px;
	height: 12px;
	line-height: 16px;
	border-radius: 100%;
	display:block;
	background:#666;
	transform:scale(0);
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.shop.checkout .single-widget .checkbox label.checked::after{
	opacity:1;
	visibility:visible;
	transform:scale(1);
}
.shop.checkout .single-widget.payement {
	padding: 0px 38px;
	text-align: center;
	margin-top: 30px;
}
.shop.checkout .single-widget.get-button {
	text-align: center;
	padding:0px 35px;
}
.shop.checkout .single-widget.get-button .btn {
    height: 46px;
    width: 100%;
    line-height: 32px;
    text-align: center;
    border-radius: 0;
    text-transform: uppercase;
    color: #fff;
    background: #1a8ac7;
}
.custom-control-label {
    cursor: pointer;
}
/*======================================
   End Checkout Form CSS
========================================*/

/*======================================
   Login & Register & My Account CSS
========================================*/
.alert-success {
    color: #ffffff;
    background-color: #00b894;
    border-color: #00b894;
}

.alert-danger {
    color: #FFF;
    background-color: #ff4949;
    border-color: #ff4949;
}

.section{
	padding-top: 80px;
	padding-bottom: 50px;
}

.section-heading{
	text-align: center;
	font-weight: 600;
	margin-bottom: 60px;
	color: var(--primary-color);
	position: relative;
	line-height: 24px;
}

.section-heading::after{
	content: '';
    width: 60px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 10px;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}

#auth{
	padding: 60px 0px;
}

.login_register{
	background: #ffffff;
    padding: 50px;
    box-shadow: 1px 3px 10px #d8d8d8;
}

.login_register .form-control {
	height: auto;
    display: block;
    width: 100%;
   	padding: 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #CCC;
    border-radius: .25rem;
    margin-top: 15px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.login_register .form-control:focus{
	outline: none;
	-webkit-box-shadow: none;
    box-shadow: none;
	border: 1px solid #000;
}

.login_register .btn-login{
	display: block;
    background: #FFF;
    padding: 18px 50px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
	transition: all 0.3s;
	width: 100%;
	margin-top: 30px;
}
.login_register .btn-login:hover{
    background: var(--primary-color);
    color: #FFF;
}

.login_register .right_link{
	color: var(--primary-color);
	margin-top: 15px;
	transition: all 0.3s;
	display: inline-block;
}

.login_register .right_link:hover{
	text-decoration: underline;
}

.create-account-link{
	color: var(--primary-color);
	display: inline-block;
	margin-top: 15px;
	transition: all 0.3s;
}

.create-account-link:hover{
	color: var(--primary-color);
	text-decoration: underline;
}

.customer_dashboard{
	box-shadow: 0 0 4px 0 #e9e9e9;
}

.customer_dashboard{
	box-shadow: 0 0 4px 0 #d0cfcf;
}

.customer_dashboard .nav-tabs li.nav-item a {
    text-align: left;
    padding: 12px 20px;
    border-radius: 0;
    border-bottom: 1px solid #efefef;
    color: #2b2f4c;
}
.customer_dashboard .nav-tabs li.nav-item a.active{
	background: #1d2224;
	color: #FFF;
}
.customer_dashboard .nav-tabs li.nav-item a i {
    margin-right: 8px;
    vertical-align: middle;
}

.dashboard_content .card-header {
    background-color: #1d2224;
    border-color: #1d2224;
    padding: 14px 20px;
}

.dashboard_content .card-header > h4 {
	font-size: 16px;
	color: #FFF;
	font-weight: 400;
	margin: 0;
}

.account_details .form-control {
	height: auto;
    display: block;
    width: 100%;
   	padding: 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #CCC;
    border-radius: .25rem;
    margin-top: 15px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.account_details .form-control:focus{
	outline: none;
	-webkit-box-shadow: none;
    box-shadow: none;
	border: 1px solid #000;
}

.account_details .btn-login{
    background: #FFF;
    padding: 18px 50px;
    border: 1px solid #303952;
    color: #303952;
	transition: all 0.3s;
	margin-top: 30px;
}
.account_details .btn-login:hover{
    background: #303952;
    color: #FFF;
}
.btn-add-address{
	color: #FFF !important;
	padding: 6px 16px;
	display: inline-block;
	font-size: 14px;
	border: 1px solid #FFF;
	border-radius: 50px;
}

.input-box{
  width: 100%;
}

.wrought-iron-gate-section .zebra-box {
  height: 280px;
}

.clickable {
    position: absolute;
    bottom: -10px;
    right: -11px;
    background: var(--theme-color-2);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.clickable i {
    color: #fff;
    font-size: 13px;
}

.fabric-curtain-section .ERP61109 .color-box img {
    object-fit: cover;
}

.fabric-curtain-section .ERP61109 .color-box .showcase-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fabric-curtain-section .ERP61109 .color-box .showcase-content {
    width: 160px;
    height: 360px;
}

.aluminum-color .color-box .showcase-content {
    width: 300px;
    height: auto;
}

.aluminum-color .color-box .showcase-content img {
    width: 100%;
    height: 100%;
}

.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(1) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(1) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(3) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(3) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(5) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(5) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(9) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(9) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(17) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(17) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(18) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(18) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(23) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(23) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(24) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(24) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(25) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(25) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(26) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(26) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(27) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(27) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(28) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(28) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(30) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(30) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(31) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(31) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(32) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(32) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(44) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(44) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(47) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(47) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(48) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(48) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(49) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(49) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(59) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(59) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(62) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(62) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(63) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(63) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(64) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(64) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(67) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(67) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(69) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(69) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(71) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(71) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(73) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(73) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(76) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(76) .zebra-box .zebra-wrap,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(80) .zebra-box .zebra-overlay,
.exterior-wrought-iron-single-door-section .row .col-md-4:nth-child(80) .zebra-box .zebra-wrap {
    background-size: contain;
}


.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(1) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(1) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(3) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(3) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(5) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(5) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(17) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(17) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(18) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(18) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(23) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(23) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(24) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(24) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(25) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(25) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(26) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(26) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(27) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(27) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(28) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(28) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(30) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(30) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(31) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(31) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(32) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(32) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(44) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(44) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(47) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(47) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(48) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(48) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(49) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(49) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(59) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(59) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(62) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(62) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(63) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(63) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(64) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(64) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(67) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(67) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(69) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(69) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(71) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(71) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(73) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(73) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(76) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(76) .zebra-box .zebra-wrap,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(80) .zebra-box .zebra-overlay,
.exterior-wrought-iron-double-door-section .row .col-md-4:nth-child(80) .zebra-box .zebra-wrap {
    background-size: contain;
}

.interior-wrought-iron-door-section .row .col-md-4:nth-child(13) .zebra-box .zebra-overlay,
.interior-wrought-iron-door-section .row .col-md-4:nth-child(13) .zebra-box .zebra-wrap {
    background-size: contain;
}

.wrought-iron-garage-door-section .row .col-md-4:nth-child(1) .zebra-box .zebra-overlay,
.wrought-iron-garage-door-section .row .col-md-4:nth-child(1) .zebra-box .zebra-wrap,
.wrought-iron-garage-door-section .row .col-md-4:nth-child(2) .zebra-box .zebra-overlay,
.wrought-iron-garage-door-section .row .col-md-4:nth-child(2) .zebra-box .zebra-wrap,
.wrought-iron-garage-door-section .row .col-md-4:nth-child(3) .zebra-box .zebra-overlay,
.wrought-iron-garage-door-section .row .col-md-4:nth-child(3) .zebra-box .zebra-wrap,
.wrought-iron-garage-door-section .row .col-md-4:nth-child(4) .zebra-box .zebra-overlay,
.wrought-iron-garage-door-section .row .col-md-4:nth-child(4) .zebra-box .zebra-wrap,
.wrought-iron-garage-door-section .row .col-md-4:nth-child(7) .zebra-box .zebra-overlay,
.wrought-iron-garage-door-section .row .col-md-4:nth-child(7) .zebra-box .zebra-wrap,
.wrought-iron-garage-door-section .row .col-md-4:nth-child(8) .zebra-box .zebra-overlay,
.wrought-iron-garage-door-section .row .col-md-4:nth-child(8) .zebra-box .zebra-wrap,
.wrought-iron-garage-door-section .row .col-md-4:nth-child(9) .zebra-box .zebra-overlay,
.wrought-iron-garage-door-section .row .col-md-4:nth-child(9) .zebra-box .zebra-wrap {
    background-size: contain;
}


/*======================================
	End Login CSS
========================================*/

@media only screen and (max-width: 1400px) {
}
@media only screen and (max-width: 1200px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 991px) {
  .offcanvas-btn {
    font-size: 30px;
    color: #fff;
    background-color: var(--theme-color);
    padding: 12px;
    line-height: 24px;
    border-radius: 6px;
  }
  .offcanvas-btn:hover,
  .offcanvas-btn:active {
    background: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
    color: #fff !important;
  }
  .offcanvas,
  .offcanvas-btn {
    display: block !important;
  }
  .offcanvas {
    background-color: var(--theme-color);
  }
  .offcanvas-body {
    padding-top: 50px;
  }
  .navigation {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
}
@media only screen and (max-width: 576px) {
}
@media only screen and (max-width: 450px) {
}
@media only screen and (max-width: 370px) {
}