/* navbar */
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica/Helvetica.ttf") format("truetype");
}
@font-face {
  font-family: "Helvetica Bold";
  src: url("../fonts/Helvetica/Helvetica-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Playfair Display Italic";
  src: url("../fonts/Playfair\ display/PlayfairDisplay-Italic-VariableFont_wght.ttf")
    format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/Playfair\ display/PlayfairDisplay-VariableFont_wght.ttf")
    format("truetype");
}
/*loading*/
.loading-overlay {
  height: 100vh;
  width: 100%;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-video {
  height: 250px;
  width: 250px;
}

.loading-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/*tabs*/
.nav-btn {
  background-color: white;
  padding: 4px 24px;
  border: 1px solid #e5e7eb;
  border-radius: calc(infinity * 1px);
}
.nav-width {
    width: 40%;
}
.nav-btn.active {
  background-color: #d6295b;
  border: 1px solid #d6295b;
  color: white;
}
.nav-social-container {
  display: flex;
  gap: 12px;
}
.tab-content-container {
  background-color: #f9fafb;
  border-radius: 25px;
  padding: 16px;
}

.tab-content-container img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.bottom-logo {
  display: none;
}
/*heading*/
.heading-one {
  font-size: 48px;
  text-transform: capitalize;
  font-weight: 700;
}
.heading-two {
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 700;
}
.heading-four {
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 700;
}
.heading-three {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 700;
}
.heading-five {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
}
.heading-container {
  margin-bottom: 25px;
}

.heading-two-container {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  text-align: center;
}
/* .heading-container {
  margin-bottom: 50px;
} */
.prev-arrow {
  position: absolute;
  top: 50%;
  left: 3%;
}
.next-arrow {
  position: absolute;
  top: 50%;
  right: 3%;
}

.custom-arrow span i {
  font-size: 20px;
  color: black;
}
.slick-dots li {
  height: auto !important;
  width: auto !important;
}
.slick-dots li.slick-active button {
  width: 50px !important;
  height: 20px !important;
  border: none;
  border-radius: 95px;
  transition: width 0.2s;
}
.custom-arrow-testimonials span i {
  font-size: 40px;
  color: rgb(255, 255, 255);
}

.navbar-top {
  width: 100%;
}
.nav-contact {
  text-decoration: none;
  color: black;
  font-size: 14px;
}
.nav-social {
  text-decoration: none;
  color: black;
  font-size: 24px;
}
.nav-custom {
  /* background-color: #21353f; */
  /* height: 90px; */
}
.navbar-top {
  display: flex;
}
.navbar-brand {
  /* height: 90px !important; */
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  object-fit: contain;
  height: 60px;
  width: 150px;
}
.nav-itm {
  align-items: flex-end;
  gap: 12px;
}
.navbar-collapse {
  flex-grow: 0 !important;
}
/* .navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0 !important;
  padding-left: 48px !important;
} */
.nav-link {
  color: black !important;
  /* font-family: Helvetica Bold; */
  font-size: 16px;
  line-height: 23px !important;
  text-transform: uppercase;
}
.nav-link:hover {
  color: #d6295b !important;
}
.nav-link.active {
  color: #d6295b !important;
}
.nav-second {
  height: 50px;
  background-color: #21353f;
  margin-top: 10px;
  display: flex;
}
.nav-second ul {
  display: flex;
  list-style: none;
  height: 100%;
  float: right;
  margin: 0;
  color: white;
  font-size: 16px;
  font-family: Helvetica;
}
.nav-second ul li {
  display: flex;
  padding-left: 20px;
  align-items: center;
}
.nav-second ul:nth-child(1) {
  float: left;
  margin-left: -6.5%;
  text-transform: uppercase;
  font-family: Helvetica Bold;
}
.nav-second p {
  margin: 0;
  padding-left: 10px;
}

/*utilities*/

.text-white {
  color: white;
}
.section {
  padding: 100px 0;
}

.section-bg {
  background-image: linear-gradient(90deg, #fddce5 25%, rgba(0, 0, 0, 0) 75%);
}
.cus-btn-primary {
  padding: 6px 28px;
  border-radius: calc(infinity * 1px);
  background-color: #d6295b;
  border: 1px solid #d6295b;
  color: white;
  text-transform: capitalize;
  text-decoration: none;
}
.cus-btn-primary:hover {
  background-color: transparent;
  border: 2px solid #d6295b;
  color: #d6295b;
}
.cus-btn-secondary {
  padding: 6px 28px;
  border-radius: calc(infinity * 1px);
  background-color: black;
  border: 1px solid black;
  color: white;
  text-transform: capitalize;
  text-decoration: none;
}
.cus-btn-secondary:hover {
  background-color: transparent;
  border: 2px solid black;
  color: black;
}
.cus-btn-margin {
  margin-top: 50px;
}
.color-primary {
  color: #d6295b;
}

.cus-badge {
  padding: 8px 12px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  text-transform: capitalize;

  background-image: linear-gradient(90deg, #9c022e 25%, #dc2d53 75%);
  display: inline-block;
  border-radius: calc(infinity * 1px);
  margin-bottom: 4px;
}

.inner-hero-wrapper {
  height: 70vh;
  background-image: linear-gradient(90deg, #fddce5 25%, transparent 75%);
}

.inner-hero-subwrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.inner-content {
  width: 60%;
}

/* .heading-4{
  text
} */
.text-3 {
  font-size: 20px;
}
.text-4 {
  font-size: 16px;
}
.text-5 {
  font-size: 14px;
}
.text-6 {
  font-size: 12px;
}
/* home */
.home-hero-wrapper {
  height: 100vh;
  width: auto;
  background-image: linear-gradient(90deg, #fddce5 25%, transparent 75%);
  position: relative;
}
.hero-img-container {
  display: flex;
  justify-content: right;
}
.hero-img {
  height: 550px;
  width: auto;
  object-fit: contain;
  text-align: center;
}
/* .home-hero-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: black;
  opacity: 80%;
 
} */

.hero-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: end;
  padding-bottom: 50px;
  position: relative;
}
.hero-slider-wrapper {
  /* position: relative; */
  width: 100%;
}
.hero-subwrapper {
  width: 100%;
}
.hero-content {
  padding-right: 2%;
}

.category-container {
  background-color: #f3f4f6;
  height: 250px;
  width: 250px;
  position: relative;
  border-radius: 16px 16px 0 0;
  margin-left: auto;
  margin-right: auto;
}
.category-container::before {
  position: absolute;
  content: "";
  background-color: #d6295b;
  border-radius: 16px 16px 0 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  rotate: -2deg;
  z-index: -1;
}
.category-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.why-container {
  border: 1px solid #d6295b;
  border-radius: 8px;
  padding: 16px;
  height: 180px;
}
.why-content {
  background-color: #d6295b;
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.why-content img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.process-border {
  position: relative;
}
.process-border::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  border-bottom: 1px dashed black;
  top: 25px;
  z-index: -1;
}
.circle-container {
  border-radius: 50%;
  background-color: #ffffff;
  color: #d6295b;
  font-size: 18px;
  font-weight: 700;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  margin-bottom: 40px;
}
.process-items {
  background-color: #ffffff;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  height: 250px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
}

.process-items::before {
  position: absolute;
  content: "";
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;

  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid #ffffff;
}
.process-icon {
  margin-top: 32px;
  display: inline-block;
  font-size: 32px;
  color: #d6295b;
}

.gallery {
  column-count: 4;
  column-gap: 16px;
  column-fill: balance; /* This balances column heights */
}

.gallery a {
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
  break-inside: avoid;
  page-break-inside: avoid; /* Better browser support */
}

.gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  vertical-align: bottom;
  display: block;
}
.testimonial-content {
  background-color: #d6295b;
  padding: 16px;
  border-radius: 26px;
  margin: 0 16px;
}
.testimonail-slider-container {
  position: relative;
}

.prev-test {
  position: absolute;
  top: 50%;
  left: -3%;
}
.next-test {
  position: absolute;
  top: 50%;
  right: -3%;
}

.circle-container p {
  margin-bottom: 0;
}
.social-wrapper {
  position: fixed;
  bottom: 50px;
  right: 50px;
  border: 1px solid white;
  border-radius: 12px 0 0 12px;
  z-index: 2;
  padding: 12px;
}

.social-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.social-content a {
  font-size: 1.5rem;
}

.about-container {
  position: relative;
}
.about-container::before {
  position: absolute;
  content: "";
  height: 450px;
  width: 450px;
  border: 1px dashed black;
  border-radius: calc(infinity * 1px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.about-container::after {
  position: absolute;
  content: "";
  height: 450px;
  width: 450px;
  border: 1px dashed #d6295b;
  border-radius: calc(infinity * 1px);
  left: 49%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.about-circle {
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  width: 100px;
  background-color: #d6295b;
  border-radius: calc(infinity * 1px);
}
.about-container img {
  height: 450px;
  width: 100%;
  object-fit: contain;
}

/*contact-us*/
.form-item {
  display: flex;
  flex-direction: column;
}
.form-item label {
  font-size: 14px;
  font-weight: 500;
}
.form-item input {
  margin-top: 12px;
  margin-bottom: 24px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  padding: 4px 12px;
}
.form-item textarea {
  margin-top: 12px;
  margin-bottom: 24px;
  height: 60px;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  padding: 4px 12px;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-items {
  border-radius: 12px;
}
.contact-items a {
  text-decoration: none;
  color: black;
}
.contact-social a {
  color: #d6295b;
}

/*products*/
.filter-container {
}

.filter-container h2 {
  font-size: 20px;
  font-weight: 600;
}

.filter-items input {
  height: 16px;
  width: 16px;
  border-color: #d6295b;
}
.product-items-container {
  border-radius: 12px;
}
.product-items {
  border-radius: 12px;
  text-decoration: none;
  color: black;
}
.product-items:hover {
  color: gray;
  cursor: pointer;
}
.product-image {
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  background-color: #f3f4f6;
}
.product-image img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}
.cus-breadcrumbs {
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}
.cus-breadcrumbs a {
  color: black;
  text-decoration: none;
}

.product-detail-image {
  width: auto;
  height: 450px;
  background-color: #f3f4f6;
  border-radius: 24px;
}
.product-detail-image img {
  width: 100%;
  height: 450px;
  object-fit: contain;
}
.color-gray {
  color: gray;
}

.specification-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding-left: 0;
}
.p-description {
  background-color: #f3f4f6;
  border-radius: 24px;
}

/*footer*/
.footer-logo {
  height: 100px;
  width: 160px;
  object-fit: contain;
}
.footer-content h4 {
  font-size: 24px;
  font-weight: 600;
}
.footer-content h5 {
  font-size: 18px;
  font-weight: 600;
}

.footer-content ul {
  padding-left: 0;
  list-style: none;
  margin-top: 16px;
}

.footer-content a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}
.footer-content i {
  color: #d6295b;
}
.footer-content a:hover {
  color: #d6295b;
}
.footer-content li {
  padding-bottom: 8px;
}
.footer-border {
  width: 100%;
  border-bottom: 1px solid #d6295b;
  margin: 16px 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .inner-content {
    width: 70%;
  }
  .heading-one {
    font-size: 40px;
  }
  .heading-two {
    font-size: 32px;
  }
  .gallery {
    column-count: 3;
  }
  .process-border::before {
    display: none;
  }
  .process-items {
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .hero-img {
    height: 350px;
  }
  .inner-content {
    width: 80%;
  }
  .home-hero-wrapper {
    height: 70vh;
  }

  .heading-two-container {
    width: 80%;
  }
  .heading-one {
    font-size: 32px;
  }
  .heading-two {
    font-size: 28px;
  }
  .gallery {
    column-count: 2;
  }
  .about-container img {
    height: 350px;
  }
  .about-container::before {
    height: 350px;
    width: 350px;
  }
  .about-container::after {
    height: 350px;

    width: 350px;
  }
  /* .tab-content-container {
      gap: 6;
    } */
}

@media (max-width: 480px) {
  .home-hero-wrapper {
    height: auto;
    padding: 100px 0;
  }
  .hero-img-container {
    justify-content: center;
    /* padding-bottom: 20px; */
  }
  .hero-img {
    height: 250px;
  }
  .inner-content {
    width: 100%;
  }
  .heading-two-container {
    width: 100%;
  }
  .heading-one {
    font-size: 28px;
  }
  .heading-two {
    font-size: 24px;
  }
  .gallery {
    column-count: 1;
  }
  .bottom-logo {
    display: flex;
  }
  .navbar-top {
    display: none;
  }
  .nav-social-container {
    display: none;
  }
  .prev-arrow {
    left: 0;
  }
  .next-arrow {
    right: 0;
  }
  .navbar-brand {
    height: 35px;
    width: 110px;
  }
  .nav-itm {
    align-items: start;
  }
  .cus-badge {
    padding: 4px 10px;
    font-size: 16px;
  }
  .about-container img {
    height: 300px;
  }
  .about-container::before {
    height: 300px;
    width: 300px;
  }
  .about-container::after {
    height: 300px;

    width: 300px;
  }
}
