@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
}

:root {
  --black: #000;
  --white: #fff;
  --blue: #E21E25;
  --red: #24669A;
}
/* safety-first-fixed-css */
.safety-first-fix{
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
}
.safety-first-fix img{
  height: 250px;
}
@media(max-width:768px){
  .safety-first-fix{
    position: fixed;
    bottom: 0;
    right: 0px;
    z-index: 9999;
  }
  .safety-first-fix img{
    height: 250px;
  }
}
@media(max-width:450px){
  .safety-first-fix img {
    height: 150px;
  }
}
/* safety-first-fixed-css */

/* fixede-icon-style-start */
.whatsapp-fixed{
    position: fixed;
    bottom: 430px;
    right: 0;
    z-index: 999;
}
.whatsapp-fixed a{
    text-decoration: none;
    padding: 10px 18px;
    font-size: 24px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50%;
}
.phone-fixed{
    position: fixed;
    bottom: 370px;
    right: 0;
    z-index: 999;
}
.phone-fixed a{
    text-decoration: none;
    padding: 10px 16px;
    font-size: 22px;
    background-color: var(--blue);
    color: #fff !important;
    border-radius: 50%;
}
/* fixed-icon-style-end */





/* heading style start */
.heading {
  margin-bottom: 23px;
}
.heading h1 {
  text-transform: uppercase;
  padding: 5px;
  background-color: var(--blue);
  color: #fff;
  display: inline-block;
  font-size: 18px;
  letter-spacing: 10px;
  font-weight: 300;
  position: relative;
  margin-bottom: 10;
}
.heading h1::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 49%;
  height: 10px;
  width: 10px;
  background-color: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
}

.heading h2 {
  text-transform: uppercase;
  padding: 5px;
  background-color: var(--blue);
  color: #fff;
  display: inline-block;
  font-size: 18px;
  letter-spacing: 10px;
  font-weight: 300;
  margin-bottom: 10;
  position: relative;
}
.heading h2::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 49%;
  height: 10px;
  width: 10px;
  background-color: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
}

.heading p {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 0px;
}
.heading .line {
  height: 2px;
  width: 40px;
  background-color: var(--blue);
  display: inline-block;
}
@media (max-width: 768px) {
  .heading p {
    font-size: 20px;
    font-weight: 300;
  }
}
/* heading style end */

/* button style start*/
.btn1 {
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #000;
  color: var(--black);
  transition: 0.3s ease-in-out;
  letter-spacing: 2px;
}
.btn1:hover {
  background-color: var(--blue);
  color: #fff;
}
/* button style end */

/* topbar style start */
.topbar .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.topbar {
  padding: 8px;
  background-color: var(--blue);
}

.topbar .contact a {
  text-decoration: none;
  color: #fff !important;
}

.topbar .contact .right-border {
  height: 30px;
  width: 2px;
  background-color: #fff;
  display: inline-block;
}
@media (max-width: 768px) {
  .topbar .contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }
  .topbar .contact .right-border {
    width: 50px;
    height: 2px;
    background-color: #fff;
    display: none;
  }
  .topbar .contact a {
    font-size: 12px;
  }
}
/* topbar style end */

/* navbar style start */
.navbar {
  background: linear-gradient(#ffffff60, #ffffff57),
    url(../images/logo/nav-bar-bg.jpg);
  backdrop-filter: blur(5px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0 !important;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.navbar .img {
  width: 110px;
}
.navbar .navbar-nav .nav-link {
  color: var(--black) !important;
  font-size: 18px;
  font-weight: 500;
  margin: 0px 10px;
}

/* navbar style end */

/* about us start */
.about-us {
  background: linear-gradient(#ffffffcb, #ffffffe1),
    url(../images/about-image/about-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 0px;
}
.about-left-content p {
  text-align: justify;
  font-size: 18px;
}
.about-image{
  filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.5));
}
@media(max-width:768px){
    .about-left-content p {
        text-align: justify;
        font-size: 14px;
      }
}
/* about us end */

/* our mission vision start */
.mission {
  background: linear-gradient(  to right, #000000dc, #000000e1),url(../images/mission-vision/mission-vision-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 0px;
}

.mission-content {
  background-color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(5px);
  height: 100%;
  padding: 10px;
  border-radius: 10px;
}

.m-img {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.m-img img {
  /* box-shadow: rgba(255, 255, 255, 0.15) 1.95px 1.95px 2.6px; */
  filter: drop-shadow(4px 4px 6px rgba(255, 255, 255, 0.5));
}

.mission-content .line {
  height: 3px;
  width: 60px;
  background-color: var(--blue);
  margin-bottom: 10px;
}

.mission-content p {
  margin-bottom: 0px;
  font-size: 18px;
  text-align: justify;
}

@media (max-width: 768px) {
  .mission-content p {
    margin-bottom: 0px;
    font-size: 14px;
    text-align: justify;
  }
}
/* our mission vision end */

/* why us start */
.why-us {
  padding: 50px 0px;
  background-color: rgb(236, 228, 228);
}
.why-us-content p {
  font-size: 18px;
}
.why-us-content h3 {
  font-weight: 600;
  color: var(--black);
}
.why-us-certificates .carousel-control-next1,
.why-us-certificates .carousel-control-prev1 {
  outline: none !important;
  margin-top: 10px !important;
  background-color: var(--black);
  border: none;
  margin-bottom: 0;
  padding: 3px 5px;
  text-align: center;
}
.text {
  display: inline-block;
  -webkit-text-stroke: 2px #fff;
  border-radius: 50%;
  font-size: 60px;
  font-weight: 500;
  color: transparent;
}
    .text1 {
  display: inline-block;
  -webkit-text-stroke: 2px #000;
  border-radius: 50%;
  font-size: 60px;
  font-weight: 500;
  color: transparent;
}
.points-to-why-us{
  padding: 10px 10px 10px 30px;
  border-radius: 10px;
  background-color: var(--blue);
  min-height: 350px;
}
.points-to-why-us h4{
  color: #fff;
  margin-bottom :20px;
}
.points-to-why-us p{
  color: #fff;
  font-size: 18px;
}
.points-to-why-us1{
  padding: 10px 10px 10px 30px;
  border-radius: 10px;
  background-color: var(--white);
  min-height: 350px;
}
.points-to-why-us1 h4{
  color: #000;
  margin-bottom :20px;
}
.points-to-why-us1 p{
  color: #000;
  font-size: 18px;
}
@media(max-width:768px){
    .why-us-content p {
        font-size: 14px;
      }   
}
/* more why us start  */

/* more why us end */
/* why us end */

/* products css start */
.our-products {
  padding: 50px 0px;
}
.product-card {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.product-card img {
  width: 100%;
}
.product-content {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--blue);
  padding: 10px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
.product-content h3 {
  color: var(--white);
  text-align: center;
}
.product-content a {
  text-decoration: none;
  color: #fff !important;
  text-align: center;
}
.product-card:hover .product-content {
  opacity: 1;
  height: 100%;
}
.responsive-product{
  display: none;
}
@media(max-width: 768px){
.desktop-product{
  display: none;
} 
.responsive-product{
  display: block;
}
}
/* products css end */

/* contact-us start */
.contact-us {
  padding: 50px 0px;
  background-color: rgb(236, 228, 228);
}
.contact-form {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  /* border: 1px solid #000; */
  padding: 40px 10px;
  margin: 0px 100px;
  background-color: var(--white);
  /* width: 100%; */
}

.address-card {
  position: absolute;
  left: -50px;

  background-color: var(--blue);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.address-card h3 {
  color: #fff;
}
.address-card p {
  color: #fff;
}
.address-card i {
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.address-card a {
  text-decoration: none;
  color: #fff;
}
.address-card .contact-social a{
    color: #fff !important;
}
.form {
  padding: 20px;
}
.form form input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 10px;
  border: none;
  border-bottom: 2px solid var(--blue);
}

.form form textarea {
  margin-bottom: 10px;
  border: none;
  padding: 10px 10px;
  border-bottom: 2px solid var(--blue);
}
.form form input:focus,
.form form textarea:focus {
  outline: none;
}
.captchasep1 {
  display: flex;
}
.captchasep1 input {
  width: 100% !important;
  margin-top: 0 !important;
  height: 63px;
}
.captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-radius: 5px;
  border-top: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  background: url(../images/logo/captcha-bg.jpg);
  font-weight: bolder !important;
}
.captchasep1 .captcha-codes-sec p {
  margin-bottom: 0;
  letter-spacing: 9px;
  font-style: italic;
  font-size: 24px;
  padding: 10px;
  height: 100%;
  color: #000;
  font-weight: bolder !important;
}

@media (max-width: 768px) {
  .contact-form {
    margin: 0px;
  }
  .address-card {
    position: static;
  }
  .captchasep1 {
    display: block;
  }
}

.form form .submit {
  background-color: var(--blue) !important;
  color: var(--white) !important;
}
@media (max-width: 768px) {
  .captchasep1 .captcha-codes-sec p {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .captchasep1 .captcha-codes-sec p {
    font-size: 18px;
  }
}

.captchasep1 .captcha-codes-sec {
  margin-bottom: 10px;
}

.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 22px;
  outline: none;
  background: transparent;
  height: 100%;
  border: none;
  font-weight: bolder;
}

.captchasep1 .captcha-codes-sec button i {
  background: #000;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
}
/* contact-us end */

/* blog-section-start */
.blog-section{
    padding: 50px 0px;
}
.blog-card{
    /* border: 1px solid #000; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.blog-card .blog-banner img{
    width: 100%;
}
.blog-card .blog-content{
    padding: 12px 0px 30px 20px;
    background-color: rgb(236, 228, 228);
}
.blog-card .blog-content .date{
 font-size: 13px;
 color: rgb(100, 99, 99);
 margin-bottom: 20px;
}
.blog-card .blog-content h3{
    font-size: 22px;
    margin-bottom: 20px;
}
.blog-card .blog-content p{
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* blog-section-end */
/* client start */
.client {
    padding: 50px 0px;
    background-color: rgb(236, 228, 228);
}
.client .item{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: 10px 0px;
}
/* client end */





/* footer style start */
.footer {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 50px 0px;
}

.footer .footer-img {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.footer .quick-link ul {
    padding-left: 0px;
}

.footer .quick-link ul li {
    list-style: none;
    line-height: 35px;
    font-weight: 500;
}
.footer .quick-link h3{
    margin-bottom: 0px;
    color: var(--blue);
}
.footer .line{
    height: 2px;
    width: 50px;
    background-color: var(--blue);
    display: inline-block;
    margin-bottom: 15px;
}

.footer .quick-link ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}
.footer .quick-link .products-links{
    display: flex;
    gap: 20px;
}
.footer .reach-us p i {
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #000;

}
.footer .reach-us h3{
    margin-bottom: 0px;
    color: var(--blue);
}
.footer .reach-us p a {
    text-decoration: none;
    color: #000 !important;
    font-weight: 500;
}

.footer .reach-us p {
    font-weight: 500;
}
.copyright{
    padding: 20px;
    background-color: var(--blue);
}
.copyright .copyright-content{
  display: flex;
  justify-content: space-between;
}
.copyright .copyright-content .left p{
margin-bottom: 0;
color: #fff;
font-size: 18px;
}
.right p{
  color: #fff;
  font-size: 18px;
  margin-bottom: 0px;
}
.right p a{
  text-decoration: none;
  color: #fff;
}
@media(max-width:768px){
.copyright .copyright-content{
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.copyright .copyright-content .right p{
   text-align: center;
   font-size: 16px;
}
.copyright .copyright-content .left p{
   text-align: center;
   font-size: 16px;
}
}
/* footer style end */

/* responsive-section-css-start   about-us mission why-us our-products client blog-section contact-us   */

@media(max-width:768px){
    .about-us, .mission, .why-us, .our-products, .client, .blog-section, .contact-us{
        padding: 30px 0px;
    }
}

/* responsive-section-css-end */

/* sub-page-style-start */
.sub-page-heading span{
  font-size: 35px;
  color: #fff;
}
.sub-page-heading p a{
 text-decoration: none;
 color: #fff;
}
.sub-page-heading p {
    color: #fff;
}
.sub-page{
    padding: 100px 10px;
    background-color: var(--blue);
}
@media(max-width:768px){
  .sub-page{
    padding: 60px 10px;
 
}
.sub-page-heading span{
  font-size: 28px;
  color: #fff;
}
}
/* sub-page-style-end */
/* contact-map-start */
.map-div .map{
  height: 300px;
  width: 100%;
}
.map-div .map iframe{
  height: 100%;
  width: 100%;
}
/* contact-map-end */
/* blog-detail-start */
.blog-detail {
  padding: 50px 0px;
}
.blog-detail .blog-banner-img{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  /* overflow: hidden; */
  padding: 5px;
  position: relative;
}
.blog-detail .blog-banner-img img{
  position: relative;
}
.blog-detail .blog-banner-img .blog-date{
  position: absolute;
  bottom: 0;
  margin-bottom: 0px;
  padding: 10px;
  background-color: var(--black);
  color: #fff;

}
.blog-detail .blog-para p{
text-align: justify;
font-size: 18px;
}
.blog-detail .blog-para h1{
font-size: 30px;
margin-top: 30px;
}
/* blog-detail-end */
/* success style start */

/* successs start */
.submit-form {
  padding: 50px 0;
}
.submit-form .submit-head {
  text-align: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 50px 10px;
}
.submit-form .submit-head i {
  color: #87BD48;
  font-size: 100px;
  border: 10px solid #87BD48;
  border-radius: 50%;
  padding: 15px 22px;
}
.submit-form .submit-head h2 {
  color: #155391;
  margin: 13px 0 0;
}
.submit-form .submit-head p {
  margin-bottom: 28px;
}

/*success style end */
/* enq-section start */
.enquiry {
  padding: 50px 0px;
}

.enquiry .product-img {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 20px;
}

.product-enq-content {
  font-size: 18px;
  text-align: justify;
}

.inq-product-phone {
  background-color: var(--blue);
}

.inq-product-phone .feature-icon i {
  padding: 10px 12px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
}

.inq-product-phone a {
  text-decoration: none;
  color: #fff !important;
  font-size: 22px;
}
.related-product{
  padding: 30px 0px;
}
/* enq-section-end */
/* sub-page-style-start */
.sub-product{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.sub-card img{
  /* border: 1px solid #ededed; */
  width: 100%;
}
.sub-product-name{
  background-color: var(--blue);
   line-height: 35px;
   transition: height 0.5s ease-in-out;
  text-align: center;
  padding: 18px;
}
.sub-product-name a{
  background-color: #fff;
  border: none;
}
/* sub-page-style-end */
/* video style start */
.video{
  width: 100%;
  height:600px
}
.video iframe{
  height: 100%;
  width: 100%;
}
@media(max-width:768px){
  .video{
      height:500px;
  }
}
.video-gallery-for-mobile{
  display: none;
}

@media(max-width:768px){
  .video-gallery-for-mobile{
      display: block;
  }
  .video-gallery-for-desktop{
      display: none;
  }
}
/* video style end */
