#fw-section-custom-html-41529925-5f56-401a-9e94-e719a19be544 {

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

html, body {
  font-family: 'Poppins', sans-serif;
  background: #111;
  color: white;
  height: 100%;
  overflow-x: hidden;
}

.slideshow {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.slide-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.slide-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.slide-content p {
  font-size: 1.2rem;
}

.slideshow-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.slideshow-indicators .dot {
  height: 12px;
  width: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.slideshow-indicators .dot.active {
  background-color: #fff;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 12px;
  cursor: pointer;
  z-index: 3;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 50%;
}

.arrow:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.left-arrow {
  left: 20px;
  flex-direction: row;
}

.right-arrow {
  right: 20px;
  flex-direction: row-reverse;
}

/* Slide counter inside arrows */
.slide-counter {
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 10px;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.arrow:hover .slide-counter {
  opacity: 1;
}

.slide-counter i {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .arrow {
    font-size: 1.5rem;
    padding: 10px;
  }

  .slide-counter {
    display: none;
  }
}

}














#fw-section-custom-html-cc421244-0ef6-4868-bf88-1b777f521b4b {

.dwr-about-section {
  background-color: #1a1a1a;
  color: white;
  margin: 0;
  padding: 0; /* Removes all internal spacing */
}

.dwr-about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem; /* Minimal padding, adjust bottom if needed */
}

.dwr-about-container h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #b07cff;
  text-align: center;
}

.dwr-about-container h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #b07cff;
}

.dwr-about-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.dwr-about-container ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

}

#fw-section-custom-html-8cbbcf0f-da0b-4f74-ab96-432ce6314da2 {

/* General styling for the logo bar */
.logo-bar {
  overflow: hidden;
  width: 100%;
  background: #111;
  padding: 2rem 0;
}

.logo-track {
  display: flex;
  width: 200%; /* Double width to make the scrolling seamless */
  animation: scroll 25s linear infinite; /* Infinite scrolling animation */
}

.logo-slide {
  display: flex;
}

.logo-slide img {
  width: 120px;          /* Set fixed width */
  height: 60px;          /* Set fixed height */
  object-fit: contain;   /* Preserve aspect ratio */
  margin: 0 2rem;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  flex-shrink: 0;        /* Prevent image from shrinking */
}

/* Hover effect */
.logo-slide img:hover {
  filter: grayscale(0%);
}

/* Specific scaling for Trak Racer */
.logo-slide img.trak-racer {
  transform: scale(2.5); /* Increase size of Trak Racer */
}

/* Keyframe animation for scrolling */
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

}
#fw-section-custom-html-8a6b3168-3cf9-486b-85a5-a24b56c8c46e {

/* Remove default spacing */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
}

/* Apply box-sizing to all elements */
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

/* Top image section */
.who-are-we-hero {
  position: relative;
  background-image: url('https://i.postimg.cc/QMVKTwTq/Who-Are-We-DWR-Full-Website-Photo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  color: white;
  overflow: hidden;
}

/* Purple angled section */
.who-are-we-section {
  background: #6a35cc;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
  width: 100%;
  color: white;
  padding: 0;
  margin: 0;
}

/* Overlay text */
.who-are-we-overlay {
  position: absolute;
  top: 17vh;
  left: 80vw;
  transform: translate(-80%, -20%);
  max-width: 80vw;
  width: 90%;
  text-align: center;
  color: white;
}

/* Scalable text */
.who-are-we-overlay h1 {
  font-size: 2.5vw;
  margin: 0 0 1vw 0;
}

.who-are-we-overlay p {
  font-size: 1.2vw;
  line-height: 1.5;
  margin-bottom: 1.5vw;
}

/* Button styling */
.who-are-we-button {
  display: inline-block;
  padding: 0.8vw 1.6vw;
  background-color: #b07cff;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.4vw;
  transition: background-color 0.3s ease;
  font-size: 1vw;
}

.who-are-we-button:hover {
  background-color: #ff2000;
}

/* Optional: prevent too-small scaling on very narrow screens */
@media (max-width: 400px) {
  .who-are-we-overlay h1 {
    font-size: 5vw;
  }
  .who-are-we-overlay p {
    font-size: 3vw;
  }
  .who-are-we-button {
    font-size: 3vw;
    padding: 1vw 2vw;
  }
}

}











#fw-section-custom-html-df43d511-c74d-4b9a-902f-91a4f26689a8 {

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

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  overflow-y: auto; /* Allows scrolling if content exceeds viewport height */
  color: white;
}

/* Fullscreen background image */
.hero {
  position: relative;
  width: 100%;
  min-height: 125vh;
  background: url('https://i.imgur.com/HRJi7Ms.jpeg') no-repeat center center;
  background-size: cover;
}

/* Overlay for text */
.overlay {
  position: absolute;
  top: 30%;
  left: 70%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
  width: 90%;
}

.overlay h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.overlay p {
  font-size: clamp(1.2rem, 2vw, 1rem);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.button {
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  padding: 8px 16px;
}

/* Responsive position override for mobile */
@media (max-width: 768px) {
  .overlay {
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .overlay h1 {
    font-size: 1.2rem;
  }

  .overlay p {
    font-size: 0.55rem;
  }

  .button {
    font-size: 0.85rem;
    padding: 6px 14px;
  }
}

/* Button styling */
.button {
  padding: 10px 20px;
  background-color: #b07cff;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.button:hover {
  background-color: #ff2000;
}

}






#fw-section-custom-html-7d065256-5f69-468f-8082-e21693b5e051 {
--color-primary: #7142c3;
--color-primary-rgb: 113, 66, 195;
--color-background: #212121;
--color-background-rgb: 33, 33, 33;
--color-on-primary: #ffffff;
--color-on-primary-rgb: 255, 255, 255;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-product-image-background: #ffffff;
--color-background-brightness: 33;
background-color: var(--color-background);
color: var(--color-on-background);

}

#fw-section-password {

.password__container {
  background-image: url("https://i.postimg.cc/HnJntLTs/DWR-coming-soon-Cartoon-Porsche.png");
  background-repeat: no-repeat;
  background-size: contain;  /* Maintains the image's aspect ratio */
  background-position: center center;  /* Centers the image */
  height: 100vh;  /* Optional: ensures the container takes up full height */
  width: 100%;  /* Optional: makes the container span the full width of the screen */
}

.countdown {
    position: absolute; /* or relative/fixed depending on your layout */
    top: 920px; /* Move the timer down by 50px */
    left: 50%; /* Center it horizontally */
    transform: translateX(-50%); /* Adjust for perfect horizontal centering */
}

}


#fw-section-custom-html-7e60ad16-694a-4c99-8231-800075c67102 {

/* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  color: white;
  background-color: #000;
  padding: 0;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 125vh; /* Ensures that the section height is sufficient on larger screens */
  background: url('https://i.postimg.cc/pVYRg81q/Who-Are-We-DWR-Full-Website-Photo.png') no-repeat center center;
  background-size: cover; /* Keeps the image fully covered without distortion */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  height: auto; /* Automatically adjusts the height based on the content */
}

/* Overlay text container for the hero section */
.overlay {
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 2rem;
  position: absolute;
  top: 15%; /* Keeps the text 15% from the top */
  left: 70%; /* Keeps the text 70% from the left */
  transform: translateX(-50%); /* Centers the text horizontally */
}

.overlay h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.overlay p {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Button Styling */
.button {
  padding: 10px 20px;
  background-color: #b07cff;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-top: 1rem; /* Added margin to separate the button */
}

.button:hover {
  background-color: #ff2000;
}

/* About Section */
.dwr-about-section {
  background-color: #1a1a1a;
  color: white;
  padding: 1rem 1rem;
  
  display: flex;
  justify-content: center;
}

.dwr-about-container {
  max-width: 900px;
  width: 100%;
  padding: 1rem;
}

.dwr-about-container h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #b07cff;
  text-align: center;
}

.dwr-about-container h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #b07cff;
}

.dwr-about-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.dwr-about-container ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Centering the Join Us Button in About Section */
.button-container {
  display: flex;
  justify-content: center; /* Centers the button horizontally */
  margin-top: 2rem; /* Adds space between the text and the button */
}

/* Ensure the background image doesn't get squashed on mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 50vh; /* Reduces the height on smaller screens */
    background-position: center center; /* Keeps the focus on the center of the image */
    background-size: cover; /* Ensures the image covers the area without stretching */
  }

  .overlay {
    top: -7%; /* Adjust text placement for better visibility */
    left: 56%; /* Centers the text horizontally on mobile */
    transform: translateX(-50%); /* Maintains centering */
  }

  .overlay h1 {
    font-size: 1rem; /* Adjusts the font size for mobile */
  }

  .overlay p {
    font-size: 0.4rem; /* Adjusts the font size for mobile */
  }

  .dwr-about-section {
    padding: 1.5rem 1rem;
  }

  .dwr-about-container {
    padding: 0.5rem;
  }

  .dwr-about-container h2 {
    font-size: 1.8rem; /* Slightly smaller on mobile */
  }

  .dwr-about-container p {
    font-size: 0.95rem; /* Adjusted paragraph size for mobile */
  }

  .dwr-about-container ul {
    padding-left: 1rem; /* Reduced left padding for mobile */
  }

  .button {
    font-size: 0.9rem;
    padding: 8px 16px; /* Adjusted button padding for mobile */
  }
}

}