@font-face {
  font-family: fly_colorz_font;
  src: url(fly_colorz.ttf);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* adjust based on your header height */
}

/* body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  color: #222;
} */
 body {
  background: url('images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  font-family: fly_colorz_font;
}


a {
  text-decoration: none;
  color: inherit;
}

/* Header */
/* header {
  background: blue;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  opacity: 0.8;
} */

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: lightblue;
  font-weight: 700;
}

nav ul,
nav ul li,
nav ul li ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Hero Carousel */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.slides {
  display: flex;
  width: 300%; /* 3 slides */
  height: 100%;
  transition: transform 0.5s ease-in-out;
}


.slides img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes slide {
  0%   { transform: translateX(0%); }
  33%  { transform: translateX(-100%); }
  66%  { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}


.overlay-header {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  color: white;
  text-align: center;
  z-index: 1;
}

.overlay-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.overlay-header p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: #007bff;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
  white-space: nowrap;
}
.btn:hover {
  background: #0056b3;
}

/* Product Sections */
.product-section {
  padding: 2rem;
  /* background-color: #f9f9f9; */
  background-color: rgba(255, 255, 255, 0.95); /* semi-transparent white */
}
.product-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: left;
}

/* Horizontal Scroll for Products */
.product-row {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem;
}
.product-desc {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 2rem;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}
.product-row::-webkit-scrollbar {
  height: 8px;
}
.product-row::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.product-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  flex: 0 0 auto;
  width: 250px;
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
}

/* .product-card img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
} */

.product-card img {
  width: 100%;
  height: 200px;              /* or adjust as needed */
  object-fit: cover;          /* crop to fit area */
  border-radius: 8px;
  display: block;
}


.product-card h3, .product-card p {
  text-align: center;
  padding: 0.5rem 0;
}

/* Footer */
/* footer {
  text-align: center;
  padding: 1.5rem;
  background: #111;
  color: white;
} */
 footer {
  background-color: blue;
  padding: 20px 40px;
  opacity: 0.8;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.social-links {
  display: flex;
  gap: 20px;
  font-size: 1.6rem;
}

.social-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: lightblue;
}

footer p {
  margin: 0;
  font-size: 1rem;
  color: white;
}


/* About Us */
.about-section {
  background: transparent;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: auto;
}
.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-section p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

/* Contact Us */
.contact-section {
  padding: 60px 40px;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start; /* 👈 aligns top edges */
  margin-top: 30px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0; /* 👈 remove any default margin */
  padding: 0; /* 👈 remove top padding */
}


.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form button {
  padding: 12px;
  background-color: blue;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  color: blue;
  background-color: lightblue;
}

.map-container {
  flex: 1;
  min-width: 300px;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: lightblue;
  top: 100%;
  left: 0;
  padding: 0.5rem 0;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  min-width: 180px;
  z-index: 10;
}

.dropdown-menu li {
  padding: 0.5rem 0rem;
  width: 100%;
  white-space: nowrap;
}

.dropdown-menu li a {
  color: #fff;
  padding: 0rem 1rem;
  font-weight: 500;
  display: block;
  transition: background 0.3s;
}

.dropdown-menu li a:hover {
  background: blue;
  border-radius: 0px;
  font-weight: 800;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.map-container {
  margin-top: -60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 760px) {
  .map-container {
  margin-top: 0px;
}
}

/* .social-links {
  margin-bottom: 10px;
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 1.8rem;
  color: #222;
}

.social-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ff6f61;  Your accent color 
} 

.contact-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-info a i {
  color: #ff6f61;
  font-size: 1.2rem;
}

.contact-info a:hover {
  color: #ff6f61;
} */
.contact-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-header h2 {
  margin: 0;
  font-size: 2rem;
  white-space: nowrap;
}

.contact-info {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-info a i {
  color: blue;
  font-size: 1.2rem;
}

.contact-info a:hover {
  color: lightblue;
}

#about {
  background-color: rgba(255, 255, 255, 0.8);  /* 👈 Transparent white */
  padding: 60px 40px;
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);  /* Optional glass effect */
  z-index: 1;
  position: relative;
}

#about h2 {
  margin-top: 0;
  font-size: 2rem;
  color: #333;
}

#about p {
  line-height: 1.6;
  color: #444;
}
/* .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
} */
/* 
.tab {
  padding: 10px 20px;
  border: none;
  background-color: #eee;
  color: #333;
  cursor: pointer;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.tab:hover {
  background-color: #ddd;
}

.tab.active {
  background-color: blue;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
} */

/* Basic menu reset */

.menu {
  display: flex;
  gap: 20px;
  color: #fff;
}

.menu li a:hover {
  color: lightblue;
  font-weight: 700;
}

.menu > li {
  position: relative;
}

.menu a {
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  color: #fff;
}

/* Dropdown menu hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  z-index: 1000;
}

/* Show dropdown on hover */
.menu .dropdown:hover .dropdown-menu {
  display: block;
}

/* Style submenu items */
.dropdown-menu li a {
  padding: 10px 15px;
  color: #333;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

.menu,
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* .shop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
}

.shop-header h2 {
  margin: 0;
  font-size: 2rem;
  white-space: nowrap;
} 

.tabs {
  display: flex;
  flex-wrap: nowrap;
  width: calc(100% - 150px);
  gap: 10px;
} */

.testimonial-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 320px;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-weight: 600;
  color: #333;
  margin: 0;
}

.testimonials-section {
  padding: 60px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  position: relative;
}

.testimonials-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 0 0 auto;                /* 👈 Prevent shrinking or growing */
  min-width: 280px;
  max-width: 320px;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  text-align: center;
}


.testimonial-card.active {
  display: block;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-weight: 600;
  color: #333;
  margin: 0;
}

.testimonial-controls {
  margin-top: 20px;
}

.testimonial-controls button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #ff6f61;
  cursor: pointer;
  padding: 0 10px;
}

.testimonial-controls button:hover {
  color: #333;
}

.testimonial-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.scroll-btn {
  background: blue;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 2;
  padding: 10px;
  border-radius: 20%;
  transition: background 0.3s;
}

.scroll-btn:hover {
  background: rgba(0, 0, 0, 0.2);
}

.scroll-btn.left {
  margin-right: 10px;
}

.scroll-btn.right {
  margin-left: 10px;
}

.testimonial-scroll-container {
  background-color: transparent;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

  /* Prevent the container from shrinking its contents */
  width: 100%;
  flex-wrap: nowrap;
}


.testimonial-scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-progress-bar {
  height: 4px;
  background-color: #eee;
  margin-top: 15px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2px;
  overflow: hidden;
}

.scroll-progress {
  height: 100%;
  width: 0%;
  background-color: blue;
  transition: width 0.3s;
}
.site-footer {
  background-color: #111;
  color: #fff;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  border-top: 1px solid blue;
  gap: 20px;
}

.footer-left,
.footer-links,
.social-links {
  flex: 1 1 250px;
}

/* Text alignment for larger screens */
.footer-left {
  text-align: left;
}

.footer-links {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

/* Typography and links */
.footer-left p {
  margin: 0;
  color: #ccc;
}

.footer-links a {
  margin: 0 10px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6f61;
}

.social-links a {
  color: #ccc;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff6f61;
}

/* 📱 Tablet & smaller screens */
@media (max-width: 768px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-links,
  .social-links {
    flex: 1 1 100%;
    text-align: center;
  }

  .social-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
  }

  .footer-links a {
    display: inline-block;
    margin: 6px 8px;
  }

  .social-links a {
    margin: 0 6px;
    font-size: 1.1rem;
  }

  .footer-left p {
    font-size: 0.85rem;
  }
}

/* 📱 Extra small screens */
@media (max-width: 480px) {
  .footer-links a {
    font-size: 0.85rem;
  }

  .social-links a {
    font-size: 1rem;
  }

  .footer-left p {
    font-size: 0.8rem;
  }
}

.video-gallery {
  padding: 60px 40px;
  background-color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.video-gallery h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
  height: auto;
}

.video-item {
  position: relative;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.span-2rows {
  grid-row: span 2;
}

@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .span-2rows {
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
.video-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Caption overlay */
.video-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 12px;
  font-size: 0.9rem;
  border-radius: 4px;
  pointer-events: none;
}
.video-gallery {
  padding: 60px 40px;
  background-color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.video-gallery h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}

.video-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.video-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 12px 24px;
  font-size: 2.5rem; /* ~5x normal */
  font-weight: bold;
  border-radius: 8px;
  display: table-cell;
  text-align: center;
  pointer-events: none;
  width: 100%;
  height: 100%;
  padding-top: 45%;
}


.span-2rows {
  grid-row: span 2;
}

/* Responsive */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .span-2rows {
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 15px;
}

.shop-header h2 {
  margin: 0;
  font-size: 2rem;
  white-space: nowrap;
  flex: 1 1 100%;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1 1 100%;
  justify-content: flex-start;
}

.tab {
  padding: 10px 20px;
  border: none;
  background-color: #eee;
  color: #333;
  cursor: pointer;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  flex: 0 1 auto;
  min-width: 120px;
  text-align: center;
}

.tab:hover {
  background-color: #ddd;
}

.tab.active {
  background-color: blue;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* 🔽 Responsive tweaks for tablets and below */
@media (max-width: 768px) {
  .shop-header {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .shop-header h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .tabs {
    justify-content: center;
  }

  .tab {
    flex: 1 1 40%;
    font-size: 0.95rem;
    padding: 8px 12px;
    min-width: unset;
  }
}

/* 🔽 Extra small devices */
@media (max-width: 480px) {
  .tab {
    flex: 1 1 100%;
    font-size: 0.9rem;
  }
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: blue;
  padding: 10px 20px;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  opacity: 0.8;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  color: #fff;
}

.menu li a:hover {
  color: lightblue;
  font-weight: 700;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff !important;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  z-index: 2000;
}

.dropdown-menu li a {
  color: #333;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

/* Show dropdown on hover (desktop) */
.menu .dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  margin-left: auto;
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 60px;
    right: 0;
    background: #333;
    width: 100%;
  }

  .menu.show {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    background-color: #fff !important;
  }

  .menu-toggle {
    display: block;
  }
}

/* Apply padding only on large screens */
@media (min-width: 1024px) {
  .large-padding {
    padding-top: 95%;
  }
}

/* On smaller screens (mobile/tablet), override or remove it */
@media (max-width: 1023px) {
  .large-padding {
    padding-top: 45%; /* Or a smaller value like 20px depending on your layout */
  }
}

.inquiry-button {
  display: block;
  margin: 0 auto 1rem;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.inquiry-button:hover {
  background-color: #0056b3;
}

.overlay {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 1rem;
  box-sizing: border-box;
}

.popup-form {
   background: white;
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-sizing: border-box;
}

.popup-form h2 {
  margin-top: 0;
  text-align: center;
  color: blue;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 1rem;
}

.popup-form textarea {
  resize: vertical;
  min-height: 80px;
}

.popup-form button {
  background-color: blue;
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.popup-form button:hover {
  background-color: lightblue;
}

.close-btn {
   position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: red;
}


@media (max-width: 480px) {
  .overlay{
  top: 0%;
  left: 0%;
  }
  .popup-form {
    padding: 1.2rem;
  }
  .popup-form input,
  .popup-form textarea,
  .popup-form button {
    font-size: 0.95rem;
  }
}
