@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;600&display=swap');

* {
    margin: 0; padding: 0; box-sizing: border-box; text-align: justify !important;
}

body {
  background: linear-gradient(135deg,  #4c1533 0, #220a25 90%);
  font-family: 'Montserrat', sans-serif;
  color: #ffdce1;
  line-height: 1.7;
  min-height: 100vh;
}
strong {
    font-weight: bolder;
	color: white;
}
p {
	text-align: justify;
	color: white;
	padding-bottom: 10px;
}

.centered-container {
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: justify;
  background: #5a0202; /* Optional: soft background for distinction */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.centered-container h1, 
.centered-container p {
  text-align: center;
}

.content-box h1 {
    font-size: 2rem;
    color: white;
	text-align: center;
}
a {
  text-decoration: none;
  color: white;
}

.top-contact {
  background-color: #b20070;
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 20px;
  text-align: center;
  letter-spacing: 1px;
}
.top-contact a {
  color: #fff;
  font-weight: 600;
  margin: 0 12px;
}
header {
  font-family: 'Playfair Display', serif;
  text-align: center;
  padding: 40px 20px 10px 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 15px #ff69b4;
  border-bottom: 4px solid #fff;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 1500;
}
.hamburger:focus {
  outline: 2px solid #fff0f6;
}
.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #fff0f6;
  border-radius: 3px;
}
.nav-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #b22273;
    width: 100%;
    position: absolute;
    top: 56px;
    left: 0;
    padding: 10px 0;
    box-shadow: 0 5px 10px #b2005980;
  }
  .nav-menu[aria-expanded="true"],
  .nav-menu:not([hidden]) {
    display: flex;
  }
  .nav-menu a {
    padding: 12px 20px;
    border-top: 1px solid #fff;
  }
}
.banner {
  position: relative;
  background: url('images/banner.webp') center center no-repeat;
  background-size: cover;
  height: 400px;
  color: #ffdce4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  box-shadow: inset 0 0 100px #b2005980;
  max-width: 100vw;
  overflow: hidden;
}

section.about h2, h3, h4, h5, section.services h2, section.gallery h2, section.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 5px;
  text-align: center;
  color: #ff4e95;
}
section.about, section.services, section.reviews, section.contact {
  color: #fff;
  margin-bottom: 40px;
  font-size: 0.9rem;
}

section.reviews h2, section.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 5px;
  text-align: center;
  color: black;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}
.service-item {
  background-color: #FFFFF0;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 25px #e087beaa;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #000000;
}
.service-item img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px #ff5ea4);
}
.service-item div {
  font-size: 1.1rem;
  font-weight: 600;
}
  .prices-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
  }

  .prices-table th,
  .prices-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
  }

  .prices-table th {
    background: #82023b;
    font-weight: bold;
  }

  /* Mobile first: Stack into cards */
  @media (max-width: 768px) {
    .prices-table thead {
      display: none; /* Hide table head on small screens */
    }

    .prices-table,
    .prices-table tbody,
    .prices-table tr,
    .prices-table td {
      display: block;
      width: 100%;
    }

    .prices-table tr {
      margin-bottom: 1rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .prices-table td {
      text-align: left;
      padding: 10px 15px;
      position: relative;
    }

    .prices-table td::before {
      content: attr(data-label);
      font-weight: bold;
      display: block;
      margin-bottom: 5px;
      color: #ff0000;
    }
  }
.lightbox {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 0 40px #ff4d92;
  user-select: none;
}
section.reviews {
  background: #ff4d92cc;
  padding: 30px 30px;
  border-radius: 16px;
  max-width: 880px;
  margin: 0 auto 60px auto;
  color: black;
}
.review-card {
  background: #fd88bbac;
  padding: 25px 18px;
  margin-bottom: 24px;
  border-radius: 12px;
  font-style: italic;
  box-shadow: 0 0 25px #ff4d92aa;
  color: black;
}
section.contact {
  max-width: 700px;
  margin: 0 auto 60px auto;
  background: #d1407bcc;
  padding: 30px 20px;
  border-radius: 18px;
  color: #ffd5df;
  text-align: center;
}
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
footer {
  background-color: #a50860;
  color: #ffcce1;
  padding: 18px 20px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-align: center;
}
/* Floating buttons (call, email, whatsapp, chat) */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1200;
}
.floating-buttons .float-btn {
  background-color: #f24a68;
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px #ff5ea3cc;
  font-size: 1.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.floating-buttons .float-btn:hover,
.floating-buttons .float-btn:focus {
  background-color: #b91f66;
  box-shadow: 0 0 35px #ff2b7add;
}
.floating-buttons .float-btn i {
  pointer-events: none;
}
/* Responsive */
@media (max-width: 768px) {
  
  .nav-menu {
    position: static;
    display: none;
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    width: auto;
    padding: 0;
    gap: 10px;
  }
  .nav-menu.show {
    display: flex;
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  section.reviews,
  section.contact {
    margin: 20px;
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .banner h1 {
    font-size: 1.9rem;
  }
  .banner p {
    font-size: 0.9rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .contact-buttons {
    gap: 15px;
  }
  .contact-button {
    min-width: 120px;
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}
.faq {
  max-width: 900px;
  margin: 50px auto 60px auto;
  background-color: #ff4d92cc;
  border-radius: 15px;
  padding: 30px 20px;
  color: #040404;
  box-shadow: 0 0 25px #ff77b3aa;
}
.faq h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem !important;
  margin-bottom: 15px;
  border-bottom: 2px solid #040404;
  padding-bottom: 10px;
  text-align: center;
}
.faq-item {
  margin-bottom: 18px;
  border-top: 1px solid #ff8fc4;
}
.faq-item:first-child {
  border-top: none;
}
.faq-question {
  width: 100%;
  text-align: left;
  font-weight: 700;
  padding: 15px;
  font-size: 1.2rem;
  background-color: transparent;
  border: none;
  outline: none;
  color: #1b1515;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.faq-question:hover, .faq-question:focus {
  color: #fff;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"]::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-answer {
  padding: 12px 20px 20px 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
}
.faq-answer[hidden] {
  display: none;
}

/* Mobile friendly font scaling */
@media (max-width: 600px) {
  .faq h2 {
    font-size: 1.5rem;
  }
  .faq-question {
    font-size: 1.1rem;
  }
  .faq-answer {
    font-size: 1rem;
  }
}
.card-section {
  max-width: 1140px;
  margin: 50px auto 70px auto;
  padding: 0 20px;
  color: #ffffff;
}
.card-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: #ff4e95;
  margin-bottom: 30px;
  border-bottom: 3px solid #ff4d92;
  padding-bottom: 10px;
  text-align: center;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 25px;
}

.card {
  background-color: #d6509a;
  box-shadow: 0 0 25px #e888bfaa;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover,
.card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 0 40px #ff6ba4cc;
  outline: none;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 3px solid #ff4d92;
  cursor: pointer;
}

.card-content {
  padding: 15px 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 2px;
}

.star-rating {
  color: #e9ca2b;
  font-size: 1.2rem;
}

.star-rating .fa-star, .star-rating .fa-star-half-alt, .star-rating .fa-star-half {
  margin-right: 4px;
}

.status {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 15px;
  width: fit-content;
  letter-spacing: 0.1em;
}
.status.available {
  background-color: #3bf011;
  color: #5f003a;
}
.status.busy {
  background-color: #ff4466;
  color: #410017;
}

.card-actions {
  margin-top: auto;
  display: flex;
  gap: 15px;
}

.action-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 0 18px #ff4d92cc;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.action-btn i {
  font-size: 1.4rem;
}

.action-btn.call {
  background-color: #ff356f;
}
.action-btn.call:hover,
.action-btn.call:focus {
  background-color: #d62257;
}

.action-btn.whatsapp {
  background-color: #25D366;
}
.action-btn.whatsapp:hover,
.action-btn.whatsapp:focus {
  background-color: #1fa950;
}

/* Mobile Responsiveness */

@media (max-width: 768px) {
  .card-container {
    grid-template-columns: 1fr 1fr;
  }
  .card img {
    height: 220px;
  }
}

@media (max-width: 440px) {
  .card-container {
    grid-template-columns: 1fr;
  }
  .card img {
    height: 300px;
  }
  .card-content h3 {
    font-size: 1.3rem;
  }
  .star-rating {
    font-size: 1rem;
  }
  .action-btn {
    font-size: 1rem;
    padding: 8px 0;
  }
}
.site-footer {
  background-color: #b2006599;
  color: #ffcce1;
  padding: 40px 15px 20px 15px;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  box-shadow: inset 0 10px 30px #aa006099;
  position: relative;
}
.footer-container {
  display: flex;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto 20px auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-container section {
  flex: 1 1 260px;
  min-width: 220px;
}
.footer-about h3, .footer-links h3, .footer-contact h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: #fff;
  border-bottom: 2px solid #ff4e95;
  padding-bottom: 6px;
}
.footer-about p {
  line-height: 1.5;
  max-width: 320px;
  font-size: 1rem;
  color: white;
}
.footer-links ul {
  list-style: none;
  padding-left: 0;
}
.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links ul li a {
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer-links ul li a:hover, .footer-links ul li a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: white;
}
.footer-contact a {
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #fff0f6;
  text-decoration: underline;
}
.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.footer-socials a {
  color: #ffbdd7;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  outline-offset: 3px;
}
.footer-socials a:hover, .footer-socials a:focus {
  color: #fff0f6;
}
/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #ff4e95cc;
  max-width: 1140px;
  margin: 0 auto;
  padding: 15px 0 10px 0;
  text-align: center;
  position: relative;
  font-size: 0.9rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#toTopBtn {
  background-color: #ff4d92;
  border: none;
  font-size: 1.5rem;
  color: white;
  width: 36px;
  height: 36px;
  text-align: center !important;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 12px #ff4d92aa;
  outline-offset: 3px;
  transition: background-color 0.25s ease;
}
#toTopBtn:hover, #toTopBtn:focus {
  background-color: #b20f64;
  box-shadow: 0 0 25px #ff4d92cc;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 5px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    font-size: 0.85rem;
  }
}
.video-section {
  max-width: 100%;
  margin: 50px auto 70px auto;
  padding: 0 20px;
  color: #ffc0d1;
  text-align: center;
}
.video-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 20px;
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 25px #ff4d92aa;
  background-color: #2f001f;
}
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  outline: none;
}

/* Accessibility helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Responsive Font Scaling */
@media (max-width: 300px) {
  .video-section h2 {
    font-size: 2rem;
  }
}
/* Base (Mobile-first) */
.content-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  line-height: 1.6;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.content-text {
  color: #fff; /* white text */
}

.content-text h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff4e95; /* white heading */
}

.content-text p {
  margin-bottom: 1rem;
}

.content-text a {
  color: #ff4081; /* accent color */
  text-decoration: none;
}

.content-text a:hover {
  text-decoration: underline;
}

/* Tablet and above (still stacked, but bigger font) */
@media (min-width: 768px) {
  .content-text h1 {
    font-size: 2rem;
  }
}

/* Desktop (image 30% / text 70%) */
@media (min-width: 1024px) {
  .content-box {
    flex-direction: row;
    align-items: flex-start;
    max-width: 90%;
    margin: 0 auto;
    gap: 2rem;
  }

  .content-image {
    flex: 0 0 30%; /* fixed 30% */
  }

  .content-text {
    flex: 0 0 70%; /* fixed 70% */
  }

  .content-text h1 {
    font-size: 2.5rem;
  }


}


.tags-section, .location-section {
  max-width: 1100px;
  margin: 50px auto 70px auto;
  padding: 0 15px;
  color: #ffd1e3;
}

.tags-section h2,
.location-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 25px;
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
  text-align: center;
  color: white;
}

/* Tags Section */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.tag-btn {
  background: #ff5fa2;
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  color: #47072a;
  cursor: pointer;
  box-shadow: 0 0 20px #ff6fb1aa;
  transition: background-color 0.3s ease;
}
.tag-btn:hover, .tag-btn:focus {
  background: #c83574;
  outline: none;
}

/* Location Section */

.location-list {
  list-style: none;
  max-width: 500px;
  margin: 0 auto 30px auto;
  padding-left: 0;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #ffd1e3cc;
}
.location-list li {
  margin-bottom: 12px;
}

.location-section {
  max-width: 900px;
  margin: 50px auto 70px auto;
  padding: 0 15px;
  color: #ffd2e0;
  text-align: center;
}

.location-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 25px;
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
}

.location-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.loc-btn {
  background-color: #ff5fa2;
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  color: #3e0524;
  cursor: pointer;
  box-shadow: 0 0 20px #ff6fb1aa;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.loc-btn:hover,
.loc-btn:focus {
  background-color: #c83776;
  outline: none;
  box-shadow: 0 0 30px #ff46a6cc;
}

/* Highlight selected location */
.loc-btn[aria-label$="Selected"] {
  background-color: #ff5fa2;
  box-shadow: 0 0 30px #ff2b73cc;
  cursor: default;
}

/* Responsive google map container for aspect ratio */
.google-maps {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 15px;
  box-shadow: 0 0 30px #ff4d92cc;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  border-radius: 15px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .location-buttons {
    gap: 12px;
  }
  .loc-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}
.booking-contact-section {
  max-width: 1140px;
  margin: 50px auto 80px auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  color: #ffd1e3;
  font-family: 'Montserrat', sans-serif;
  flex-wrap: wrap;
  justify-content: center;
}

.booking-form-container, .contact-info {
  background-color: #d8519cbb;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 0 30px #ea79beaa;
  flex: 1 1 400px;
  max-width: 480px;
}

.booking-form-container h2, .contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  border-bottom: 3px solid #fff;
  padding-bottom: 8px;
  text-align: center;
  color: #fff;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #fff;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form input[type="time"],
form textarea {
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  box-shadow: inset 0 0 8px #ff94c5;
  color: #3c003a;
}

form input:focus, form textarea:focus {
  outline: 2px solid #ff8ac3;
}

form textarea {
  resize: vertical;
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 10px 0;
  background-color: #fb4d9a;
  color: black;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center !important;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 25px #ff7eb1;
  transition: background-color 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #c71762;
  box-shadow: 0 0 35px #ff4d92;
}

/* Contact info styles */
.contact-info address p {
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 600;
}
.contact-info a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.3s ease;
}
.contact-info a:hover, .contact-info a:focus {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .booking-contact-section {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .booking-form-container, .contact-info {
    max-width: 90%;
  }
}

.hkj{
	margin: 20px;
}