body {
  font-family: "Poppins", sans-serif;
}

.theme-btn {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 15px;
  border-radius: 50px;
  gap: 10px;
  display: inline-flex;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #000;
  background: #000;
}
.theme-btn i {
  font-size: 20px;
}
.theme-btn.light-btn {
  color: #000;
  background-color: #fff;
}

.section-head {
  margin-bottom: 50px;
}
.section-head .section-prefix {
  color: #000000;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0px;
}
.section-head .section-title {
  font-size: 2.35rem;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 2.35rem;
}
.section-head p {
  max-width: 750px;
  display: block;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  transition: all 0.4s ease;
  padding: 20px 0;
}
.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 20px 0;
}
.site-header.scrolled .nav-center .nav-menu .nav-item .nav-link {
  color: #000000;
}
.site-header.scrolled .nav-center .nav-menu .nav-item .nav-link:hover {
  color: #B1A336;
}
.site-header.scrolled .nav-center .nav-menu .nav-item .nav-link::after {
  background: #B1A336;
}
.site-header.scrolled .nav-right .phone-link {
  color: #000000;
}
.site-header.scrolled .nav-right .phone-link:hover {
  color: #B1A336;
}
.site-header.scrolled .nav-right .phone-link i {
  color: #000000;
}
.site-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.site-header .logo-left {
  flex: 0 0 auto;
}
.site-header .logo-left a {
  display: block;
}
.site-header .logo-left a img {
  height: 25px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}
.site-header .nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-header .nav-center .nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 50px;
}
.site-header .nav-center .nav-menu .nav-item {
  display: flex;
  align-items: center;
}
.site-header .nav-center .nav-menu .nav-item .nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  position: relative;
}
.site-header .nav-center .nav-menu .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000000;
  transition: width 0.3s ease;
}
.site-header .nav-center .nav-menu .nav-item .nav-link:hover {
  color: #B1A336;
}
.site-header .nav-center .nav-menu .nav-item .nav-link:hover::after {
  width: 100%;
  background: #B1A336;
}
.site-header .nav-right {
  flex: 0 0 auto;
}
.site-header .nav-right .phone-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.site-header .nav-right .phone-link i {
  font-size: 15px;
}
.site-header .nav-right .phone-link:hover {
  color: #B1A336;
}

.site-footer {
  background: #000000;
  color: white;
}
.site-footer .newsletter-section {
  padding: 50px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .newsletter-section .newsletter-content .newsletter-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}
.site-footer .newsletter-section .newsletter-content .newsletter-header i {
  font-size: 24px;
  color: #ffffff;
}
.site-footer .newsletter-section .newsletter-content .newsletter-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #B1A336;
}
.site-footer .newsletter-section .newsletter-content .newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 700px;
}
.site-footer .newsletter-section .newsletter-content .newsletter-form .form-input {
  flex: 1;
  background: transparent;
  border: 2px solid white;
  border-radius: 8px;
  padding: 14px 20px;
  color: white;
  font-size: 14px;
}
.site-footer .newsletter-section .newsletter-content .newsletter-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .newsletter-section .newsletter-content .newsletter-form .form-input:focus {
  outline: none;
  border-color: #B1A336;
}
.site-footer .newsletter-section .newsletter-content .newsletter-form .theme-btn {
  width: 85px;
  height: 55px;
  border: none;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: #B1A336;
}
.site-footer .newsletter-section .newsletter-content .newsletter-form .theme-btn i {
  font-size: 28px;
}
.site-footer .footer-main {
  padding: 60px 0px 40px;
}
.site-footer .footer-main .footer-column .footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0 0 20px 0;
}
.site-footer .footer-main .footer-column .footer-logo .brand-highlight {
  color: #B1A336;
}
.site-footer .footer-main .footer-column .footer-description {
  max-width: 380px;
  font-size: 14px;
  line-height: 1.7;
  color: #e6e6e6;
  margin: 0 0 25px 0;
}
.site-footer .footer-main .footer-column .social-links {
  display: flex;
  gap: 12px;
}
.site-footer .footer-main .footer-column .social-links .social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6e6e6;
  transition: all 0.3s ease;
}
.site-footer .footer-main .footer-column .social-links .social-link i {
  font-size: 24px;
}
.site-footer .footer-main .footer-column .social-links .social-link:hover {
  background: #B1A336;
}
.site-footer .footer-main .footer-column .footer-title {
  font-size: 16px;
  font-weight: 600;
  color: #B1A336;
  margin: 0 0 40px 0;
  letter-spacing: 0.5px;
}
.site-footer .footer-main .footer-column .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-main .footer-column .footer-links li {
  margin-bottom: 8px;
}
.site-footer .footer-main .footer-column .footer-links li a {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.site-footer .footer-main .footer-column .footer-links li a:hover {
  color: #B1A336;
}
.site-footer .footer-main .footer-column .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-main .footer-column .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #e6e6e6;
}
.site-footer .footer-main .footer-column .contact-list li i {
  font-size: 18px;
  color: #b3b3b3;
  flex-shrink: 0;
  margin-top: 0;
}
.site-footer .footer-main .footer-column .contact-list li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-main .footer-column .contact-list li a:hover {
  color: #B1A336;
}
.site-footer .footer-main .footer-column .contact-list li a.main-phone {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
}
.site-footer .footer-main .footer-column .contact-list li span {
  line-height: 1.6;
  font-size: 14px;
  color: #b3b3b3;
}
.site-footer .footer-main .footer-column .contact-list li:nth-child(1) i, .site-footer .footer-main .footer-column .contact-list li:nth-child(3) i {
  margin-top: 0px;
}
.site-footer .footer-main .footer-column .contact-list li:nth-child(2) i {
  margin-top: 5px;
}
.site-footer .footer-bottom {
  padding: 25px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .footer-bottom .bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-bottom .bottom-content .copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.site-footer .footer-bottom .bottom-content .copyright .developer-link {
  color: #033773;
  text-decoration: none;
  font-weight: 600;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom {
  display: flex;
  gap: 15px;
  align-items: center;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom a:hover {
  color: #B1A336;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom span {
  color: rgba(255, 255, 255, 0.3);
}

.news-card {
  height: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 15px;
  flex-direction: column;
}
.news-card .news-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card .news-content {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.news-card .news-content .news-meta i {
  color: #ababab;
  font-size: 14px;
}
.news-card .news-content .news-meta .news-date {
  color: #ababab;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.news-card .news-content .news-title {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  flex: 1;
}
.news-card .news-content p {
  font-size: 0.88rem;
  color: #ababab;
}
.news-card .news-content .theme-btn {
  width: 180px;
}
.news-card:hover .news-image img {
  transform: scale(1.1);
}

.treatment-card .card-wrapper {
  height: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 25px;
  border: 2px solid #000000;
  flex-direction: column;
  position: relative;
}
.treatment-card .treatment-image {
  width: 100%;
  height: 275px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}
.treatment-card .treatment-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.treatment-card .treatment-content {
  flex: 1;
  z-index: 2;
  display: flex;
  position: relative;
  margin-top: -20px;
  flex-direction: column;
  background: #F6F6F6;
  padding: 20px 25px 25px;
  border-radius: 30px 30px 0 0;
  border-top: 10px solid #000000;
}
.treatment-card .treatment-content .treatment-title {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0px;
  font-family: "Playfair Display", serif;
}
.treatment-card .treatment-content .treatment-category {
  color: #757575;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}
.treatment-card .treatment-content .description {
  font-size: 1rem;
  color: #757575;
}
.treatment-card:hover .treatment-image img {
  transform: scale(1.1);
}

body {
  padding-top: 50px;
}

.hero-section {
  margin-top: -50px;
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-section .hero-slider {
  position: absolute;
  inset: 0;
}
.hero-section .hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-section .hero-slider .hero-slide.active {
  opacity: 1;
}
.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.hero-section .hero-reservation {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-section .hero-reservation .reservation-text {
  display: flex;
  flex-direction: row;
  align-items: end;
}
.hero-section .hero-reservation .reservation-text .reservation-number {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: #B1A336;
  font-family: "Poppins", sans-serif;
}
.hero-section .hero-reservation .reservation-text .reservation-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
.hero-section .hero-reservation .reservation-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-section .hero-reservation .reservation-icon i {
  font-size: 24px;
}
.hero-section .hero-reservation .reservation-icon:hover {
  border-color: #B1A336;
  color: #B1A336;
}
.hero-section .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}
.hero-section .hero-content .hero-prefix {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.hero-section .hero-content .hero-title {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: 15px;
  text-transform: uppercase;
  margin: 0;
}
.hero-section .hero-counter {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-section .hero-counter .counter-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
}
.hero-section .hero-counter .counter-item {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}
.hero-section .hero-counter .counter-item.active {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}
.hero-section .hero-counter .counter-item:hover {
  color: rgba(255, 255, 255, 0.8);
}
.hero-section .hero-arrows {
  position: absolute;
  bottom: 40px;
  right: 100px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-section .hero-arrows .hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}
.hero-section .hero-arrows .hero-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.intro-section {
  padding: 80px 0 20px;
}
.intro-section .section-head .section-prefix {
  margin-bottom: 15px;
}
.intro-section .section-head .section-title {
  color: #000000;
  line-height: 1.3;
  margin-bottom: 30px;
}
.intro-section .section-head .intro-description {
  font-size: 15px;
  color: #7f8c8d;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 40px;
}
.intro-section .section-head .intro-divider {
  width: 1px;
  height: 60px;
  background-color: #B1A336;
  margin: 0 auto;
}

.specialities-section {
  padding: 60px 0 80px;
}
.specialities-section .specialities-icons {
  margin-bottom: 50px;
}
.specialities-section .specialities-icons .speciality-item {
  padding: 10px 20px;
}
.specialities-section .specialities-icons .speciality-item .speciality-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}
.specialities-section .specialities-icons .speciality-item .speciality-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.specialities-section .specialities-icons .speciality-item p {
  font-size: 15px;
  color: #000000;
  line-height: 1.7;
  margin: 0;
}
.specialities-section .specialities-images {
  margin-bottom: 50px;
  gap: 0;
}
.specialities-section .specialities-images .speciality-img-box {
  background: #f4f5f9;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  margin: 0 15px;
}
.specialities-section .specialities-images .speciality-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.specialities-section .specialities-quote {
  max-width: 900px;
  margin: 0 auto;
}
.specialities-section .specialities-quote p {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 800;
  color: #B1A336;
  line-height: 1.2;
  margin: 0;
}

.faq-section {
  padding: 60px 0 80px;
}
.faq-section .container {
  max-width: 1100px;
}
.faq-section .faq-list {
  background: #f4f5f9;
  border-radius: 16px;
  padding: 40px 60px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.07);
}
.faq-section .faq-list .section-head {
  margin-bottom: 10px;
  padding: 20px 0;
}
.faq-section .faq-item {
  border-bottom: 2px solid #d8d8d8;
}
.faq-section .faq-item:nth-last-child(2) {
  border-bottom: none;
}
.faq-section .faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
  opacity: 1;
}
.faq-section .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  gap: 20px;
}
.faq-section .faq-question span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.5;
}
.faq-section .faq-question .faq-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1;
}
.faq-section .faq-question .faq-toggle i {
  font-size: 20px;
  color: #000000;
  display: block;
}
.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding-bottom 0.3s ease;
}
.faq-section .faq-answer p {
  font-size: 15px;
  color: #7f8c8d;
  line-height: 1.8;
  margin: 0;
}
.faq-section .faq-footer {
  text-align: center;
  padding: 30px 0;
}

.news-section, .featured-treatments-section {
  padding: 50px 0 30px;
}
.news-section .section-head, .featured-treatments-section .section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.news-section .section-head .section-prefix,
.news-section .section-head .section-title, .featured-treatments-section .section-head .section-prefix,
.featured-treatments-section .section-head .section-title {
  width: 100%;
}
.news-section .section-head .section-title, .featured-treatments-section .section-head .section-title {
  margin-bottom: 0;
}
.news-section .section-head .theme-btn, .featured-treatments-section .section-head .theme-btn {
  margin-top: 15px;
}

.testimonials-section {
  padding: 50px 0 80px;
}
.testimonials-section .section-head {
  margin-bottom: 40px;
}
.testimonials-section .testimonials-slider {
  position: relative;
  padding: 0 50px;
}
.testimonials-section .testimonials-slider .testimonial-item {
  padding: 0 15px;
  outline: none;
}
.testimonials-section .testimonials-slider .testimonial-card {
  background: white;
  border-radius: 25px;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid #d1d1d1;
}
.testimonials-section .testimonials-slider .testimonial-card .client-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 30px;
}
.testimonials-section .testimonials-slider .testimonial-card .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-section .testimonials-slider .testimonial-card .testimonial-text {
  color: #999999;
  font-size: 17px;
  line-height: 1.5;
  font-style: italic;
  min-height: 75px;
}
.testimonials-section .testimonials-slider .testimonial-card .client-name {
  color: #3d3d3d;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0px;
  font-family: "Playfair Display", serif;
}
.testimonials-section .testimonials-slider .testimonial-card .client-position {
  color: #B1A336;
  font-size: 15px;
  font-weight: 500;
  display: block;
}
.testimonials-section .slick-dots {
  text-align: center;
  position: relative;
  margin: 10px 0;
  padding: 0;
  list-style: none;
}
.testimonials-section .slick-dots li {
  margin: 0 2.5px;
  display: inline-block;
}
.testimonials-section .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background: #d4d4d4;
  border: none;
  font-size: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonials-section .slick-dots li button::before {
  display: none;
}
.testimonials-section .slick-dots li.slick-active button {
  background: #B1A336;
  border-radius: 10px;
}

.journey-section {
  padding: 80px 0px;
  position: relative;
  overflow: visible;
}
.journey-section .journey-content {
  padding-right: 40px;
  padding-bottom: 50px;
}
.journey-section .journey-content .section-title {
  color: #000000;
  margin: 0 0 20px 0;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 44px;
}
.journey-section .journey-content .section-subtitle {
  max-width: 700px;
  margin: 0 0 30px 0;
}
.journey-section .journey-image {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 19%;
  right: 7%;
  transform: translateY(50%);
}
.journey-section .journey-image .student-image {
  position: relative;
  z-index: 2;
  max-width: 500px;
  height: auto;
}

/*# sourceMappingURL=app.css.map */
