@import "tailwindcss";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

* {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body {
  background: #fdfdfd;
  font-family: "DM Sans", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.grotesk {
  font-family: "Space Grotesk", sans-serif;
}

.playfair {
  font-family: "Playfair Display", serif;
}

.product-card,
.section-header,
.intro-animate,
.team-card,
.material-card {
  opacity: 0;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.media-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-frame video {
  width: 100%;
  display: block;
  object-fit: cover;
}

.hero-img {
  min-width: 100%;
  min-height: 100%;
}

@media (max-width: 640px) {
  .hero-img {
    object-position: center center;
  }
}

.animate-marquee {
  width: max-content;
  animation: marquee 10s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 640px) {
  .animate-marquee {
    animation-duration: 10s;
  }
}

.founder {
  width: 100%;
  height: 600px;
  object-fit: contain;
}

.input-btn {
  width: 30px;
  background: #44BFC0 !important;
  color: white !important;
  border-radius: 20px !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  margin: 0 10px !important;
}

.input-btn:first-child {
  margin-left: 31.3rem !important;
}

.input-btn:active,
.input-btn:hover,
.input-btn:focus {
  background: #8E6CBF !important;
}

.tabs-boxed {
  background: #ffff !important;
}

.tabs-boxed .tab {
  width: 8rem !important;
  height: 3rem !important;
}

/* Mobile */
@media (max-width: 599px) {
 .input-btn:first-child {
  margin-left: 1rem !important; 
 } 
 }

/* Tablet */
@media (min-width: 600px) and (max-width: 1048px) { 
   .input-btn:first-child {
  margin-left: 1rem !important; 
 } 
}
 
