@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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
:root {
  --theme-color: #d2b056;
  --secondary-color: #4d7cf4;
  --yellow-color: #edca00;
  --white: #ffffff;
  --black: #000000;
}

/*::-webkit-scrollbar-track {*/
/*    -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);*/
/*    background-color: #F5F5F5;*/
/*    border-radius:0.625rem;*/
/*}*/

::-webkit-scrollbar {
  width: 0.3125rem;
  height: 0.125rem;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  border-radius: 0.625rem;
  background: var(--theme-color);
}

html {
  font-size: 1rem;
  scroll-behavior: initial !important;
  overscroll-behavior: none !important;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  position: relative;
  font-family: "Poppins", sans-serif;
  background: var(--white);
  box-sizing: border-box;
  overflow-x: clip;
}

p {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: #8e8e8e;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  color: var(--black);
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
button:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/*buttons*/

.themeBtn {
  background-color: var(--theme-color);
  border: 1px solid transparent;
  border-radius: 0.5rem;
  color: var(--white);
  font: 1.125rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.themeBtn:hover {
  background-color: var(--white);
  color: var(--theme-color);
  border-color: var(--theme-color);
}

section {
  position: relative;
  padding: 5rem 4rem;
}

.row [class*="col-"] {
  position: relative;
}

.secHeading {
  text-align: left;
  line-height: 1.2;
  font-size: 2.75rem;
  color: var(--black);
  text-transform: capitalize;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.secHeading.smallHeading {
  font-size: 3rem;
}

.subHeading {
  font-size: 1.5rem;
  text-transform: capitalize;
  line-height: 1.2;
  color: var(--theme-color);
  margin: 0;
}

.preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  z-index: 11111;
}

.preloader h2 {
  color: transparent;
  font-size: 12rem;
  text-transform: uppercase;
  position: relative;
  -webkit-text-stroke-width: 0.1875rem;
  -webkit-text-stroke-color: #fff;
  opacity: 0;
}

.preloader h2 .word {
  overflow: hidden;
}

.preloader h2 .word .char {
  transform: translateY(100%);
}

.preloader img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  height: 31.25rem;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1111;
}

header .logo {
  width: 10rem;
  overflow: hidden;
}

header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contentCont {
    position: absolute;
    top: 0;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #0000006b;
}

.content h3 {
    min-height: 60px;
}

.contentCont h1 {
    font-size: 4.5rem;
    font-family: "Playfair Display", serif;
    text-transform: uppercase;
    font-style: italic;
    text-align: center;
    color: var(--white);    
}

.mainSec {
  height: 700px;
  overflow: hidden;
  padding: 0;
}

.mainSec .swiper .swiper-slide{
    position: relative;
}

.mainSec .swiper .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mainSec .swiper {
  height: 100%;
}

.prodSec .row + .row {
  margin-top: 5rem;
}

.prodSec .secHeading {
  text-align: center;
}

.prodSec .secHeading + p {
  text-align: center;
}

.fullInfoCard {
  background: var(--black);
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  position: relative;
  height: 100%;
}

.fullInfoCard figure {
  height: 400px;
  width: 100%;
  overflow: hidden;
}

.fullInfoCard figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.fullInfoCard .content {
  padding: 3rem 1rem;
  position: absolute;
  z-index: 1;
  inset: 0;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

.fullInfoCard h3 {
  color: var(--black);
}

.fullInfoCard p {
  color: var(--black);
}

.contactSec .info {
  text-align: center;
}

.contactSec .info p {
  color: var(--black);
  font-weight: 600;
}

.contactSec .info p a {
  color: var(--black);
  font-weight: 400;
}

.contactForm .form-group {
  margin-bottom: 1.25rem;
}

.contentSec h4 {
  margin: 0 0 0.5rem;
}

.contentSec p {
  font-size: 1rem;
  line-height: 1.5rem;
}

.contentSec ul {
  list-style-type: disc;
  padding-left: 1.25rem;
}

.contentSec ul li {
  margin-top: 0.5rem;
}

.contentSec ul li p span {
  font-weight: 600;
}

.contentSec p + h4,
.contentSec ul + h4 {
  margin: 2rem 0 0.5rem;
}

.footerSlider {
  border-top: 1px solid var(--black);
}

.copyright {
  border-top: 1px solid var(--black);
  text-align: center;
  padding: 1rem 0;
}

.copyright p {
  color: var(--black);
}

.footerSlider .swiper-slide img {
  height: 150px;
  width: 100%;
  object-fit: contain;
}
.prodCard {
  position: relative;
  height: 100%;
}

.prodCard figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.prodCard h3 {
  font-size: 1rem;
}

.prodCard {
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 20px;
}
.prodCard .content {
  border-top: 1px solid var(--theme-color);
  padding: 1rem 1rem 0;
}
.prodCard a {
  color: var(--theme-color);
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
}

.prodCard:hover figure img {
  transform: scale(1.2);
}

.prodCard figure {
  height: 250px;
  overflow: hidden;
}
