@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");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --red: #e22426;
  --black: #020607;
  --white: #fff;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 0px;
}

h2,
h3 {
  margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 12px;
  }
}





/* fixed icons css start */
.fix-icons .whatsapp-icon {
  position: fixed;
  top: 80%;
  right: 2%;
  z-index: 999999;
}

.fix-icons .phone-icon {
  position: fixed;
  top: 80%;
  left: 2%;
  z-index: 999999;
}

.fix-icons .whatsapp-icon a {
  color: #fff;
  font-size: 24px;
  background: #000;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: rgba(255, 81, 0, 0.967) 0px 0px 5px 5px;
}

.fix-icons .phone-icon a {
  color: #fff;
  font-size: 24px;
  background: #000;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: rgba(255, 81, 0, 0.967) 0px 0px 5px 5px;
}

@media screen and (max-width: 767px) {
  .fix-icons .whatsapp-icon a {
    font-size: 16px;
    padding: 6px 10px;
  }

  .fix-icons .phone-icon a {
    font-size: 16px;
    padding: 7px 10px;
  }
}

/* end of fixed icons css */





section {
  padding: 50px 0px;
}

/* universal heading start */
.heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 35px;
}

.heading h2 {
  font-size: 25px;
  color: var(--black);
}

.heading h2 span {
  color: var(--red);
}

.heading p {
  font-size: 32px;
  text-align: center;
}

@media (max-width: 992px) {
  .heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 25px;
  }

  .heading h2 {
    font-size: 20px;
    color: var(--black);
  }

  .heading h2 span {
    color: var(--red);
  }

  .heading p {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 15px;
  }

  .heading h2 {
    font-size: 18px;
    color: var(--black);
  }

  .heading h2 span {
    color: var(--red);
  }

  .heading p {
    font-size: 14px;
  }
}

/* universal heading end */

/* universal btn start */
.universal-btn {
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #fff;
  background: #fff;
  color: var(--black) !important;
  z-index: 2;
  font-weight: 500;
  position: relative;
  transition: 0.2s ease-in-out;
}

.universal-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 100%;
  background-color: var(--red);
  z-index: -1;
  transition: 0.2s ease-in-out;
  /* transform: translate(- 10px, 20px) rotate(45deg); */
}

.universal-btn:hover {
  background-color: var(--red);
  color: #fff !important;
}

.universal-btn:hover i {
  color: var(--black) !important;
}

.universal-btn:hover::after {
  background-color: var(--white);
  color: var(--red) !important;
}

/* universal btn end */

/*================================== header start =======================================================================*/

/* topbar start */
.header .topbar .headline {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

.topbar {
  background-color: #000000;
  /* background-color: #E1272E; */
}

/* topbar end */

/* header nav and navbar style start */
.head-nav {
  border-bottom: 3px solid var(--black);
}

.head-nav .head-nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.caddress-div {
  display: flex;
  gap: 20px;
}

.caddress-div .caddr1 {
  display: flex;
  /* justify-content: center; */
  align-items: start;
}

.caddress-div .caddr1 .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.caddress-div .caddr1 .icon i {
  font-size: 23px;
  border: 2px dashed #000;
  padding: 10px;
  border-radius: 50%;
  color: var(--red);
}

.caddress-div .caddr1 .contact-nav-head p {
  margin-bottom: 3px;
}

.caddress-div .caddr1 .contact-nav-head p a {
  text-decoration: none;
  color: var(--red);
  font-weight: 500;
  font-size: 14px;
}

.navbar {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  position: relative;
}

nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: 0.2s ease-in-out;
}

.navbar .navbar-brand {
  display: none;
}

.navbar-nav .nav-item {
  border-left: 1px solid #c5c3c3;

}

.navbar-nav .nav-item .nav-link {
  color: var(--black) !important;
  transition: 0.2s ease-in-out;
}

.navbar ul li:last-child {
  border-right: 1px solid #c5c3c3;
}

.navbar-nav .nav-item:hover .nav-link {
  color: var(--white) !important;
}

.navbar-nav .nav-item:hover {
  background-color: var(--red);
}

.navbar .get-a-quote a {
  text-decoration: none;
  padding: 8px 20px;
  background-color: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  /* margin-top: 0px; */
  display: inline-block;
  transition: 0.2s ease-in-out;
}

.navbar .get-a-quote a:hover {
  color: var(--red);
  font-weight: 500;
  border: 1px solid var(--black);
  background: none;
}

/* header responsive start */
@media (max-width: 991px) {
  .head-nav .head-nav-flex {
    display: none;
  }

  .navbar .navbar-brand {
    display: block;
  }

  .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }

  .navbar .get-a-quote a {
    font-size: 14px;
    padding: 5px 10px;
    margin-left: 10px;
    margin-bottom: 5px;
  }

  .navbar ul li:last-child {
    border-right: none;
  }

  .navbar-nav .nav-item {
    border-left: none;
  }
}

@media (max-width: 768px) {
  .header .topbar .headline {
    font-size: 0.6rem;
  }

  .navbar .navbar-brand img {
    width: 160px;
  }
}

/* header responsive end */

/* header nav and navbar style end */

/*================================================== main start ==============================================*/

/* product feature start */
.feature {
  display: flex;
  align-items: center;
  background-color: var(--black);
}

.feature .pro-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--white);
  background-color: var(--black);
}

.feature .pro-feature img {
  width: 40px;
}

.feature .pro-feature h2 {
  font-size: 18px;
  margin-bottom: 0px;
  color: var(--white);
}

/* responsive product feature start */
@media (max-width: 768px) {
  .feature .pro-feature {
    gap: 5px;
    min-height: 50px;
    max-height: 50px;
  }

  .feature .pro-feature img {
    width: 20px;
  }

  .feature .pro-feature h2 {
    font-size: 12px;
    margin-bottom: 0px;
    color: var(--white);
  }
}

@media (max-width: 400px) {
  .feature .pro-feature {
    gap: 2px;
    padding: 5px;
    min-height: 40px;
    max-height: 40px;
  }

  .feature .pro-feature img {
    width: 20px;
  }

  .feature .pro-feature h2 {
    font-size: 8px;
    margin-bottom: 0px;
    color: var(--white);
  }
}

/* responsive product feature end */

/* product feature end */

/* about us css start */

.about-us {
  background: linear-gradient(#000000da, #000000e3),
    url(../img/banner/about-bg.jpg);
}

.about-us .about-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.about-us .about-content p {
  text-align: center;
  color: #fff;
  font-size: 18px;
}

.about-us .about-content p strong {
  color: var(--red);
}

.about-us-pge {
  background: linear-gradient(#fff, #fff) !important;
}

.about-us-pge .about-content p {
  color: var(--black);
}


.ab-pro-para p {
  font-size: 18px;
}


.about-products {
  border-top: 2px solid var(--black);
}

.about-pro-card {
  padding: 10px;
  /* border: 1px solid #000; */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 5px;
}

.about-pro-card .abou-pro-img {
  /* border: 1px solid #000; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.about-pro-card .abou-pro-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 100%;
}

.about-pro-card .abou-pro-desc h2 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
}

.about-pro-card .abou-pro-desc p {
  font-size: 12px;
  text-align: justify;
}

@media(max-width:768px) {
  .ab-pro-para p {
    font-size: 10px;
    text-align: justify;
  }

  .about-pro-card .abou-pro-desc h2 {
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .about-pro-card .abou-pro-desc p {
    font-size: 10px;
    text-align: justify;
  }
}

@media (max-width: 992px) {
  .about-us .about-content p {
    text-align: justify;
    color: #fff;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .about-us .about-content p {
    text-align: justify;
    color: #fff;
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .about-us .about-content p {
    text-align: justify;
    color: #fff;
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .about-us .about-content p {
    text-align: justify;
    color: #fff;
    font-size: 10px;
  }
}

/* about us css end */

/* ----------------------- products css start here ------------------------- */

.mobile-products {
  display: none;
}

 .product-card {
  border: 1px solid rgba(175, 172, 172, 0.66);
  text-align: center;
  padding: 10px 5px;
  position: relative;
  overflow: hidden;

}

.deskprocard {
  min-height: 290px;
  max-height: 290px;
}

 .product-card .product-img {
  position: relative;
  margin-bottom: 20px;
}

 .product-card .product-img img {
  transition: 0.5s ease-in-out;
}

 .product-card:hover img {
  transform: scale(1.03);
  transition: 0.5s ease-in-out;
}

 .product-card .product-text h3 {
  /* font-size: 18px; */
  font-size: 14px;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
  transition: 0.5s ease-in-out;
}

 .product-card .product-text h3:hover {
  color: var(--red);

  transition: 0.5s ease-in-out;
}

 .product-card .product-text p {
  color: var(--red);
}

 .product-card .product-text p:hover {
  color: rgb(245, 132, 27);
}

@media screen and (max-width: 991px) {
   .product-card {
    padding: 10px 5px;
    height: 500;
  }

   .product-card .product-text h3 {
    font-size: 14px;
  }

   .product-card .product-text p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .desktop-products {
    display: none;
  }

  .mobile-products {
    display: block;
  }
}

/* ----------------------- end of products css here ------------------------- */


.why-choose-section {
  /* background: #d4b1b1; */
  background: #3A0C04;
}

/* why choose css start */
.why-choose-btn a {
  border: 1px solid var(--white);
  color: var(--white);
  padding: 20px;
  border-radius: 40px;
  align-items: center;
}

.why-choose-btn a:hover {
  background-color: var(--black);
  color: #fff;
  transition: .4s ease-in-out;
}

.why-choose-btn a i {
  background-color: var(--black);
  color: #fff;
  padding: 6px 8px;
  border-radius: 50%;
  font-size: 19px;
}

.why-choose-btn a:hover i {
  background-color: #fff;
  color: var(--black);

}

.why-choose-post {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  flex-direction: column;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #fff;
}


.img-div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
}

.img-div img {
  background-color: var(--black);
  padding: 7px;
  border-radius: 50%;
}

.why-us-feature-heading-name h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.why-us-feature-heading-name p {
  margin-bottom: 0px;
  color: #aaa9a9;
  font-size: 14px;
}

.why-us-feature-card:hover .img-div img {
  background-color: var(--black);
  transition: 0.4s ease-in-out;
}

.why-us-feature-card {
  margin-bottom: 40px;
}

@media screen and (max-width:991px) {
  .why-us-feature-card {
    margin-bottom: 20px;
  }

}

@media(max-width:767px) {
  .choose-head-card h2 {
    font-size: 20px !important;
  }

  .why-choose-content p {
    font-size: 12px;
    margin-bottom: 10px !important;
  }

  .why-choose-btn a {
    font-size: 14px;
    padding: 10px;
    border-radius: 40px;
  }

  .why-choose-btn a i {
    font-size: 12px;
  }

  .why-us-feature-card {
    margin-bottom: 15px;
  }

  .why-us-feature-heading-name p {
    font-size: 12px;
    margin-bottom: 0px;
  }
}

@media screen and (max-width:460px) {

  .why-us-feature-card {
    margin-bottom: 10px;
  }

  .img-div img {
    width: 40px;
    padding: 2px;
  }

  .why-us-feature-heading-name h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 2px;
  }

}





/* blogs start================================================================= */
.blogs .blog-card .card-img {
  position: relative;
}

.blog-card {
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 5px;
}

.blogs .blog-card .card-img .img {
  position: relative;
}

.blogs .blog-card .card-img .date-overlay {
  position: absolute;
  bottom: 0%;
}

.blogs .blog-card .card-img .date-overlay p {
  padding: 10px 20px;
  margin-bottom: 0 !important;
  color: #fff;
  background-color: #000000d3;
}

.blogs .blog-card .blog-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blogs .blog-card .blog-content p {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: justify;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis !important;
}

.blogs .blog-card .blog-content a {
  -webkit-text-decoration: none;
  text-decoration: none;
  font-size: 20px;
  color: #000;
  font-weight: 600;
}

.blogs .blog-caption {
  font-size: 18px;
  font-weight: 500;
}

/* blogs end==================================================================== */








/* */
/* ---------------- contact us css start here ----------------- */

.contact-us {
  background: linear-gradient(rgba(0, 0, 0, 0.805), rgba(0, 0, 0, 0.822)),
    url(../img/contact/contactimg4.jpg) no-repeat center center/cover;

  background-attachment: fixed;
  backdrop-filter: blur(20px);
}

.contact-us .section-head {
  margin-bottom: 40px;
  text-align: center;
}

.contact-us .contact-head h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}

.contact-us .head-para {
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.contact-us .head-para span {
  color: var(--red);
}

.contact-us .contact-form .form-control {
  background-color: transparent;
  font-size: 16px;
  padding: 5px 5px !important;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0px;
  color: #fff !important;
}

.contact-us .contact-form .form-control:focus {
  color: #fff;
  box-shadow: none;
  border-color: #fff;
  background-color: transparent;
}

.contact-us .contact-form .form-control::placeholder {
  color: #fff;
}

.form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* responsive css  */

@media screen and (max-width: 991px) {
  .contact-us .head-para {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .contact-us .section-head {
    margin-bottom: 20px;
  }

  .contact-us .contact-head h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0px;
  }

  .contact-us .head-para {
    font-size: 12px;
  }
}

/* end of responsive */

/* ------------------------- captcha css start ------------------- */

.captchasep1 {
  display: flex;
}

.contact-us .contact-form .captchasep1 .form-floating label {
  color: #fff;
}

.contact-us .contact-form .captchasep1 .form-floating .form-control {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: #000;
}

.captchasep1 input {
  width: 100% !important;
  height: 40px;
}

.captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-radius: 5px;
  /* background: url(../img/logo/captcha-bg.jpg); */
}

.captchasep1 .captcha-codes-sec p {
  letter-spacing: 9px;
  font-style: italic;
  font-size: 32px;
  font-weight: 800;
  padding: 5px;
  height: 100%;
  color: #fff;
}

.captchasep1 .captcha-codes-sec {
  margin-bottom: 10px;
}

.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 22px;
  outline: none;
  height: 100%;
  border: none;
  background: none;
}

.captchasep1 .captcha-codes-sec button i {
  background: var(--red);
  color: #000;
  padding: 10px;
  border-radius: 5px;
}

/* responsive captcha */
@media screen and (max-width: 767px) {
  .captchasep1 .captcha-codes-sec p {
    letter-spacing: 2px;
    font-size: 18px;
    width: 60% !important;
  }

  .captchasep1 .captcha-codes-sec button {
    font-size: 12px;
  }

  .contact-form .captchasep1 .form-floating label {
    font-size: 14px;
    padding: 5px;
  }

  .form-floating .form-control,
  .form-floating .form-select {
    height: 2.5rem;
    line-height: 1.25;
  }

}

/* -----------captcha css end here ------------ */

/* -------------------- end of contact us css here --------------------------- */





/* footer head start===================================================== */



/* footer main start======================================================================== */
.footer {
  padding: 30px 0px;
  color: #fff;
  background: var(--black);
}

.footer .part .head h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

/* part-1 css */

.footer .part-1 p {
  font-size: 14px;
  font-weight: 300;
  color: #d6d2d2da;
}

.footer .part-1 .read-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 10px 20px;
  margin-top: 20px;
  transition: .5s ease-in-out;
}

.footer .part-1 .read-btn:hover {
  background: var(--red);
  transition: .5s ease-in-out;
}

/* part-1 css */

/* part-2 part-3 css */

.footer .part ul li a {
  color: #d6d2d2da;
  line-height: 2;
  font-size: 14px;
}



.footer .part ul li i {
  font-size: 15px;
  margin-right: 10px;
}

/* part-2 part-3 css */



/* part-4 css start */
.footer .part-4 .head h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer .part-4 p span {
  color: #fff;
  font-weight: 600;
}

.footer .part-4 p {
  color: #d6d2d2da;
  margin-bottom: 10px;
}

.footer .part-4 p a {
  color: #d6d2d2da;
}

.footer .part-4 h3 {
  font-size: 20px;
  margin-top: 20px;
}

.footer .part-4 .social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-top: 20px;

}

.footer .part-4 .social-links a i {
  font-size: 18px;
}

.footer .part-4 .social-links a {
  color: var(--red);
  background: #fff;
  padding: 12px 16px;
  border-radius: 50px;
  text-align: center;
}

/* part-4 css end */
@media screen and (max-width:1200px) {
  .part {
    margin-bottom: 20px;
  }
}

@media screen and (max-width:991px) {
  .footer .part .head h2 {
    margin-bottom: 15px;
  }
}

@media screen and (max-width:767px) {
  .footer {
    padding: 20px 0px;
  }

  .footer .part .head h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  /* part-1 css */
  .footer .part-1 p {
    font-size: 12px;
    text-align: justify;
  }

  .footer .part-1 .read-btn {
    padding: 5px 10px;
    margin-top: 10px;
  }

  /* part-1 css */
  /* part-4 css */
  .footer .part-4 .head h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer .part-4 h3 {
    font-size: 16px;
    margin-top: 10px;
  }

  .footer .part-4 .social-links a i {
    font-size: 16px;
  }

  .footer .part-4 .social-links a {

    padding: 7px 12px;
  }

  /* part-4 css end */
}

/* footer main end ========================================================================== */



/* footer copyright=============================================================================== */
.footer-widget {
  padding: 10px 0px;
  color: #fff;
  background: var(--red);
}

.footer-widget .widget-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-widget .widget-text p {
  font-size: 14px;
  margin-bottom: 0px;
}

.footer-widget .widget-text p span {
  font-size: 16px;
  font-weight: 500;
}

.footer-widget .widget-text a {
  color: #fff;
}


@media screen and (max-width: 460px) {
  .footer-widget .widget-text p {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer-widget .widget-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-widget .widget-text .t-4-a {
    margin-top: 20px;
  }
}

/* footer copyright end============================================================================= */



/* ================================subpage banner start====================================================== */
.sub-page {
  background: var(--black);
  padding: 80px 0px;
}

.sub-page .subpageheading span {
  color: #fff;
  font-size: 32px;
}

.sub-page .subpageheading p {
  font-size: 14px;
  color: #fff;
}

.sub-page .subpageheading p a {
  text-decoration: none;
  color: #fff;
}

/* ================================subpage banner end======================================================== */

/* ================================contact us start========================================================== */
.contact-card {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 10px;
  background-color: var(--black);
}

.contact-card h2 {
  color: var(--red);
  margin-bottom: 15px;
}

.contact-card p {
  text-align: center;
  font-weight: 600;
  color: var(--white);
}

.map {
  width: 100%;
  height: 350px;
}

.map iframe {
  height: 100%;
  width: 100%;
}

/* =================================contact us end=========================================================== */


/* ==============================enquiry style start=========================================================== */
   .pro-imagd {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            height: 100%;

        }

        .pro-imagd img {
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        }

        .enq-content p {
            text-align: justify;
            font-size: 18px;
        }

        .more-enq-content h3 {
            margin-top: 30px;
            margin-bottom: 10px;
        }

        .more-enq-content p {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .more-enq-content p strong {
            font-weight: 600;
            color: var(--red);
        }

        .enq-btn {
            display: inline-block;
            margin-top: 30px;
            border: 1px solid var(--white);
            padding: 10px 20px;
            background-color: var(--red);
            color: #fff;
            transition: 0.2s ease-in-out;

        }

        .enq-btn:hover {
            border: 1px solid var(--red);
            color: var(--red);
            background-color: #fff;

        }
/* ==============================enquiry style end============================================================= */