*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    background-color: #f5efe8;
}


/* Marquee */
.marquee {
  display: flex;
  flex-wrap: no-wrap;
  overflow: hidden;
  background-color: #161616;
  align-items: center;
  padding: 0.5rem 0rem;
  width: 100%;
}

.marquee-text {
  flex-shrink: 0;
  animation: scroll 50s infinite linear;
  margin-right: 1rem;
  color: white;
  font-family: poppins, serif;
  text-transform: uppercase;
  letter-spacing: .2rem; 
  margin: 0px;
  padding: 0px;
  font-size: 1.5rem; 
}


@keyframes scroll {
  to {
    transform: translateX(-100%);
  }
}


.hero-title {
    font-family: 'didot', sans-serif;
    font-size: 10rem;
    margin: 0px;
    line-height: 9rem;
}
.hero-sub-title {
    font-family: 'didot', sans-serif;
    font-size: 2rem;
}


.section-card {
  height: 60vh;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: end;
}

.section-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.section-card p {
  margin-bottom: 0.5rem;
}

.section-card-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  transition: all 0.9s ease-in-out;
}

.section-card-image::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: var(--color-primary-10);
}

.section-card:hover .section-card-image {
  transform: scale(1.08);
  transition-duration: 3s;
  transition: all 0.9s ease-in-out;
}

.section-card-content {
  z-index: 1;
}


/* Footer */

.footer {
  border: 0.5px solid rgba(125, 125, 125, 0.68);
  z-index: 2000;
  position: relative;
}

.footer-main {
  margin-top: var(--footer-gap);
}

.top-footer-row-space {
  display: none;
}

.footer-divider {
  /* margin: 2rem 0rem; */
}

.footer-second-row-first-col {
  padding-right: var(--footer-gap);
  border-right: 0.5px solid rgba(125, 125, 125, 0.68);
}

.footer-gap {
  height: var(--footer-gap);
}

.footer-second-row-second-col {
  /* padding-left: var(--footer-gap); */
}

.footer-second-row-col {
  padding-top: var(--footer-gap);
  padding-bottom: var(--footer-gap);
}

.footer-bottom-divider{
  border-bottom: 0.5px solid rgba(125, 125, 125, 0.68);
}

.footer-ul {
  margin: 0px;
  padding: 0px;
}

.footer-link {
  color: var(--color-secondary-70);
  font-size: var(--xxsFont);
  list-style: none;
  margin-bottom: 5px;
  transition: all 0.5s ease-in-out;
}

.footer-link:hover {
  color: var(--color-secondary);
  transition: all 0.5s ease-in-out;
}

.footer-link-head h6 {
  font-size: var(--xsFont);
  margin-bottom: 9px;
}

.footer-logo-container {
  /* padding: var(--footer-gap); */
  padding-top: 2rem;
  padding-bottom: 2rem;
  border: 0.5px solid rgba(125, 125, 125, 0.68);
}

.footer-logo-container h1 {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.footer-inner-container {
  background-color: var(--color-primary);
  z-index: 1111111;
  position: relative;
}

.hero-menu{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0rem;
  width: 50%;
  background-color: #161616;
  padding: 1.5rem 1.5rem 1.8rem 1.5rem;
}

.hero-menu-link{
  color: #f5efe8;
  border-bottom: 1px solid #f5efe8;
  padding: 0rem 0rem 1rem 0rem;
}


.mobile-product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  position: relative;
}

.mobile-product-gallery img {
  height: 100% !important;
  max-width: 100% !important;
  position: absolute !important;
  object-fit: cover !important;
}

.mobile-product-gallery-container {
  height: 25vh;
}

.desktop-product-gallery-container{
  height: 35vh;
}

.desktop-product-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  position: relative;
}

.desktop-product-gallery img {
  height: 100% !important;
  max-width: 100% !important;
  position: absolute !important;
  object-fit: cover !important;
}


/* Contact Form */

.wpcf7{
	width: 100%;
}

.wpcf7-form p label{
	width: 100%;
}

.wpcf7-form p label span input{
	width: 100%;
}

.wpcf7-form p label span textarea{
	width: 100%;
}

.wpcf7-submit{
	 background-color: #161616;
  font-family: "poppins", "serif";
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  padding: 16px 45px;
  border-radius: 0px;
  transition: 0.3s ease;
  position: relative;
  width: max-content !important;
  z-index: 1;
}