@charset "UTF-8";
/* 
Theme Name: Zzappit
Author: Zzappit Team
Author URI: https://Zzappit.com/
Template: Zzappit
Version: 1.0.1

UI - Develpoer  : Timal Tharinda Thotamune
Email : ttthotamune@gmail.com
*/
/* abstract */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");
.contact-footer-links .text-primary-foreground-muted {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}
.contact-footer-links .text-primary-foreground-muted svg {
  position: absolute;
  top: 3px;
  left: 0;
}

.mobile-menu-content .active-nav,
.nav-links .active-nav {
  color: var(--primary) !important;
}

.mobile-menu-content a {
  text-align: center;
}

/* =============================================
   TTS Global Logistics — Static Export CSS
   ============================================= */
/* ── CSS Variables ── */
:root {
  --primary: hsl(195, 54%, 53%);
  --primary-light: hsl(196, 68%, 49%);
  --primary-fg: #ffffff;
  --secondary: hsl(0, 0%, 17%); /* #2B2B2B */
  --secondary-fg: #ffffff;
  --background: #ffffff;
  --foreground: hsl(0, 0%, 17%);
  --card: #ffffff;
  --card-fg: hsl(0, 0%, 17%);
  --muted-fg: hsl(0, 0%, 40%);
  --border: hsl(195, 15%, 88%);
  --section-alt: hsl(195, 20%, 97%);
  --shadow-card: 0 4px 24px -4px hsl(0 0% 0% / 0.08);
  --shadow-card-hover: 0 12px 40px -8px hsl(195 38% 64% / 0.2);
  --radius: 0.5rem;
  --font-body: "Inter", sans-serif;
  --font-heading: "Plus Jakarta Sans", sans-serif;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

img {
  display: block;
  max-width: 100%;
}

/* ── Layout Helpers ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 5rem 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 7rem 1rem;
  }
}
/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
}

.btn-primary:hover {
  background: var(--primary-light);
}

.btn-outline {
  background: transparent;
  color: var(--secondary-fg);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  padding: 0.875rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--primary-light);
}

/* ── Cards ── */
.card {
  background: var(--card);
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

/* ── Label/Tag ── */
.section-label {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-logo {
  height: 5rem;
  object-fit: contain;
  drop-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.navbar-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.01em;
}

.navbar-title span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(43, 43, 43, 0.75);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

.mobile-menu {
  display: none;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 1rem;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-weight: 500;
  color: rgba(43, 43, 43, 0.75);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu.open {
  display: flex;
}

@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}
/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 43, 43, 0.7);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 860px;
  padding: 0 1.5rem;
}

.hero-tag {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 0.4rem;
  z-index: 10;
}

.scroll-dot {
  width: 0.35rem;
  height: 0.35rem;
  background: var(--primary);
  border-radius: 50%;
  animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
/* =============================================
   ABOUT
   ============================================= */
.about {
  background: var(--background);
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.about-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.feature-cards {
  display: grid;
  gap: 1.25rem;
}

.feature-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius) * 2);
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: hsla(195, 38%, 64%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.feature-card p {
  color: var(--muted-fg);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  background: var(--section-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted-fg);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-card {
  background: var(--card);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: calc(var(--radius) * 2);
  background: hsla(195, 38%, 64%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  transition: background 0.3s;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  background: var(--secondary);
}

.why-us .section-header h2 {
  color: var(--secondary-fg);
}

.why-us .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.why-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.why-card {
  text-align: center;
  padding: 1.5rem;
}

.why-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: hsla(195, 38%, 64%, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary-fg);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

/* =============================================
   PROCESS
   ============================================= */
.process {
  background: var(--background);
}

.process-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.process-step {
  text-align: center;
  position: relative;
}

/* connector line on desktop */
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2rem;
    left: 60%;
    width: 80%;
    height: 2px;
    background: var(--border);
  }
}
.step-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.process-step p {
  color: var(--muted-fg);
  font-size: 0.85rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--section-alt);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.testimonial-card {
  background: var(--card);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  color: hsla(195, 38%, 64%, 0.2);
}

.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--primary);
}

.testimonial-card blockquote {
  color: var(--muted-fg);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: normal;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.9rem;
}

.testimonial-role {
  color: var(--muted-fg);
  font-size: 0.75rem;
  margin-top: 0.2rem;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: var(--background);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--foreground);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input {
  height: 3rem;
}

.form-textarea {
  padding: 0.75rem 1rem;
  resize: vertical;
  min-height: 8rem;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(195, 38%, 64%, 0.15);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: hsla(195, 38%, 64%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-item-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--foreground);
  margin-bottom: 0.2rem;
}

.contact-item-value {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.map-wrapper {
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 18.5rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  border: 0;
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--secondary);
  color: var(--secondary-fg);
  padding: 25px 15px 15px;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer-brand {
  display: block;
  text-align: center;
}

.footer-logo {
  height: 150px;
  display: inline-block;
  margin: 0 auto;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: block;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.7;
  text-align: center;
}

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-services {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-services p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}
.footer-bottom a {
  color: var(--primary);
  display: inline-block;
  animation: colorChange 120s infinite;
}

@keyframes colorChange {
  0% {
    color: rgb(96, 146, 221);
  }
  33% {
    color: rgb(91, 223, 131);
  }
  66% {
    color: rgb(191, 235, 89);
  }
  100% {
    color: rgb(224, 92, 92);
  }
}
/* =============================================
   FADE-IN ANIMATIONS (scroll)
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 {
  transition-delay: 0.1s;
}

.fade-up.delay-2 {
  transition-delay: 0.2s;
}

.fade-up.delay-3 {
  transition-delay: 0.3s;
}

.fade-up.delay-4 {
  transition-delay: 0.4s;
}

.fade-up.delay-5 {
  transition-delay: 0.5s;
}

.navbar {
  top: 30px;
}
.navbar .navbar-brand {
  align-content: center;
}
.navbar .navbar-brand .navbar-logo {
  height: 100px;
  border-radius: 8px;
}

.scroll-navigation .navbar {
  top: 0px !important;
}
.scroll-navigation .navbar .navbar-brand .navbar-logo {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.navbar .navbar-brand .navbar-logo {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.active-nav a {
  color: red;
}

.container-narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

#specialized-services {
  background: var(--background);
}
#specialized-services .spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  #specialized-services .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  #specialized-services .spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
#specialized-services .spec-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
#specialized-services .spec-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
#specialized-services .spec-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
#specialized-services .spec-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
#specialized-services .spec-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 43, 43, 0.92) 0%, rgba(43, 43, 43, 0.42) 50%, transparent 100%);
  pointer-events: none;
}
#specialized-services .spec-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #ffffff;
}
#specialized-services .spec-card__content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #ffffff;
  line-height: 1.3;
}
#specialized-services .spec-card__content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0;
}
#specialized-services .spec-card:hover .spec-card__image img {
  transform: scale(1.08);
}

.respond-page .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.respond-page .respond-page-inner {
  min-height: 939px;
  background: var(--section-alt);
}
.respond-page .section {
  background: var(--section-alt);
  padding-top: 100px;
  padding-bottom: 50px;
}
.respond-page .result-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 5rem;
  min-height: 60vh;
  gap: 1.5rem;
}
.respond-page .result-icon-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid var(--result-color);
  margin-bottom: 0.5rem;
}
.respond-page .result-badge {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--result-color);
}
.respond-page .result-heading {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  margin: 0;
  line-height: 1.2;
}
.respond-page .result-body {
  max-width: 520px;
  line-height: 1.7;
}
.respond-page .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  justify-content: center;
}
.respond-page .footer-grid {
  grid-template-columns: auto;
}

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