@media screen and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}




/* Variables */
:root {
  /* Fonts */
  --primary-font-heading: Calibri !important;
  --primary-font-para: Calibri !important;

  /* Colors */
  --color-primary: #e31e24;
  --color-gray: #5b5b5b;
  --color-secondary-1: #ce9d9d;
  --color-secondary-2: #d9dbda;
  --web-color: #66C3D0;

  /* --secondary:; */
  --dark: #000;
  --dark-ult: #3b3a3a;
  --light: #f1eeee !important;
  --white: #ffffff;
}


* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  transition: 0.5s ease all;
  text-decoration: none !important;
  list-style: none;
  font-family: var(--primary-font-para);
  
}



html {
  scroll-behavior: smooth;
}



body {
  margin: 0;
  padding: 0;
  outline: 0;
  letter-spacing: 0.3px;
  font-family: var(--primary-font-para);
  font-size: 17px;
}


a {
  text-decoration: none;
}

ul,
ol {
  list-style-type: none;
  list-style: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  font-family: var(--primary-font-heading);
}


/* Heading */

.title {
  font-size: 28px;
}

.heading {
  font-size: 26px;
  font-family: var(--primary-font-heading);
  padding-bottom: 14px;
}

.sub-heading {
  font-size: 20px;
  padding-bottom: 12px;
}



p {
  font-family: var(--primary-font-para);
  font-size: 17px;
  line-height: 28px;
  color: #131212;
  padding-bottom: 3px !important;
  margin-bottom: 3px !important;
}

ul li {
  font-family: var(--primary-font-para);
  font-size: 17px;
  color: #131212;
}


a {
  font-family: var(--primary-font-para);
}

.para {
  color: var(--dark-ult);
  font-family: var(--primary-font-para);
}


.text-color {
  color: #e4252b;
}






.page-top-margin {
  margin-top: 67px;
}





































/*================================================================================= responsive section start*/
/* Normal desktop :1200px. */
/* Normal desktop :1024px. */
/* Tablet desktop :768px. */
/* Large Mobile :480px. */
/* Large Mobile :375px. */
/* small mobile :320px. */


@media (max-width: 1600px) {
    
     .heading {
    font-size: 33px;
    font-family: var(--primary-font-heading);
    padding-bottom: 14px;
    color:#000;
  }
  
  p {
    font-family: var(--primary-font-para);
    font-size: 19px;
    line-height: 34px;
    color: #333;
    padding-bottom: 3px !important;
    margin-bottom: 3px !important;
  }
  
  ul li{
        font-family: var(--primary-font-para);
    font-size: 19px;
    color: #333;
  }
}

@media (max-width: 1366px) {
    
       .heading {
    font-size: 26px;
    font-family: var(--primary-font-heading);
    padding-bottom: 14px;
    color:#000;
  }
  p {
    font-family: var(--primary-font-para);
    font-size: 17px;
    line-height: 28px;
    color: #333;
    padding-bottom: 3px !important;
    margin-bottom: 3px !important;
  }
  
  ul li{
        font-family: var(--primary-font-para);
    font-size: 17px;
    color: #333;
  }
}


@media (max-width: 1200px) {}

@media (max-width: 1024px) {
  p {
    font-family: var(--primary-font-para);
    font-size: 16px;
    letter-spacing: 0.3px;
    line-height: 25px;
    color: #333;
    padding-bottom: 3px !important;
    margin-bottom: 3px !important;
  }

  .heading {
    font-size: 26px;
    font-family: var(--primary-font-heading);
    padding-bottom: 14px;
  }

  #fabrication-section {
    z-index: 10000;
    padding-bottom: 0px !important;
  }
}

@media (max-width: 992px) {
  .heading {
    font-size: 24px;
    font-family: var(--primary-font-heading);
    padding-bottom: 14px;
  }
}

@media (max-width: 768px) {
  .heading {
    font-size: 26px;
    font-family: var(--primary-font-heading);
    padding-bottom: 14px;
  }
}

@media (max-width: 425px) {
  p {
    font-family: var(--primary-font-para);
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 22px;
    color: #444;
  }

  .heading {
    font-size: 22px !important;
    font-family: var(--primary-font-heading);
    padding-bottom: 14px;
  }
}

@media (max-width: 325px) {}

















/* bootstrap css modification */
/* modal ?? */

.modal-backdrop.show {
  opacity: 0.5 !important;
  /* Adjust opacity as needed */
}

body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

body.modal-closed {
  overflow: auto;
  position: static;
}

img {
  width: 100%;
  height: 100%;
}

.img-fluid {
  height: 100%;
  width: 100%;
}