@charset "UTF-8";
/*----------------------------------------------

[Master Stylesheet]

Project:    Roots Precision
Version:    1.0
Last change:    09.01.2025
Primary use:    AGT 
Author:   Praveen Maddy

-----------------------------------------------*/
/*----------------------------------------------

[Table of contents]

1. Body
2. Header
3. Main
4. Footer

-----------------------------------------------*/
/*----------------------------------------------

[Fonts]

Base Fonts(Headings & Content)  : Be Vietnam Pro, sans-serif;
Icon Fonts                      : Fontawesome 5.15.4

------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro: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");
html {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  font-family: "Be Vietnam Pro", sans-serif;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none !important;
  margin-block-start: 0;
  -ms-margin-block-start: 0;
  -moz-margin-block-start: 0;
  -o-margin-block-start: 0;
  margin-block-end: 0;
  -ms-margin-block-end: 0;
  -moz-margin-block-end: 0;
  -o-margin-block-end: 0;
  padding-inline-start: 0;
  -ms-padding-inline-start: 0;
  -moz-padding-inline-start: 0;
  -o-padding-inline-start: 0;
}

li {
  text-decoration: none !important;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: initial;
}

a,
a:link,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

::-ms-expand {
  display: none;
}

::-ms-clear {
  display: none;
}

:focus {
  box-shadow: none !important;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  border: unset;
}

.mx-0-auto {
  margin: 0 auto;
}

.btn.focus,
btn.focus,
.btn:focus,
btn:focus,
button:focus {
  border-color: unset !important;
  outline: none !important;
  box-shadow: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
}

input:-internal-autofill-selected {
  background-color: transparent;
}

/* clears the ‘X’ from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input {
  background-color: transparent;
}
input:focus {
  outline: none;
  border: initial;
  box-shadow: none;
}

select {
  background-color: transparent;
}
select:focus {
  outline: none;
  border: initial;
  box-shadow: none;
}

textarea {
  resize: none;
}
textarea:focus {
  outline: none;
  border: initial;
  box-shadow: none;
}

.bg-theme {
  background-color: #ec6504;
}

.text-theme {
  color: #ec6504;
}

.text-dark {
  color: #393231;
}

.bg-dark {
  background-color: #393231;
}

.bg-gray {
  background-color: #e6e6e6;
}

/*------------------------------------------------Main-SCSS------------------------------------------------*/
.custom-spacing {
  padding-top: 60px;
  padding-bottom: 60px;
}

/*------------------------------------------------Header------------------------------------------------*/
header .topbar {
  padding: 10px 0px;
  background-color: #ec6504;
}
header .topbar ul {
  display: flex;
  justify-content: flex-end;
  gap: 0px 10px;
}
header .topbar ul li i {
  color: #ffffff;
  padding-right: 5px;
}
header .topbar ul li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #ffffff;
}
header .navbar {
  padding: 10px 0px;
  background-color: #ffffff;
}
header .navbar .navbar-nav {
  gap: 0px 15px;
}
header .navbar .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #222222;
  padding: 0;
  text-transform: uppercase;
}
header .navbar .navbar-toggler {
  border: 0;
}

/*------------------------------------------------About------------------------------------------------*/
.home-about h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 30px;
}
.home-about h2 span {
  padding: 10px;
  display: inline-block;
}
.home-about p {
  font-size: 20px;
  line-height: 34px;
  color: #272727;
}
.home-about .row-gap {
  gap: 40px 0px;
  padding-top: 30px;
}
.home-about ul {
  margin-left: 30px;
}
.home-about ul li {
  font-size: 20px;
  line-height: 34px;
  color: #272727;
  list-style-type: disc;
}
.home-about ul li::marker {
  color: #ec6504;
}
.home-about ul li ul {
  padding-left: 30px;
}
.home-about ul li ul li {
  font-size: 20px;
  line-height: 34px;
  color: #272727;
  list-style-type: disc;
}
.home-about ul li ul li::marker {
  color: #ec6504;
}
@media (max-width: 768px) {
  .home-about h2 {
    font-size: 28px;
    line-height: 40px;
    padding-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .home-about h2 {
    font-size: 26px;
    line-height: 34px;
  }
}

.home-service .context {
  padding-top: 25px;
}
.home-service h2 {
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 30px;
  text-align: center;
}
.home-service h3 {
  font-size: 28px;
  line-height: 40px;
  color: #ec6504;
  font-weight: 700;
  padding-bottom: 10px;
}
.home-service ul {
  margin-left: 30px;
}
.home-service ul li {
  font-size: 20px;
  line-height: 34px;
  color: #272727;
  list-style-type: disc;
}
.home-service ul li::marker {
  color: #ec6504;
}
.home-service ul li ul {
  padding-left: 30px;
}
.home-service ul li ul li {
  font-size: 20px;
  line-height: 34px;
  color: #272727;
  list-style-type: disc;
}
.home-service ul li ul li::marker {
  color: #ec6504;
}
.home-service .row-gap {
  gap: 40px 0px;
}
@media (max-width: 768px) {
  .home-service h2 {
    font-size: 28px;
    line-height: 40px;
    padding-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .home-service h2 {
    font-size: 26px;
    line-height: 34px;
  }
}

/*------------------------------------------------Products------------------------------------------------*/
.home-products h2 {
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 30px;
  text-align: center;
}
.home-products .product-heading h3 {
  font-size: 28px;
  line-height: 40px;
  color: #ec6504;
  font-weight: 700;
  padding-bottom: 10px;
}
.home-products .product-heading p {
  font-size: 18px;
  line-height: 32px;
  color: #272727;
}
.home-products .row-gap {
  gap: 30px 0px;
  margin-bottom: 60px;
}
.home-products .row-gap:last-child {
  margin-bottom: 0;
}
.home-products .products-card {
  border-radius: 10px;
  background-color: #ec6504;
  height: 100%;
}
.home-products .products-card .image {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.home-products .products-card .image img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.home-products .products-card .context {
  background-color: #ec6504;
  padding: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.home-products .products-card .context h3 {
  font-size: 20px;
  line-height: 32px;
  text-align: left;
  color: #ffffff;
  font-weight: 600;
}
@media (max-width: 992px) {
  .home-products .row-gap {
    margin-bottom: 50px;
  }
  .home-products h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (max-width: 768px) {
  .home-products h2 {
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 20px;
  }
  .home-products .row-gap {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .home-products h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .home-products .product-heading h3 {
    font-size: 26px;
    line-height: 34px;
    padding-bottom: 0;
  }
  .home-products .row-gap {
    margin-bottom: 30px;
    gap: 20px 0px;
  }
}

/*------------------------------------------------Footer------------------------------------------------*/
footer {
  padding: 15px 0px;
}
footer .footer-inn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-inn .cont-left {
  font-size: 16px;
  line-height: 28px;
}
footer .footer-inn .cont-right ul {
  display: flex;
  gap: 0px 10px;
}
footer .footer-inn .cont-right ul li a {
  font-size: 15px;
  color: #272727;
}
@media (max-width: 992px) {
  footer .footer-inn {
    flex-direction: column;
    gap: 10px 0px;
  }
  footer .footer-inn .cont-left {
    text-align: center;
  }
}

/*-------------------------------------------------Media Queries------------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .text-center-xl {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .text-center-lg {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 768px) {
  .custom-spacing {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .text-center-md {
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  .custom-spacing {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
/* -------------------------- Max-Width: < 1400px ---------------------- */
/* -------------------------- Max-Width: < 1366px ---------------------- */
/* -------------------------- Max-Width: < 1200px ---------------------- */
/* -------------------------- Max-Width: < 992px ---------------------- */
/* -------------------------- Max-Width: < 768px ---------------------- */
/* -------------------------- Max-Width: < 576px ---------------------- */

/*# sourceMappingURL=main.css.map */
