/*==========================
========== GLOBAL ==========
==========================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-heading);
}

::selection {
  color: var(--white-clr);
  background-color: #000;
}
p {
  font-size: 15px !important;
  font-weight: 400;
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: var(--main-clr);
}

:root {
  --main-clr: #e31e25;
  /* --main-clr: #cf372d; */
  --alt-clr: #ff7f00;
  --text-fade: #9e9e9e;
  --bg-clr: #232323;
  --sub-heading: #ffff;
  --white-clr: #ffff;
  --black-clr: #1c1b18;
  --font-heading: "Montserrat";
}

.py-60 {
  padding: 60px 0;
}
.pt-30 {
  padding-top: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}

.section-heading h2 {
  display: inline-block;
  margin-bottom: 0px;
  padding-bottom: 3px;
  font-size: 3.5em;
  text-transform: capitalize;
  color: var(--white-clr);
  font-family: var(--font-heading);
  font-weight: 800;
}

.section-heading h3 {
  margin-bottom: 0px;
  font-size: 20px;
  text-transform: capitalize;
}

.section-heading-clr h3 {
  margin-bottom: 0px;
  font-size: 20px;
  text-transform: capitalize;
}

.section-heading-clr h2 {
  display: inline-block;
  margin-bottom: 0px;
  padding-bottom: 3px;
  font-size: 3.5em;
  text-transform: capitalize;
  color: var(--main-clr);
  font-family: var(--font-heading);
  font-weight: 800;
}

a {
  text-decoration: none !important;
  font-weight: normal !important;
}
a:hover {
  color: var(--main-clr) !important;
}

#carouselExampleAutoplaying .carousel-caption h1{
 font-size: 50px;
 font-weight: 800;
 color: var(--main-clr);
}

/*==========================
========== HEADER ==========
==========================*/

.navbar-nav .nav-link.active {
  color: var(--white-clr) !important;
}

.navbar {
  background: var(--main-clr) !important;
  /* background: var(--white-clr) !important; */
  padding: 0 !important;
}

.dropdown-menu {
  padding: 0 !important;
  overflow: hidden !important;
}

.header-bg {
  background: var(--main-clr);
  color: var(--sub-heading);
}

.icon i {
  padding: 0 7px;
}

.navbar {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.nav-item a {
  color: var(--white-clr);
  /* color: var(--bg-clr); */
  border-bottom: 5px solid transparent;
}

.nav-item .nav-link {
  padding: 25px 20px !important;
  transition: 0.3s linear;
  border-bottom: 5px solid transparent;
}

.nav-item .nav-link:hover {
  border-bottom: 5px solid var(--alt-clr);
  background: var(--main-clr);
  color: #ffff !important;
}

.nav-item a:hover {
  color: var(--alt-clr);
}

.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu .dropdown-item {
  border-bottom: 1px solid #eee;
  padding: 10px !important;
}
.dropdown-menu .dropdown-item:last-child {
  border-bottom: 0;
}

.dropdown-item:hover {
  background: var(--main-clr) !important;
  color: #ffff !important;
}

/*=======================
========== BTN ==========
=======================*/

.btn-alt-sm {
  padding: 0px 40px !important;
  background: var(--main-clr) !important;
  color: #ffff !important;
  font-size: 18px !important;
  border-radius: 0 !important;
  border: 2px solid var(--main-clr) !important;
  transition: all 0.3s linear !important;
}

.btn-alt-sm:hover {
  border: 2px solid var(--main-clr) !important;
  background: transparent !important;
}

.btn-alt {
  padding: 5px 30px !important;
  background: var(--main-clr) !important;
  color: #ffff !important;
  font-size: 18px !important;
  border-radius: 0 !important;
  border: 2px solid var(--main-clr) !important;
  transition: all 0.3s linear !important;
}

.btn-alt:hover {
  border: 2px solid var(--main-clr) !important;
  background: transparent !important;
}

.btn-white {
  padding: 10px 40px !important;
  color: #ffff !important;
  font-size: 18px !important;
  border-radius: 0 !important;
  border: 2px solid #ffff !important;
  transition: all 0.3s linear !important;
}

.btn-white:hover {
  border: 2px solid #ffff !important;
  background: #ffff !important;
  color: #000 !important;
}

/*========== BTN 5 ========== */

.btn-5 {
  width: 130px;
  height: 40px;
  line-height: 42px;
  color: var(--white-clr) !important;
  padding: 0;
  border: none;
  position: relative;
  background: var(--main-clr);
  background: linear-gradient(0deg, rgb(205, 56, 45) 0%, rgb(187, 53, 44) 100%);
}

.btn-5 i {
  padding: 0 0 0 7px !important;
  font-size: 16px;
}

.btn-5:hover {
  color: #f0094a;
  background: transparent;
  box-shadow: none;
}

.btn-5:before,
.btn-5:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #f0094a;
  transition: 400ms ease all;
}

.btn-5:after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}

.btn-5:hover:before,
.btn-5:hover:after {
  width: 100%;
  transition: 800ms ease all;
}

/*==========================
========== ABOUT ==========
==========================*/

.about-content-para {
  font-size: 25px !important;
  line-height: 29px;
}

.about-inner-content p {
  font-size: 15px;
}

.about p {
  /* text-align: justify; */
  margin-bottom: 0;
  padding-bottom: 7px;
}

.about-image {
  padding: 15px 0;
  /* text-align: center; */
}

.about-image img {
  /* height: 150px; */
  /* width: 150px; */
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
/*===============================
========== QUICK LINKS ==========
===============================*/

.box-model {
  padding: 50px 0;
  background: url("../img/ouick-link-bg.jpg");
  /* background: url("../img/bg-1.jpg"); */
  background-size: cover;
  background-attachment: fixed;
}

.box-model-content h3 {
  font-weight: bold;
  font-size: 18px;
  color: var(--main-clr);
}

.box-model-content p {
  color: #9e9e9e;
  font-size: 13.5px;
  margin-bottom: 0;
}

.box-model-content {
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 10px;
  background: var(--white-clr);
  transition:0.3s linear;
}

.box-model-content:hover {
  transform: translatey(-20px);
  background: var(--alt-clr);
}

.box-model-content:hover h3,
.box-model-content:hover p {
  color: #ffff;
}

/*===========================
========== PRODUCT ==========
===========================*/
.product-content .carousel-inner a {
  margin-top: 25px;
}

.product-content {
  background: var(--main-clr);
}

.product-content-header {
  padding-bottom: 30px;
}

.product-content-header h6 {
  text-align: center;
}
.product-list {
  list-style-type: none;
  padding-left: 1rem;
}
.product-list li {
  color: var(--white-clr);
  display: flex;
}
.product-list li i{
  margin-right: 5px;
}
.product-content h5 {
  font-size: 30px;
  font-weight: normal;
  color: #ffffffaf;
  padding-bottom: 10px;
}

.product-content h5::after {
  content: " ";
  clear: both;
  width: 80px;
  display: block;
  margin: 0 0 0.4em;
  padding-top: 10px;
  border-bottom: 4px solid #ff7f00;
}

/* .product-content-img img {
  width: 350px;
  height: 350px;
} */

.product-content p {
  margin-bottom: 0;
  padding-bottom: 5px;
}

/* .product-content img {
  width: 450px !important;
  margin: auto;
  background: aliceblue;
  padding: 0 10px;
  box-shadow: rgba(53, 3, 3, 0.24) 0px 3px 8px;
  border-radius: 10px;
} */

.product-list h3 {
  color: #fff;
}

/*=============================
========== SERVICE ============
=============================*/

.service-content {
  padding: 60px 0;
}
.service {
  /* background: url("../img/background_2.jpg"); */
  background: url("../img/bg-1.jpg");
  color: #ffff;
  background-size: cover;
  background-attachment: fixed;
}
.text h3 {
  color: var(--white-clr);
  font-size: 2rem;
  font-weight: 900;
  padding: 10px 0;
}

.service p {
  color: var(--white-clr);
  font-weight: 400;
  /* color: #9e9e9e; */
}

.service-content-icon img {
  height: 200px;
  width: 200px;
  transition: 0.5s;
}
.service-content-icon img:hover {
  /* transform: rotate(360deg); */
  transform: scale(1.2);
}

/*===========================
========== CONTACT ==========
===========================*/

.contact {
  /* background-color: var(--bg-clr); */
  background: url("../img/background-footer.jpg");
  background-attachment: fixed;
  background-size: cover;
  color: #ffff;
}
.contact h2 {
  padding-top: 20px;
  color: var(--main-clr);
  font-weight: 900;
  margin-bottom: 10;
}
.contact a {
  text-decoration: none;
  color: #fff;
  font-weight: 900;
}
.contact iframe::after {
  background: rgba(0, 0, 0, 0.712);
}

/*==========================
========== FOOTER ==========
==========================*/

.footer {
  padding-top: 50px;
  /* background: #313131ee; */
  background: url("../img/background-footer.jpg");
  background-size: cover;
  /* background-attachment: fixed; */
  color: #fff;
}
.footer a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.footer p {
  margin-bottom: 0;
  padding-bottom: 7px;
  /* color: #9e9e9e; */
}

.footer h4 {
  color: var(--main-clr);
  font-weight: 700;
}
.footer h6 {
  color: var(--main-clr);
  font-weight: 700;
}
.foot-icon i {
  padding: 0 16px;
  font-size: 25px;
}
/* .foot-icon i {
  font-size: 25px;
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  background:var(--main-clr);
  border-radius: 100%;
  transition: 0.3s linear;
} 
.foot-icon i:hover{
  background-color: #000;
  color: var(--white-clr);
}*/
.foot-icon a {
  display: inline;
}

.f-bottom {
  border-top: 1px solid #5c5c5c;
}

/*====================
==========  ==========
====================*/
.product-table-content td {
  vertical-align: middle;
  background: var(--white-clr);
}
.product-table-content table {
  background: var(--white-clr);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.product-table-content td h6 {
  text-align: center;
  /* color: var(--white-clr); */
}
.product-content img {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
}
.product-table-content h2 {
  margin-bottom: 0;
  background: var(--main-clr);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  border-radius: 10px 10px 0 0;
}
.product-table-content h3 {
  margin-bottom: 0;
  color: var(--text-fade);
  text-align: center;
  padding: 10px 0;
}
.about-content p {
  padding-bottom: 15px;
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    background: var(--main-clr);
    border-radius: 5px;
  }

  51%,
  100% {
    background: var(--alt-clr);
    border-radius: 5px;
  }
}
.blink-text {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    color: var(--main-clr);
    border-radius: 5px;
  }

  51%,
  100% {
    color: var(--alt-clr);
    border-radius: 5px;
  }
}
.carousel-indicators [data-bs-target] {
  width: 10px !important;
  height: 10px !important;
  border-radius: 100% !important;
}

.product-content .carousel-inner h3 {
  font-size: 35px;
  color: #efd1d1;
  font-weight: 100;
  margin-bottom: 20px;
}
/*  */
.hero {
  /* background: linear-gradient(135deg, rgb(0 0 0 / 50%), transparent),
    url("../img/hero-bg.png");
  color: #fff; */
  position: relative;
  color: #fff;
  display: grid;
  grid-template-areas: "stacked";
}

.hero #heroCarousel {
  grid-area: stacked;
}

.hero .hero-content_wrapper {
  grid-area: stacked;
  position: relative;
  width: fit-content;
  z-index: 11;
  text-align: center;
  height: 100%;
  display: grid;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
}

.hero .hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: url('../img/hero-art.webp') no-repeat; */
  background-position: center;
  z-index: -1;
  opacity: 0.85;
}

.hero .hero-heading {
  color: var(--main-clr);
  /* color: #ffffff7d; */
  font-size: 90px;
  font-weight: 800;
}
.hero .hero-heading span{
  color: #ffff;
}
.hero .hero-title {
  /* color: var(--main-clr); */
  color: var(--white-clr);
  font-weight: 800;
}




#heroCarousel {
  border-radius: 3rem;
}

@media  (max-width: 750px) {
  /* .hero .hero-content_wrapper {
    grid-area: unset;
    padding-block: 1rem;
  } */
  .hero .hero-heading {
    font-size: 25px;
  }
  .hero .hero-title{
    font-size: 15px;
  }
}
