/* ===================================
   HOME PAGE STYLES
   ===================================
   
   TABLE OF CONTENTS:
   
   1. Hero Section Styles
   2. Client Showcase Section
   3. Product Features Section
   4. Responsive Design
   
   =================================== */

/* ===================================
   1. HERO SECTION STYLES
   =================================== */

.wrapper,
.content {
  position: relative;
  width: 100%;
  z-index: 1;
}
.content {
  overflow-x: hidden;
  overflow-y: hidden;
}
.content .section {
  width: 100%;
  height: 100vh;
}
.content .section.hero {
  background-color: #f0f0f098;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.image-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  perspective: 500px;
  overflow: hidden;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.image-container .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3vw;
  font-family: "Walbaum", serif;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgb(0, 0, 0);
  z-index: 3;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 5px;
}

/* ===================================
   2. CLIENT SHOWCASE SECTION
   =================================== */

.clients-showcase {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.clients-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.clients-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 3rem;
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 2;
}

.clients-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}

.clients-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 1rem 0;
  /* Remove CSS animation - will be handled by JavaScript */
  transform: translateX(0);
  transition: none;
}

.client-logo {
  flex-shrink: 0;
  width: 220px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  margin: 0; /* Remove any margin - use gap for spacing */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.client-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
}

.client-logo:hover::before {
  left: 100%;
}

.client-logo:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.client-logo img {
  /* Force consistent display size for all logos - LARGER SIZE */
  width: 180px !important;
  height: 90px !important;

  /* Maintain aspect ratio within fixed dimensions */
  object-fit: contain;
  object-position: center;

  /* Remove any inherited sizing */
  max-width: none !important;
  max-height: none !important;
  min-width: none !important;
  min-height: none !important;

  /* Visual effects */
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;

  /* Ensure proper rendering */
  display: block;
  margin: 0 auto;
}

.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

.clients-track:hover {
  animation-play-state: paused;
}

.clients-cta {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #34495e;
  position: relative;
  z-index: 2;
}

.clients-cta .phone-link {
  color: #3498db;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
}

.clients-cta .phone-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3498db;
  transition: width 0.3s ease;
}

.clients-cta .phone-link:hover::after {
  width: 100%;
}

.clients-cta .phone-link:hover {
  color: #2980b9;
}

/* Removed old keyframes - using JavaScript instead */

/* ===================================
   3. RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
  .clients-showcase {
    padding: 3rem 0;
  }

  .clients-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .client-logo {
    width: 180px;
    height: 100px;
    padding: 15px;
    margin: 0; /* Remove margin to rely on gap */
  }

  .client-logo img {
    width: 150px !important;
    height: 70px !important;
  }

  .clients-track {
    gap: 2rem; /* Consistent gap */
  }

  .clients-cta {
    font-size: 1.1rem;
    margin-top: 2rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .clients-title {
    font-size: 1.7rem;
  }

  .client-logo {
    width: 140px;
    height: 80px;
    padding: 10px;
    margin: 0; /* Remove margin to rely on gap */
  }

  .client-logo img {
    width: 120px !important;
    height: 60px !important;
  }

  .clients-track {
    gap: 1.5rem; /* Smaller gap on mobile */
  }
}

/* Ultra-small screens */
@media (max-width: 360px) {
  .client-logo {
    width: 120px;
    height: 70px;
    padding: 8px;
  }

  .client-logo img {
    width: 100px !important;
    height: 50px !important;
  }

  .clients-track {
    gap: 1rem;
  }

  .clients-title {
    font-size: 1.5rem;
  }
}

/* ===================================
   3. PRODUCT FEATURES SECTION
   =================================== */

.product-features {
  padding: 100px 0 120px;
  background-color: #e8e8e8;
  position: relative;
}

.features-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #3d4852;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.3px;
}

.features-divider {
  width: 100px;
  height: 2px;
  background-color: #3d4852;
  margin: 0 auto 70px;
}

.features-grid {
  display: grid;
  grid-template-columns: 300px auto 300px;
  grid-template-rows: auto 1fr 1fr auto;
  column-gap: 80px;
  row-gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  align-items: center;
  justify-items: center;
}

/* Top: 1 feature centered */
.feature-top {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  margin-bottom: -40px;
}

/* Middle row: 2 left + circle + 2 right */
.feature-left-top {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  align-self: start;
  justify-self: end;
}

.feature-center-image {
  grid-column: 2 / 3;
  grid-row: 2 / 4; /* Spans rows 2 and 3 */
  align-self: center;
}

.feature-center-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
}

.feature-right-top {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  align-self: start;
  justify-self: start;
}

.feature-left-bottom {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  align-self: end;
  justify-self: end;
}

.feature-right-bottom {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
  align-self: end;
  justify-self: start;
}

/* Bottom: 1 feature centered */
.feature-bottom {
  grid-column: 2 / 3;
  grid-row: 4 / 5;
  margin-top: -40px;
}

/* Feature item styles */
.feature-item {
  text-align: center;
  padding: 0;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
}

.feature-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.feature-icon i {
  font-size: 50px;
}

/* Individual icon colors matching the design */
.feature-top .feature-icon i {
  color: #008001; /* Green for Eco Friendly - exact match from reference */
}

.feature-left-top .feature-icon i {
  color: #87ceea; /* Light Sky Blue for Weather Resistant - exact match from reference */
}

.feature-right-top .feature-icon i {
  color: #fe0000; /* Bright Red for Fire Resistant - exact match from reference */
}

.feature-left-bottom .feature-icon i {
  color: #a52b2a; /* Burgundy/Brown-Red for Termite Proof bug - exact match from reference */
  font-weight: 900; /* Make bug icon bolder */
}

.feature-bottom .feature-icon i {
  color: #fea500; /* Golden Orange for Energy Saving - exact match from reference */
}

.feature-right-bottom .feature-icon i,
.feature-right-bottom .feature-icon .material-icons,
.feature-right-bottom .feature-icon ion-icon,
.feature-right-bottom .feature-icon svg {
  color: #000000; /* Pure Black for Sound Proof - matches reference */
  font-size: 3.5rem; /* Match other icons size */
}

/* Override FA6 volume-up with FA5 speaker design using custom SVG */
.feature-right-bottom .feature-icon i.fa-volume-up {
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M215.03 71.05L126.06 160H24c-13.26 0-24 10.74-24 24v144c0 13.25 10.74 24 24 24h102.06l88.97 88.95c15.03 15.03 40.97 4.47 40.97-16.97V88.02c0-21.46-25.96-31.98-40.97-16.97zm233.32-51.08c-11.17-7.33-26.18-4.24-33.51 6.95-7.34 11.17-4.22 26.18 6.95 33.51 66.27 43.49 105.82 116.6 105.82 195.58 0 78.98-39.55 152.09-105.82 195.58-11.17 7.32-14.29 22.34-6.95 33.5 7.04 10.71 21.93 14.56 33.51 6.95C528.27 439.58 576 351.33 576 256S528.27 72.43 448.35 19.97zM480 256c0-63.53-32.06-121.94-85.77-156.24-11.19-7.14-26.03-3.82-33.12 7.46s-3.78 26.21 7.41 33.36C408.27 165.97 432 209.11 432 256s-23.73 90.03-63.48 115.42c-11.19 7.14-14.5 22.07-7.41 33.36 6.51 10.36 21.12 15.14 33.12 7.46C447.94 377.94 480 319.54 480 256zm-141.77-76.87c-11.58-6.33-26.19-2.16-32.61 9.45-6.39 11.61-2.16 26.2 9.45 32.61C327.98 228.28 336 241.63 336 256c0 14.38-8.02 27.72-20.92 34.81-11.61 6.41-15.84 21-9.45 32.61 6.43 11.66 21.05 15.8 32.61 9.45 28.23-15.55 45.77-45 45.77-76.88s-17.54-61.32-45.78-76.86z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.feature-right-bottom .feature-icon i.fa-volume-up::before {
  content: "";
  visibility: hidden;
}

.feature-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
}

.feature-description {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #5a6c7d;
  max-width: 280px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  min-height: 67px; /* Ensures consistent height for ~3 lines of text */
  display: flex;
  align-items: center;
}

/* Responsive Design for Product Features */
@media (max-width: 992px) {
  .product-features {
    padding: 80px 0 100px;
    overflow-x: hidden;
  }

  .features-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    max-width: 100%;
    width: 100%;
  }

  /* Mobile order: Eco → Weather → Fire → Image → Termite → Sound → Energy */
  .feature-top {
    order: 1;
  }

  .feature-left-top {
    order: 2;
  }

  .feature-right-top {
    order: 3;
  }

  .feature-center-image {
    order: 4;
    margin: 30px 0;
  }

  .feature-left-bottom {
    order: 5;
  }

  .feature-right-bottom {
    order: 6;
  }

  .feature-bottom {
    order: 7;
  }

  .feature-item {
    width: 100%;
    max-width: 500px;
  }

  .feature-center-image img {
    width: 260px;
    height: 260px;
    margin: 0 auto;
    display: block;
  }

  .feature-icon i {
    font-size: 55px;
  }

  .feature-name {
    font-size: 1.2rem;
  }

  .feature-description {
    font-size: 0.9rem;
    max-width: 100%;
  }
}

/* Medium desktop: Reduce grid spacing to prevent cropping */
@media (min-width: 993px) and (max-width: 1199px) {
  .features-grid {
    grid-template-columns: 250px auto 250px;
    column-gap: 50px;
    padding: 0 20px;
  }

  .feature-center-image img {
    width: 260px;
    height: 260px;
  }

  .feature-item {
    max-width: 250px;
  }
}

/* Tablet-specific: 2-column grid layout */
@media (min-width: 769px) and (max-width: 992px) {
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    padding: 0 40px;
  }

  /* Reset order for grid layout */
  .feature-top,
  .feature-left-top,
  .feature-right-top,
  .feature-center-image,
  .feature-left-bottom,
  .feature-right-bottom,
  .feature-bottom {
    order: initial;
  }

  /* Eco spans 2 columns at top */
  .feature-top {
    grid-column: 1 / 3;
  }

  /* Weather and Fire in row 2 */
  .feature-left-top {
    grid-column: 1 / 2;
  }

  .feature-right-top {
    grid-column: 2 / 3;
  }

  /* Image spans 2 columns in center */
  .feature-center-image {
    grid-column: 1 / 3;
    margin: 20px 0;
  }

  /* Termite and Sound in row 4 */
  .feature-left-bottom {
    grid-column: 1 / 2;
  }

  .feature-right-bottom {
    grid-column: 2 / 3;
  }

  /* Energy spans 2 columns at bottom */
  .feature-bottom {
    grid-column: 1 / 3;
  }

  .feature-center-image img {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .product-features {
    padding: 70px 0 90px;
  }

  .features-title {
    font-size: 2rem;
  }

  .features-divider {
    width: 90px;
    margin-bottom: 50px;
  }

  .features-grid {
    gap: 35px;
    padding: 0 25px;
  }

  .feature-icon i {
    font-size: 50px;
  }

  .feature-name {
    font-size: 1.15rem;
  }

  .feature-description {
    font-size: 0.88rem;
    max-width: 350px;
  }

  .feature-center-image img {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .product-features {
    padding: 60px 0 80px;
  }

  .features-title {
    font-size: 1.75rem;
  }

  .features-divider {
    width: 80px;
    margin-bottom: 40px;
  }

  .features-grid {
    padding: 0 20px;
    gap: 30px;
  }

  .feature-icon {
    height: 55px;
    margin-bottom: 12px;
  }

  .feature-icon i {
    font-size: 45px;
  }

  .feature-name {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .feature-description {
    font-size: 0.85rem;
    max-width: 100%;
    line-height: 1.5;
  }

  .feature-center-image img {
    width: 220px;
    height: 220px;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .product-features {
    padding: 50px 0 70px;
  }

  .features-title {
    font-size: 1.5rem;
  }

  .features-divider {
    width: 70px;
    margin-bottom: 35px;
  }

  .features-grid {
    padding: 0 15px;
    gap: 25px;
  }

  .feature-icon {
    height: 50px;
    margin-bottom: 10px;
  }

  .feature-icon i {
    font-size: 40px;
  }

  .feature-name {
    font-size: 1rem;
  }

  .feature-description {
    font-size: 0.8rem;
  }

  .feature-center-image img {
    width: 200px;
    height: 200px;
  }
}

/* ===================================
   4. PRODUCT SHOWCASE SECTION
   =================================== */

.product-showcase {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.product-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(41, 128, 185, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(52, 152, 219, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.showcase-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.showcase-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}

.showcase-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  margin: 15px auto 0;
  border-radius: 2px;
}

.showcase-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.showcase-image-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 3rem;
  z-index: 2;
}

.showcase-image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.showcase-main-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   8. INTERACTIVE PRODUCT SHOWCASE STYLES
   =================================== */

/* Product label boxes (clickable, dark background, white text) */
.product-label {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 18px 32px;
  border-radius: 0;
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
}

.product-label:hover {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

.product-label:focus {
  outline: 2px solid #3498db;
  outline-offset: 3px;
}

/* Dotted connector lines with arrows (SVG) */
.product-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .product-label {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
}

@media (max-width: 768px) {
  .product-label {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}

@media (max-width: 576px) {
  .product-label {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}

/* Showcase CTA Buttons */
.showcase-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.btn-showcase {
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: "Poppins", sans-serif;
}

.btn-showcase.btn-primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: #fff;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-showcase.btn-primary:hover {
  background: linear-gradient(135deg, #2980b9, #21618c);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  transform: translateY(-2px);
}

.btn-showcase.btn-secondary {
  background: #fff;
  color: #3498db;
  border: 2px solid #3498db;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-showcase.btn-secondary:hover {
  background: #3498db;
  color: #fff;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .product-showcase {
    padding: 4rem 0;
  }

  .showcase-title {
    font-size: 2rem;
  }

  .showcase-subtitle {
    font-size: 1rem;
  }

  .hotspot {
    width: 25px;
    height: 25px;
  }

  .hotspot-pulse {
    width: 25px;
    height: 25px;
  }

  .hotspot-tooltip {
    min-width: 200px;
    padding: 12px 15px;
  }

  .hotspot-tooltip h4 {
    font-size: 1rem;
  }

  .hotspot-tooltip p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .product-showcase {
    padding: 3rem 0;
  }

  .showcase-title {
    font-size: 1.75rem;
  }

  .showcase-subtitle {
    font-size: 0.95rem;
    padding: 0 20px;
  }

  .showcase-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-showcase {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  /* Mobile: Convert hover to tap */
  .hotspot-tooltip {
    bottom: auto;
    top: calc(100% + 15px);
  }

  .hotspot-tooltip::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: rgba(0, 0, 0, 0.9);
  }

  /* Adjust hotspot positions for mobile */
  .hotspot-fixed-window {
    top: 10%;
    right: 15%;
  }

  .hotspot-sliding-window {
    top: 40%;
    left: 10%;
  }

  .hotspot-sliding-door {
    bottom: 30%;
    left: 8%;
  }

  .hotspot-casement-door {
    bottom: 22%;
    right: 30%;
  }
}

@media (max-width: 576px) {
  .showcase-title {
    font-size: 1.5rem;
  }

  .hotspot {
    width: 20px;
    height: 20px;
  }

  .hotspot-pulse {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }

  .hotspot-tooltip {
    min-width: 180px;
    padding: 10px 12px;
  }
}

/* ===================================
   END OF HOME PAGE STYLES
   =================================== */
