@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");

:root {
  --primary-color: #9c2a2c;
  --primary-100: white;
  --primary-200: #d32f2f;
  --primary-400: #8b2224;
  --primary-600: #d6d6d6;
  --primary-700: #f8f8f8;
  --primary-800: #555;
  --primary-900: black;
  --dark-gradient: linear-gradient(180deg, #1b1b1b 0%, #111 100%);
  --border-radius: 10px;
}

/* GENERAL CSS START */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

ol,
ul {
  margin: 0 !important;
  padding: 0 !important;
}

a {
  text-decoration: none !important;
  font-size: 16px;
  transition: all 0.3s ease;
  color: black;
}

li {
  list-style: none;
}

section {
  padding: 60px 0;
  scroll-margin-top: 180px;
}

@media (max-width: 992px) {
  section {
    scroll-margin-top: 180px;
  }
}

img {
  max-width: 100%;
  display: block;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

.container-fluid {
  width: 95%;
  margin: 0 auto;
}

@media (max-width: 1320px) {
  .container {
    padding-inline: 15px;
  }
}

.logo {
  max-width: 250px;
}

.btn {
  padding: 15px 60px;
  background-color: var(--primary-400);
  border: 1px solid var(--primary-400);
  color: var(--primary-100);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.btn-wrapper {
  text-align: center;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.section-title .title {
  font-size: 32px;
}

.section-title .title-desc {
  font-size: 18px;
  font-weight: 300;
}

.section-title .title {
  border-right: 1px solid var(--primary-400);
  padding-right: 10px;
}

@media (max-width: 992px) {
  .section-title {
    flex-direction: column;
    text-align: center;
  }
  .section-title .title {
    border-right: none;
    padding-right: 0;
  }
}

/* GENERAL CSS END */

/* CONTENT WRAPPER START */

.content-wrapper {
  padding: 20px 0px;
}

.content-wrapper ul,
.content-wrapper ol {
  padding-left: 40px !important;
  margin-bottom: 20px !important;
}

.content-wrapper ul li,
.content-wrapper ol li {
  list-style: disc;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
  position: relative;
}

.content-wrapper p {
  margin-bottom: 20px;
}

.content-wrapper h2,
.contnet-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
  margin-bottom: 20px;
}

.content-wrapper img {

  margin: 20px 0;
}

/* CONTENT WRAPPER END */

/* ABOUT SECTION START */

.about {
  background-color: var(--primary-700);
}

.about .about-top {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.about .about-top-left {
  grid-column: span 7;
}

@media (max-width: 992px) {
  .about .about-top-left {
    grid-column: span 12;
  }
}

.about .about-top-left .title {
  margin-bottom: 15px;
}

.about .about-top-left .title .top {
  font-size: 27px;
}

.about .about-top-left .title .bottom {
  font-size: 32px;
  color: var(--primary-400);
}

.about .about-top-left .desc {
  margin-bottom: 30px;
}

.about .about-top-right {
  grid-column: span 5;
}

.about .about-top-right img {
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 992px) {
  .about .about-top-right {
    grid-column: span 12;
  }
}

.about-bottom {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.about-bottom .about-box {
  grid-column: span 3;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: var(--primary-100);
  padding: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.about-bottom .about-box i {
  font-size: 32px;
  color: var(--primary-400);
}

.about-bottom .about-box .title {
  font-size: 18px;
}

@media (max-width: 992px) {
  .about-bottom .about-box {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .about-bottom .about-box {
    grid-column: span 12;
  }
}

/* ABOUT SECTION END */

/* WHY US SECTION START */

.why-us .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.why-us .container .why-us-box {
  grid-column: span 4;
  padding: 30px;
}

@media (max-width: 992px) {
  .why-us .container .why-us-box {
    grid-column: span 12;
  }
}

.why-us .container .why-us-box:not(:last-child) {
  border-right: 1px solid var(--primary-600);
}

.why-us .container .why-us-box .title {
  font-size: 18px;
  border-left: 3px solid var(--primary-400);
  padding-left: 10px;
  margin-bottom: 15px;
}

/* WHY US SECTION END */

/* PRODUCTS SECTION START */

.list-product {
  background-color: var(--primary-700);
}

.list-product .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.list-product .category-box {
  grid-column: span 4;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

@media (max-width: 992px) {
  .list-product .category-box {
    grid-column: span 12;
  }
}

.list-product .category-box .category-image {
  overflow: hidden;
  position: relative;
}

.list-product .category-box .category-image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.list-product .category-box:hover .category-image img {
  transform: scale(1.1);
}

.list-product .category-box .category-image img {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.list-product .category-box .category-content {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  color: var(--primary-100);
}

.list-product .category-box .category-content .title {
  font-size: 27px;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.list-product .category-box .category-content .desc {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.list-product .category-box:hover .category-content .desc {
  display: block;
  animation-name: slideUp;
  animation-duration: 0.35s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

/* PRODUCTS SECTION END */

/* GALLERY SECTION START */

.gallery .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.gallery-box {
  grid-column: span 3;
  position: relative;
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
}

@media (max-width: 992px) {
  .gallery-box {
    grid-column: span 6;
  }
}

.gallery-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-box i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 32px;
  color: var(--primary-100);
  transition: all 0.3s ease;
  opacity: 0;
}

.gallery-box:hover::after {
  opacity: 1;
}

.gallery-box:hover i {
  opacity: 1;
}

.gallery-box img {
  width: 100%;
}

/* GALLERY SECTION END */

/* BLOG SECTION START */

.blog .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.blog-box {
  display: block;
  grid-column: span 3;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

@media (max-width: 992px) {
  .blog-box {
    grid-column: span 12;
  }
}

.blog-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.blog-box img {
  width: 100%;
  transition: all 0.3s ease;
}

.blog-box:hover img {
  transform: scale(1.1);
}

.blog-box .title {
  font-size: 20px;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  color: var(--primary-100);
}

/* BLOG SECTION END */

/* CTA SECTION START */

.cta {
  padding: 90px 0;
  position: relative;
  z-index: 0;
}

.cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.cta .container .cta-left {
  grid-column: span 6;
  color: var(--primary-100);
}

.cta .container .cta-left .title {
  font-size: 32px;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .cta .container .cta-left {
    grid-column: span 12;
  }
}

.cta .container .cta-right {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}
.cta .container .cta-right a {
  background-color: var(--primary-100);
  color: var(--primary-400);
  width: 50%;
  text-align: center;
  padding: 20px 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media (max-width: 992px) {
  .cta .container .cta-right {
    grid-column: span 12;
    align-items: center;
  }

  .cta .container .cta-right a {
    width: 100%;
  }
}

/* CTA SECTION END */

/* FOOTER START */

footer {
  padding: 60px 0 0 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  max-width: 250px;
}

.footer-center {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  padding: 60px 0 40px 0;
}

.footer-center .footer-col {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .footer-center .footer-col {
    grid-column: span 12;
  }
}

.footer-center .footer-col .title {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid var(--primary-900);
  padding-bottom: 5px;
}

.footer-center .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-center .footer-col ul li,
.footer-center .footer-col a {
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 40px;
}

.footer-bottom a i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary-400);
  color: var(--primary-100);
  border: 1px solid var(--primary-400);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.copyright {
  background: var(--dark-gradient);
  padding: 15px 0;
}

.copyright .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--primary-100);
}

.copyright .container a {
  color: var(--primary-100);
}

/* FOOTER END */

/* FOOTER STICKY MENU START */

.footer-sticky {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: black;
  position: fixed;
  z-index: 10;
  width: 100%;
  bottom: 0;
  padding: 0 0.5rem 1.15rem 0.5rem;
  border-top-left-radius: 2.15rem;
  border-top-right-radius: 2.15rem;
  border-top: 6px solid var(--primary-400);
}

@media (max-width: 992px) {
  .footer-sticky {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer-sticky .sticky-box {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.footer-sticky .sticky-box .icon {
  height: 48px;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}

.footer-sticky .sticky-box .text {
  font-size: 14px;
  color: white;
  text-align: center;
}

@media (max-width: 568px) {
  .footer-sticky .sticky-box .text {
    font-size: 10px;
  }
}

.footer-sticky .top-box .icon::before {
  content: "";
  position: absolute;
  height: 66px;
  width: 66px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.5;
}

.footer-sticky .top-box .icon::after {
  content: "";
  position: absolute;
  height: 56px;
  width: 56px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.75;
}

.footer-sticky .sticky-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box {
  -webkit-transform: translateY(-1.5rem);
  transform: translateY(-1.5rem);
}

.footer-sticky .top-box .text {
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
  text-align: center;
}

.footer-sticky .top-box .icon {
  background: var(--primary-900);
  border-radius: 50%;
  position: relative;
}

/* FOOTER STICKY BUTTON END */

/* CONTACT PAGE START */

.contact-box {
  padding: 30px 0 0 0;
}

.contact-box .container {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: 30px;
}

.contact-box .container .contact-item {
  grid-column: span 4;
  padding: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: var(--primary-400);
  text-align: center;
  color: var(--primary-100);
  border-radius: var(--border-radius);
}

.contact-box .container .contact-item i {
  font-size: 32px;
}

.contact-box .container .contact-item .title {
  font-size: 20px;
  font-weight: bold;
}

.contact-col {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.form-col {
  grid-column: span 8;
  background-color: var(--primary-700);
  padding: 30px;
}

.form-col .title {
  font-size: 27px;
  position: relative;
  margin-bottom: 30px;
}

.form-col .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  background-color: var(--primary-900);
  width: 50%;
  height: 1px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
}

.contact-form button {
  padding: 15px;
  cursor: pointer;
  border: 1px solid var(--primary-400);
  background-color: var(--primary-400);
  color: var(--primary-100);
  font-size: 18px;
}

.form-right-col {
  background-color: var(--primary-400);
  grid-column: span 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: var(--primary-100);
  font-size: 32px;
}

/* CONTACT PAGE END */


/* BREADCRUMB START */

.breadcrumb-container {
  padding: 30px 0;
  background-color: var(--primary-800);
}

@media (max-width:992px) {
  .breadcrumb-container {
    padding: 30px 15px;
  }
}

.breadcrumb-container .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--primary-100);
}

.breadcrumb-container .container .links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;

}

.breadcrumb-container .container .links li {
  position: relative;
}

.breadcrumb-container .container .links li:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.breadcrumb-container .container .links li a {
  color: var(--primary-100);
}



/* BREADCRUMB END */

/* SINGLE PAGE START */

.single-page {
  padding: 0 0 30px 0;
}



/* SINGLE PAGE END */

/* PRODUCT LIST PAGE START */


.product-text {
    background-color: var(--primary-700);
    padding: 0 0 60px 0;
}

.product-text .content-wrapper {
  padding: 0;
}



/* PRODUCT LIST PAGE END */

/* PRODUCT CATEGORY PAGE START */

.product-category .container {
    display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.product-box {
  grid-column: span 3;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: hidden;
  border-radius: var(--border-radius);
}


.product-image {
  overflow: hidden;
}

.product-image img {
  display: block;
  transition: all 0.3s ease;
  width: 100%;
}

.product-box:hover .product-image img {
  transform: scale(1.1);
}

.product-box .title {
  padding: 10px;
  text-align: center;
font-size: 24px;
}




/* PRODUCT CATEGORY PAGE END */


/* PRODUCT DETAIL START */

.detail-layout .container {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: 30px;
}

.detail-layout .container .detail-left {
  grid-column: span 8;
}

.detail-layout .container .detail-right {
  grid-column: span 4;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: max-content;
  position: sticky;
  top: 120px;
}

.detail-layout .container .detail-right .title {
  font-size: 24px;
  margin-bottom: 10px;
}



/* PRODUCT DETAIL END */

/* SERVICES PAGE START */

.list-services .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.list-services .services-box {
  grid-column: span 4;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

@media (max-width: 992px) {
  .list-services .services-box {
    grid-column: span 12;
  }
}

.list-services .services-box .services-image {
  overflow: hidden;
  position: relative;
}

.list-services .services-box .services-image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.list-services .services-box:hover .services-image img {
  transform: scale(1.1);
}

.list-services .services-box .services-image img {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.list-services .services-box .services-content {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  color: var(--primary-100);
}

.list-services .services-box .services-content .title {
  font-size: 27px;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.list-services .services-box .services-content .desc {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.list-services .services-box:hover .services-content .desc {
  display: block;
  animation-name: slideUp;
  animation-duration: 0.35s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}



/* SERVICES PAGE END */