/* -------------------------------------- */
/* -------------------------------------- */
/* *************** */
/* 
Table of Content

1. Banner Start



*/
/* *************** */
/* -------------------------------------- */
/* -------------------------------------- */

:root {
  --wtz-primary-color: #111312;
  --wtz-secondary-color: #e5b166;
  --wtz-gray-bg: #dee0d1;
}

/* 1. Banner Start */

.banner-hero {
  height: 90vh;
  width: 100%;
  overflow: hidden;
  background-image: url("../images/banner-image.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-content {
  background-color: #11131263;
  padding: 30px 0 50px; 
}

.banner-content h1 {
  position: relative;
  font-size: 3rem;
  font-weight: 700;
  margin-left: 3rem;
  color: var(--wtz-primary-color);
  /* color: #fff; */
  color: var(--wtz-secondary-color);
  text-transform: uppercase;
}

.banner-content p {
  position: relative;
  font-size: 1.2rem;
  margin-left: 3rem;
  color: #fff;
}

/* 1. Banner End */


/* 2. About Us Start */




/* 2. About Us End */

/* 3. our Product Start */

.our-product .card {
  border-radius: 0;
  border: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.our-product .card h4 {
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  text-align: center;
  color: var(--wtz-primary-color);
}

.prod-btn {
  background-color: var(--wtz-primary-color);
  color: var(--wtz-secondary-color);
  padding: 15px 45px;
  display: block;
  margin-top: 20px;
  width: fit-content;
}

.prod-btn:hover {
  color: #fff;
}

.bnft-icon img {
  width: 80px;
}

.why-wootz-point {
  width: fit-content;
}

/* 3. our Product End */

/* 4. Our services start */

.service-icon {
  margin-bottom: 15px;
  padding: 10px;
  text-align: center;
  background-color: var(--wtz-secondary-color);
}

.service-icon img {
  width: 55px;
}

.our-service h4 {
  font-size: 20px;
}

/* 4. Our services End */


/* 5. Contact form start */

.contact-form {
  background-image: url('../images/contact-form-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-form .form-control {
  padding: 13px;
  border-radius: 0;
}

.contact-form textarea {
  resize: none;
  height: 180px;
  margin-bottom: 30px;
}

.contact-form .form-btn button {
  background-color: var(--wtz-primary-color);
  color: var(--wtz-secondary-color);
  padding: 20px;
  width: 100%;
}

.form-backcolor {
  background-color: #e5b066cf;
  padding: 40px ;
}

/* 5. Contact form end */

@media only screen and (max-width:1024px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .our-product .card h4 {
    font-size: 16px;
  }
}

@media only screen and (max-width:980px) {

  .banner-hero {
    height: 35vh;
  }

  .banner-content h1, .banner-content p {
    margin-left: 0;
  }
}

@media only screen and (max-width: 780px) {
  .overlay {
    height: 45%;
  }

}

@media only screen and (max-width: 560px) {
  .banner-hero {
    height: 60vh;
  }

  .our-product .card h4 {
    font-size: 18px;
  }

  .our-service {
    padding: 15px;
  }

  .our-service .card {
    margin-bottom: 30px;
  }

  .why-wootzin {
    padding: 15px;
  }

  .why-wootzin .row .col-lg-6 {
    margin-bottom: 30px;
  }

}

@media only screen and (max-width: 420px) {
  .banner-hero {
    height: 80vh;
  }

  .banner-content h1 {
    font-size: 1.8rem;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .section-heading p {
    font-size: 17px;
  }

  .form-backcolor {
    padding: 40px 20px;
  }

  .contact-form h2 {
    font-size: 1.8rem;
  }
}


/* ======================================== */
/* ----------Contact Us Page Start -------*/
/* ======================================== */

.sub-page-banner-hero {
  height: 80vh;
  background-image: url('../images/cantact-us-bg-image.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.sub-page-banner-hero:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--wtz-primary-color);
  opacity: 0.7;
}

.sub-page-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.sub-page-banner-content h1 {
  color: var(--wtz-secondary-color);
  text-transform: uppercase;
  font-weight: 700;
}

.sub-page-banner-content p {
  text-transform: uppercase;
  color: #fff;
  font-size: 35px;
  font-weight: 600;
}

.contact-details .card {
  padding: 20px;
  border: 0;
  border-radius: 0;
  background-color: var(--wtz-primary-color);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-title img {
  background-color: #ffffff1b;
  padding: 5px;
  width: 60px;
}

.contact-details .card h2 {
  font-size: 25px;
  text-transform: uppercase;
  color: var(--wtz-secondary-color);
  margin: 0;
}

.contact-details .card p {
  color: #edecec;
}

.conatct-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.conatct-info i {
  color: var(--wtz-secondary-color);
}

.max-width {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--wtz-secondary-color);
  padding: 30px;
}

.contact-page-form .form-control {
  padding: 12px;
  border-radius: 0;
}

.contact-page-form textarea {
  resize: none;
  height: 180px;
}

.contact-page-form .form-btn {
  padding: 15px;
  color: #fff;
  background-color: var(--wtz-primary-color);
  width: 100%;
  margin-top: 20px;
}

@media only screen and (max-width:980px)  {

  .sub-page-banner-hero {
    height: 40vh;
  }

  .contact-details .card {
    margin-bottom: 25px;
  }

  .contact-details .card h2 {
    font-size: 20px;
  }
}

/* ======================================== */
/* --------Contact Us Page End ---------*/
/* ======================================== */

/* ====================================================================== */
/* ====================================================================== */

/* ======================================== */
/* --------About Us Page Start ---------*/
/* ======================================== */

.about-us-content h3 {
  font-size: 25px;
  font-weight: 600;
}

.about-us-content p {
  color: #434343;
}

.Totalis-by-ab h2 {
  font-size: 40px;
}

.Totalis-by-ab .card {
  background-color: #fff0dc;
  border: 0;
  border-radius: 0;
  margin-bottom: 20px;
  padding: 20px;
  height: 100%;
  display: block;
  position: relative;
}


.Totalis-by-ab .card h3 {
  font-size: 22px;
  font-weight: 600;
}

.Totalis-by-ab .card p {
  color: #434343 ;
}

.Totalis-by-ab .card img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  opacity: 0.1;
}

@media only screen and (max-width:980px) {
  .about-us-content .row {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .Totalis-by-ab h2 {
    font-size: 30px;
  }
}

/* ======================================== */
/* --------About Us Page End ---------*/
/* ======================================== */


/* ======================================== */
/* --------Product Page Start ---------*/
/* ======================================== */

.main-product-tabs {
  box-shadow: none !important;
  border: 0;
}

.main-product-tabs .nav-tabs {
  justify-content: center;

}

.main-product-tabs .nav-tabs .nav-link {
  background-color: var(--wtz-secondary-color) ;
  border-radius: 0 !important;
  padding: 12px 30px;
  max-width: 11.5rem;
  width: 100%;
  color: #fff !important;
}

.main-product-tabs .nav-tabs .nav-link.active {
  background-color: var(--wtz-primary-color);
}

.tot-sd-lite, 
.tot-sd,
.tot-sd-plus
{
  box-shadow: none !important;
}

.tot-sd-lite button, 
.tot-sd button,
.tot-sd-plus button
{
  max-width: 15rem;
  width: 100%;
  background-color: transparent;
  border: 0;
  color: var(--wtz-primary-color);
}

.tot-sd-lite button:hover,
.tot-sd button:hover,
.tot-sd-plus button:hover
{
  background-color: transparent;
  border: 0;
  color: var(--wtz-primary-color);
}

.tot-sd-lite .nav-tabs,
.tot-sd .nav-tabs,
.tot-sd-plus .nav-tabs
{
  border-bottom: 1px solid #cacaca;
}

.tot-sd-lite button.active,
.tot-sd-lite button.active:focus,
.tot-sd-lite button:focus,
.tot-sd button.active,
.tot-sd button.active:focus,
.tot-sd button:focus,
.tot-sd-plus button.active,
.tot-sd-plus button.active:focus,
.tot-sd-plus button:focus
{
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 3px solid var(--wtz-secondary-color) !important;
  background-color: transparent !important;
}

.tot-sd-lite-imgs p {
  background-color: var(--wtz-primary-color);
  padding: 10px;
  color: #fff;
}

.product-details .card {
  border: 2px solid #ececec;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; */
}

.tot-sd-lite-typology h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--wtz-secondary-color);
}

.tot-sd-lite-typology ul li {
  margin-bottom: 8px;
}

@media only screen and (max-width:980px) {
  .main-tabs {
    gap: 15px;
  }
  .sub-tab {
    justify-content: center;
    margin-top: 20px;
  }

  .tot-sd-lite-typology {
    gap: 10px;
  }
}



/* ======================================== */
/* --------Product Page End ---------*/
/* ======================================== */

/* ======================================== */
/* --------manufacturing Start ---------*/
/* ======================================== */

.gallery-img {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


/* ======================================== */
/* --------manufacturing End ---------*/
/* ======================================== */

/* ======================================== */
/* --------Brochure Page Start ---------*/
/* ======================================== */

.brochure-section {
  height: 100%;
  min-height: 100vh;
  background-image: url('../images/banner-image.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brochure-section:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--wtz-primary-color);
  opacity: 0.7;
  top: 0;
  left: 0;
}

.brochure-content {
  position: relative;
  z-index: 1;
  padding: 40px;
}

.brochure-icon {
  font-size: 80px;
  display: inline-block;
}

.brochure-icon i {
  color: var(--wtz-secondary-color);
}

.brochure-content h1 {
  color: var(--wtz-secondary-color);
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brochure-title-first {
  white-space: nowrap;
}

.brochure-buttons {
  margin-top: 30px;
}

.brochure-btn {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brochure-view-btn {
  background-color: var(--wtz-primary-color);
  color: var(--wtz-secondary-color);
}

.brochure-view-btn:hover {
  background-color: var(--wtz-secondary-color);
  color: var(--wtz-primary-color);
}

.brochure-download-btn {
  background-color: var(--wtz-secondary-color);
  color: var(--wtz-primary-color);
}

.brochure-download-btn:hover {
  background-color: var(--wtz-primary-color);
  color: var(--wtz-secondary-color);
}

@media only screen and (max-width:980px) {
  .brochure-section {
    height: 100%;
    min-height: 100vh;
  }

  .brochure-content {
    padding: 30px 20px;
  }

  .brochure-content h1 {
    font-size: 2rem;
  }

  .brochure-title-break {
    display: block;
  }

  .brochure-icon {
    font-size: 60px;
  }

  .brochure-buttons {
    flex-direction: column;
    gap: 15px !important;
  }

  .brochure-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 560px) {
  .brochure-section {
    height: 100%;
    min-height: 100vh;
  }

  .brochure-content {
    padding: 20px 15px;
  }

  .brochure-content h1 {
    font-size: 1.8rem;
  }

  .brochure-title-break {
    display: block;
  }

  .brochure-icon {
    font-size: 50px;
  }

  .brochure-btn {
    font-size: 15px;
    padding: 12px 25px;
  }
}

/* ======================================== */
/* --------Brochure Page End ---------*/
/* ======================================== */

/* ======================================== */
/* --------Floating Brochure Button Start ---------*/
/* ======================================== */

.floating-brochure-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--wtz-secondary-color);
  color: var(--wtz-primary-color);
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 16px;
}

.floating-brochure-btn i {
  font-size: 20px;
}

.floating-brochure-text {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}

.floating-brochure-btn:hover {
  background-color: var(--wtz-primary-color);
  color: var(--wtz-secondary-color);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.brochure-popup {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.brochure-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.brochure-popup-content {
  background-color: #fff;
  width: 100%;
  max-width: 300px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  border-radius: 10px;
}

.brochure-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  color: var(--wtz-primary-color);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  z-index: 10;
}

.brochure-popup-close:hover {
  transform: rotate(90deg);
  color: var(--wtz-secondary-color);
}

.brochure-popup-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wtz-primary-color);
  margin: 0 0 20px 0;
  text-align: left;
}

.brochure-popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.brochure-popup-btn {
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  border: 2px solid;
}

.brochure-popup-view {
  background-color: var(--wtz-secondary-color);
  color: #fff;
  border-color: var(--wtz-secondary-color);
}

.brochure-popup-view:hover {
  background-color: rgba(229, 177, 102, 0.9);
  border-color: rgba(229, 177, 102, 0.9);
}

.brochure-popup-download {
  background-color: var(--wtz-primary-color);
  color: #fff;
  border-color: var(--wtz-primary-color);
}

.brochure-popup-download:hover {
  background-color: rgba(17, 19, 18, 0.9);
  border-color: rgba(17, 19, 18, 0.9);
  color: var(--wtz-secondary-color);
}

@media only screen and (max-width: 768px) {
  .floating-brochure-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .floating-brochure-btn i {
    font-size: 18px;
  }

  .floating-brochure-text {
    font-size: 14px;
  }

  .brochure-popup {
    bottom: 90px;
    left: 20px;
    right: 20px;
  }

  .brochure-popup.active {
    transform: translateX(0);
  }

  .brochure-popup-content {
    max-width: 100%;
    padding: 25px 20px;
  }

  .brochure-popup-title {
    font-size: 1.3rem;
  }

  .brochure-popup-btn {
    padding: 12px 18px;
    font-size: 15px;
  }

  .brochure-popup-close {
    top: 5px;
    right: 5px;
  }
}

/* ======================================== */
/* --------Floating Brochure Button End ---------*/
/* ======================================== */