body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: linear-gradient(to bottom, #E52421, rgba(204, 32, 50, 0.03));
  color: white;
  z-index: 1000;
  padding: 25px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: none;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.left-nav, .center-nav, .right-nav {
  display: flex;
  align-items: center;
}

.left-nav ul, .right-nav ul {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: center;
}

.left-nav ul {
  justify-content: flex-start;
}

.center-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-nav .logo {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.center-nav .logo a {
  color: #ffffff;
  text-decoration: none;
}

.right-nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.right-nav a, .left-nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.contact-button {
  background-color: black;
  color: white;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  text-align: left;
}

.dropdown-menu a {
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  color: black;
  display: block;
}

.dropdown-menu a:hover {
  background-color: #f1f1f1;
}

@media (max-width: 768px) {
  .left-nav .menu-icon {
    display: block; /* Show menu icon on small screens */
  }

  .left-nav ul, .right-nav ul {
    display: none; /* Hide nav links on small screens */
  }
}

.welcome-hero {
  padding: 25px 0;
  color: #fff;
  text-align: center;
}

.welcome-hero h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.welcome-hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.welcome-btn {
  background-color: #E52421;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.welcome-btn:hover {
  background-color: #a81a27;
}

/* Service Section */
.single-service-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 250px; /* Ajusta según sea necesario */
}

.single-service-item:hover {
  transform: translateY(-10px);
}

.single-service-icon {
  font-size: 50px; /* Tamaño del ícono */
  color: #333; /* Color del ícono */
  margin-bottom: 15px;
}

.service-icon-img {
  width: 50px; /* Tamaño del ícono de imagen */
  height: auto; /* Mantiene la proporción de la imagen */
  margin-bottom: 15px;
}

.single-service-item h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.single-service-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .single-service-item {
    height: auto; /* Permite que la altura se ajuste automáticamente en pantallas pequeñas */
    margin-bottom: 20px; /* Añade espacio entre elementos en pantallas pequeñas */
  }

  .single-service-icon,
  .service-icon-img {
    font-size: 40px; /* Ajusta el tamaño del ícono en pantallas pequeñas */
    width: 40px; /* Ajusta el tamaño del ícono de imagen en pantallas pequeñas */
  }

  .single-service-item h2 {
    font-size: 18px;
  }

  .single-service-item p {
    font-size: 12px;
  }
}

/* New Cars Section */
.new-cars {
  padding: 60px 0;
  background: #f4f4f4;
}

.new-cars .section-header {
  margin-bottom: 40px;
}

.new-cars .new-cars-item {
  margin-bottom: 30px;
}

.new-cars .single-new-cars-item {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.new-cars .single-new-cars-item:hover {
  transform: translateY(-10px);
}

.new-cars-img img {
  width: 100%;
  border-radius: 10px;
}

.new-cars-txt h2 a {
  color: #222323;
  text-decoration: none;
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}

.new-cars-txt p {
  font-size: 16px;
  color: #222323;
}

.new-cars-txt .new-cars-btn {
  background-color: #E52421;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.new-cars-txt .new-cars-btn:hover {
  background-color: #a81a27;
}

/* General Styles for Featured Cars */
.single-featured-cars {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.3s;
}

.single-featured-cars.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.single-featured-cars:hover {
  background-color: #ffdddd;
}

.single-featured-cars.clicked {
  background-color: #E52421; /* Red background on click */
  color: #fff; /* White text color */
}

.single-featured-cars.clicked h2 a {
  color: #fff; /* Ensure link color changes as well */
}

/* Adjustments for making all boxes uniform */
.featured-cars-content .row > div {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.single-featured-cars {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Ensure images are contained within their divs */
.featured-cars-img img {
  max-width: 100%;
  border-radius: 10px;
}

/* Adding a bit of spacing between elements */
.featured-cars-content .row > div {
  margin-bottom: 20px;
}

/* Additional styles for better UI/UX */
.featured-cars-txt h2 a {
  color: #222323;
  transition: color 0.3s;
}

.featured-cars-txt h2 a:hover {
  color: #E52421; /* Red color on hover */
}

.featured-cars-txt p {
  margin-top: 10px;
  text-align: center;
}

/* Styles for Call to Action links */
.cta-link {
  color: #E52421;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}

.cta-link:hover {
  color: #E52421;
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.single-featured-cars {
  animation: fadeInUp 0.5s ease-in-out both;
  opacity: 0;
}

.single-featured-cars.is-visible {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .single-featured-cars {
    margin-bottom: 20px;
  }

  .featured-cars-txt h2 a {
    font-size: 16px;
  }

  .featured-cars-txt h3 {
    font-size: 20px;
  }

  .featured-cars-txt p {
    font-size: 12px;
  }
}

.featured-cars .featured-cars-txt p {
  font-size: 16px;
  color: #222323;
}

.featured-cars .featured-cars-txt h3 {
  color: #E52421;
  font-size: 22px;
  margin-bottom: 10px;
}

/* Clients Say Section */
.testimonial-img img {
  width: 100%; /* Asegúrate de que la imagen ocupe todo el ancho del contenedor */
  height: auto; /* Mantén la proporción de la imagen */
  border-radius: 15px; /* Bordes redondeados */
}

.single-testimonial-box {
  max-width: 350px; /* Ajusta según sea necesario */
  margin: 0 auto;
}

.testimonial-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-img {
  width: 150px; /* Ajusta el tamaño según sea necesario */
  height: 150px; /* Mantén el mismo valor para ancho y alto para hacerla cuadrada */
  overflow: hidden; /* Oculta cualquier contenido que se desborde del contenedor */
  border-radius: 15px; /* Bordes redondeados */
  margin-bottom: 15px; /* Espacio entre la imagen y el texto */
}

/* Brand Section */
.brand {
  padding: 60px 0;
  background: #f4f4f4;
}

.brand .brand-area {
  text-align: center;
}

.brand .brand-item .item img {
  width: auto;
  max-width: 100px;
  height: auto;
}

/* Contact Section */
.contact {
  background: linear-gradient(to bottom, #222323, #222323);
  color: #fff;
  padding: 60px 0;
}

.contact .footer-top {
  padding-bottom: 40px;
}

.contact .single-footer-widget {
  margin-bottom: 20px;
  text-align: center;
}

.contact .single-footer-widget h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact .single-footer-widget ul li {
  margin-bottom: 10px;
}

.contact .single-footer-widget ul li a {
  color: #fff;
  font-size: 14px;
  transition: color 0.3s;
}

.contact .single-footer-widget ul li a:hover {
  color: #E52421;
}

.contact .slides-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.contact .slides-form input,
.contact .slides-form textarea {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  color: #222323;
}

.contact .slides-form input::placeholder,
.contact .slides-form textarea::placeholder {
  color: #bbb;
}

.contact .slides-form .button.red {
  background-color: #cc2032;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  width: 100%;
  max-width: 300px;
  transition: background-color 0.3s;
}

.contact .slides-form .button.red:hover {
  background-color: #a81a27;
}

/* Panel Bottom */
.panel.bottom {
  background-color: #222323;
  text-align: center;
  padding: 10px 0;
}

.center a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
}

.center a img {
  height: 21px;
  vertical-align: middle;
  margin-left: 10px;
}

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  margin: 0 10px;
  color: white;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #E52421;
}

#scroll-Top .return-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: none;
  width: 40px;
  line-height: 40px;
  height: 40px;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  background: #222323;
  border: 1px solid #222323;
  border-radius: 50%;
  transition: 0.5s;
  z-index: 2;
}

#scroll-Top .return-to-top:hover {
  background: #fff;
  color: #222323;
  border: 1px solid #222323;
}

#scroll-Top .return-to-top i {
  position: relative;
  animation-name: example;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}

@keyframes example {
  0% { bottom: 0px; }
  100% { bottom: 7px; }
}

/* Custom styles for modal and featured cars */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: slide-down 0.4s ease;
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@keyframes slide-down {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

.single-featured-cars:hover {
  background-color: #f8d7da;
  transition: background-color 0.3s;
}

.cta-link {
  color: #007bff;
  text-decoration: none;
}

.cta-link:hover {
  text-decoration: underline;
}

/* Start Cuadro de Precios Nice */
.intro-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  background-color: #f4f4f4;
  gap: 20px; /* Espacio entre las tarjetas */
}

.intro-card, .membership-card {
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: relative;
  max-width: 100%;
  flex: 1;
}

.intro-card {
  background-color: #222323;
  color: #fff;
}

.intro-card .status {
  display: inline-block;
  background-color: #E52421;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.intro-card h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro-card .description {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.intro-card .buttons button {
  background-color: #1D1D1B;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-top: 0.5rem;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.intro-card .buttons button::after {
  content: '→';
  margin-left: auto;
}

.membership-card {
  background-color: #fff;
  color: #222323;
}

.membership-header {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.toggle-switch {
  position: relative;
  width: 100%;
}

.toggle-switch input {
  display: none;
}

.toggle-switch label {
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: white;
  border-radius: 20px;
  padding: 5px;
  width: 100%;
  justify-content: space-between;
  position: relative;
  height: 40px; /* Altura del botón deslizante */
}

.toggle-switch .toggle-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.toggle-switch .toggle-standard, .toggle-switch .toggle-pro {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
  width: 50%; /* Cada opción ocupa la mitad del espacio */
  justify-content: center;
}

.toggle-switch .toggle-standard {
  background-color: white;
  color: #222323;
}

.toggle-switch .toggle-pro {
  background-color: #E52421;
  color: #222323;
}

.toggle-switch input:checked + label .toggle-standard {
  background-color: #E52421;
  color: #222323;
}

.toggle-switch input:checked + label .toggle-pro {
  background-color: white;
  color: #222323;
}

.toggle-switch .toggle-pro img {
  width: 16px;
  height: 16px;
  margin-left: 5px;
}

.membership-details h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.membership-details .sub-description {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.membership-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.membership-details ul li {
  margin-bottom: 0.5rem;
}

.membership-details button {
  background-color: #E52421;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.membership-details a {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #00f;
  text-decoration: none;
}

.intro-card .decoration {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background-color: #00f;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
}

/* Ajustes responsivos */
@media (max-width: 767px) {
  .intro-card-container {
    flex-direction: column;
    align-items: center;
  }

  .intro-card, .membership-card {
    max-width: 350px;
    width: 100%;
    max-height: 400px; /* Añade la altura máxima deseada */
    overflow: auto; /* Añade scroll si el contenido excede la altura máxima */
  }
}

@media (max-width: 1199px) {
  .welcome-hero-txt h2 {
    font-size: 40px;
  }
  .welcome-btn.model-search-btn {
    margin-left: 28px;
  }
  .featured-cars-img {
    padding: 0 10px;
  }
}

@media (max-width: 992px) {
  nav.navbar.bootsnav .navbar-collapse.collapse.in {
    padding-bottom: 30px;
  }
  nav.navbar.bootsnav {
    background-color: #222323;
  }
  .wrap-sticky nav.navbar.bootsnav.sticked ul.nav > li > a {
    padding: 18px 0px;
  }
  nav.navbar.bootsnav .navbar-brand {
    padding: 25px;
  }
  nav.navbar.bootsnav ul.nav > li > a {
    padding: 15px 0px;
    border: transparent;
  }
}

@media (max-width: 991px) {
  .welcome-hero-txt h2 {
    line-height: 1.6;
  }
  .model-search-content .col-sm-12 {
    padding: 0 40px;
  }
  .single-model-search:last-child {
    margin-bottom: 30px;
  }
  .welcome-btn.model-search-btn {
    margin: 0;
  }
  .single-new-cars-item {
    max-width: 450px;
    margin: 0 auto;
  }
  .new-cars-txt {
    margin: 30px 0;
  }
}

@media (max-width: 767px) {
  .single-service-item {
    max-width: 350px;
    margin: 30px auto;
  }
  .single-featured-cars {
    max-width: 350px;
    margin: 0 auto;
    max-height: 350px; /* Añade la altura máxima deseada */
  }
  .footer-social {
    text-align: left;
  }
  .footer-social a i {
    margin-right: 16px;
    margin-left: 0;
  }
  .hm-foot-email {
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .single-testimonial-box {
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .welcome-hero h2 {
    font-size: 30px;
  }
  .single-model-search h2 {
    font-size: 16px;
  }
}

@media (max-width: 440px) {
  .welcome-hero-txt h2 {
    font-size: 24px;
    line-height: 1.5;
  }
}

@media (max-width: 399px) {
  .testimonial-carousel .col-sm-3,
  .testimonial-carousel .col-xs-12 {
    width: 260px;
  }
  .single-service-item h2 a {
    line-height: 1.5;
  }
  .section-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 350px) {
  nav.navbar.bootsnav .navbar-toggle {
    margin-right: -25px;
    left: -10px;
  }
  nav.navbar.bootsnav .navbar-brand {
    padding: 25px 0;
    font-size: 20px;
  }
  .wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand,
  .wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:hover,
  .wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:focus {
    padding: 25px 0px;
  }
}
/* End Cuadro de Precios Nice */
.exhibition-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.exhibition-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  overflow: hidden;
}

.exhibition-card img {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.exhibition-details {
  width: 50%;
  padding: 20px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.exhibition-details h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.exhibition-details p {
  font-size: 18px;
  margin-bottom: 10px;
}

.exhibition-date {
  background: #ff0000;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
}

.exhibition-date small {
  display: block;
  font-size: 18px;
  font-weight: normal;
}

.intro-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-image: url('assets/images/background.jpg'); /* Fondo de la sección */
  background-size: cover;
  background-position: center;
}

.contrast-section {
  width: 100%;
  height: 200px;
  background-image: url('assets/images/contrast-bg.jpg'); /* Imagen de fondo para el contraste */
  background-size: cover;
  background-position: center;
}

.services-grid {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.services-grid::-webkit-scrollbar {
  display: none;  /* Chrome, Safari, Opera */
}

/* Estilos para los recuadros de servicios */
.service-card {
  width: 250px; /* Ajusta el ancho según sea necesario */
  margin: 5px;
  padding: 16px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff; /* Fondo blanco para buen contraste */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilos para los títulos */
.service-card h3 {
  font-weight: bold;
  color: #333; /* Texto oscuro para buen contraste */
  margin-bottom: 8px;
}

/* Estilos para el texto del párrafo */
.service-card p {
  color: #666; /* Texto gris oscuro para buen contraste */
}

/* Estilos para la sección de introducción */
.intro-card-container {
  display: flex;
  justify-content: space-around;
  padding: 32px 16px;
}

.intro-card, .membership-card {
  width: 45%; /* Ajusta el ancho según sea necesario */
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilos para los botones */
.contact-button, .buttons button, #getStartedButton {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-button:hover, .buttons button:hover, #getStartedButton:hover {
  background-color: #333;
}

/* Estilos para el pie de página */
.single-footer-widget h2 {
  font-weight: bold;
  color: #333; /* Texto oscuro para buen contraste */
  margin-bottom: 16px;
}

.footer-social a {
  margin-right: 10px;
  color: #000;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #555;
}

.bg-white {
  background-color: #fff;
}

.p-6 {
  padding: 1.5rem;
}

.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rounded {
  border-radius: 0.5rem;
}

.text-center {
  text-align: center;
}

.w-24 {
  width: 6rem;
}

.h-24 {
  height: 6rem;
}

.rounded-full {
  border-radius: 9999px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 {
  margin-bottom: 1rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.font-bold {
  font-weight: 700;
}

.inline-block {
  display: inline-block;
}

.bg-black {
  background-color: #000;
}

.text-white {
  color: #fff;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.rounded {
  border-radius: 0.25rem;
}

.mt-4 {
  margin-top: 1rem;
}

.text-red-500 {
  color: #f56565;
}
