@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--white: #ffffff;
	--light-gray: #e5e5e5;
	--gray: #5F5F5F;
	--gray-dark: #4F4C58;
	--primary: #2A519D;
	--secondary: #969696;
	--success: #00A827;
	--info: #36b9cc;
	--warning: #f6c23e;
	--danger: #EA0000;
	--light: #f8f9fc;
	--dark: #2A2A2B;
	--form-border-color: #FFE3C9; 
	--bg-light: #F8F7F7;
	--bg-color: #fff;
	--table-border: #F5F5F5;
	--light-primary: #FFD5B8;
	--border-color: #ECECEC;
	--purple: #9B2B8B;
	--darkblue: #2B449B;
}
* {
  padding: 0;
  margin: 0;
  box-shadow: none;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
	font-family: "Commissioner", serif !important;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent
}
body {
  position: relative;
  min-height: 100%;
  font-family: "Commissioner", serif !important;
  color: var(--gray-dark);
}

h1, h2, h3, h4, h5, h6, p {
  color: var(--dark);
}
h5 {
  line-height: 1.5 !important;
}

a {
    color: var(--primary) !important;
    text-decoration: none !important;
    font-size: 1rem;
    cursor: pointer;
}
p {
  font-size: 1.125rem;
  color: var(--gray);
  font-weight: 300;
}
p strong {color: var(--dark) !important; font-weight: 600;}

.fw-100 {font-weight: 100;}
.fw-200 {font-weight: 200 !important;}
.fw-300 {font-weight: 300 !important;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}

.gray {
  color: var(--gray);
}
.white {color: var(--white) !important;}
.primary {
  color: var(--primary) !important;
}
.bg-primary {
  background: var(--primary);
}
input.form-control {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--dark);
}
.form-floating>label {
  font-size: 1.25rem;
  font-weight: 300;
  padding: 1rem .75rem !important;
}
.form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
  opacity: .65;
  transform: scale(.85) translateY(-1rem) translateX(.15rem) !important;
}
.form-control:focus {
  background: none;
  color: var(--gray-dark);
  box-shadow: none !important;
}
textarea.form-control {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--dark);
}
.btn-primary {
  color: var(--white) !important;
  background: var(--dark) !important;
  border: 2px solid var(--dark) !important;
  padding: .5rem 1rem !important;
  transition: 0.3s;
}
.btn-primary:hover {
  color: var(--dark) !important;
  transition: 0.3s;
  background: var(--white) !important;
  border: 2px solid var(--dark);
}
.card {
  border-radius: 20px !important;
  border: 0 !important;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
  transition: 0.6s ease all;
}
/* basic-style-end */

/* btn-sec */
a.btn-outline p {
  margin-bottom: 0;
  color: var(--primary);
  display: inline-block;
  font-weight: 500;
  font-size: 1.125rem;
  text-transform: capitalize;
}
a.btn-outline {
  color: var(--primary) !important;
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s ease all;
  cursor: pointer;
}
a.btn-outline:hover p {
  color: var(--white) !important;
  z-index: 9;
  position: relative;
}
a.btn-outline:focus {
  border: 2px solid var(--primary) !important;
}
a.btn-outline:focus p {
  color: var(--white) !important;
  z-index: 9;
  position: relative;
}
a.btn-outline {
  font-size: 1rem;
  display: inline-block;
  text-align: center;
  max-width: 230px;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid var(--primary);
  border-radius: 30px;
  position: relative;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1); */
}
a.btn-outline:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  position: absolute;
  border-radius: 30px;
  padding: 10px 0;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: var(--primary);
  z-index: 0;
  border: 3px solid var(--primary);
}
a.btn-outline:hover:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  right: -2px;
  left: -2px;
  opacity: 1;
}
a.btn-outline:focus:before {
  transition: 0.5s all ease;
  right: -2px;
  left: -2px;
  opacity: 1;
}
.btn-outline-white {
  color: var(--white) !important;
  border: 2px solid var(--white) !important;
}
.btn-outline-white p {
  color: var(--white) !important;
}
.btn-outline-white:hover{
  border: 2px solid var(--primary) !important;
}
a.btn-primary-white {
    padding: 15px 50px !important;
    background: var(--white) !important;
    color: var(--primary) !important;
    font-size: 1.05rem;
    font-weight: 500;
    border: 1px solid var(--primary) !important;
}
a.btn-primary-white:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
  border: 1px solid var(--white) !important;
}
/* btn-sec */

.top-bar {
    padding: 10px 0;
    background: var(--primary);
}
.top-bar a.link { 
    color: var(--white) !important;
    font-weight: 300;
 }
img.main-logo {
    width: 300px;
}
.top-social-icons a.link {
    font-size: 1.125rem;
    margin: 0 0 0 15px;
}
.top-social-icons a.link:last-child{
    font-size: 1rem;
}
ul.navbar-nav.menu-bar li.nav-item a.nav-link {
  text-transform: uppercase;
  margin-left: 20px;
  color: #333 !important;
  font-size: 1.125rem;
  font-weight: 500;
}
ul.navbar-nav.menu-bar li.nav-item a.nav-link.active {color: var(--primary) !important;}
.carousel-caption {
  left: 50% !important;
  right: auto !important;
  top: 0% !important;
  bottom: auto !important;
  transform: translateX(-50%);
}
.banner-content {
  padding-top: 50px;
}
img.banner-img {
  max-height: 700px;
  height: 700px;
  object-fit: cover;
  position: relative;
}
.banner-bg {position: relative;}
.banner-bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(86deg, rgba(0,0,0,0.7) 0%, rgba(25,25,25,0.5) 52%, rgba(0,0,0,0.7) 100%);
  z-index: 9;
}
.side-img {
  width: 100%;
  height: 100%;
  /* background: rgb(255 255 255 / 75%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px; */
}
.carousel-dark .carousel-caption {
  color: #000;
  z-index: 10;
}
.carousel-dark .carousel-control-next-icon, .carousel-dark .carousel-control-prev-icon {
  filter: unset !important;
}
.carousel-control-next, .carousel-control-prev {
  z-index: 99 !important;
}
.banner-bg img.banner-img {
  filter: blur(4px);
  -webkit-filter: blur(4px);
}
.banner-content img {
  width: 400px !important;
  object-fit: contain;
  /* filter: drop-shadow(-1px 3px 5px #000000); */
}
.banner-content h1 {
  font-size: 90px;
  font-weight: 600;
  margin: 0 auto;
  line-height: 100px;
  margin-bottom: 30px;
}
.banner-content h4 {
  font-size: 2.5rem;
  color: var(--dark);
  font-weight: 400;
}
.banner-content img {
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 586px;
  margin-top: 10px;
}
.carousel-caption {
  display: flex;
  height: 100%;
  align-items: center;
}
h2.sec-head {
  font-size: 3.438rem;
  font-weight: 600;
}
h6.sec-sub-head {
  font-size: 1.563rem;
  color: #333;
  font-weight: 300;
  margin-bottom: 10px;
}
.solution-inn {
  padding: 30px;
  border-radius: 25px;
  background: url(../img/solution.jpg) no-repeat;
  background-position: left;
  background-size: cover;
  min-height: 440px;
  position: relative;
  overflow: hidden;
}
.solution-inn {color: var(--white);}
.solution-inn h3 {
  color: var(--white);
  font-size: 2.813rem;
  margin-bottom: 30px;
  font-weight: 200;
  width: 80%;
}
.solution-inn h4 {
  color: var(--white);
  font-size: 1.688rem;
  margin-bottom: 15px;
  font-weight: 400;
}
.solution-inn p {
  color: var(--white);
  font-size: 0.938rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
  border-radius: 25px;
  margin-bottom: 30px ;
  position: relative;
  overflow: hidden;
}
.product-card.home-product-1 {
  background: url(../img/home-product-1.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  height: 865px;
  width: 100%;
}
.product-card.home-product-2 {
  background: url(../img/home-product-2.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  height: 865px;
  width: 100%;
}
.product-card.home-product-3 {
  background: url(../img/home-product-3.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  height: 100%;
  width: 100%;
  min-height: 565px;
}
.product-card.home-product-4 {
  background: url(../img/home-product-4.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  height: 100%;
  width: 100%;
  min-height: 565px;
}
.product-card h3 {
  font-size: 3.125rem;
  font-weight: 600;
  color: var(--white);
  line-height: 60px;
  width: 70%;
}
.product-card p {
  color: var(--white);
  max-width: 70%;
}
.industry-cards .card {
  text-align: center;
  display: flex;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 20px;
  border-radius: 20px;
  border: 2px solid var(--primary);
}
.industry-cards .card img {
  width: 60px !important;
  margin-bottom: 15px;
  height: 60px;
  object-fit: contain;
}

.industry-cards .card h5 {
  font-size: 1.563rem;
}
img.why-choose-img {
  border-radius: 25px;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
}
img.why-choose-icon {
  width: 60px;
  height: 100%;
  margin-right: 15px;
  display: block;
}
footer {
  background: var(--bg-light);
  padding: 40px 0  20px 0;
}
footer h4 {
  margin-bottom: 20px;
  font-size: 1.875rem;
}
footer ul {
  padding-left: 0;
  list-style: none;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li a {
  color: var(--dark) !important;
  font-weight: 400;
}
footer .top-social-icons a.link {
  margin-left: 0;
  margin-right: 15px;
  color: var(--dark) !important;
}
footer a.btn.btn-primary {
  padding: 10px 25px !important;
  font-size: 1.25rem;
}
section.index-about {
  position: relative;
}
section.index-about::before {
  position: absolute;
  background: url(../img/index-about-icon1.png);
  content: '';
  width: 350px;
  height: 350px;
  top: 0;
  left: 0;
}
section.index-about::after {
  position: absolute;
  background: url(../img/index-about-icon2.png);
  content: '';
  width: 900px;
  height: 900px;
  top: 0;
  right: 10px;
  z-index: -1;
}
.index-99 {z-index: 99;}
img.about-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  min-height: 350px;
  object-position: right;
}
.about-us h3 {
  font-weight: 100;
  font-size: 1.875rem !important;
}
section.industry-cards.about-card-sec {
  background: #6C7B88;
  position: relative;
}
.about-cards .card {
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.about-cards {
  margin-top: -120px;
  margin-bottom: 20px;
}
.indus-exprts-dtls h5 {
  font-size: 1.563rem;
  line-height: 30px !important;
  font-weight: 400;
}
.about-cards {
  margin-top: -100px !important;
}
.about-cards-sub img.img-2 {
  width: 80px !important;
  height: auto;
}
.indus-exprts-dtls i {
  font-size: 1.563rem;
  padding-top: 4px;
}
.about-cards-sub .card {
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.img-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
}
section.about-us {position: relative;}
section.about-us::before {
  content: '';
  background: url(../img/index-about-icon1.png) no-repeat;
  position: absolute;
  right: 0;
  top: -30px;
  width: 350px;
  height: 350px;
  z-index: 99;
  background-position: center;
  background-size: contain;
  opacity: .4;
}
section.industry-cards.about-card-sec .container::before {
  content: '';
  background: url(../img/index-about-icon3.png) no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 600px;
  height: 600px;
  z-index: 99;
  background-position: center;
  background-size: contain;
}
.contact-us {
  background: url(../img/contact-bg.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  height: 100%;
  width: 100%;
  min-height: 100%;
  padding: 50px;
}
section.contact-us .card {
  height: 100%;
}
section.contact-us .card-body {
  padding: 50px !important;
}
.contact-dtls {
  display: flex;
}
.contact-dtls span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.875rem;
  margin-right: 15px;
}
img.contact-img {
  width: 100%;
  max-width: 270px;
  object-fit: contain;
}
.contact-social-icons {
  padding-left: 40px;
}
.contact-social-icons a {
  font-size: 1.563rem!important;
  color: var(--dark) !important;
  margin-right: 10px !important;
}
section.contact-us textarea.form-control {
  min-height: 200px;
  padding-top: 30px !important;
}
.carousel-caption {width: 65%;}
label.error {
  font-size: 0.813rem;
  color: red;
  position: absolute;
  bottom: -20px;
}
.submt_btn.disabled {
  opacity: 1;
  pointer-events: none;
  cursor: not-allowed;
  border: 2px solid #a8b6d0;
}

button.swal-button {
  background: var(--primary);
  border-radius: 30px;
  padding: 10px 50px;
  border: 0;
}
nav.navbar.navbar-fixed-top {
  left: 0 !important;
  width: 100%;
  z-index: 999;
  background-color:  var(--white);
}
.custom-navbar {
  background-color: var(--white) !important;
  top: 0 !important;
  z-index: 999;
  top: 46px ;
  position: fixed !important;
  width: 100%;
  transition: 0.3s;
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}
.custom-navbar  img.main-logo {
  width: 185px;
}
.custom-navbar ul.navbar-nav.menu-bar li.nav-item a.nav-link {
  font-size: 1rem;
}
.textarea-sec .form-floating>.form-control:focus~label, .textarea-sec .form-floating>.form-control:not(:placeholder-shown)~label, .textarea-sec .form-floating>.form-select~label {
  background: #fff !important;
  opacity: 1 !important;
  height: auto;
  width: 100% !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  margin-top: 13px;
}
.energy-audit-sec {
  background: url(../img/energy-audit.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  height: 100%;
  width: 100%;
  min-height: 100%;
  padding: 50px;
  position: relative;
}

.energy-audit-sec::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}
.energy-audit-sec .card-body img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}
.energy-audit-cndnt p {
  width: 80%;
}
.inquiry-form {
  background: rgb(42,81,157);
  background: linear-gradient(180deg, rgba(42,81,157,1) 0%, rgba(20,38,73,1) 100%);
  padding: 50px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.inquiry-form::before {
  position: absolute;
  background: url(../img/iquiry-icon.png) no-repeat;
  content: '';
  width: 500px;
  height: 100%;
  top: -5%;
  right: -2%;
  background-size: contain;
}
.inquiry-form .form-floating .form-control {
  background: transparent;
  border-color: var(--white) !important;
  color: var(--white) !important;
}
.inquiry-form  .form-floating>label {
  color: var(--white) !important;
}
.inquiry-form h1{
  font-size: 3.75rem;
  font-weight: 600;
}
.inquiry-form textarea.form-control {
  min-height: 200px;
}
.banner-content.product-banner h1 {
  max-width: 70%;
}
section.product-list .card img {
  height: 375px;
  object-fit: cover;
}
section.product-list .card {
  height: 100%;
}
section.product-list .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.air-filtration {
  background: url(../img/products/air-filtration-banner.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  height: 100%;
  width: 100%;
  min-height: 100%;
  padding: 50px;
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.air-filtration .banner-content p {
  max-width: 70%;
  margin: 0 auto;
}
.ncco-sub {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.primary-round-icon {
  background: var(--primary);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  padding: 10px;
}
.primary-round-icon img {
  height: 50px !important;
}
.ncco-sub p {
  margin-top: 15px;
  color: var(--dark);
  font-weight: 400;
}
section.whatis-ncco h1 {
  font-size: 70px;
  font-weight: 600;
  margin-bottom: 20px;
}
.interior-types-card {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  transition: all 0.6s ease-in-out;
}
.interior-types-card img {
  width: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.interior-types-card:hover img{
  -webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.interior-types-card:hover::after {
  position: absolute;
  background: rgb(51 51 51 / 66%);
  width: 100%;
  height: 100%;
  content: '';
  left: 0;
  top: 0;
  border-radius: 30px;
  transition: all 0.6s ease-in-out;
}
.interior-type-content {
  text-align: center;
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
a.more-link {
  border: 2px solid #fff;
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
a.more-link span {
  font-size: 3.125rem;
  color: #fff;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}
.interior-types-card:hover span {
  transform: rotate(0deg);
  transition: all 0.4s ease-in-out;
}
.interior-type-content h1 {
  font-size: 3.75rem;
  text-shadow: -1px 2px 3px rgba(3,3,3,0.6);
}
.interior-type-content p {
  text-shadow: -1px 2px 3px rgba(3,3,3,0.6);
}
section.air-filtration h4, section.air-filtration h1, section.air-filtration p {
  text-shadow: -1px 2px 3px rgba(3,3,3,0.6);
}
img.ncco-img {
  margin-left: -20px;
  width: 100%;
}
.domestic-banner {
  background: url(../img/products/domestic-banner.jpg) no-repeat;
  min-height: 500px;
  width: 100%;
  background-position: top;
  background-size: cover;
}
.commercial-banner {
  background: url(../img/products/commercial/banner.jpg) no-repeat;
  background-position: top;
  background-size: cover;
}
section.commercial-banner h1 {
  width: 60%;
}
a.air-product-card:hover .card {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  transition: 0.6s ease all;
}
.product-feauture-icon {
  margin: 10px 50px 10px 0;
}
.banner-content h2 {
  font-size: 4.5rem;
  font-weight: 600;
}
.specifications .card {
  box-shadow: none;
  border: 1px solid #dee2e6!important;
}
.specifications p {
  color: var(--dark);
  margin-bottom: 0;
  width: 50%;
}
.installation {
  background: url(../img/products/instal-bg.jpg) no-repeat;
  min-height: 600px;
  width: 100%;
  background-position: left;
  background-size: cover;
  padding: 50px;
  display: flex;
  align-items: center;
}
.installation-content {
  background: var(--primary);
  padding: 50px;
  border-radius: 30px;
  color: #fff;
}
.cleaningcoating {
  background: url(../img/products/cleaningcoating/banner.jpg) no-repeat;
}
.cleaningcoating-cards {
  margin-top: -100px;
}
.cleaningcoating-cards .card {
  margin: 10px;
  max-width: 300px;
  padding: 20px 10px;
  width: 100%;
}
.cleaningcoating-cards .card img {
  width: 100px;
}
.cleaningcoating-cards .card p {
  width: 80%;
  margin: auto;
  color: var(--dark);
}
section.coating-technology .img-card {border-radius: 30px;}
section.coating-technology .img-card::after {
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8211659663865546) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: '';
  border-radius: 20px ;
}
section.coating-technology .img-card img {
  margin-bottom: 0;
}
section.coating-technology .img-card h2 {
  position: absolute;
  color: #fff;
  z-index: 999;
  left: 25px;
  bottom: 15px;
  width: 100%;
  text-transform: capitalize;
  max-width: 70%;
  padding-right: 30px;
}
.app-method {
  margin: 20px 40px;
  text-align: center;
}
.app-method .primary-round-icon {
  margin: 0 auto;
  width: 200px;
  height: 200px;
}
.app-method .primary-round-icon img {
  height: 100px !important;
}
.app-method h5 {
  text-transform: capitalize;
  color: var(--dark);
}
section.specifications ul li {
  font-size: 1.125rem;
  margin: 15px 0;
  text-transform: capitalize;
}
section.specifications p {
  text-transform: capitalize;
}
.note-bar {
  background: rgb(42,81,157);
  background: linear-gradient(180deg, rgba(42,81,157,1) 0%, rgba(20,38,73,1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 20px 40px;
}
.note-bar img {
  height: 70px;
  margin-right: 20px;
}
p.label-p {
  font-weight: 500;
}
.anti-microbial {
  background: url(../img/products/antimicrobial/banner.jpg) no-repeat;
}
.ventilation-banner {
  background: url(../img/products/ventilation/ventilation-banner.jpg) no-repeat;
  min-height: 500px;
  width: 100%;
  background-position: top;
  background-size: cover;
}
ul.product-ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
ul.product-ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
ul.product-ul span {
  color: var(--primary);
  margin-right: 10px;
  padding-top: 4px;
}
ul.product-ul p {
  margin-bottom: 0;
}
img.product-left-img {
  border-radius: 30px;
}
.inquiry-form .form-floating>.form-control:focus~label, .inquiry-form .form-floating>.form-control:not(:placeholder-shown)~label, .inquiry-form .form-floating>.form-select~label {
  background: #1f3c74 !important;
  opacity: 1 !important;
  height: auto;
  width: 100% !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  margin-top: 13px;
}
.text-shadow {
  text-shadow: -1px 2px 3px rgba(3,3,3,0.6);
}
section.banner-sec .banner-content h1 {
  font-size: 70px;
  line-height: 70px;
}
section.banner-sec .banner-content p {
  line-height: 27px;
}
.side-img.ecf-side-img img {
  width: 450px !important;
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #fff !important;
}
.carousel-indicators {z-index: 99 !important;}
.ventilation-list img.card-img-top {
  max-width: 300px;
  height: 300px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  padding: 20px;
  /* margin-bottom: 20px; */
}
section.air-filtration.domestic-banner.ventilation-banner {align-items: center;}
.card-img {
  background: #EFEEEE;
  border-radius: 0;
  padding-top: 20px;
}
.ventilation-list .card {height: 100%;}

.ventilation-product-img {
  background: #EFEEEE;
  min-height: 500px;
  height: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ventilation-product-img img.product-left-img {
  max-width: 500px !important;
  width: 100%;
  margin-bottom: 0;
  padding: 20px;
}
a.btn.back-btn {
  border: 1px solid #bbc9e4;
}
a.btn.back-btn:hover {
  border: 1px solid var(--primary);
}
/* responsive-sec */

@media (min-width: 1600px) {
 .container {max-width: 1700px !important;}
}

@media (max-width: 991px) {
  .container, .container-md, .container-sm {
      max-width: 900px !important; 
  }
}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1599.98px) { 
  .banner-content h1{font-size: 5rem; line-height: 80px;}
  .banner-content h4 {font-size: 2.188rem}
  .carousel-caption {width: 70%;}
  img.why-choose-img {max-height: -webkit-fill-available;}
}
/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) { 
  .img-card img {height: 350px;}
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) { 
  img.main-logo {width: 250px;}
  ul.navbar-nav.menu-bar li.nav-item a.nav-link {font-size: 1rem; margin-left: 10px;}
  .banner-content h1{font-size: 3.125rem; line-height: 50px;}
  footer h4 {margin-bottom: 15px; font-size: 1.5rem;}
  .banner-content img {max-width: 500px;}
  .home-banner {min-height: 100%;}
  .product-card {padding: 30px;}
  .product-card h3, .product-card p {width: 100%;}
  .energy-audit-cndnt p {width: 100%;}
  .inquiry-form::before{width: 400px; top:10%; right: -8%;}
  .air-filtration {min-height: 500px;}
 }

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) { 
  .product-card {padding: 30px;}
  .product-card.home-product-3, .product-card.home-product-4 { max-height: 350px !important;}
  .product-card a.btn-outline {width: 100%;}
  .product-card.home-product-1, .product-card.home-product-2, .product-card.home-product-3, .product-card.home-product-4 {min-height: 450px !important; height: 100%; margin-bottom: 0; background-position: center;}
  h2.sec-head {font-size: 2.5rem;}
  .product-card h3 { width: 100%; font-size: 2.188rem; line-height: 40px;}
  .product-card p {max-width: 100%;}
  a.btn-outline p {font-size: 1rem;}
  .product-card::before{background: rgba(51, 51, 51, 0.5); position: absolute; left: 0; top: 0; content: ''; width: 100%; height: 100%;}
  section.index-about::after, section.index-about::before {display: none;}
  img.why-choose-icon{width: 50px;}
  .banner-content {padding-top: 10px !important;}
  .banner-content h1 {font-size: 3.125rem; line-height: 50px;}
  .banner-content h4 {font-size: 1.563rem;}
  .solution-inn::before {background: rgba(51, 51, 51, 0.5); position: absolute; left: 0; top: 0; content: ''; width: 100%; height: 100%;}
  section.contact-us textarea.form-control {min-height: 100px;}
  img.banner-img {height: 550px;}
  .inquiry-form h1 {font-size: 3rem;}
  .air-filtration {padding: 20px; min-height: 400px;}
  .specifications .border-start {border-left: 0 !important;}
  .app-method .primary-round-icon { width: 150px; height: 150px;}
  .app-method .primary-round-icon img {height: 80px !important;}
  .cleaningcoating-cards .card {height: 100%; padding: 0;}
  .cleaningcoating-cards .card p {width: 100%; font-size: 1rem;}
  .cleaningcoating-cards {margin-top: -70px;}
  .air-filtration .banner-content p {max-width: 100%;}
  img.product-left-img {margin-bottom: 20px;}
  section.banner-sec .banner-content h1 {font-size: 50px; line-height: 50px;}
  .banner-bg img.banner-img {height: 700px;}
  .side-img img {max-width: 400px;}
  section.banner-sec .banner-content p {line-height: 25px; font-size: 1rem;}
 }

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) { 
    .solution-inn h3 {font-size: 2.188rem; width: 100%;}
    .product-card {padding: 20px;}
    .solution-inn {padding: 20px;}
    h2.sec-head {font-size: 2.188rem;}
    .img-card img {height: 300px;}
    .form-floating>label {font-size: 1rem;}
    .contact-us {padding: 20px;}
    .contact-dtls h5 {font-size: 1rem;}
    img.banner-img {height: 500px;}
    .carousel-caption {width: 90%;}
    .energy-audit-sec {padding: 20px;}
    .banner-content.product-banner h1 { max-width: 100%;}
    .interior-type-content h1 {font-size: 2.75rem;}
    section.whatis-ncco h1 {font-size: 3.125rem;}
    .card h2 {font-size: 1.563rem;}
    section.commercial-banner h1 {width: 60%;}
    section.coating-technology .img-card h2 {max-width: 100%;}
    .installation {padding: 20px;}
    section.banner-sec .banner-content p {line-height: 22px; font-size: .875rem;}
    .banner-content h2{font-size: 3.5rem;}
 }  

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 
  .product-card h3 {font-size: 1.875rem; line-height: 40px;}
  h6.sec-sub-head {font-size: 1.25rem;}
  section.contact-us .card-body {padding: 20px !important;}
  .contact-us {padding: 10px;}
  img.contact-img {max-width: 200px;}
  .inquiry-form {padding: 30px;}
  .inquiry-form h1 {font-size: 2.25rem;}
  .inquiry-form::before{display: none;}
  .inquiry-form textarea.form-control {min-height: 100px;}
  section.product-list .card img {height: 250px;}
  .interior-types-card::after {display: block;}
  .interior-types-card::after { position: absolute; background: rgb(51 51 51 / 66%); width: 100%; height: 100%; content: ''; left: 0; top: 0; border-radius: 30px; transition: all 0.6s ease-in-out;}
  .banner-content h1 { font-size: 2.5rem; line-height: 40px;}
  .air-filtration {align-items: start;}
  .specifications p {width: 100%;}
  .installation-content {padding: 20px;}
  .side-img img {width: 100% !important; max-width: 300px !important;}
  section.banner-sec .banner-content h1 {font-size: 35px; line-height: 40px;}
  .banner-bg img.banner-img {height: 600px;}
  .banner-content h2{font-size: 2.5rem;}
  ul.product-ul p {font-size: 1rem;}
  .installation {padding: 0; min-height: 450px;}
  a.btn-primary-white {padding: 10px 30px !important;}
 }

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 400px) { 
  
}







